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

Method Invoke

tensorflow/lite/interpreter.cc:177–188  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

175}
176
177TfLiteStatus Interpreter::Invoke() {
178 TF_LITE_ENSURE_STATUS(primary_subgraph().Invoke());
179
180 if (!allow_buffer_handle_output_) {
181 for (int tensor_index : outputs()) {
182 TF_LITE_ENSURE_STATUS(
183 primary_subgraph().EnsureTensorDataIsReadable(tensor_index));
184 }
185 }
186
187 return kTfLiteOk;
188}
189
190TfLiteStatus Interpreter::AddTensors(int tensors_to_add,
191 int* first_new_tensor_index) {

Callers 2

TESTFunction · 0.45
mainFunction · 0.45

Calls 2

outputsFunction · 0.85

Tested by 1

TESTFunction · 0.36