Searched refs:sorted_nodes (Results 1 – 8 of 8) sorted by relevance
/external/tensorflow/tensorflow/python/debug/lib/ |
D | stepper_test.py | 72 sorted_nodes = stepper.sorted_nodes() 73 self.assertEqual(7, len(sorted_nodes)) 74 self.assertLess(sorted_nodes.index("a"), sorted_nodes.index("a/read")) 75 self.assertLess(sorted_nodes.index("b"), sorted_nodes.index("b/read")) 76 self.assertLess(sorted_nodes.index("a"), sorted_nodes.index("c")) 77 self.assertLess(sorted_nodes.index("b"), sorted_nodes.index("c")) 78 self.assertLess(sorted_nodes.index("a"), sorted_nodes.index("d")) 79 self.assertLess(sorted_nodes.index("d"), sorted_nodes.index("e")) 80 self.assertLess(sorted_nodes.index("c"), sorted_nodes.index("e")) 391 sorted_nodes = stepper.sorted_nodes() [all …]
|
D | stepper.py | 304 sorted_nodes = [] 314 sorted_nodes.append(curr_node) 330 return sorted_nodes, closure_elements, ref_tensor_names 332 def sorted_nodes(self): member in NodeStepper 892 if node_name not in self.sorted_nodes(): 911 for item in self.sorted_nodes():
|
/external/tensorflow/tensorflow/core/profiler/internal/ |
D | tfprof_show_multi.h | 82 std::vector<T*> sorted_nodes = nodes; in SortNodes() local 83 std::sort(sorted_nodes.begin(), sorted_nodes.end(), in SortNodes() 123 return sorted_nodes; in SortNodes()
|
D | tfprof_show.h | 80 std::vector<T*> sorted_nodes = nodes; in SortNodes() local 81 std::sort(sorted_nodes.begin(), sorted_nodes.end(), in SortNodes() 118 return sorted_nodes; in SortNodes()
|
/external/tensorflow/tensorflow/compiler/jit/ |
D | mark_for_compilation_pass.cc | 469 std::vector<Node*> sorted_nodes; in FindCompilationCandidates() local 471 sorted_nodes.push_back(node); in FindCompilationCandidates() 473 std::sort(sorted_nodes.begin(), sorted_nodes.end(), NodeComparatorID()); in FindCompilationCandidates() 483 for (Node* node : sorted_nodes) { in FindCompilationCandidates()
|
/external/tensorflow/tensorflow/python/debug/cli/ |
D | stepper_cli_test.py | 343 sorted_nodes = node_stepper.sorted_nodes() 349 for node in sorted_nodes:
|
D | stepper_cli.py | 201 self._sorted_nodes = self._node_stepper.sorted_nodes()
|
/external/tensorflow/tensorflow/python/debug/wrappers/ |
D | local_cli_wrapper.py | 727 ], [str(elem) for elem in node_stepper.sorted_nodes()])
|