Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PreprocessEdgesBetweenOutsideCompilations (0.77 sec)

  1. tensorflow/compiler/jit/encapsulate_util.h

    //    in `PreprocessEdgesBetweenOutsideCompilations` step 2).
    // 2a. Reconnect control edges between different outside compilations (marked by
    //     `PreprocessEdgesBetweenOutsideCompilations` step 1a).
    // Notice that control edges marked by
    // `PreprocessEdgesBetweenOutsideCompilations` step 1b are not handled here.
    // They are handled in `RewriteOutsideCompilationSubgraphFn`.
    Status PostprocessEdgesBetweenOutsideCompilations(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_util.cc

    template <typename T>
    void ReplaceAttr(Node* n, const string& attr_name, const T& value) {
      n->ClearAttr(attr_name);
      n->AddAttr(attr_name, value);
    }
    
    // Step 1 for `PreprocessEdgesBetweenOutsideCompilations`. See comments of
    // `PreprocessEdgesBetweenOutsideCompilations` for details.
    Status PreprocessControlEdgesBetweenOutsideCompilations(
        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)
  3. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        // Preprocess edges between different outside compilations. They will be
        // restored in `ConstructHostGraph()`.
        TF_RETURN_IF_ERROR(PreprocessEdgesBetweenOutsideCompilations(
            fbody->graph, outside_compilation_attr_name));
    
        // Encapsulate outside_compilation cluster into function call node.
    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