Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetPostOrder (0.42 sec)

  1. tensorflow/compiler/jit/partially_decluster_pass.cc

      // on if we've decided that some of its consumers have to be declustered too.
      // Iterating the graph in post-order guarantees that consumers have been
      // visited before producers.
      std::vector<Node*> post_order;
      GetPostOrder(*graph, &post_order, /*stable_comparator=*/NodeComparatorName(),
                   /*edge_filter=*/NotBackedge);
    
      absl::flat_hash_set<Node*> nodes_to_partially_decluster;
      TF_RETURN_IF_ERROR(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_cluster_util.cc

      std::vector<Node*> nodes_in_order;
      if (direction == Direction::kForward) {
        GetReversePostOrder(graph, &nodes_in_order,
                            /*stable_comparator=*/NodeComparatorName());
      } else {
        GetPostOrder(graph, &nodes_in_order,
                     /*stable_comparator=*/NodeComparatorName());
      }
    
      size_t old_result_size;
      int iterations = 0;
    
      const int kMaxIterations = 10 * 1000;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top