Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 380 for quint8 (0.13 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go

    	Pno     int32
    	Devname [64]uint8
    	Volname [64]uint8
    	_       [4]byte
    }
    
    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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go

    	Dev_idx          uint32
    	Target_idx       uint32
    	Nfc_protocol     uint32
    	Dsap             uint8
    	Ssap             uint8
    	Service_name     [63]uint8
    	Service_name_len uint32
    }
    
    type RawSockaddr struct {
    	Family uint16
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [96]int8
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint32
    }
    
    type Msghdr struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/modify_io_nodes.mlir

    // INT8-NEXT: return %[[softmax]] : tensor<1x401408x!quant.uniform<i8:f32, 3.906250e-03>>
    
    // UINT8-LABEL: func @modified(%arg0: tensor<1x224x224x3x!quant.uniform<u8:f32, 7.812500e-03:128>>) -> tensor<1x401408x!quant.uniform<u8:f32, 3.906250e-03:128>>
    // UINT8-NEXT: %[[shape:.*]] = arith.constant dense<[1, 401408]> : tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. src/internal/zstd/fse.go

    	for i, n := range norm {
    		if n >= 0 {
    			next[uint8(i)] = uint16(n)
    		} else {
    			table[highThreshold].sym = uint8(i)
    			highThreshold--
    			next[uint8(i)] = 1
    		}
    	}
    
    	pos := 0
    	step := (tableSize >> 1) + (tableSize >> 3) + 3
    	mask := tableSize - 1
    	for i, n := range norm {
    		for j := 0; j < int(n); j++ {
    			table[pos].sym = uint8(i)
    			pos = (pos + step) & mask
    			for pos > highThreshold {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:44:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  5. src/cmd/internal/goobj/objfile.go

    //
    //	RefFlags struct {
    //	   Sym   symRef
    //	   Flag  uint8
    //	   Flag2 uint8
    //	}
    type RefFlags [RefFlagsSize]byte
    
    const RefFlagsSize = 8 + 1 + 1
    
    func (r *RefFlags) Sym() SymRef {
    	return SymRef{binary.LittleEndian.Uint32(r[:]), binary.LittleEndian.Uint32(r[4:])}
    }
    func (r *RefFlags) Flag() uint8  { return r[8] }
    func (r *RefFlags) Flag2() uint8 { return r[9] }
    
    func (r *RefFlags) SetSym(x SymRef) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  6. internal/grid/msg_gen.go

    		return
    	}
    	{
    		var zb0002 uint8
    		zb0002, err = dc.ReadUint8()
    		if err != nil {
    			err = msgp.WrapError(err, "Handler")
    			return
    		}
    		z.Handler = HandlerID(zb0002)
    	}
    	{
    		var zb0003 uint8
    		zb0003, err = dc.ReadUint8()
    		if err != nil {
    			err = msgp.WrapError(err, "Op")
    			return
    		}
    		z.Op = Op(zb0003)
    	}
    	{
    		var zb0004 uint8
    		zb0004, err = dc.ReadUint8()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 18.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composite_functions_drq.mlir

    // RUN: tf-quant-opt %s -split-input-file -quant-insert-quantized-functions='quantization-method=drq target-opset=UNIFORM_QUANTIZED' -quant-quantize-composite-functions='quantization-method=drq target-opset=UNIFORM_QUANTIZED' -symbol-dce | FileCheck %s
    
    module {
      // TODO(b/260020937): Support transpose_a, transpose_b for matmul.
      func.func @matmul(%arg0: tensor<2x12xf32>) -> (tensor<*xf32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. test/codegen/shift.go

    	_ = y[128]
    	_ = z[128]
    	// ppc64x: -"MOVBZ", -"SRW", "RLWNM"
    	z[0] = uint32(uint8(a >> 5))
    	// ppc64x: -"MOVBZ", -"SRW", "RLWNM"
    	z[1] = uint32(uint8((a >> 4) & 0x7e))
    	// ppc64x: "RLWNM\t[$]25, R[0-9]+, [$]27, [$]29, R[0-9]+"
    	z[2] = uint32(uint8(a>>7)) & 0x1c
    	// ppc64x: -"MOVWZ"
    	y[0] = uint64((a >> 6) & 0x1c)
    	// ppc64x: -"MOVWZ"
    	y[1] = uint64(uint32(b)<<6) + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:53:43 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/arm/armasm/decode.go

    		v := x & (1<<8 - 1)
    		rot := (x >> 8) & (1<<4 - 1) * 2
    		if rot > 0 && v&3 == 0 {
    			// could rotate less
    			return ImmAlt{uint8(v), uint8(rot)}
    		}
    		if rot >= 24 && ((v<<(32-rot))&0xFF)>>(32-rot) == v {
    			// could wrap around to rot==0.
    			return ImmAlt{uint8(v), uint8(rot)}
    		}
    		return Imm(v>>rot | v<<(32-rot))
    
    	case arg_endian:
    		return Endian((x >> 9) & 1)
    
    	case arg_fbits:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  10. src/internal/runtime/atomic/types.go

    //go:nosplit
    func (i *Int64) Add(delta int64) int64 {
    	return Xaddint64(&i.value, delta)
    }
    
    // Uint8 is an atomically accessed uint8 value.
    //
    // A Uint8 must not be copied.
    type Uint8 struct {
    	noCopy noCopy
    	value  uint8
    }
    
    // Load accesses and returns the value atomically.
    //
    //go:nosplit
    func (u *Uint8) Load() uint8 {
    	return Load8(&u.value)
    }
    
    // Store updates the value atomically.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top