MCPcopy Create free account
hub / github.com/NVIDIA/TensorRT / throwCudaError

Function throwCudaError

plugin/common/checkMacrosPlugin.cpp:56–62  ·  view source on GitHub ↗

break-pointable

Source from the content-addressed store, hash-verified

54
55// break-pointable
56void 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
65void throwCublasError(char const* file, char const* function, int32_t line, int32_t status, char const* msg)

Callers

nothing calls this directly

Calls 1

logMethod · 0.45

Tested by

no test coverage detected