Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 749 for quint8 (0.19 sec)

  1. tensorflow/compiler/mlir/lite/tests/prepare-tf-fake-quant.mlir

      %1 = "tfl.quantize"(%0) {qtype = tensor<8x!quant.uniform<u8:f32, 1.000000e+00>>} : (tensor<8xf32>) -> tensor<8x!quant.uniform<u8:f32, 1.000000e+00>>
      func.return %1 : tensor<8x!quant.uniform<u8:f32, 1.000000e+00>>
    
    // CHECK:  %0 = "tf.FakeQuantWithMinMaxVars"(%arg0, %cst, %cst_0) <{narrow_range = false, num_bits = 5 : i64}>
    // CHECK:  %1 = "tfl.quantize"(%0) <{qtype = tensor<8x!quant.uniform<u8:f32, 1.000000e+00>>}>
    // CHECK:  return %1
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    type Properties struct {
    	pos   uint8  // start position in reorderBuffer; used in composition.go
    	size  uint8  // length of UTF-8 encoding of this rune
    	ccc   uint8  // leading canonical combining class (ccc if not decomposition)
    	tccc  uint8  // trailing canonical combining class (ccc if not decomposition)
    	nLead uint8  // number of leading non-starters.
    	flags qcInfo // quick check flags
    	index uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K 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/internal/runtime/atomic/atomic_mips64x.go

    //go:noescape
    func LoadAcq64(ptr *uint64) uint64
    
    //go:noescape
    func LoadAcquintptr(ptr *uintptr) uintptr
    
    //go:noescape
    func And8(ptr *uint8, val uint8)
    
    //go:noescape
    func Or8(ptr *uint8, val uint8)
    
    // NOTE: Do not add atomicxor8 (XOR is not idempotent).
    
    //go:noescape
    func And(ptr *uint32, val uint32)
    
    //go:noescape
    func Or(ptr *uint32, val uint32)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 21:29:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	Att_id           [4]uint8
    	Att_version      uint16
    	Att_res01        [2]uint8
    	Att_setflags1    uint8
    	Att_setflags2    uint8
    	Att_setflags3    uint8
    	Att_setflags4    uint8
    	Att_mode         uint32
    	Att_uid          uint32
    	Att_gid          uint32
    	Att_opaquemask   [3]uint8
    	Att_visblmaskres uint8
    	Att_opaque       [3]uint8
    	Att_visibleres   uint8
    	Att_size_h       uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. src/internal/runtime/atomic/atomic_s390x.go

    	*ptr = val
    }
    
    //go:nosplit
    //go:noinline
    func StoreReluintptr(ptr *uintptr, val uintptr) {
    	*ptr = val
    }
    
    //go:noescape
    func And8(ptr *uint8, val uint8)
    
    //go:noescape
    func Or8(ptr *uint8, val uint8)
    
    // NOTE: Do not add atomicxor8 (XOR is not idempotent).
    
    //go:noescape
    func And(ptr *uint32, val uint32)
    
    //go:noescape
    func Or(ptr *uint32, val uint32)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/atomic_mipsx.go

    //go:noescape
    func Load8(ptr *uint8) uint8
    
    // NO go:noescape annotation; *ptr escapes if result escapes (#31525)
    func Loadp(ptr unsafe.Pointer) unsafe.Pointer
    
    //go:noescape
    func LoadAcq(ptr *uint32) uint32
    
    //go:noescape
    func LoadAcquintptr(ptr *uintptr) uintptr
    
    //go:noescape
    func And8(ptr *uint8, val uint8)
    
    //go:noescape
    func Or8(ptr *uint8, val uint8)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 20:08:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_386.go

    	Length  int64
    	Pno     int32
    	Devname [64]uint8
    	Volname [64]uint8
    }
    
    const (
    	BLKPG = 0x1269
    )
    
    type CryptoUserAlg struct {
    	Name        [64]int8
    	Driver_name [64]int8
    	Module_name [64]int8
    	Type        uint32
    	Mask        uint32
    	Refcnt      uint32
    	Flags       uint32
    }
    
    type CryptoStatAEAD struct {
    	Type         [64]int8
    	Encrypt_cnt  uint64
    	Encrypt_tlen uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go

    	Dev_idx          uint32
    	Target_idx       uint32
    	Nfc_protocol     uint32
    	Dsap             uint8
    	Ssap             uint8
    	Service_name     [63]uint8
    	Service_name_len uint64
    }
    
    type RawSockaddr struct {
    	Family uint16
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [96]int8
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint64
    }
    
    type Msghdr struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top