Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 77 for 005 (0.05 sec)

  1. src/math/all_test.go

    	9.6362937071984173e+00,
    	2.9263772392439646e+00,
    	5.2290834314593066e+00,
    	2.7279399104360102e+00,
    	1.8253080916808550e+00,
    	8.6859247685756013e+00,
    }
    var fdim = []float64{
    	4.9790119248836735e+00,
    	7.7388724745781045e+00,
    	0.0000000000000000e+00,
    	0.0000000000000000e+00,
    	9.6362937071984173e+00,
    	2.9263772392439646e+00,
    	5.2290834314593066e+00,
    	2.7279399104360102e+00,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tf_optimize.mlir

      func.return %1 : tensor<1x28x23x2xf32>
      // CHECK: %[[CST:.*]] = "tf.Const{{.*}} dense<
      // CHECK-SAME: [1.000000e+00, 4.000000e+00], [3.000000e+00, 8.000000e+00], [5.000000e+00, 1.200000e+01]
      // CHECK-SAME: [7.000000e+00, 1.600000e+01], [9.000000e+00, 2.000000e+01], [1.100000e+01, 2.400000e+01]
      // CHECK-SAME: [1.300000e+01, 2.800000e+01], [1.500000e+01, 3.200000e+01], [1.700000e+01, 3.600000e+01]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

      return %1 : tensor<1x2x3x5x!quant.uniform<i8:f32, 6.000000e+00:5>>
    }
    
    // CHECK-LABEL: dot_general_srq_to_batch_matmul
    // CHECK-SAME: (%[[ARG_0:.+]]: tensor<1x2x3x4x!quant.uniform<i8:f32, 1.000000e+00:3>>, %[[ARG_1:.+]]: tensor<1x2x4x5x!quant.uniform<i8:f32, 2.000000e+00>>) -> tensor<1x2x3x5x!quant.uniform<i8:f32, 6.000000e+00:5>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-default-attr.pbtxt

    008\241\204\222;l\360\234\270\004\204\202\275\036\360\346\275\206\017/\270\333\312\200\276\3518z>\242\345\262\272j\301l\276\301\310\025\270\261\025t7\000\365\2647n\214\253=\355\014\346;]z\013\277zF\346\270\2471d>\347Z,\276\036`a\276`\232i\275\314e\005\277b\325\342\270\212\345\257\274\241\245\0216\341\333\352==3U\270\217\361\346\272v\006\340\276\032\036G7P\261\237>\372R)>\3029\0136]\367[\273\247\231\313\270\314g\220\273\034\250\253\275%\221\235\267\374\372\220\275\217m\256=\013\2260\274\243!\266>...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:32:15 UTC 2020
    - 12K bytes
    - Viewed (0)
  5. src/internal/buildcfg/cfg.go

    	case "7":
    		g.Version = 7
    	default:
    		Error = fmt.Errorf("invalid GOARM: must start with 5, 6, or 7, and may optionally end in either %q or %q", hardFloatOpt, softFloatOpt)
    		g.Version = int(def[0] - '0')
    	}
    
    	// 5 defaults to softfloat. 6 and 7 default to hardfloat.
    	if !floatSpecified && g.Version == 5 {
    		g.SoftFloat = true
    	}
    	return
    }
    
    type Goarm64Features struct {
    	Version string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. tests/test_path.py

                    }
                ]
            }
        )
    
    
    def test_path_param_gt0_0_05():
        response = client.get("/path/param-gt0/0.05")
        assert response.status_code == 200
        assert response.json() == 0.05
    
    
    def test_path_param_gt0_0():
        response = client.get("/path/param-gt0/0")
        assert response.status_code == 422
        assert response.json() == IsDict(
            {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/const0.go

    )
    
    // constant arithmetic precision and rounding must lead to expected (integer) results
    var _ = []int64{
    	0.0005 * 1e9,
    	0.001 * 1e9,
    	0.005 * 1e9,
    	0.01 * 1e9,
    	0.05 * 1e9,
    	0.1 * 1e9,
    	0.5 * 1e9,
    	1 * 1e9,
    	5 * 1e9,
    }
    
    const _ = unsafe.Sizeof(func() {
    	const _ = 0
    	_ = iota
    
    	const (
    	   zero = iota
    	   one
    	)
    	assert(one == 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/tests/mlrt/while_to_map_fn.mlir

      %cst = "tf.Const"() {device = "/job:localhost/replica:0/task:0/device:CPU:0", value = dense<[1.000000e+00, 2.000000e+00, 3.000000e+00, 4.000000e+00, 5.000000e+00, 6.000000e+00, 7.000000e+00, 8.000000e+00, 9.000000e+00]> : tensor<9xf32>} : () -> tensor<9xf32>
      %cst_0 = "tf.Const"() {device = "/job:localhost/replica:0/task:0/device:CPU:0", value = dense<0> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:40:22 UTC 2024
    - 68.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/debuginfo/v1_1.0_224_frozen.wrong_attr.stack.part.pbtxt

    008\241\204\222;l\360\234\270\004\204\202\275\036\360\346\275\206\017/\270\333\312\200\276\3518z>\242\345\262\272j\301l\276\301\310\025\270\261\025t7\000\365\2647n\214\253=\355\014\346;]z\013\277zF\346\270\2471d>\347Z,\276\036`a\276`\232i\275\314e\005\277b\325\342\270\212\345\257\274\241\245\0216\341\333\352==3U\270\217\361\346\272v\006\340\276\032\036G7P\261\237>\372R)>\3029\0136]\367[\273\247\231\313\270\314g\220\273\034\250\253\275%\221\235\267\374\372\220\275\217m\256=\013\2260\274\243!\266>...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 27 18:59:05 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/debuginfo/v1_1.0_224_frozen.wrong_attr.line.part.pbtxt

    008\241\204\222;l\360\234\270\004\204\202\275\036\360\346\275\206\017/\270\333\312\200\276\3518z>\242\345\262\272j\301l\276\301\310\025\270\261\025t7\000\365\2647n\214\253=\355\014\346;]z\013\277zF\346\270\2471d>\347Z,\276\036`a\276`\232i\275\314e\005\277b\325\342\270\212\345\257\274\241\245\0216\341\333\352==3U\270\217\361\346\272v\006\340\276\032\036G7P\261\237>\372R)>\3029\0136]\367[\273\247\231\313\270\314g\220\273\034\250\253\275%\221\235\267\374\372\220\275\217m\256=\013\2260\274\243!\266>...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 27 18:59:05 UTC 2023
    - 16.2K bytes
    - Viewed (0)
Back to top