Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for ffloat32 (0.28 sec)

  1. src/encoding/json/decode_test.go

    	PInt8    *int8
    	PInt16   *int16
    	PInt32   *int32
    	PInt64   *int64
    	PUint    *uint
    	PUint8   *uint8
    	PUint16  *uint16
    	PUint32  *uint32
    	PUint64  *uint64
    	PUintptr *uintptr
    	PFloat32 *float32
    	PFloat64 *float64
    
    	String  string
    	PString *string
    
    	Map   map[string]Small
    	MapP  map[string]*Small
    	PMap  *map[string]Small
    	PMapP *map[string]*Small
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

        lookup_vals = math_ops.cast(
            table.lookup(input_vocabs_placeholder), dtypes.float32
        )
        # shape: (2, ?)
        matmul_input = array_ops_stack.stack([lookup_vals, lookup_vals])
    
        # Create a dummy weight matrix filled with ones.
        weight_row = array_ops.ones(
            shape=array_ops.shape(input_vocabs_placeholder), dtype=dtypes.float32
        )
        # shape: (?, 2)
        weight = array_ops.transpose_v2(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  3. src/math/all_test.go

    }
    
    var vfnextafter32SC = [][2]float32{
    	{0, 0},
    	{0, float32(Copysign(0, -1))},
    	{0, -1},
    	{0, float32(NaN())},
    	{float32(Copysign(0, -1)), 1},
    	{float32(Copysign(0, -1)), 0},
    	{float32(Copysign(0, -1)), float32(Copysign(0, -1))},
    	{float32(Copysign(0, -1)), -1},
    	{float32(NaN()), 0},
    	{float32(NaN()), float32(NaN())},
    }
    var nextafter32SC = []float32{
    	0,
    	0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

            rng.uniform(low=0.0, high=1.0, size=static_input_shape).astype(
                np.float32
            )
        )
    
        def data_gen() -> repr_dataset.RepresentativeDataset:
          for _ in range(100):
            yield {
                'input_tensor': rng.uniform(
                    low=0.0, high=1.0, size=static_input_shape
                ).astype(np.float32)
            }
    
        dataset_path = self.create_tempfile('tfrecord').full_path
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  5. src/math/big/float_test.go

    			z := new(Float).SetPrec(24)
    
    			z.Add(x, y)
    			got, acc := z.Float32()
    			want := float32(y0) + float32(x0)
    			if got != want || acc != Exact {
    				t.Errorf("d = %d: %g + %g = %g (%s); want %g (Exact)", d, x0, y0, got, acc, want)
    			}
    
    			z.Sub(z, y)
    			got, acc = z.Float32()
    			want = float32(want) - float32(y0)
    			if got != want || acc != Exact {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "SCVTFWD", argLength: 1, reg: gpfp, asm: "SCVTFWD"},   // int32 -> float64
    		{name: "UCVTFWS", argLength: 1, reg: gpfp, asm: "UCVTFWS"},   // uint32 -> float32
    		{name: "UCVTFWD", argLength: 1, reg: gpfp, asm: "UCVTFWD"},   // uint32 -> float64
    		{name: "SCVTFS", argLength: 1, reg: gpfp, asm: "SCVTFS"},     // int64 -> float32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  7. src/go/types/api_test.go

    		},
    		{`package reverse4a; var _, _ func([]int, *float32) = g, h; func g[P, Q any]([]P, *Q) {}; func h[R any]([]R, *float32) {}`,
    			[]testInst{
    				{`g`, []string{`int`, `float32`}, `func([]int, *float32)`},
    				{`h`, []string{`int`}, `func([]int, *float32)`},
    			},
    		},
    		{`package reverse4b; func f(_, _ func([]int, *float32)) {}; func g[P, Q any]([]P, *Q) {}; func h[R any]([]R, *float32) {}; func _() { f(g, h) }`,
    			[]testInst{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "CFEBRA", argLength: 1, reg: fpgp, asm: "CFEBRA", clobberFlags: true}, // convert float32 to int32
    		{name: "CGEBRA", argLength: 1, reg: fpgp, asm: "CGEBRA", clobberFlags: true}, // convert float32 to int64
    		{name: "CEFBRA", argLength: 1, reg: gpfp, asm: "CEFBRA", clobberFlags: true}, // convert int32 to float32
    		{name: "CDFBRA", argLength: 1, reg: gpfp, asm: "CDFBRA", clobberFlags: true}, // convert int32 to float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api_test.go

    		},
    		{`package reverse4a; var _, _ func([]int, *float32) = g, h; func g[P, Q any]([]P, *Q) {}; func h[R any]([]R, *float32) {}`,
    			[]testInst{
    				{`g`, []string{`int`, `float32`}, `func([]int, *float32)`},
    				{`h`, []string{`int`}, `func([]int, *float32)`},
    			},
    		},
    		{`package reverse4b; func f(_, _ func([]int, *float32)) {}; func g[P, Q any]([]P, *Q) {}; func h[R any]([]R, *float32) {}; func _() { f(g, h) }`,
    			[]testInst{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  10. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	// Defaults to scheduler.UpdateWorkerSize.
    	nodeUpdateWorkerSize int
    
    	evictionLimiterQPS          float32
    	secondaryEvictionLimiterQPS float32
    	largeClusterThreshold       int32
    	unhealthyZoneThreshold      float32
    
    	nodeUpdateQueue workqueue.TypedInterface[string]
    	podUpdateQueue  workqueue.TypedRateLimitingInterface[podUpdateItem]
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
Back to top