Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 397 for quint8 (0.18 sec)

  1. api/except.txt

    pkg syscall (freebsd-arm-cgo), type Stat_t struct, Rdev uint32
    pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Mntfromname [88]int8
    pkg syscall (freebsd-arm-cgo), type Statfs_t struct, Mntonname [88]int8
    pkg syscall (linux-386), type Cmsghdr struct, X__cmsg_data [0]uint8
    pkg syscall (linux-386-cgo), type Cmsghdr struct, X__cmsg_data [0]uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/dec64.rules

    				(Rsh32Ux8 <typ.UInt32> (Int64Lo x) s)
    				(Lsh32x8 <typ.UInt32>
    					(Int64Hi x)
    					(Sub8 <typ.UInt8> (Const8 <typ.UInt8> [32]) s)))
    			(And32 <typ.UInt32>
    				(Rsh32x8 <typ.UInt32>
    					(Int64Hi x)
    					(Sub8 <typ.UInt8> s (Const8 <typ.UInt8> [32])))
    				(Zeromask
    					(ZeroExt8to32
    						(Rsh8Ux32 <typ.UInt8> s (Const32 <typ.UInt32> [5])))))))
    
    (Const64 <t> [c]) && t.IsSigned() =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:35:46 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  3. src/image/draw/draw_test.go

    	return image.NewUniform(color.RGBA{0, 0, uint8(alpha), uint8(alpha)})
    }
    
    func fillAlpha(alpha int) image.Image {
    	return image.NewUniform(color.Alpha{uint8(alpha)})
    }
    
    func vgradGreen(alpha int) image.Image {
    	m := image.NewRGBA(image.Rect(0, 0, 16, 16))
    	for y := 0; y < 16; y++ {
    		for x := 0; x < 16; x++ {
    			m.Set(x, y, color.RGBA{0, uint8(y * alpha / 15), 0, uint8(alpha)})
    		}
    	}
    	return m
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
  4. api/go1.9.txt

    pkg math/bits, func ReverseBytes(uint) uint
    pkg math/bits, func ReverseBytes16(uint16) uint16
    pkg math/bits, func ReverseBytes32(uint32) uint32
    pkg math/bits, func ReverseBytes64(uint64) uint64
    pkg math/bits, func RotateLeft(uint, int) uint
    pkg math/bits, func RotateLeft16(uint16, int) uint16
    pkg math/bits, func RotateLeft32(uint32, int) uint32
    pkg math/bits, func RotateLeft64(uint64, int) uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 04 20:20:20 UTC 2021
    - 10.7K bytes
    - Viewed (0)
  5. src/cmd/link/internal/mips64/asm.go

    		switch r.Size {
    		case 4:
    			out.Write8(uint8(elf.R_MIPS_32))
    		case 8:
    			out.Write8(uint8(elf.R_MIPS_64))
    		default:
    			return false
    		}
    	case objabi.R_ADDRMIPS:
    		out.Write8(uint8(elf.R_MIPS_LO16))
    	case objabi.R_ADDRMIPSU:
    		out.Write8(uint8(elf.R_MIPS_HI16))
    	case objabi.R_ADDRMIPSTLS:
    		out.Write8(uint8(elf.R_MIPS_TLS_TPREL_LO16))
    		if ctxt.Target.IsOpenbsd() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/fiat/p256_fiat64.go

    	x17 := (uint8(x16) & 0xff)
    	x18 := uint8((x16 >> 8))
    	x19 := (uint8(x3) & 0xff)
    	x20 := (x3 >> 8)
    	x21 := (uint8(x20) & 0xff)
    	x22 := (x20 >> 8)
    	x23 := (uint8(x22) & 0xff)
    	x24 := (x22 >> 8)
    	x25 := (uint8(x24) & 0xff)
    	x26 := (x24 >> 8)
    	x27 := (uint8(x26) & 0xff)
    	x28 := (x26 >> 8)
    	x29 := (uint8(x28) & 0xff)
    	x30 := (x28 >> 8)
    	x31 := (uint8(x30) & 0xff)
    	x32 := uint8((x30 >> 8))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 41.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/prepare-tf-fake-quant-4bit.mlir

      %1 = "tfl.quantize"(%0) {qtype = tensor<8x!quant.uniform<u4:f32, 1.000000e+00>>} : (tensor<8xf32>) -> tensor<8x!quant.uniform<u4:f32, 1.000000e+00>>
      func.return %1 : tensor<8x!quant.uniform<u4:f32, 1.000000e+00>>
    
    // CHECK:  %0 = "tf.FakeQuantWithMinMaxVars"(%arg0, %cst, %cst_0) <{narrow_range = false, num_bits = 3 : i64}>
    // CHECK:  %1 = "tfl.quantize"(%0) <{qtype = tensor<8x!quant.uniform<u4: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
    - 22K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/quantization.mlir

      %5 = "tfl.reshape"(%4, %0) : (tensor<1x112x112x32x!quant.uniform<u8:f32, 0.023528476789885875>>, tensor<2xi32>) -> tensor<1x401408x!quant.uniform<u8:f32, 0.023528476789885875>>
      %6 = "tfl.softmax"(%5) {beta = 1.000000e+00 : f32} : (tensor<1x401408x!quant.uniform<u8:f32, 0.023528476789885875>>) -> tensor<1x401408x!quant.uniform<u8:f32, 3.906250e-03>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 11.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/op.go

    // For ABI register index r, returns the (dense) register number used in
    // SSA backend.
    func archRegForAbiReg(r abi.RegIndex, c *Config) uint8 {
    	var m int8
    	if int(r) < len(c.intParamRegs) {
    		m = c.intParamRegs[r]
    	} else {
    		m = c.floatParamRegs[int(r)-len(c.intParamRegs)]
    	}
    	return uint8(m)
    }
    
    // For ABI register index r, returns the register number used in the obj
    // package (assembler).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/fiat/p224_fiat64.go

    	x17 := (uint8(x16) & 0xff)
    	x18 := uint8((x16 >> 8))
    	x19 := (uint8(x3) & 0xff)
    	x20 := (x3 >> 8)
    	x21 := (uint8(x20) & 0xff)
    	x22 := (x20 >> 8)
    	x23 := (uint8(x22) & 0xff)
    	x24 := (x22 >> 8)
    	x25 := (uint8(x24) & 0xff)
    	x26 := (x24 >> 8)
    	x27 := (uint8(x26) & 0xff)
    	x28 := (x26 >> 8)
    	x29 := (uint8(x28) & 0xff)
    	x30 := (x28 >> 8)
    	x31 := (uint8(x30) & 0xff)
    	x32 := uint8((x30 >> 8))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 43.2K bytes
    - Viewed (0)
Back to top