Home
last modified time | relevance | path

Searched refs:node_inputs (Results 1 – 12 of 12) sorted by relevance

/external/tensorflow/tensorflow/lite/
Dsimple_planner.cc131 TfLiteIntArray* node_inputs = node.inputs; in PlanAllocations() local
132 for (int j = 0; j < node_inputs->size; ++j) { in PlanAllocations()
133 int tensor_index = node_inputs->data[j]; in PlanAllocations()
153 TfLiteIntArray* node_inputs = node.inputs; in PlanAllocations() local
154 for (int j = 0; j < node_inputs->size; ++j) { in PlanAllocations()
155 int tensor_index = node_inputs->data[j]; in PlanAllocations()
Darena_planner.cc149 TfLiteIntArray* node_inputs = node.inputs; in PlanAllocations() local
150 for (int j = 0; j < node_inputs->size; ++j) { in PlanAllocations()
151 int tensor_index = node_inputs->data[j]; in PlanAllocations()
172 TfLiteIntArray* node_inputs = node.inputs; in PlanAllocations() local
173 for (int j = 0; j < node_inputs->size; ++j) { in PlanAllocations()
174 int tensor_index = node_inputs->data[j]; in PlanAllocations()
/external/tensorflow/tensorflow/python/debug/lib/
Ddebug_data.py837 if datum.node_name not in debug_graph.node_inputs:
842 for node in debug_graph.node_inputs:
844 inputs = debug_graph.node_inputs[node]
1036 nodes.extend(self._debug_graphs[device_name].node_inputs.keys())
1041 return self._debug_graphs[device_name].node_inputs.keys()
1063 def node_inputs(self, node_name, is_control=False, device_name=None): member in DebugDumpDir
1088 return self._debug_graphs[device_name].node_inputs[node_name]
1122 input_lists = [self._debug_graphs[device_name].node_inputs]
1197 input_lists = [self._debug_graphs[dst_device_name].node_inputs]
1288 if node_name in debug_graph.node_inputs:
Dsession_debug_testlib.py805 self.assertEqual([], dump.node_inputs(u_name))
806 self.assertEqual([u_name], dump.node_inputs(u_read_name))
807 self.assertEqual([u_read_name] * 2, dump.node_inputs(v_name))
808 self.assertEqual([v_name] * 2, dump.node_inputs(w_name))
810 self.assertEqual([], dump.node_inputs(u_name, is_control=True))
811 self.assertEqual([], dump.node_inputs(u_read_name, is_control=True))
812 self.assertEqual([], dump.node_inputs(v_name, is_control=True))
813 self.assertEqual([], dump.node_inputs(w_name, is_control=True))
828 dump.node_inputs(u_name + "foo")
Ddebug_graphs.py457 def node_inputs(self): member in DebugGraph
/external/tensorflow/tensorflow/core/common_runtime/
Dsingle_threaded_executor.cc295 TensorValueVec node_inputs; in Run() local
416 node_inputs.clear(); in Run()
417 node_inputs.resize(num_inputs); in Run()
428 node_inputs[j].tensor = const_cast<Tensor*>(input.const_tensor); in Run()
431 node_inputs[j].tensor = input.val.get(); in Run()
438 params.inputs = node_inputs; in Run()
/external/tensorflow/tensorflow/core/grappler/
Dgraph_topology_view_test.cc34 const auto& node_inputs = node.second; in CreateGraph() local
38 for (const string& input : node_inputs) { in CreateGraph()
Dmutable_graph_view_test.cc310 absl::flat_hash_map<string, std::vector<string>> node_inputs; in GetNodeInputsFromGraph() local
315 node_inputs[node.name()] = in GetNodeInputsFromGraph()
318 return node_inputs; in GetNodeInputsFromGraph()
/external/tensorflow/tensorflow/core/data/
Dhash_utils.cc228 node_rep.node_inputs.push_back(std::make_pair(input_node, suffix)); in Init()
266 for (const auto& input : node_rep->node_inputs) { in HashNode()
311 auto& this_node_inputs = nodes_[this_node].node_inputs; in CheckNodesEqualHelper()
312 auto& that_node_inputs = that->nodes_[that_node].node_inputs; in CheckNodesEqualHelper()
694 std::vector<std::pair<const NodeDef*, absl::string_view>> node_inputs; member
/external/tensorflow/tensorflow/python/debug/cli/
Danalyzer_cli.py794 self._debug_dump.node_inputs(node_name))
796 self._debug_dump.node_inputs(node_name, is_control=True))
1302 tracker = self._debug_dump.node_inputs
/external/tensorflow/tensorflow/lite/delegates/coreml/
Dcoreml_delegate_kernel.mm210 TfLiteIntArrayView node_inputs(node->inputs);
/external/tensorflow/tensorflow/lite/core/
Dsubgraph.cc1203 TfLiteIntArray* node_inputs = node.inputs; in RemoveUnusedInputs() local
1204 for (int j = 0; j < node_inputs->size; ++j) { in RemoveUnusedInputs()
1205 int tensor_index = node_inputs->data[j]; in RemoveUnusedInputs()