vtk-m/vtkm/cont/ArrayHandle.cxx

46 lines
1.1 KiB
C++
Raw Normal View History

//============================================================================
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt for details.
2019-04-15 23:24:21 +00:00
//
// 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/ArrayHandle.h>
2017-05-18 14:29:41 +00:00
namespace vtkm
{
namespace cont
{
namespace detail
{
VTKM_CONT void ArrayHandleReleaseResourcesExecution(
const std::vector<vtkm::cont::internal::Buffer>& buffers)
{
vtkm::cont::Token token;
for (auto&& buf : buffers)
{
buf.ReleaseDeviceResources();
}
}
VTKM_CONT bool ArrayHandleIsOnDevice(const std::vector<vtkm::cont::internal::Buffer>& buffers,
vtkm::cont::DeviceAdapterId device)
{
for (auto&& buf : buffers)
{
if (!buf.IsAllocatedOnDevice(device))
{
return false;
}
}
return true;
}
}
}
} // namespace vtkm::cont::detail