Searched refs:node_inputs (Results 1 – 10 of 10) sorted by relevance
/external/v8/src/compiler/ |
D | graph-reducer.cc | 127 Node::Inputs node_inputs = node->inputs(); in ReduceTop() local 130 int start = entry.input_index < node_inputs.count() ? entry.input_index : 0; in ReduceTop() 131 for (int i = start; i < node_inputs.count(); ++i) { in ReduceTop() 132 Node* input = node_inputs[i]; in ReduceTop() 139 Node* input = node_inputs[i]; in ReduceTop() 159 Node::Inputs node_inputs = node->inputs(); in ReduceTop() local 160 for (int i = 0; i < node_inputs.count(); ++i) { in ReduceTop() 161 Node* input = node_inputs[i]; in ReduceTop()
|
/external/tensorflow/tensorflow/lite/ |
D | arena_planner.cc | 140 TfLiteIntArray* node_inputs = node.inputs; in PlanAllocations() local 141 for (int j = 0; j < node_inputs->size; ++j) { in PlanAllocations() 142 int tensor_index = node_inputs->data[j]; in PlanAllocations() 169 TfLiteIntArray* node_inputs = node.inputs; in PlanAllocations() local 170 for (int j = 0; j < node_inputs->size; ++j) { in PlanAllocations() 171 int tensor_index = node_inputs->data[j]; in PlanAllocations()
|
/external/tensorflow/tensorflow/python/debug/lib/ |
D | stepper.py | 246 node_inputs = dict() # New: Input map of nodes in the transitive closure. 268 if curr_node.name not in node_inputs: 272 node_inputs[curr_node.name] = all_input_nodes 306 for node in node_inputs: 307 if not node_inputs[node]: 310 del node_inputs[node] 318 for node in node_inputs: 319 if curr_node in node_inputs[node]: 320 node_inputs[node].remove(curr_node) 321 if not node_inputs[node]: [all …]
|
D | debug_data.py | 842 if datum.node_name not in debug_graph.node_inputs: 847 for node in debug_graph.node_inputs: 849 inputs = debug_graph.node_inputs[node] 1040 nodes.extend(self._debug_graphs[device_name].node_inputs.keys()) 1045 return self._debug_graphs[device_name].node_inputs.keys() 1067 def node_inputs(self, node_name, is_control=False, device_name=None): member in DebugDumpDir 1092 return self._debug_graphs[device_name].node_inputs[node_name] 1126 input_lists = [self._debug_graphs[device_name].node_inputs] 1201 input_lists = [self._debug_graphs[dst_device_name].node_inputs] 1292 if node_name in debug_graph.node_inputs:
|
D | session_debug_testlib.py | 812 self.assertEqual([], dump.node_inputs(u_name)) 813 self.assertEqual([u_name], dump.node_inputs(u_read_name)) 814 self.assertEqual([u_read_name] * 2, dump.node_inputs(v_name)) 815 self.assertEqual([v_name] * 2, dump.node_inputs(w_name)) 817 self.assertEqual([], dump.node_inputs(u_name, is_control=True)) 818 self.assertEqual([], dump.node_inputs(u_read_name, is_control=True)) 819 self.assertEqual([], dump.node_inputs(v_name, is_control=True)) 820 self.assertEqual([], dump.node_inputs(w_name, is_control=True)) 835 dump.node_inputs(u_name + "foo")
|
D | debug_graphs.py | 462 def node_inputs(self): member in DebugGraph
|
/external/tensorflow/tensorflow/core/kernels/data/ |
D | single_threaded_executor.cc | 198 TensorValueVec node_inputs; in RunAsync() local 221 params.inputs = &node_inputs; in RunAsync() 247 node_inputs.clear(); in RunAsync() 248 node_inputs.resize(num_inputs); in RunAsync() 253 node_inputs[j].tensor = t; in RunAsync()
|
/external/tensorflow/tensorflow/core/grappler/ |
D | graph_topology_view_test.cc | 34 const auto& node_inputs = node.second; in CreateGraph() local 38 for (const string& input : node_inputs) { in CreateGraph()
|
D | mutable_graph_view_test.cc | 310 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/python/debug/cli/ |
D | analyzer_cli.py | 801 self._debug_dump.node_inputs(node_name)) 803 self._debug_dump.node_inputs(node_name, is_control=True)) 1308 tracker = self._debug_dump.node_inputs
|