//============================================================================ // 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. //============================================================================ #ifndef vtk_m_Swap_h #define vtk_m_Swap_h #include #ifdef VTKM_CUDA #include #else #include #endif namespace vtkm { /// Performs a swap operation. Safe to call from cuda code. #if defined(VTKM_CUDA) template VTKM_EXEC_CONT void Swap(T& a, T& b) { using namespace thrust; swap(a, b); } #elif defined(VTKM_HIP) template __host__ void Swap(T& a, T& b) { using namespace std; swap(a, b); } template __device__ void Swap(T& a, T& b) { T temp = a; a = b; b = temp; } #else template VTKM_EXEC_CONT void Swap(T& a, T& b) { using namespace std; swap(a, b); } #endif } // end namespace vtkm #endif //vtk_m_Swap_h