1#ifndef PSCF_CUDA_ERROR_CHECK_H
2#define PSCF_CUDA_ERROR_CHECK_H
6#include <cuda_runtime.h>
45#define cudaErrorCheck(ans) { gpuAssert((ans), __FILE__, __LINE__);}
54inline void gpuAssert(cudaError_t err,
const char *file,
int line)
56 if (err != cudaSuccess) {
57 std::string msg(
"CUDA Error: ");
58 msg += cudaGetErrorString(err);
A user-defined exception.
File containing preprocessor macros for error handling.
PSCF package top-level namespace.
void gpuAssert(cudaError_t err, const char *file, int line)
Check if CUDA API function returns cudaSuccess (used by cudaErrorCheck macro).