Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 104 for fp2147483647 (0.26 sec)

  1. src/math/big/float_test.go

    		{4, ToZero, '+', "0x.fp2147483647", "0x.8p2147483643", "0x.fp+2147483647", Below}, // rounded to zero
    		{4, ToNearestEven, '+', "0x.fp2147483647", "0x.8p2147483643", "+Inf", Above},      // exponent overflow in rounding
    		{4, AwayFromZero, '+', "0x.fp2147483647", "0x.8p2147483643", "+Inf", Above},       // exponent overflow in rounding
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  2. src/math/big/floatconv_test.go

    		{"1e-646456994", defaultRound, 64, 'p', 0, "0"},
    		{"1e-1000000000", defaultRound, 64, 'p', 0, "0"},
    
    		// minimum and maximum values
    		{"1p2147483646", defaultRound, 64, 'p', 0, "0x.8p+2147483647"},
    		{"0x.8p2147483647", defaultRound, 64, 'p', 0, "0x.8p+2147483647"},
    		{"0x.8p-2147483647", defaultRound, 64, 'p', 0, "0x.8p-2147483647"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/tests/bridge/convert_tf_quant_ops_to_mhlo.mlir

          lhs_quantization_max_val = 2147483647 : i64,
          rhs_quantization_axis = -1 : i64,
          rhs_quantization_min_val = -2147483648 : i64,
          rhs_quantization_max_val = 2147483647 : i64,
          output_quantization_axis = -1 : i64,
          output_quantization_min_val = -2147483648 : i64,
          output_quantization_max_val = 2147483647 : i64} : (
            tensor<3x2x!tf_type.qint32>, tensor<2x!tf_type.qint32>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/arithBoundary_test.go

    	itd32{a: 2147483647, b: -2147483648, add: -1, sub: -1, mul: -2147483648, div: 0, mod: 2147483647},
    	itd32{a: 2147483647, b: -2147483647, add: 0, sub: -2, mul: -1, div: -1, mod: 0},
    	itd32{a: 2147483647, b: -1, add: 2147483646, sub: -2147483648, mul: -2147483647, div: -2147483647, mod: 0},
    	itd32{a: 2147483647, b: 0, add: 2147483647, sub: 2147483647, mul: 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 31.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java

        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer depth;
    
        @Min(value = 0)
        @Max(value = 9223372036854775807L)
        @ValidateTypeFailure
        public Long maxAccessCount;
    
        @Required
        @Size(max = 200)
        public String userAgent;
    
        @Required
        @Min(value = 1)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer numOfThread;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/CreateForm.java

        public String configParameter;
    
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer depth;
    
        @Min(value = 0)
        @Max(value = 9223372036854775807L)
        @ValidateTypeFailure
        public Long maxAccessCount;
    
        @Required
        @Min(value = 1)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer numOfThread;
    
        @Required
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. api/go1.17.txt

    pkg math (linux-arm), const MaxInt = 2147483647
    pkg math (linux-arm), const MaxUint = 4294967295
    pkg math (linux-arm), const MinInt = -2147483648
    pkg math (linux-arm-cgo), const MaxInt = 2147483647
    pkg math (linux-arm-cgo), const MaxUint = 4294967295
    pkg math (linux-arm-cgo), const MinInt = -2147483648
    pkg math (netbsd-386), const MaxInt = 2147483647
    pkg math (netbsd-386), const MaxUint = 4294967295
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 18K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/testdata/arithConst_test.go

    	test_int32{fn: add_0_int32, fnname: "add_0_int32", in: 2147483647, want: 2147483647},
    	test_int32{fn: add_int32_0, fnname: "add_int32_0", in: 2147483647, want: 2147483647},
    	test_int32{fn: add_1_int32, fnname: "add_1_int32", in: -2147483648, want: -2147483647},
    	test_int32{fn: add_int32_1, fnname: "add_int32_1", in: -2147483648, want: -2147483647},
    	test_int32{fn: add_1_int32, fnname: "add_1_int32", in: -2147483647, want: -2147483646},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 633.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library_uniform_quantized.mlir

            lhs_quantization_min_val = -2147483648,
            lhs_quantization_max_val = 2147483647,
            rhs_quantization_axis = -1,
            rhs_quantization_min_val = -2147483648,
            rhs_quantization_max_val = 2147483647,
            output_quantization_axis = -1,
            output_quantization_min_val = -2147483648,
            output_quantization_max_val = 2147483647,
            T = "tfdtype$DT_QINT32",
            attr_map = ""
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 29 01:13:58 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/legalize_tf_quant_test.cc

            quantization_axis = -1 : i64, quantization_min_val = -2147483648 : i64, quantization_max_val = 2147483647 : i64
          } : (tensor<2x2xf32>, tensor<f32>, tensor<i32>) -> tensor<2x2x!tf_type.qint32>
          %qmax = "tf.UniformQuantize"(%max, %scales, %zps) {
            quantization_axis = -1 : i64, quantization_min_val = -2147483648 : i64, quantization_max_val = 2147483647 : i64
          } : (tensor<f32>, tensor<f32>, tensor<i32>) -> tensor<!tf_type.qint32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 18:43:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top