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

Method Report

tensorflow/lite/core/api/error_reporter.cc:20–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18namespace tflite {
19
20int ErrorReporter::Report(const char* format, ...) {
21 va_list args;
22 va_start(args, format);
23 int code = Report(format, args);
24 va_end(args);
25 return code;
26}
27
28// TODO(aselle): Make the name of ReportError on context the same, so
29// we can use the ensure functions w/o a context and w/ a reporter.

Callers 5

ReportErrorImplMethod · 0.45
ConvertTensorTypeFunction · 0.45
ParseOpDataFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected