Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 318 for rounds (0.07 sec)

  1. src/crypto/internal/edwards25519/scalar_fiat.go

    //
    // Bounds: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
    type fiatScalarMontgomeryDomainFieldElement [4]uint64
    
    // The type fiatScalarNonMontgomeryDomainFieldElement is a field element NOT in the Montgomery domain.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 35.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library_tf_drq.mlir

      func.func private @internal_quantize_i8(%input : tensor<*xf32>, %scale : tensor<*xf32>, %zp : tensor<*xi32>) -> tensor<*xi8> {
        // Uses tf.floor(x + 0.5) instead of tf.round(x) since tf.round generates
        // a very expensive pattern.
        %round_cst = "tf.Const"() {value = dense<0.5> : tensor<f32>} : () -> tensor<f32>
        %float_zp = "tf.Cast"(%zp) {Truncate = false} : (tensor<*xi32>) -> tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 15:43:38 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. src/image/png/writer.go

    	// Obviously, negative widths and heights are invalid. Furthermore, the PNG
    	// spec section 11.2.2 says that zero is invalid. Excessively large images are
    	// also rejected.
    	mw, mh := int64(m.Bounds().Dx()), int64(m.Bounds().Dy())
    	if mw <= 0 || mh <= 0 || mw >= 1<<32 || mh >= 1<<32 {
    		return FormatError("invalid image size: " + strconv.FormatInt(mw, 10) + "x" + strconv.FormatInt(mh, 10))
    	}
    
    	var e *encoder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware.go

    		Body:       io.NopCloser(&bytes.Buffer{}),
    		Request:    req,
    	}, nil
    }
    
    // MirrorRequest is a round tripper that can be called to get back the calling request as
    // the core round tripper in a chain.
    var MirrorRequest http.RoundTripper = onewayRoundTripper{}
    
    // NewUpgradeRequestRoundTripper takes two round trippers - one for the underlying TCP connection, and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

    def SameTypeOrDefaultCompare : Constraint<CPred<
      "SameTypeOrDefaultCompare($0, $1)">>;
    
    // Converts a dag of HLOs representing banker rounding (round x.5 to nearest
    // even) to tf.round. This only supports float types because mhlo.floor only
    // supports float types. tf.round with integer input type will become an
    // identity op, so we will never face an mhlo.floor with an integer input type.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. src/slices/slices_test.go

    		{"with negative index", a[:1:1], -1, nil},
    		{"with out-of-bounds index and > cap", a[:1:1], 2, nil},
    		{"with out-of-bounds index and = cap", a[:1:2], 2, nil},
    		{"with out-of-bounds index and < cap", a[:1:3], 2, nil},
    
    		// There are values.
    		{"with negative index", a[:1:1], -1, b[:]},
    		{"with out-of-bounds index and > cap", a[:1:1], 2, b[:]},
    		{"with out-of-bounds index and = cap", a[:1:2], 2, b[:]},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:06 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. src/image/gif/reader.go

    	// imageBounds.Max (d.width, d.height) and not frameBounds.Min (left, top)
    	// against imageBounds.Min (0, 0).
    	if left+width > d.width || top+height > d.height {
    		return nil, errors.New("gif: frame bounds larger than image bounds")
    	}
    	return image.NewPaletted(image.Rectangle{
    		Min: image.Point{left, top},
    		Max: image.Point{left + width, top + height},
    	}, nil), nil
    }
    
    func (d *decoder) readBlock() (int, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. platforms/jvm/java-platform/src/test/java/org/gradle/internal/component/model/JavaEcosystemAttributeMatcherTest.groovy

         * @param requested The requested attributes.
         *
         * @return The single matched variant.
         *
         * @throws AssertionError If the first round of attribute matching failed to match a single configuration
         *      or the second round failed to match a single variant.
         */
        def matchConfigurations(List<List<AttributeContainerInternal>> candidates, AttributeContainerInternal requested) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/fiat/p256_fiat64.go

    //
    // Bounds: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
    type p256MontgomeryDomainFieldElement [4]uint64
    
    // The type p256NonMontgomeryDomainFieldElement is a field element NOT in the Montgomery domain.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 41.2K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/typeparams.go

    func _[T interface{ [10]int }](x T, i int) { _ = x[i]; _ = x[9]; _ = x[10 /* ERROR "out of bounds" */ ] }
    func _[T interface{ [10]byte | string }](x T, i int) { _ = x[i]; _ = x[9]; _ = x[10 /* ERROR "out of bounds" */ ] }
    func _[T interface{ [10]int | *[20]int | []int }](x T, i int) { _ = x[i]; _ = x[9]; _ = x[10 /* ERROR "out of bounds" */ ] }
    
    // indexing with strings and non-variable arrays (assignment not permitted)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:56:58 UTC 2023
    - 15.2K bytes
    - Viewed (0)
Back to top