Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for group_attribute_ (0.34 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

    static const char* const kRetValOp = "_Retval";
    
    class Encapsulator {
     public:
      Encapsulator(string group_attribute, Graph const* graph_in)
          : group_attribute_(std::move(group_attribute)), graph_in_(graph_in) {}
    
      // Find subgraphs marked with 'group_attribute', and build a new
      // subgraph, one for each value of 'group_attribute'.
      Status SplitIntoSubgraphs(FunctionLibraryDefinition* library);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_subgraphs_pass.h

        std::vector<int>* output_permutation, NodeDef* node_def)>
        RewriteSubgraphFn;
    
    // Transformation that finds subgraphs whose nodes are marked with
    // 'group_attribute', splits those subgraphs into functions, and replaces
    // the originals with function calls.
    //
    // 'group_attribute' must be a string valued-attribute that names the new
    // functions to introduce.
    //
    // If 'rewrite_subgraph_fn' is set, it is applied to each subgraph before
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 12 03:59:36 UTC 2022
    - 4.9K bytes
    - Viewed (0)
Back to top