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

Function throwPluginError

plugin/common/checkMacrosPlugin.cpp:100–106  ·  view source on GitHub ↗

break-pointable

Source from the content-addressed store, hash-verified

98
99// break-pointable
100void throwPluginError(char const* file, char const* function, int32_t line, int32_t status, char const* msg)
101{
102 PluginError error(file, function, line, status, msg);
103 reportValidationFailure(msg, file, line);
104 // NOLINTNEXTLINE(misc-throw-by-value-catch-by-reference)
105 throw error;
106}
107
108void logError(char const* msg, char const* file, char const* fn, int32_t line)
109{

Callers

nothing calls this directly

Calls 1

reportValidationFailureFunction · 0.85

Tested by

no test coverage detected