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

Function throwCudnnError

plugin/common/checkMacrosPlugin.cpp:91–97  ·  view source on GitHub ↗

break-pointable

Source from the content-addressed store, hash-verified

89
90// break-pointable
91void 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
100void throwPluginError(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