Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 157 for op_names (0.17 sec)

  1. tensorflow/compiler/jit/tests/auto_clustering_test_helper.cc

      // cluster_id -> (operation name -> # of operations)
      const int kNoCluster = -1;
      std::map<int, std::map<string, int>> clusters;
      std::map<int, int> cluster_size;
      int clustered_nodes = 0;
      for (Node* n : graph.op_nodes()) {
        int cluster = kNoCluster;
        if (std::optional<absl::string_view> maybe_cluster =
                GetXlaClusterForNode(*n)) {
          maybe_cluster->remove_prefix(absl::string_view("cluster_").size());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 12:11:46 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/core.go

    	cloudnodelifecyclecontroller "k8s.io/cloud-provider/controllers/nodelifecycle"
    	routecontroller "k8s.io/cloud-provider/controllers/route"
    	servicecontroller "k8s.io/cloud-provider/controllers/service"
    	cpnames "k8s.io/cloud-provider/names"
    	"k8s.io/component-base/featuregate"
    	"k8s.io/controller-manager/controller"
    	csitrans "k8s.io/csi-translation-lib"
    	"k8s.io/kubernetes/cmd/kube-controller-manager/names"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_operator.h

    // number of input operands could vary. This function gets the min/max number of
    // operands from tflite op name.
    llvm::MinMax OperandNumbersMinMax(llvm::StringRef op_name);
    
    // Populates the `custom_code` and `custom_options` to attributes.
    // `custom_code` is used to identify CustomOp.
    // `custom_options` are opaque attribute used to store infomations for this
    // custom op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 21:00:09 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/build_xla_ops_pass_test.cc

      std::unique_ptr<Graph> graph;
      TF_ASSERT_OK(BuildXlaOps(root, fdef_lib, &graph));
    
      Node* stateful_partitioned_call_op = nullptr;
      for (Node* n : graph->op_nodes()) {
        if (n->type_string() == "StatefulPartitionedCall") {
          ASSERT_EQ(stateful_partitioned_call_op, nullptr);
          stateful_partitioned_call_op = n;
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. tensorflow/c/kernels.h

    // some reason, the kernel builder will not be registered, the caller should
    // delete it with TF_DeleteKernelBuilder.
    TF_CAPI_EXPORT extern TF_KernelBuilder* TF_NewKernelBuilder(
        const char* op_name, const char* device_name,
        void* (*create_func)(TF_OpKernelConstruction*),
        void (*compute_func)(void*, TF_OpKernelContext*),
        void (*delete_func)(void*));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 22:46:22 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

    }
    
    bool IsInSubgraph(const string& func_id) { return !func_id.empty(); }
    
    Status Encapsulator::CopySubgraphNodes(
        absl::flat_hash_map<const Node*, Node*>* node_images) {
      for (Node* node : graph_in_->op_nodes()) {
        string func_id;
        TF_RETURN_IF_ERROR(GetFunctionNameAttr(node, &func_id));
        if (!IsInSubgraph(func_id)) continue;
    
        Subgraph& subgraph = subgraphs_[func_id];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_types.cc

    auto *mlir_tf_quant_op_count = ::tensorflow::monitoring::Counter<1>::New(
        "/tensorflow/core/tf2xla/tf_quant_op_count" /*metric_name*/,
        "Counts the number of ops that has qint types" /*metric description*/,
        "op_name" /*metric label*/);
    
    // Returns wether a type is illegal. Here we consider TF qint types illegal.
    // See pass description in passes.td for more info about how illegal types are
    // treated in this pass.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/build_xla_ops_pass.cc

      Graph* graph = options.graph->get();
    
      // Copy out the nodes we want to rewrite to avoid modifying the graph while we
      // iterate on graph->op_nodes().
      std::vector<Node*> xla_compiled_kernels;
      absl::c_copy_if(graph->op_nodes(), std::back_inserter(xla_compiled_kernels),
                      [](const Node* n) {
                        if (n->IsSend() || n->IsRecv() || n->IsControlFlow()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

     */
    
    package com.google.common.util.concurrent;
    
    import static com.google.common.base.StandardSystemProperty.JAVA_SPECIFICATION_VERSION;
    import static com.google.common.base.StandardSystemProperty.OS_NAME;
    import static com.google.common.truth.Truth.assertThat;
    import static com.google.common.util.concurrent.MoreExecutors.directExecutor;
    import static java.util.Arrays.asList;
    import static java.util.concurrent.TimeUnit.SECONDS;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  10. src/syscall/zsyscall_windows.go

    	if r1 == socket_error {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func Getsockopt(s Handle, level int32, optname int32, optval *byte, optlen *int32) (err error) {
    	r1, _, e1 := Syscall6(procgetsockopt.Addr(), 5, uintptr(s), uintptr(level), uintptr(optname), uintptr(unsafe.Pointer(optval)), uintptr(unsafe.Pointer(optlen)), 0)
    	if r1 == socket_error {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (1)
Back to top