Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for func_name_attrs (0.15 sec)

  1. tensorflow/compiler/jit/encapsulate_util.h

      // the constructor definitions again.
      XlaClusterInfo() {}
      XlaClusterInfo(const string& cluster_name,
                     const NameAttrList& func_name_attrs, Node* node,
                     const std::map<string, int>& host_compute_core)
          : cluster_name(cluster_name),
            func_name_attrs(func_name_attrs),
            node(node),
            host_compute_core(host_compute_core) {}
      // XLA cluster name. It might be different from `func_name`.
    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/extract_outside_compilation_pass.h

    //   `RewriteOutsideCompilationSubgraphFn`.
    // xla_cluster_name: XLA cluster name for this XLA computation. We need it
    //   because XLA cluster name might be different from `func_name`.
    // func_name_attrs: they will be used to instantiate the XLA computation func.
    // new_func_name: new function name for rewritten XLA computation func.
    // host_compute_core: mapping from outside compilation cluster name to XLA
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        const NameAttrList& func_name_attrs, const string& new_func_name,
        const string& host_graph_func_name,
        const std::map<string, int>& host_compute_core, FunctionLibraryRuntime* flr,
        FunctionLibraryDefinition* fld, std::vector<string>* shape_inference_graphs,
        bool* has_outside_compilation) {
      // Convert the function to graph.
      const string& func_name = func_name_attrs.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)
  4. tensorflow/compiler/jit/extract_outside_compilation_pass_test.cc

      }
    
      Status ExtractOutsideCompilationTest(
          const string &xla_cluster_attr_name,
          const string &outside_compilation_attr_name,
          const string &xla_cluster_name, const NameAttrList &func_name_attrs,
          const string &new_func_name, const string &host_graph_func_name,
          const std::map<string, int> &host_compute_core,
          FunctionLibraryDefinition *fld,
          std::vector<string> *shape_inference_graphs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 41K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

          }
        }
        if (!xla_computation_node) {
          return errors::Internal("Cannot find node ", func);
        }
        NameAttrList func_name_attrs;
        func_name_attrs.set_name(func);
        clusters.emplace(func,
                         XlaClusterInfo{func, func_name_attrs, xla_computation_node,
                                        std::map<string, int>{}});
      }
      bool modified;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_quantize_op.cc

      symbol_table.insert(quantization_func);
    
      FlatSymbolRefAttr func_name_attr =
          FlatSymbolRefAttr::get(rewriter.getStringAttr(func_name));
    
      rewriter.restoreInsertionPoint(original_point);
    
      auto quantize_call = rewriter.create<TF::PartitionedCallOp>(
          quantized_op->getLoc(), quantize_result_type, input, func_name_attr,
          /*config=*/"", /*config_proto=*/"", /*executor_type=*/"");
      return quantize_call;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top