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

Method ReportError

tensorflow/lite/core/subgraph.cc:880–889  ·  view source on GitHub ↗

Entry point for C node plugin API to report an error.

Source from the content-addressed store, hash-verified

878
879// Entry point for C node plugin API to report an error.
880void Subgraph::ReportError(const char* format, ...) {
881 va_list args;
882 va_start(args, format);
883 auto* f = static_cast<Subgraph*>(context_.impl_);
884 // Note here that context->impl_ is recovering the this pointer for an
885 // instance of Subgraph to call into the member function ReportErrorImpl
886 // (this function is static).
887 f->ReportErrorImpl(format, args);
888 va_end(args);
889}
890
891TfLiteStatus Subgraph::AddTensors(int tensors_to_add,
892 int* first_new_tensor_index) {

Callers 15

GetSizeOfTypeFunction · 0.45
UnresolvedOpInvokeFunction · 0.45
LoggingEvalFunction · 0.45
ConfigureDelegateMethod · 0.45
PrepareFunction · 0.45
CopyFromBufferHandleFunction · 0.45
PrepareFunction · 0.45
EvalFunction · 0.45
ConvertStatusFunction · 0.45
CopyShapeAndTypeFunction · 0.45
DelegatePrepareFunction · 0.45

Calls 1

ReportErrorImplMethod · 0.80

Tested by 1

ConfigureDelegateMethod · 0.36