Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for addRow (0.1 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

      // explicit activation clipping op is not required.
      if (isa<AddOp>(next_op) && gemm_style_op->hasOneUse()) {
        // bias fusion
        CreateAndReturnQuantizedBiasPattern(
            next_op, rewriter, entry_func_op, func_result_type,
            accumulation_quantized_element_type, gemm_style_op);
      } else if (auto add_op = cast_or_null<AddOp>(
                     GetBroadcastedUserOp<AddOp>(gemm_style_op))) {
        // broadcasted bias fusion
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/cache/desired_state_of_world_test.go

    	dsw.AddNode(nodeName)
    	generatedVolumeName1, pod1AddErr := dsw.AddPod(types.UniquePodName(pod1Name), controllervolumetesting.NewPod(pod1Name, pod1Name), volumeSpec, nodeName)
    	if pod1AddErr != nil {
    		t.Fatalf(
    			"AddPod failed for pod %q. Expected: <no error> Actual: <%v>",
    			pod1Name,
    			pod1AddErr)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/chacha20/chacha_generic.go

    		addXor(dst[0:4], src[0:4], x0, c0)
    		addXor(dst[4:8], src[4:8], x1, c1)
    		addXor(dst[8:12], src[8:12], x2, c2)
    		addXor(dst[12:16], src[12:16], x3, c3)
    		addXor(dst[16:20], src[16:20], x4, c4)
    		addXor(dst[20:24], src[20:24], x5, c5)
    		addXor(dst[24:28], src[24:28], x6, c6)
    		addXor(dst[28:32], src[28:32], x7, c7)
    		addXor(dst[32:36], src[32:36], x8, c8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api_unified_experimental_test.cc

      ASSERT_EQ(TF_OK, TF_GetCode(status.get())) << TF_Message(status.get());
    
      // Build an abstract operation.
      auto* add_op = TF_NewAbstractOp(graph_ctx);
      TF_AbstractOpSetOpType(add_op, "Add", status.get());
      ASSERT_EQ(TF_OK, TF_GetCode(status.get())) << TF_Message(status.get());
      TF_AbstractOpSetOpName(add_op, "my_add", status.get());
      ASSERT_EQ(TF_OK, TF_GetCode(status.get())) << TF_Message(status.get());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 21:44:52 UTC 2023
    - 39.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/init_test.go

    			cfg:  &kubeadmapi.ClusterConfiguration{},
    			expectedCfg: &kubeadmapi.ClusterConfiguration{
    				DNS: kubeadmapi.DNS{
    					Disabled: true,
    				},
    				Proxy: kubeadmapi.Proxy{
    					Disabled: true,
    				},
    			},
    			skipPhases:         []string{"addon/coredns", "addon/kube-proxy"},
    			expectedSkipPhases: []string{"addon/coredns", "addon/kube-proxy"},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. cluster/addons/addon-manager/kube-addons.sh

    # This label is deprecated (only for Addon Manager). In future release
    # addon-manager may not respect it anymore. Addons with
    # CLUSTER_SERVICE_LABEL=true and without ADDON_MANAGER_LABEL=EnsureExists
    # will be reconciled for now.
    CLUSTER_SERVICE_LABEL="kubernetes.io/cluster-service"
    
    # Whether only one addon manager should be running in a multi-master setup.
    # Disabling this flag will force all addon managers to assume they are the
    # leaders.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 05:40:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/node/graph_test.go

    		"configmap:ns/cm3":      {"pod:ns/pod2", "pod:ns/pod3"},
    		"serviceAccount:ns/sa1": {"pod:ns/pod2", "pod:ns/pod3"},
    	})
    	expectIndex(map[string][]string{})
    
    	// add two to get above the threshold
    	addPod(1, 1)
    	addPod(4, 1)
    	expectGraph(map[string][]string{
    		"node:node1":            {},
    		"node:node2":            {},
    		"node:node3":            {},
    		"pod:ns/pod1":           {"node:node1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:14:19 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  8. pkg/kubelet/prober/prober_manager_test.go

    	defer cleanup(t, m)
    	if err := expectProbes(m, nil); err != nil {
    		t.Error(err)
    	}
    
    	// Adding a pod with no probes should be a no-op.
    	m.AddPod(&noProbePod)
    	if err := expectProbes(m, nil); err != nil {
    		t.Error(err)
    	}
    
    	// Adding a pod with probes.
    	m.AddPod(&probePod)
    	probePaths := []probeKey{
    		{"probe_pod", "readiness", readiness},
    		{"probe_pod", "liveness", liveness},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  9. pkg/kubelet/prober/prober_manager.go

    // probe (AddPod). The worker periodically probes its assigned container and caches the results. The
    // manager use the cached probe results to set the appropriate Ready state in the PodStatus when
    // requested (UpdatePodStatus). Updating probe parameters is not currently supported.
    type Manager interface {
    	// AddPod creates new probe workers for every container probe. This should be called for every
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/defer_activation_transpose.cc

        return broadcast_in_dim_op.getOperand().getDefiningOp();
      }
      return op;
    }
    
    class DeferActivationTransposeForAddOp : public OpRewritePattern<AddOp> {
     public:
      using OpRewritePattern<AddOp>::OpRewritePattern;
    
      LogicalResult match(AddOp op) const override {
        // Only supports the case for 2D convolution.
        const Value lhs = op.getOperand(0);
        if (!HasRankOf(lhs, /*rank=*/4)) return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top