Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for _encapsulate (0.13 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

        Node* c = Unary(a, b1.opts().WithName("C").WithAttr("_encapsulate", "F1"));
        Node* d =
            Binary(b, c, b1.opts().WithName("D").WithAttr("_encapsulate", "F1"));
        Node* e = Binary(c, d,
                         b1.opts()
                             .WithName("E")
                             .WithControlInputs({b, d})
                             .WithAttr("_encapsulate", "F1")
                             .WithAttr("_outside", "O1"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        // restored in `ConstructHostGraph()`.
        TF_RETURN_IF_ERROR(PreprocessEdgesBetweenOutsideCompilations(
            fbody->graph, outside_compilation_attr_name));
    
        // Encapsulate outside_compilation cluster into function call node.
        auto rewrite_fn = std::make_unique<RewriteOutsideCompilationSubgraphFn>(
            xla_cluster_attr_name, outside_compilation_attr_name, xla_cluster_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Walks tf_executor::GraphOp and merges individual tf_executor::IslandOps.";
      let description = [{
        This pass performs whole graph analysis for a graph encapsulated into tf_executor::GraphOp.
        The analysis identifies all IslandOps within the graph which could be merged together.
        The goal is to merge as many islands as possible.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        backend.
    
        input:  A list of input tensors whose types are T.
        output: A list of output tensors whose types are T.
    
        call:  Multiple regions, each of which encapsulates the same semantic
               computation but in different forms.
      }];
    
      let arguments = (ins Variadic<AnyTensor>:$input);
    
      let results = (outs Variadic<AnyTensor>:$output);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top