Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for quint8 (0.13 sec)

  1. tensorflow/compiler/mlir/lite/tests/ops.mlir

      func.return %0...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    //===----------------------------------------------------------------------===//
    // TFLite dialect quint8 type - uses the TF quint8 type as implementation
    //===----------------------------------------------------------------------===//
    def TFL_Quint8 : Type<CPred<"$_self.isa<mlir::TF::Quint8Type>()">,
                        "TFLite quint8 type">,
                  BuildableType<"getType<mlir::TF::Quint8Type>()">;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/s390x/asmz.go

    		uint8(op>>8),
    		(uint8(v1)<<4)|(uint8(x2)&0xf),
    		(uint8(b2)<<4)|(uint8(d2>>8)&0xf),
    		uint8(d2),
    		(uint8(m3)<<4)|rxb(v1, 0, 0, 0),
    		uint8(op))
    }
    
    func zVRV(op, v1, v2, b2, d2, m3 uint32, asm *[]byte) {
    	*asm = append(*asm,
    		uint8(op>>8),
    		(uint8(v1)<<4)|(uint8(v2)&0xf),
    		(uint8(b2)<<4)|(uint8(d2>>8)&0xf),
    		uint8(d2),
    		(uint8(m3)<<4)|rxb(v1, v2, 0, 0),
    		uint8(op))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    	&& x.Op != OpConst8 && sdivisibleOK8(c)
     => (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)])
    		)
    
    (Eq16 x (Mul16 (Const16 [c])
      (Sub16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    type opBytes [31]uint8
    
    type Optab struct {
    	as     obj.As
    	ytab   []ytab
    	prefix uint8
    	op     opBytes
    }
    
    type movtab struct {
    	as   obj.As
    	ft   uint8
    	f3t  uint8
    	tt   uint8
    	code uint8
    	op   [4]uint8
    }
    
    const (
    	Yxxx = iota
    	Ynone
    	Yi0 // $0
    	Yi1 // $1
    	Yu2 // $x, x fits in uint2
    	Yi8 // $x, x fits in int8
    	Yu8 // $x, x fits in uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      } : (tensor<*x!tf_type.qint8>, tensor<2xf32>, tensor<i32>, tensor<f32>, tensor<i32>) -> tensor<*x!tf_type.qint8>
      func.return %0 : tensor<*x!tf_type.qint8>
    }
    
    // -----
    
    func.func @testUniformRequantize(
      %arg0: tensor<*x!tf_type.qint8>,
      %scales_0: tensor<f32>, %zps_0: tensor<i32>,
      %scales_1: tensor<2xf32>, %zps_1: tensor<i32>) -> tensor<*x!tf_type.qint8> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  7. src/reflect/value.go

    // It panics if v's Kind is not [Uint], [Uintptr], [Uint8], [Uint16], [Uint32], or [Uint64], or if [Value.CanSet] returns false.
    func (v Value) SetUint(x uint64) {
    	v.mustBeAssignable()
    	switch k := v.kind(); k {
    	default:
    		panic(&ValueError{"reflect.Value.SetUint", v.kind()})
    	case Uint:
    		*(*uint)(v.ptr) = uint(x)
    	case Uint8:
    		*(*uint8)(v.ptr) = uint8(x)
    	case Uint16:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    	{V(int16(28)), V(uint8(28))},
    	{V(uint8(29)), V(uint16(29))},
    	{V(uint16(30)), V(uint8(30))},
    	{V(uint8(31)), V(int32(31))},
    	{V(int32(32)), V(uint8(32))},
    	{V(uint8(33)), V(uint32(33))},
    	{V(uint32(34)), V(uint8(34))},
    	{V(uint8(35)), V(int64(35))},
    	{V(int64(36)), V(uint8(36))},
    	{V(uint8(37)), V(uint64(37))},
    	{V(uint64(38)), V(uint8(38))},
    	{V(uint8(39)), V(int(39))},
    	{V(int(40)), V(uint8(40))},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm64/asm7.go

    )
    
    const (
    	REGFROM = 1
    )
    
    type Optab struct {
    	as    obj.As
    	a1    uint8 // Prog.From
    	a2    uint8 // 2nd source operand, Prog.Reg or Prog.RestArgs[XXX]
    	a3    uint8 // 3rd source operand, Prog.RestArgs[XXX]
    	a4    uint8 // Prog.To
    	a5    uint8 // 2nd destination operand, Prog.RegTo2 or Prog.RestArgs[XXX]
    	type_ int8
    	size_ int8 // the value of this field is not static, use the size() method to return the value
    	param int16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  10. src/debug/elf/elf.go

    	Value uint32
    	Size  uint32
    	Info  uint8
    	Other uint8
    	Shndx uint16
    }
    
    const Sym32Size = 16
    
    func ST_BIND(info uint8) SymBind { return SymBind(info >> 4) }
    func ST_TYPE(info uint8) SymType { return SymType(info & 0xF) }
    func ST_INFO(bind SymBind, typ SymType) uint8 {
    	return uint8(bind)<<4 | uint8(typ)&0xf
    }
    func ST_VISIBILITY(other uint8) SymVis { return SymVis(other & 3) }
    
    /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top