Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for float1 (0.24 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      const int max_T = std::numeric_limits<T>::max();
      const float max_float = std::numeric_limits<float>::max();
    
      const float scale_factor_from_min_side =
          (min_T * min_range > 0) ? min_T / min_range : max_float;
      const float scale_factor_from_max_side =
          (max_T * max_range > 0) ? max_T / max_range : max_float;
    
      const float scale_factor = std::min(scale_factor_from_min_side,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Float).Int64", Method, 5},
    		{"(*Float).IsInf", Method, 5},
    		{"(*Float).IsInt", Method, 5},
    		{"(*Float).MantExp", Method, 5},
    		{"(*Float).MarshalText", Method, 6},
    		{"(*Float).MinPrec", Method, 5},
    		{"(*Float).Mode", Method, 5},
    		{"(*Float).Mul", Method, 5},
    		{"(*Float).Neg", Method, 5},
    		{"(*Float).Parse", Method, 5},
    		{"(*Float).Prec", Method, 5},
    		{"(*Float).Quo", Method, 5},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  3. RELEASE.md

            forward path for data of type `tf.float32` but not for data of type
            `tf.float64` (for which there was no GPU implementation). In this
            current release, GPU support for other floating-point types
            (`tf.float16`, `tf.float64`, `tf.complex64`, and `tf.complex128`) has
            been added for this op. If you were relying on the determinism of the
    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. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Neg32F x)
    	// result: (PXOR x (MOVSSconst <typ.Float32> [float32(math.Copysign(0, -1))]))
    	for {
    		x := v_0
    		v.reset(OpAMD64PXOR)
    		v0 := b.NewValue0(v.Pos, OpAMD64MOVSSconst, typ.Float32)
    		v0.AuxInt = float32ToAuxInt(float32(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)
  5. api/go1.14.txt

    pkg hash/maphash, type Hash struct
    pkg hash/maphash, type Seed struct
    pkg log, const Lmsgprefix = 64
    pkg log, const Lmsgprefix ideal-int
    pkg math, func FMA(float64, float64, float64) float64
    pkg math/bits, func Rem(uint, uint, uint) uint
    pkg math/bits, func Rem32(uint32, uint32, uint32) uint32
    pkg math/bits, func Rem64(uint64, uint64, uint64) uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewritegeneric.go

    	// result: (Const32F [float32(c)])
    	for {
    		if v_0.Op != OpConst32 {
    			break
    		}
    		c := auxIntToInt32(v_0.AuxInt)
    		v.reset(OpConst32F)
    		v.AuxInt = float32ToAuxInt(float32(c))
    		return true
    	}
    	return false
    }
    func rewriteValuegeneric_OpCvt32to64F(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Cvt32to64F (Const32 [c]))
    	// result: (Const64F [float64(c)])
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.19.md

    - Fixes a `cannot convert int64 to float64` error seen using server-side apply with certain CRDs in 1.19.10+ ([#103105](https://github.com/kubernetes/kubernetes/pull/103105), [@liggitt](https://github.com/liggitt)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
Back to top