PSCF v1.2
cudaErrorCheck.h
1#ifndef PSCF_CUDA_ERROR_CHECK_H
2#define PSCF_CUDA_ERROR_CHECK_H
3
4#include <util/global.h>
5#include <string>
6#include <cuda_runtime.h>
7
8namespace Pscf {
9
45#define cudaErrorCheck(ans) { gpuAssert((ans), __FILE__, __LINE__);}
46
54inline void gpuAssert(cudaError_t err, const char *file, int line)
55{
56 if (err != cudaSuccess) {
57 std::string msg("CUDA Error: ");
58 msg += cudaGetErrorString(err);
59 throw Util::Exception(msg.c_str(), file, line);
60 }
61}
62
63} // namespace Pscf
64#endif
A user-defined exception.
Definition Exception.h:25
File containing preprocessor macros for error handling.
PSCF package top-level namespace.
Definition param_pc.dox:1
void gpuAssert(cudaError_t err, const char *file, int line)
Check if CUDA API function returns cudaSuccess (used by cudaErrorCheck macro).