HomeSort by relevance Sort by last modified time
    Searched refs:sorted_nodes (Results 1 - 7 of 7) sorted by null

  /external/tensorflow/tensorflow/core/profiler/internal/
tfprof_show_multi.h 82 std::vector<T*> sorted_nodes = nodes; local
83 std::sort(sorted_nodes.begin(), sorted_nodes.end(),
123 return sorted_nodes;
tfprof_show.h 80 std::vector<T*> sorted_nodes = nodes; local
81 std::sort(sorted_nodes.begin(), sorted_nodes.end(),
118 return sorted_nodes;
  /external/tensorflow/tensorflow/python/debug/lib/
stepper_test.py 71 sorted_nodes = stepper.sorted_nodes()
72 self.assertEqual(7, len(sorted_nodes))
73 self.assertLess(sorted_nodes.index("a"), sorted_nodes.index("a/read"))
74 self.assertLess(sorted_nodes.index("b"), sorted_nodes.index("b/read"))
75 self.assertLess(sorted_nodes.index("a"), sorted_nodes.index("c"))
76 self.assertLess(sorted_nodes.index("b"), sorted_nodes.index("c")
    [all...]
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 class:NodeStepper
    [all...]
  /external/tensorflow/tensorflow/python/debug/cli/
stepper_cli_test.py 336 sorted_nodes = node_stepper.sorted_nodes()
342 for node in sorted_nodes:
stepper_cli.py 201 self._sorted_nodes = self._node_stepper.sorted_nodes()
  /external/tensorflow/tensorflow/python/debug/wrappers/
local_cli_wrapper.py 687 ], [str(elem) for elem in node_stepper.sorted_nodes()])

Completed in 344 milliseconds