Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 199 for addRow (0.11 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/ops/stablehlo_op_quant_spec_test.cc

      ASSERT_TRUE(module_op);
    
      auto test_func = module_op->lookupSymbol<func::FuncOp>("constant_add");
      ASSERT_THAT(test_func, NotNull());
    
      auto add_op = FindOperationOfType<mlir::stablehlo::AddOp>(test_func);
      EXPECT_FALSE(IsOpQuantizableStableHlo(add_op));
    }
    
    TEST_F(IsOpQuantizableStableHloTest, ValidXlaCallModuleOpQuantizable) {
      OwningOpRef<ModuleOp> module_op =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        block->addArguments({type, type}, SmallVector<Location, 2>(2, loc));
        auto add_op = builder.create<AddOp>(loc, block->getArgument(0),
                                            block->getArgument(1));
        builder.create<ReturnOp>(loc, add_op.getResult());
      }
    };
    
    class ConvertTensorScatterSubOp
        : public ConvertTensorScatterOp<ConvertTensorScatterSubOp,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  3. pkg/kubelet/prober/scale_test.go

    							Running: &v1.ContainerStateRunning{
    								StartedAt: metav1.Now(),
    							},
    						},
    						Started: utilpointer.Bool(true),
    					})
    				}
    				podManager.AddPod(&pod)
    				m.statusManager.SetPodStatus(&pod, pod.Status)
    				m.AddPod(&pod)
    			}
    			t.Logf("Adding %d pods with %d containers each in %v", numTestPods, numContainers, time.Since(now))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 16:33:01 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. plugin/pkg/auth/authorizer/node/graph.go

    	})
    	g.destinationEdgeIndex[n.ID()] = index
    }
    
    // AddPod should only be called once spec.NodeName is populated.
    // It sets up edges for the following relationships (which are immutable for a pod once bound to a node):
    //
    //	pod       -> node
    //	secret    -> pod
    //	configmap -> pod
    //	pvc       -> pod
    //	svcacct   -> pod
    func (g *Graph) AddPod(pod *corev1.Pod) {
    	start := time.Now()
    	defer func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/addons/dns/dns_test.go

    		wantErr        bool
    	}{
    		{
    			name:           "one coredns addon deployment",
    			deploymentSize: 1,
    			want:           2,
    			wantErr:        false,
    		},
    		{
    			name:           "no coredns addon deployment",
    			deploymentSize: 0,
    			want:           5,
    			wantErr:        false,
    		},
    		{
    			name:           "multiple coredns addon deployments",
    			deploymentSize: 3,
    			want:           5,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/cycle_state.go

    type StateData interface {
    	// Clone is an interface to make a copy of StateData. For performance reasons,
    	// clone should make shallow copies for members (e.g., slices or maps) that are not
    	// impacted by PreFilter's optional AddPod/RemovePod methods.
    	Clone() StateData
    }
    
    // StateKey is the type of keys stored in CycleState.
    type StateKey string
    
    // CycleState provides a mechanism for plugins to store and retrieve arbitrary data.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 06:48:20 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints_test.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tsl/platform/status_matchers.h"
    
    namespace mlir::quant {
    namespace {
    
    using ::mlir::stablehlo::AddOp;
    using ::mlir::stablehlo::ConstantOp;
    using ::mlir::stablehlo::ConvolutionOp;
    using ::mlir::stablehlo::DotGeneralOp;
    using ::mlir::stablehlo::SubtractOp;
    using ::testing::ElementsAreArray;
    using ::testing::Eq;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/arm64error.s

    	ADDSW	$0xff, R6, RSP                                   // ERROR "illegal destination register"
    	ADDSW	$0xffff0, R6, RSP                                // ERROR "illegal destination register"
    	ADDSW	$0x1000100010001000, R6, RSP                     // ERROR "illegal destination register"
    	ADDSW	$0x10001000100011, R6, RSP                       // ERROR "illegal destination register"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 37.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/addons/proxy/proxy.go

    	kubeadmutil "k8s.io/kubernetes/cmd/kubeadm/app/util"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/apiclient"
    )
    
    const (
    	// KubeProxyServiceAccountName describes the name of the ServiceAccount for the kube-proxy addon
    	KubeProxyServiceAccountName = "kube-proxy"
    
    	// KubeProxyConfigMapRoleName sets the name of ClusterRole for ConfigMap
    	KubeProxyConfigMapRoleName = "kube-proxy"
    )
    
    // EnsureProxyAddon creates the kube-proxy addons
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 13:23:44 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/riscv64/asm.go

    		}
    
    		lui := int64(uint32(val))
    		addiw := int64(uint32(val >> 32))
    
    		lui = (lui &^ riscv.UTypeImmMask) | int64(uint32(luiImm))
    		addiw = (addiw &^ riscv.ITypeImmMask) | int64(uint32(addiwImm))
    
    		return addiw<<32 | lui, 0, true
    
    	case objabi.R_RISCV_BRANCH:
    		pc := ldr.SymValue(s) + int64(r.Off())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top