vtk-m/vtkm/cont/cuda/internal/testing/Testing.h
2019-04-17 10:57:13 -06:00

58 lines
1.3 KiB
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.
//============================================================================
#ifndef vtk_m_cont_cuda_internal_Testing_h
#define vtk_m_cont_cuda_internal_Testing_h
#include <vtkm/cont/testing/Testing.h>
#include <cuda.h>
namespace vtkm
{
namespace cont
{
namespace cuda
{
namespace internal
{
struct Testing
{
public:
static VTKM_CONT int CheckCudaBeforeExit(int result)
{
cudaError_t cudaError = cudaPeekAtLastError();
if (cudaError != cudaSuccess)
{
std::cout << "***** Unchecked Cuda error." << std::endl
<< cudaGetErrorString(cudaError) << std::endl;
return 1;
}
else
{
std::cout << "No Cuda error detected." << std::endl;
}
return result;
}
template <class Func>
static VTKM_CONT int Run(Func function)
{
int result = vtkm::cont::testing::Testing::Run(function);
return CheckCudaBeforeExit(result);
}
};
}
}
}
} // namespace vtkm::cont::cuda::internal
#endif //vtk_m_cont_cuda_internal_Testing_h