Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 99 of 99 for initAt (0.14 sec)

  1. tensorflow/compiler/jit/device_compiler_test.cc

      TF_EXPECT_OK(NodeDefBuilder("identity_op", "Identity")
                       .Input(FakeInput(DT_FLOAT))
                       .Attr("T", DT_FLOAT)
                       .Finalize(node_def()));
      TF_EXPECT_OK(InitOp());
      AddInputFromArray<float>(TensorShape({1, 2}), {6.9, 4.2});
      TF_EXPECT_OK(RunOpKernel());
    
      auto xla_device_compiler = CreateXlaDeviceCompiler();
      core::ScopedUnref xla_device_compiler_ref(xla_device_compiler);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/vhlo.mlir

    //CHECK-NEXT:    }) : (tensor<448xf32>, tensor<448xi32>) -> (tensor<448xf32>, tensor<448xi32>) 
    //CHECK-NEXT: return %0#0 : tensor<448xf32>
    //CHECK-NEXT:}
    
    func.func @while(%init_i: tensor<i64>, %init_sum: tensor<i64>) -> tensor<i64>{
      %0, %1 = "vhlo.while_v1"(%init_i, %init_sum) ({
        ^bb0(%arg0: tensor<i64>, %arg1: tensor<i64>):
          %cond = "vhlo.compare_v1"(%arg0, %arg1) {
            comparison_direction = #vhlo<comparison_direction_v1 LT>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  3. cluster/common.sh

        # shellcheck disable=SC2154
        echo "${ca_key}" | base64 --decode > ca-key.pem
      fi
    
      if [[ ! -r "ca.pem" || ! -r "ca-key.pem" ]]; then
        ${CFSSL_BIN} gencert -initca ca-csr.json | ${CFSSLJSON_BIN} -bare ca -
      fi
    
      case "${type_cert}" in
        client)
          echo "Generate client certificates..."
          echo '{"CN":"client","hosts":["*"],"key":{"algo":"ecdsa","size":256}}' \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    	sync := make(chan struct{})
    	// Polls indefinitely in an attempt to initialize the distributed claims
    	// verifier, or until context canceled.
    	initFn := func(ctx context.Context) (done bool, err error) {
    		klog.V(4).Infof("oidc authenticator: attempting init: iss=%v", iss)
    		v, err := initVerifier(ctx, c, iss, audiences)
    		if err != nil {
    			klog.Errorf("oidc authenticator: async token verifier for issuer: %q: %v", iss, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  5. tensorflow/c/kernels_test.cc

        OpsTestBase::SetDevice(DEVICE_GPU, std::move(device));
    #endif
        TF_ASSERT_OK(NodeDefBuilder(op_name, op_name).Finalize(node_def()));
        TF_ASSERT_OK(InitOp());
      }
    
    #if GOOGLE_CUDA || TENSORFLOW_USE_ROCM
      const char* device_name_ = tensorflow::DEVICE_GPU;
    #else
      const char* device_name_ = tensorflow::DEVICE_CPU;
    #endif
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          inst->emitOpError("is not a supported TFLite op");
          return std::nullopt;
        }
    
        if (*builtin_code == tflite::BuiltinOperator_CALL_ONCE) {
          if (auto initOp = dyn_cast<mlir::TFL::CallOnceOp>(inst)) {
            return BuildCallOnceOperator(initOp, operands, results);
          }
        }
    
        std::string op_name = inst->getName().getStringRef().str();
        uint32_t opcode_index = GetOpcodeIndex(op_name, *builtin_code);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    		t.Errorf("timeout after %v", wait.ForeverTestTimeout)
    	}
    }
    
    func RunTestWatcherTimeout(ctx context.Context, t *testing.T, store storage.Interface) {
    	// initialRV is used to initate the watcher at the beginning of the world.
    	podList := example.PodList{}
    	options := storage.ListOptions{
    		Predicate: storage.Everything,
    		Recursive: true,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers_test.go

    		expect []metav1.TableRow
    	}{
    		{
    			// Test pod has 2 restartable init containers, the first one running but not started.
    			api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "test1"},
    				Spec: api.PodSpec{
    					InitContainers: []api.Container{
    						{Name: "restartable-init-1", RestartPolicy: &containerRestartPolicyAlways},
    						{Name: "restartable-init-2", RestartPolicy: &containerRestartPolicyAlways},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation_test.go

    			},
    			RestartPolicy: core.RestartPolicyAlways,
    			DNSPolicy:     core.DNSClusterFirst,
    		},
    		"disallowed resources resize policy for init containers": {
    			InitContainers: []core.Container{{
    				Name:  "initctr",
    				Image: "initimage",
    				ResizePolicy: []core.ContainerResizePolicy{
    					{ResourceName: "cpu", RestartPolicy: "NotRequired"},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top