break-pointable
| 54 | |
| 55 | // break-pointable |
| 56 | void throwCudaError(char const* file, char const* function, int32_t line, int32_t status, char const* msg) |
| 57 | { |
| 58 | CudaError error(file, function, line, status, msg); |
| 59 | error.log(gLogError); |
| 60 | // NOLINTNEXTLINE(misc-throw-by-value-catch-by-reference) |
| 61 | throw error; |
| 62 | } |
| 63 | |
| 64 | // break-pointable |
| 65 | void throwCublasError(char const* file, char const* function, int32_t line, int32_t status, char const* msg) |