Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for FixupSourceAndSinkEdges (0.28 sec)

  1. tensorflow/compiler/jit/deadness_analysis_test.cc

    using deadness_analysis_internal::ComputePredicates;
    using deadness_analysis_internal::PredicateMapTy;
    
    Status AnalyzeDeadness(Graph* graph,
                           std::unique_ptr<DeadnessAnalysis>* result) {
      FixupSourceAndSinkEdges(graph);
      return DeadnessAnalysis::Run(*graph, result);
    }
    
    ops::Switch CreateSwitch(const Scope& root, const string& prefix) {
      Output value = ops::Placeholder(root.WithOpName(prefix + "/value"), DT_FLOAT);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      Scope root = Scope::NewRootScope().ExitOnError();
    
      Node* read = MakeRead(root, "R");
      Node* write = MakeWrite(root, "W");
    
      root.graph()->AddControlEdge(read, write);
    
      FixupSourceAndSinkEdges(root.graph());
      std::unique_ptr<Graph> graph(new Graph(OpRegistry::Global()));
      TF_EXPECT_OK(root.ToGraph(graph.get()));
      TF_ASSERT_OK(MarkForCompilationPassTestHelper::MarkForCompilation(&graph));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      TF_RETURN_IF_ERROR(CopySubgraphEdges(node_images, &src_arg_pairs));
      MarkGuaranteedConstants(*graph_in_, src_arg_pairs);
    
      for (auto& entry : subgraphs_) {
        Subgraph& subgraph = entry.second;
        FixupSourceAndSinkEdges(subgraph.GetGraph());
      }
    
      if (VLOG_IS_ON(1)) {
        // Dump subgraphs.
        for (auto& entry : subgraphs_) {
          DumpGraphToFile(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  4. 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)
Back to top