Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,211 for float1 (0.16 sec)

  1. tensorflow/c/kernels/ops/bitcast.cc

      TF_OpDefinitionBuilderAddAttr(
          op_builder,
          "T: {bfloat16, half, float, double, int64, int32, uint8, uint16, "
          "uint32, uint64, int8, int16, complex64, complex128, qint8, quint8, "
          "qint16, quint16, qint32}");
      TF_OpDefinitionBuilderAddAttr(
          op_builder,
          "type: {bfloat16, half, float, double, int64, int32, uint8, uint16, "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 07:51:50 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. api/go1.22.txt

    pkg log/slog, func SetLogLoggerLevel(Level) Level #62418
    pkg math/big, method (*Rat) FloatPrec() (int, bool) #50489
    pkg math/rand/v2, func ExpFloat64() float64 #61716
    pkg math/rand/v2, func Float32() float32 #61716
    pkg math/rand/v2, func Float64() float64 #61716
    pkg math/rand/v2, func Int() int #61716
    pkg math/rand/v2, func Int32() int32 #61716
    pkg math/rand/v2, func Int32N(int32) int32 #61716
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 20:54:27 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. src/internal/reflectlite/all_test.go

    	{[][]int{{1}}, [][]int{{2}}, false},
    	{math.NaN(), math.NaN(), false},
    	{&[1]float64{math.NaN()}, &[1]float64{math.NaN()}, false},
    	{&[1]float64{math.NaN()}, self{}, true},
    	{[]float64{math.NaN()}, []float64{math.NaN()}, false},
    	{[]float64{math.NaN()}, self{}, true},
    	{map[float64]float64{math.NaN(): 1}, map[float64]float64{1: 2}, false},
    	{map[float64]float64{math.NaN(): 1}, self{}, true},
    
    	// Nil vs empty: not the same.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:26:08 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/dec.rules

    (Load <t> ptr mem) && t.IsComplex() && t.Size() == 8 =>
      (ComplexMake
        (Load <typ.Float32> ptr mem)
        (Load <typ.Float32>
          (OffPtr <typ.Float32Ptr> [4] ptr)
          mem)
        )
    (Store {t} dst (ComplexMake real imag) mem) && t.Size() == 8 =>
      (Store {typ.Float32}
        (OffPtr <typ.Float32Ptr> [4] dst)
        imag
        (Store {typ.Float32} dst real mem))
    (Load <t> ptr mem) && t.IsComplex() && t.Size() == 16 =>
      (ComplexMake
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    			return []string{"-mabi=64", "-mhard-float"}
    		} else if gomips64 == "softfloat" {
    			return []string{"-mabi=64", "-msoft-float"}
    		}
    	case "mips", "mipsle":
    		if gomips == "hardfloat" {
    			return []string{"-mabi=32", "-mfp32", "-mhard-float", "-mno-odd-spreg"}
    		} else if gomips == "softfloat" {
    			return []string{"-mabi=32", "-msoft-float"}
    		}
    	case "loong64":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. logger/sql.go

    				vars[idx] = escaper + "<binary>" + escaper
    			}
    		case int, int8, int16, int32, int64, uint, uint8, uint16, uint32, uint64:
    			vars[idx] = utils.ToString(v)
    		case float32:
    			vars[idx] = strconv.FormatFloat(float64(v), 'f', -1, 32)
    		case float64:
    			vars[idx] = strconv.FormatFloat(v, 'f', -1, 64)
    		case string:
    			vars[idx] = escaper + strings.ReplaceAll(v, escaper, escaper+escaper) + escaper
    		default:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 21 08:00:02 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. src/go/types/eval_test.go

    			/* d/c => 1, int */
    			/* c/2 => 3/2, untyped float */
    			/* m.Pi < m.E => false, untyped bool */
    		}
    		`,
    		`
    		package p
    		/* c => 3, untyped float */
    		type T1 /* T1 => , p.T1 */ struct {}
    		var v1 /* v1 => , int */ = 42
    		func /* f1 => , func(v1 float64) */ f1(v1 float64) {
    			/* f1 => , func(v1 float64) */
    			/* v1 => , float64 */
    			var c /* c => 3, untyped float */ = "foo" /* c => , string */
    			{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 19:56:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. src/math/rand/v2/rand.go

    }
    
    // Float64 returns, as a float64, a pseudo-random number in the half-open interval [0.0,1.0)
    // from the default Source.
    func Float64() float64 { return globalRand.Float64() }
    
    // Float32 returns, as a float32, a pseudo-random number in the half-open interval [0.0,1.0)
    // from the default Source.
    func Float32() float32 { return globalRand.Float32() }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:25:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// Move values between int and float registers, with no conversion.
    		// TODO: should we have generic versions of these?
    		{name: "MOVQi2f", argLength: 1, reg: gpfp, typ: "Float64"}, // move 64 bits from int to float reg
    		{name: "MOVQf2i", argLength: 1, reg: fpgp, typ: "UInt64"},  // move 64 bits from float to int reg
    		{name: "MOVLi2f", argLength: 1, reg: gpfp, typ: "Float32"}, // move 32 bits from int to float reg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  10. src/encoding/gob/type_test.go

    }
    
    // This structure has pointers and refers to itself, making it a good test case.
    type Foo struct {
    	A int
    	B int32 // will become int
    	C string
    	D []byte
    	E *float64    // will become float64
    	F ****float64 // will become float64
    	G *Bar
    	H *Bar // should not interpolate the definition of Bar again
    	I *Foo // will not explode
    }
    
    func TestStructType(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:26:13 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top