HomeSort by relevance Sort by last modified time
    Searched defs:post_order (Results 1 - 25 of 34) sorted by null

1 2

  /external/tensorflow/tensorflow/core/grappler/utils/
traversal_test.cc 59 std::vector<string> post_order; local
64 [&post_order](NodeDef* n) { post_order.push_back(n->name()); },
68 EXPECT_EQ(std::vector<string>({"4", "5", "2", "3", "1", "0"}), post_order);
84 std::vector<string> post_order; local
89 [&post_order](NodeDef* n) { post_order.push_back(n->name()); },
95 EXPECT_EQ(std::vector<string>({"1", "4", "5", "2", "3", "6"}), post_order);
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_cse.cc 102 std::list<HloInstruction*> post_order = local
105 for (auto instruction : post_order) {
hlo_module_test.cc 96 auto post_order = module->MakeComputationPostOrder(); local
100 EXPECT_EQ(post_order.size(), post_order_copied.size());
101 for (auto origin = post_order.begin(), copied = post_order_copied.begin();
102 origin != post_order.end() && copied != post_order_copied.end();
132 auto post_order = module->MakeComputationPostOrder(); local
136 EXPECT_EQ(post_order.size(), post_order_copied.size());
137 for (auto origin = post_order.begin(), copied = post_order_copied.begin();
138 origin != post_order.end() && copied != post_order_copied.end();
162 auto post_order = module->MakeComputationPostOrder(); local
163 EXPECT_THAT(post_order,
    [all...]
computation_tracker.cc 95 std::list<VersionedComputationHandle> post_order; local
98 ComputeComputationPostOrder(entry_versioned_handle, &visited, &post_order);
105 for (auto it = ++post_order.rbegin(); it != post_order.rend(); ++it) {
150 std::list<VersionedComputationHandle>* post_order) const {
162 ComputeComputationPostOrder(embedded_handle, visited, post_order);
166 post_order->push_back(versioned_handle);
186 std::list<VersionedComputationHandle> post_order; local
187 ComputeComputationPostOrder(entry_handle, &visited, &post_order);
204 for (const VersionedComputationHandle& versioned_handle : post_order) {
    [all...]
hlo_computation_test.cc 197 auto post_order = computation->MakeInstructionPostOrder(); local
198 EXPECT_EQ(6, post_order.size());
199 EXPECT_THAT(post_order, UnorderedElementsAre(constant1, constant2, constant3,
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ADT/
PostOrderIterator.h 186 template <class T> iterator_range<po_iterator<T>> post_order(const T &G) { function in namespace:llvm
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ADT/
PostOrderIterator.h 186 template <class T> iterator_range<po_iterator<T>> post_order(const T &G) { function in namespace:llvm
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ADT/
PostOrderIterator.h 186 template <class T> iterator_range<po_iterator<T>> post_order(const T &G) { function in namespace:llvm
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/ADT/
PostOrderIterator.h 186 template <class T> iterator_range<po_iterator<T>> post_order(const T &G) { function in namespace:llvm
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/ADT/
PostOrderIterator.h 186 template <class T> iterator_range<po_iterator<T>> post_order(const T &G) { function in namespace:llvm
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/ADT/
PostOrderIterator.h 186 template <class T> iterator_range<po_iterator<T>> post_order(const T &G) { function in namespace:llvm
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ADT/
PostOrderIterator.h 186 template <class T> iterator_range<po_iterator<T>> post_order(const T &G) { function in namespace:llvm
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ADT/
PostOrderIterator.h 186 template <class T> iterator_range<po_iterator<T>> post_order(const T &G) { function in namespace:llvm
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/ADT/
PostOrderIterator.h 186 template <class T> iterator_range<po_iterator<T>> post_order(const T &G) { function in namespace:llvm
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ADT/
PostOrderIterator.h 186 template <class T> iterator_range<po_iterator<T>> post_order(const T &G) { function in namespace:llvm
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ADT/
PostOrderIterator.h 186 template <class T> iterator_range<po_iterator<T>> post_order(const T &G) { function in namespace:llvm
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ADT/
PostOrderIterator.h 186 template <class T> iterator_range<po_iterator<T>> post_order(const T &G) { function in namespace:llvm
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
pytree.py 96 def post_order(self): member in class:Base
294 def post_order(self): member in class:Node
297 for node in child.post_order():
409 def post_order(self): member in class:Leaf
  /external/llvm/include/llvm/ADT/
PostOrderIterator.h 182 template <class T> iterator_range<po_iterator<T>> post_order(const T &G) { function in namespace:llvm
  /external/python/cpython2/Lib/lib2to3/
pytree.py 96 def post_order(self): member in class:Base
294 def post_order(self): member in class:Node
297 for node in child.post_order():
409 def post_order(self): member in class:Leaf
  /external/python/cpython3/Lib/lib2to3/
pytree.py 86 def post_order(self): member in class:Base
263 def post_order(self): member in class:Node
266 yield from child.post_order()
376 def post_order(self): member in class:Leaf
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
PostOrderIterator.h 186 template <class T> iterator_range<po_iterator<T>> post_order(const T &G) { function in namespace:llvm
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
PostOrderIterator.h 186 template <class T> iterator_range<po_iterator<T>> post_order(const T &G) { function in namespace:llvm
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/
pytree.py 96 def post_order(self): member in class:Base
294 def post_order(self): member in class:Node
297 for node in child.post_order():
409 def post_order(self): member in class:Leaf
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/
pytree.py 96 def post_order(self): member in class:Base
294 def post_order(self): member in class:Node
297 for node in child.post_order():
409 def post_order(self): member in class:Leaf

Completed in 505 milliseconds

1 2