-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathcudaCheck.h
71 lines (60 loc) · 2.32 KB
/
cudaCheck.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#ifndef HeterogeneousCore_CUDAUtilities_cudaCheck_h
#define HeterogeneousCore_CUDAUtilities_cudaCheck_h
// C++ standard headers
#include <iostream>
#include <sstream>
#include <stdexcept>
#include <string>
#include <string_view>
// CUDA headers
#include <cuda.h>
#include <cuda_runtime.h>
// CMSSW headers
#include "FWCore/Utilities/interface/Likely.h"
namespace cms {
namespace cuda {
[[noreturn]] inline void abortOnCudaError(const char* file,
int line,
const char* cmd,
const char* error,
const char* message,
std::string_view description = std::string_view()) {
std::ostringstream out;
out << "\n";
out << file << ", line " << line << ":\n";
out << "cudaCheck(" << cmd << ");\n";
out << error << ": " << message << "\n";
if (!description.empty())
out << description << "\n";
throw std::runtime_error(out.str());
}
inline bool cudaCheck_(const char* file,
int line,
const char* cmd,
CUresult result,
std::string_view description = std::string_view()) {
if (LIKELY(result == CUDA_SUCCESS))
return true;
const char* error;
const char* message;
cuGetErrorName(result, &error);
cuGetErrorString(result, &message);
abortOnCudaError(file, line, cmd, error, message, description);
return false;
}
inline bool cudaCheck_(const char* file,
int line,
const char* cmd,
cudaError_t result,
std::string_view description = std::string_view()) {
if (LIKELY(result == cudaSuccess))
return true;
const char* error = cudaGetErrorName(result);
const char* message = cudaGetErrorString(result);
abortOnCudaError(file, line, cmd, error, message, description);
return false;
}
} // namespace cuda
} // namespace cms
#define cudaCheck(ARG, ...) (cms::cuda::cudaCheck_(__FILE__, __LINE__, #ARG, (ARG), ##__VA_ARGS__))
#endif // HeterogeneousCore_CUDAUtilities_cudaCheck_h