vtk-m/vtkm/cont/tbb/internal/ExecutionArrayInterfaceBasicTBB.cxx
2019-04-17 10:57:13 -06:00

26 lines
758 B
C++

//============================================================================
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt for details.
//
// This software is distributed WITHOUT ANY WARRANTY; without even
// the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
// PURPOSE. See the above copyright notice for more information.
//============================================================================
#include <vtkm/cont/tbb/internal/ExecutionArrayInterfaceBasicTBB.h>
namespace vtkm
{
namespace cont
{
namespace internal
{
DeviceAdapterId ExecutionArrayInterfaceBasic<DeviceAdapterTagTBB>::GetDeviceId() const
{
return DeviceAdapterTagTBB{};
}
} // namespace internal
}
} // namespace vtkm::cont