Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ffloat32 (0.31 sec)

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

                                          tf.constant(0, dtype=dtype))]
    
      expected = tf.constant([0, 0, 0, 0], dtype=tf.float32)
      tf.assert_equal(tf.cast(not_a_and_a, tf.float32), expected)
    
      expected = tf.cast([not_0] * 4, tf.float32)
      tf.assert_equal(tf.cast(not_a_or_a, tf.float32), expected)
    
      # For unsigned dtypes let's also check the result directly.
      if dtype.is_unsigned:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  2. RELEASE.md

       ```
       @tf.py_function(Tout=tf.float32)
       def my_fun(x):
         print("This always executes eagerly.")
         return x+1
       ```
    
    * `tf.lite`
        * Strided_Slice now supports `UINT32`.
    
    * `tf.config.experimental.enable_tensor_float_32_execution`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Error.Fset", Field, 5},
    		{"Error.Msg", Field, 5},
    		{"Error.Pos", Field, 5},
    		{"Error.Soft", Field, 5},
    		{"Eval", Func, 5},
    		{"ExprString", Func, 5},
    		{"FieldVal", Const, 5},
    		{"Float32", Const, 5},
    		{"Float64", Const, 5},
    		{"Func", Type, 5},
    		{"Id", Func, 5},
    		{"Identical", Func, 5},
    		{"IdenticalIgnoreTags", Func, 8},
    		{"Implements", Func, 5},
    		{"ImportMode", Type, 6},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K 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. src/cmd/compile/internal/ssa/rewritegeneric.go

    func rewriteValuegeneric_OpCvt32to32F(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Cvt32to32F (Const32 [c]))
    	// 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]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
Back to top