Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for FLOAT64 (0.16 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"NullBool.Bool", Field, 0},
    		{"NullBool.Valid", Field, 0},
    		{"NullByte", Type, 17},
    		{"NullByte.Byte", Field, 17},
    		{"NullByte.Valid", Field, 17},
    		{"NullFloat64", Type, 0},
    		{"NullFloat64.Float64", Field, 0},
    		{"NullFloat64.Valid", Field, 0},
    		{"NullInt16", Type, 17},
    		{"NullInt16.Int16", Field, 17},
    		{"NullInt16.Valid", Field, 17},
    		{"NullInt32", Type, 13},
    		{"NullInt32.Int32", Field, 13},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM64.go

    	// result: (FMOVDfpgp <t> (VUADDLV <typ.Float64> (VCNT <typ.Float64> (FMOVDgpfp <typ.Float64> (ZeroExt16to64 x)))))
    	for {
    		t := v.Type
    		x := v_0
    		v.reset(OpARM64FMOVDfpgp)
    		v.Type = t
    		v0 := b.NewValue0(v.Pos, OpARM64VUADDLV, typ.Float64)
    		v1 := b.NewValue0(v.Pos, OpARM64VCNT, typ.Float64)
    		v2 := b.NewValue0(v.Pos, OpARM64FMOVDgpfp, typ.Float64)
    		v3 := b.NewValue0(v.Pos, OpZeroExt16to64, typ.UInt64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  3. RELEASE.md

            probably silently use `float32` in TensorFlow2, and a warning will be
            issued that starts with Layer "layer-name" is casting an input tensor
            from dtype float64 to the layer's dtype of float32. To fix, either set
            the default dtype to float64 with
            `tf.keras.backend.set_floatx('float64')`, or pass `dtype='float64'` to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        Arg<TF_Int32Tensor, [{int32 `Tensor`.}]>:$arr,
        Arg<TF_Int32Tensor, [{non-negative int32 scalar `Tensor`.}]>:$size,
        Arg<TensorOf<[TF_Float32, TF_Float64, TF_Int32, TF_Int64]>, [{is an int32, int64, float32, or float64 `Tensor` with the same
    shape as `arr`, or a length-0 `Tensor`, in which case it acts as all weights
    equal to 1.}]>:$weights
      );
    
      let results = (outs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewritegeneric.go

    func rewriteValuegeneric_OpCvt32Fto64F(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Cvt32Fto64F (Const32F [c]))
    	// result: (Const64F [float64(c)])
    	for {
    		if v_0.Op != OpConst32F {
    			break
    		}
    		c := auxIntToFloat32(v_0.AuxInt)
    		v.reset(OpConst64F)
    		v.AuxInt = float64ToAuxInt(float64(c))
    		return true
    	}
    	return false
    }
    func rewriteValuegeneric_OpCvt32to32F(v *Value) bool {
    	v_0 := v.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Neg64F x)
    	// result: (PXOR x (MOVSDconst <typ.Float64> [math.Copysign(0, -1)]))
    	for {
    		x := v_0
    		v.reset(OpAMD64PXOR)
    		v0 := b.NewValue0(v.Pos, OpAMD64MOVSDconst, typ.Float64)
    		v0.AuxInt = float64ToAuxInt(math.Copysign(0, -1))
    		v.AddArg2(x, v0)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
Back to top