MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / ReportError

Function ReportError

tensorflow/lite/tools/verifier.cc:28–35  ·  view source on GitHub ↗

Reports error message when the reporter is set.

Source from the content-addressed store, hash-verified

26
27// Reports error message when the reporter is set.
28void ReportError(ErrorReporter* error_reporter, const char* format, ...) {
29 if (error_reporter) {
30 va_list args;
31 va_start(args, format);
32 error_reporter->Report(format, args);
33 va_end(args);
34 }
35}
36
37// Returns the int32_t value pointed by ptr.
38const uint32_t* GetIntPtr(const char* ptr) {

Callers 15

VerifyStringTensorBufferFunction · 0.70
VerifyOperatorsFunction · 0.70
VerifySubGraphsFunction · 0.70
VerifyTensorsFunction · 0.70
VerifyOpsFunction · 0.70
VerifyFunction · 0.70
CheckTensorIndicesMethod · 0.50
AllocateTensorsMethod · 0.50
AddNodeWithParametersMethod · 0.50

Calls 1

ReportMethod · 0.45

Tested by

no test coverage detected