Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for FixupSourceAndSinkEdges (0.22 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // connected but sometimes the incoming graph does not follow this invariant.
      // So fix up the source and sink edges before calling into deadness analysis.
      FixupSourceAndSinkEdges(graph);
    
      for (Node* n : graph->nodes()) {
        // See explanation on `kXlaAlreadyClustered`.
        if (n->attrs().Find(kXlaAlreadyClustered)) {
          return absl::OkStatus();
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        }
      }
    
      // Since we might have inserted and removed nodes from the graph, fix
      // source/sink edges and reconstruct the RPO ordering of nodes
      FixupSourceAndSinkEdges(graph_.get());
    
      // Prune nodes in the graph that are not reachable from the output.
      if (specs_.prune_unused_nodes) {
        std::unordered_set<const Node*> prune_start;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top