Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,130 for quint8 (0.1 sec)

  1. src/internal/runtime/atomic/atomic_riscv64.go

    //go:noescape
    func LoadAcq64(ptr *uint64) uint64
    
    //go:noescape
    func LoadAcquintptr(ptr *uintptr) uintptr
    
    //go:noescape
    func Or8(ptr *uint8, val uint8)
    
    //go:noescape
    func And8(ptr *uint8, val uint8)
    
    //go:noescape
    func And(ptr *uint32, val uint32)
    
    //go:noescape
    func Or(ptr *uint32, val uint32)
    
    //go:noescape
    func And32(ptr *uint32, val uint32) uint32
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. test/intcvt.go

    	//	chki64(int64(f32), 0)
    	//	chki64(int64(f64), 0)
    
    
    	chku8(uint8(i8), ci8&0xff)
    	chku8(uint8(i16), ci16&0xff)
    	chku8(uint8(i32), ci32&0xff)
    	chku8(uint8(i64), ci64&0xff)
    	chku8(uint8(u8), cu8&0xff)
    	chku8(uint8(u16), cu16&0xff)
    	chku8(uint8(u32), cu32&0xff)
    	chku8(uint8(u64), cu64&0xff)
    	//	chku8(uint8(f32), 0)
    	//	chku8(uint8(f64), 0)
    
    	chku16(uint16(i8), ci8&0xffff)
    	chku16(uint16(i16), ci16&0xffff)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 07:47:26 UTC 2012
    - 4.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/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: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/condition.go

    func bfi_bfm_32m_bitfield_cond(instr uint32) bool {
    	return (instr>>5)&0x1f != 0x1f && uint8((instr>>10)&0x3f) < uint8((instr>>16)&0x3f)
    }
    
    func bfi_bfm_64m_bitfield_cond(instr uint32) bool {
    	return (instr>>5)&0x1f != 0x1f && uint8((instr>>10)&0x3f) < uint8((instr>>16)&0x3f)
    }
    
    func bfxil_bfm_32m_bitfield_cond(instr uint32) bool {
    	return uint8((instr>>10)&0x3f) >= uint8((instr>>16)&0x3f)
    }
    
    func bfxil_bfm_64m_bitfield_cond(instr uint32) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 9.6K bytes
    - Viewed (0)
Back to top