Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PostprocessEdgesBetweenOutsideCompilations (0.36 sec)

  1. tensorflow/compiler/jit/encapsulate_util.cc

            edges[j].dst_node_id = dst_replace_node->id();
          }
        }
      }
      return absl::OkStatus();
    }
    
    // Step 1 for `PostprocessEdgesBetweenOutsideCompilations`. See comments of
    // `PostprocessEdgesBetweenOutsideCompilations` for details.
    Status PostprocessDataEdgesBetweenOutsideCompilations(
        Graph* g, const string& outside_compilation_attr_name) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_util.h

    // Notice that control edges marked by
    // `PreprocessEdgesBetweenOutsideCompilations` step 1b are not handled here.
    // They are handled in `RewriteOutsideCompilationSubgraphFn`.
    Status PostprocessEdgesBetweenOutsideCompilations(
        Graph* g, const string& outside_compilation_attr_name);
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

          host_graph->get(),
          std::unordered_set<const Node*>{(*host_graph)->sink_node()});
    
      // Postprocess edges between different outside compilations.
      TF_RETURN_IF_ERROR(PostprocessEdgesBetweenOutsideCompilations(
          host_graph->get(), outside_compilation_attr_name));
    
      // Postprocess lifted arg nodes.
      TF_RETURN_IF_ERROR(PostprocessLiftedArgs(host_graph->get(), fld));
    
      if (VLOG_IS_ON(4)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
Back to top