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

Method node_and_registration

tensorflow/lite/core/subgraph.h:197–202  ·  view source on GitHub ↗

Get a pointer to an operation and registration data structure if in bounds.

Source from the content-addressed store, hash-verified

195
196 // Get a pointer to an operation and registration data structure if in bounds.
197 const std::pair<TfLiteNode, TfLiteRegistration>* node_and_registration(
198 int node_index) const {
199 if (node_index < 0 || static_cast<size_t>(node_index) >= nodes_size())
200 return nullptr;
201 return &nodes_and_registration_[node_index];
202 }
203
204 // Change the dimensionality of a given tensor. Note, this is only acceptable
205 // for tensor indices that are inputs.

Callers 8

PrintInterpreterStateFunction · 0.45
TESTFunction · 0.45
TEST_FFunction · 0.45
InitMethod · 0.45
GetOperatorDetailsFunction · 0.45
RunInferenceFunction · 0.45
ExportOperatorsMethod · 0.45
ExportTensorsMethod · 0.45

Calls

no outgoing calls

Tested by 2

TESTFunction · 0.36
TEST_FFunction · 0.36