Home
last modified time | relevance | path

Searched refs:node_and_reg (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/lite/
Doptional_debug_tools.cc100 const std::pair<TfLiteNode, TfLiteRegistration>* node_and_reg = in PrintInterpreterState() local
102 const TfLiteNode& node = node_and_reg->first; in PrintInterpreterState()
103 const TfLiteRegistration& reg = node_and_reg->second; in PrintInterpreterState()
Dinterpreter_test.cc1198 const auto* node_and_reg = interpreter_->node_and_registration(node); in TEST_F() local
1199 EXPECT_EQ(node_and_reg->second.custom_name, in TEST_F()
1204 node_and_reg->first.builtin_data); in TEST_F()
1243 const auto* node_and_reg = interpreter_->node_and_registration(3); in TEST_F() local
1244 ASSERT_EQ(node_and_reg->second.custom_name, in TEST_F()
/external/tensorflow/tensorflow/lite/core/
Dsubgraph.cc167 for (auto& node_and_reg : nodes_and_registration_) { in ~Subgraph() local
168 TfLiteNode& node = node_and_reg.first; in ~Subgraph()
173 OpFree(node_and_reg.second, node.user_data); in ~Subgraph()
540 auto& node_and_reg = nodes_and_registration_.back(); in AddNodeWithParameters() local
541 TfLiteNode& node = node_and_reg.first; in AddNodeWithParameters()
575 node_and_reg.second = *registration; in AddNodeWithParameters()
806 auto& node_and_reg = nodes_and_registration_[node_index]; in GetNodeAndRegistration() local
807 *node = &node_and_reg.first; in GetNodeAndRegistration()
808 *registration = &node_and_reg.second; in GetNodeAndRegistration()