break-pointable
| 89 | |
| 90 | // break-pointable |
| 91 | void throwCudnnError(char const* file, char const* function, int32_t line, int32_t status, char const* msg) |
| 92 | { |
| 93 | CudnnError error(file, function, line, status, msg); |
| 94 | error.log(gLogError); |
| 95 | // NOLINTNEXTLINE(misc-throw-by-value-catch-by-reference) |
| 96 | throw error; |
| 97 | } |
| 98 | |
| 99 | // break-pointable |
| 100 | void throwPluginError(char const* file, char const* function, int32_t line, int32_t status, char const* msg) |