Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for quint8 (0.28 sec)

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

    value of the input by 255/6 and cast to quint8.
    
    If the output type was qint8 ([-128, 127]), the operation will additionally
    subtract each value by 128 prior to casting, so that the range of values aligns
    with the range of qint8.
    
    If the mode is 'MIN_FIRST', then this approach is used:
    
    ```
    num_discrete_values = 1 << (# of bits in T)
    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/compile/internal/ssa/rewritegeneric.go

    	// result: (Leq8U (RotateLeft8 <typ.UInt8> (Add8 <typ.UInt8> (Mul8 <typ.UInt8> (Const8 <typ.UInt8> [int8(sdivisible8(c).m)]) x) (Const8 <typ.UInt8> [int8(sdivisible8(c).a)]) ) (Const8 <typ.UInt8> [int8(8-sdivisible8(c).k)]) ) (Const8 <typ.UInt8> [int8(sdivisible8(c).max)]) )
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			x := v_0
    			if v_1.Op != OpMul8 {
    				continue
    			}
    			_ = v_1.Args[1]
    			v_1_0 := v_1.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)
  3. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		if !(int8(x) < y && uint8(x) > uint8(y)) {
    			break
    		}
    		v.reset(OpAMD64FlagLT_UGT)
    		return true
    	}
    	// match: (CMPBconst (MOVLconst [x]) [y])
    	// cond: int8(x)>y && uint8(x)<uint8(y)
    	// result: (FlagGT_ULT)
    	for {
    		y := auxIntToInt8(v.AuxInt)
    		if v_0.Op != OpAMD64MOVLconst {
    			break
    		}
    		x := auxIntToInt32(v_0.AuxInt)
    		if !(int8(x) > y && uint8(x) < uint8(y)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  4. RELEASE.md

    *   `tf.lite`:
    
        *   Added TFLite builtin op support for the following TF ops:
            *   `tf.raw_ops.Bucketize` op on CPU.
            *   `tf.where` op for data types
                `tf.int32`/`tf.uint32`/`tf.int8`/`tf.uint8`/`tf.int64`.
            *   `tf.random.normal` op for output data type `tf.float32` on CPU.
            *   `tf.random.uniform` op for output data type `tf.float32` on CPU.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteARM64.go

    		v.AddArg(x)
    		return true
    	}
    	// match: (MOVBUreg (MOVDconst [c]))
    	// result: (MOVDconst [int64(uint8(c))])
    	for {
    		if v_0.Op != OpARM64MOVDconst {
    			break
    		}
    		c := auxIntToInt64(v_0.AuxInt)
    		v.reset(OpARM64MOVDconst)
    		v.AuxInt = int64ToAuxInt(int64(uint8(c)))
    		return true
    	}
    	// match: (MOVBUreg x)
    	// cond: v.Type.Size() <= 1
    	// result: x
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"TypeList", Type, 18},
    		{"TypeName", Type, 5},
    		{"TypeParam", Type, 18},
    		{"TypeParamList", Type, 18},
    		{"TypeString", Func, 5},
    		{"Uint", Const, 5},
    		{"Uint16", Const, 5},
    		{"Uint32", Const, 5},
    		{"Uint64", Const, 5},
    		{"Uint8", Const, 5},
    		{"Uintptr", Const, 5},
    		{"Unalias", Func, 22},
    		{"Union", Type, 18},
    		{"Universe", Var, 5},
    		{"Unsafe", Var, 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)
Back to top