vtk-m2/vtkm/cont/kokkos/internal/DeviceAdapterRuntimeDetectorKokkos.cxx
2020-08-12 13:55:24 -04:00

22 lines
727 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/kokkos/internal/DeviceAdapterRuntimeDetectorKokkos.h>
namespace vtkm
{
namespace cont
{
VTKM_CONT bool DeviceAdapterRuntimeDetector<vtkm::cont::DeviceAdapterTagKokkos>::Exists() const
{
return vtkm::cont::DeviceAdapterTagKokkos::IsEnabled;
}
}
}