forked from rapidsai/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.hpp
More file actions
147 lines (128 loc) · 5.38 KB
/
error.hpp
File metadata and controls
147 lines (128 loc) · 5.38 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
// Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#pragma once
#include <cuda.h>
#include <cuda_runtime_api.h>
#include <napi.h>
#include <nvrtc.h>
#include <stdexcept>
namespace nv {
inline std::runtime_error cuError(CUresult code, std::string const& file, uint32_t line) {
const char* name;
const char* estr;
cuGetErrorName(code, &name);
cuGetErrorString(code, &estr);
auto msg =
std::string{name} + " " + std::string{estr} + "\n at " + file + ":" + std::to_string(line);
return std::runtime_error(msg);
}
inline std::runtime_error cudaError(cudaError_t code, std::string const& file, uint32_t line) {
auto const name = cudaGetErrorName(code);
auto const estr = cudaGetErrorString(code);
auto const msg =
std::string{name} + " " + std::string{estr} + "\n at " + file + ":" + std::to_string(line);
return std::runtime_error(msg);
}
inline std::runtime_error nvrtcError(nvrtcResult code, std::string const& file, uint32_t line) {
auto const name = nvrtcGetErrorString(code);
auto const msg = std::string{name} + "\n at " + file + ":" + std::to_string(line);
return std::runtime_error(msg);
}
inline std::runtime_error node_cuda_error(std::string const& message,
std::string const& file,
uint32_t line) {
return std::runtime_error("node_cuda failure:" + message + "\n at " + file + ":" +
std::to_string(line));
}
inline Napi::Error cuError(CUresult code,
std::string const& file,
uint32_t line,
Napi::Env const& env) {
return Napi::Error::New(env, cuError(code, file, line).what());
}
inline Napi::Error cudaError(cudaError_t code,
std::string const& file,
uint32_t line,
Napi::Env const& env) {
return Napi::Error::New(env, cudaError(code, file, line).what());
}
inline Napi::Error nvrtcError(nvrtcResult code,
std::string const& file,
uint32_t line,
Napi::Env const& env) {
return Napi::Error::New(env, nvrtcError(code, file, line).what());
}
inline Napi::Error node_cuda_error(std::string const& message,
std::string const& file,
uint32_t line,
Napi::Env const& env) {
return Napi::Error::New(env, node_cuda_error(message, file, line).what());
}
} // namespace nv
#ifndef NODE_CUDA_EXPECT
#define NODE_CUDA_EXPECT(expr, message, ...) \
do { \
if (!(expr)) NAPI_THROW(nv::node_cuda_error(message, __FILE__, __LINE__, ##__VA_ARGS__)); \
} while (0)
#endif
#ifndef NODE_CU_THROW
#define NODE_CU_THROW(code, ...) NAPI_THROW(nv::cuError(code, __FILE__, __LINE__, ##__VA_ARGS__))
#endif
/**
* @brief Error checking macro for CUDA driver API functions.
*
* Invokes a CUDA driver API function call, if the call does not return
* CUDA_SUCCESS, throws an exception detailing the CUDA error that occurred.
*
**/
#ifndef NODE_CU_TRY
#define NODE_CU_TRY(expr, ...) \
do { \
CUresult const status = (expr); \
if (status != CUDA_SUCCESS) { NODE_CU_THROW(status, ##__VA_ARGS__); } \
} while (0)
#endif
#ifndef NODE_CUDA_THROW
#define NODE_CUDA_THROW(code, ...) \
NAPI_THROW(nv::cudaError(code, __FILE__, __LINE__, ##__VA_ARGS__))
#endif
/**
* @brief Error checking macro for CUDA runtime API functions.
*
* Invokes a CUDA runtime API function call, if the call does not return
* cudaSuccess, invokes cudaGetLastError() to clear the error and throws an
* exception detailing the CUDA error that occurred.
*
**/
#ifndef NODE_CUDA_TRY
#define NODE_CUDA_TRY(expr, ...) \
do { \
cudaError_t const status = (expr); \
if (status != cudaSuccess) { \
cudaGetLastError(); \
NODE_CUDA_THROW(status, ##__VA_ARGS__); \
} \
} while (0)
#endif
#ifndef NODE_NVRTC_THROW
#define NODE_NVRTC_THROW(code, ...) \
NAPI_THROW(nv::nvrtcError(code, __FILE__, __LINE__, ##__VA_ARGS__))
#endif
#ifndef NODE_NVRTC_TRY
#define NODE_NVRTC_TRY(expr, ...) \
do { \
nvrtcResult status = (expr); \
if (status != NVRTC_SUCCESS) { NODE_NVRTC_THROW(status, ##__VA_ARGS__); } \
} while (0)
#endif