Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 440 for Scalar (0.19 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types_jsonschema.go

    	// be a scalar typed field of the child structure (no nesting is supported).
    	XListMapKeys []string
    
    	// x-kubernetes-list-type annotates an array to further describe its topology.
    	// This extension must only be used on lists and may have 3 possible values:
    	//
    	// 1) `atomic`: the list is treated as a single entity, like a scalar.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  2. tensorflow/c/kernels_experimental.cc

      }
    
      auto* ctx = reinterpret_cast<TF_OpKernelContext*>(cc_ctx);
      if (cc_a.dtype() == ::tensorflow::DT_VARIANT) {
        return VariantBinaryAddFunc(
            cc_ctx, cc_a.scalar<Variant>()(), cc_b.scalar<Variant>()(),
            cc_out->scalar<Variant>().data(), binary_add_func);
      } else {
        binary_add_func(ctx, a, b, out);
        return cc_ctx->status();
      }
    }
    
    static Status VariantBinaryAddFunc(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:12:29 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/lift_tflite_flex_ops.cc

          }
        }
    
        // Special type fixes for scalar tensor types.
        // TFLite flatbuffer schema doesn't distinguish scalar tensor shapes
        // and unranked tensor shapes (i.e. they are both represented as an empty
        // INT32 list), see b/138865275. MLIR importer conservatively treats them as
        // unranked tensor types. Here we set them to scalar tensor types when it is
        // safe.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/noderesources/balanced_allocation_test.go

    				{Name: string(v1.ResourceMemory), Weight: 1},
    				{Name: "nvidia.com/gpu", Weight: 1},
    			}},
    			runPreScore: true,
    		},
    		// Only one node (node1) has the scalar resource, pod doesn't request the scalar resource and the scalar resource should be skipped for consideration.
    		// Node1: std = 0, score = 100
    		// Node2: std = 0, score = 100
    		{
    			pod:          st.MakePod().Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  5. src/crypto/ed25519/ed25519.go

    		panic("ed25519: bad seed length: " + strconv.Itoa(l))
    	}
    
    	h := sha512.Sum512(seed)
    	s, err := edwards25519.NewScalar().SetBytesWithClamping(h[:32])
    	if err != nil {
    		panic("ed25519: internal error: setting scalar failed")
    	}
    	A := (&edwards25519.Point{}).ScalarBaseMult(s)
    
    	publicKey := A.Bytes()
    
    	copy(privateKey, seed)
    	copy(privateKey[32:], publicKey)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    		},
    		"removed only": {
    			Original: `{"name":"foo","scalar":true,"complex":{"nested":true}}`,
    			Current:  `{"name":"foo","scalar":true,"complex":{"nested":true},"array":[1,2,3]}`,
    			Modified: `{"name":"foo"}`,
    
    			ExpectedTwoWay:         `{"complex":null,"scalar":null}`,
    			ExpectedTwoWayResult:   `{"name":"foo"}`,
    			ExpectedThreeWay:       `{"complex":null,"scalar":null}`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_arith_ops_folder.h

                                      ShapedType result_ty) -> bool {
        // Scalar identity is broadcastable to any operand shape, we only need to
        // check that operand has the same shape as a result.
        bool scalar_identity = identity_ty.hasRank() && identity_ty.getRank() == 0;
        if (scalar_identity) return operand_ty == result_ty;
    
        // If identity is not a scalar, we must verify that identity shape is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/ops.h

      /// construct an Initializer. Initializer stores the value it got constructed
      /// with in a Tensor object.
      struct Initializer {
        /// Construct from a scalar value of an arithmetic type or a type that can
        /// be converted to a string (eg. a string literal).
        template <typename T, typename = typename std::enable_if<
                                  std::is_arithmetic<T>::value ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. tensorflow/c/c_api_experimental_test.cc

      TFE_OpSetAttrType(fill_op, "T", TF_FLOAT);
      TFE_OpSetAttrType(fill_op, "Tshape", TF_INT32);
    
      float five = 5.0;
      TFE_TensorHandle* scalar = TestScalarTensorHandle(tfe_context_, five);
      TF_Tensor* scalarTensor = TFE_TensorHandleResolve(scalar, status_);
      CHECK_EQ(TF_OK, TF_GetCode(status_)) << TF_Message(status_);
      CheckOutputShapes(fill_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 17 22:27:52 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. src/internal/pkgbits/encoder.go

    // bitstream.
    func (w *Encoder) Value(val constant.Value) {
    	w.Sync(SyncValue)
    	if w.Bool(val.Kind() == constant.Complex) {
    		w.scalar(constant.Real(val))
    		w.scalar(constant.Imag(val))
    	} else {
    		w.scalar(val)
    	}
    }
    
    func (w *Encoder) scalar(val constant.Value) {
    	switch v := constant.Val(val).(type) {
    	default:
    		errorf("unhandled %v (%v)", val, val.Kind())
    	case bool:
    		w.Code(ValBool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 10 23:26:58 UTC 2022
    - 9.6K bytes
    - Viewed (0)
Back to top