Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 251 for quint8 (0.12 sec)

  1. tensorflow/compiler/mlir/lite/tests/end2end/quant_stats.pbtxt

    # MLIR-NEXT:    return %[[add]] : tensor<4x!quant.uniform<u8:f32, 0.0078431372549019607:128>>
    # MLIR-NEXT:  }
    
    # CHECK-LABEL: {
    # CHECK-NEXT:  version: 3,
    # CHECK-NEXT:  operator_codes: [ {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. src/internal/types/testdata/spec/range_int.go

    	for i = range 256 {
    	}
    	for i := range 256 {
    		_ = i
    	}
    
    	var u8 uint8
    	_ = u8
    	for u8 = range - /* ERROR "cannot use -1 (untyped int constant) as uint8 value in range clause (overflows)" */ 1 {
    	}
    	for u8 = range 0 {
    	}
    	for u8 = range 255 {
    	}
    	for u8 = range 256 /* ERROR "cannot use 256 (untyped int constant) as uint8 value in range clause (overflows)" */ {
    	}
    }
    
    func issue64471() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:56:00 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. src/syscall/dir_plan9.go

    	b = pbit16(b, uint16(len(s)))
    	n := copy(b, s)
    	return b[n:]
    }
    
    // gbit8 reads an 8-bit number from b and returns it with the remaining slice of b.
    func gbit8(b []byte) (uint8, []byte) {
    	return uint8(b[0]), b[1:]
    }
    
    // gbit16 reads a 16-bit number in little-endian order from b and returns it with the remaining slice of b.
    //
    //go:nosplit
    func gbit16(b []byte) (uint16, []byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:32:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tests/test_tf_to_stablehlo.mlir

    // CHECK: %[[UQ:.*]] = stablehlo.uniform_quantize %arg0 : (tensor<1xf32>) -> tensor<1x!quant.uniform<i8:f32, 1.000000e+00:3>>
    // CHECK: %[[BITCAST_CONVERT_0:.*]] = stablehlo.bitcast_convert %[[UQ]] : (tensor<1x!quant.uniform<i8:f32, 1.000000e+00:3>>) -> tensor<1xi8>
    // CHECK: %[[BITCAST_CONVERT_1:.*]] = stablehlo.bitcast_convert %[[BITCAST_CONVERT_0]] : (tensor<1xi8>) -> tensor<1x!quant.uniform<i8:f32, 1.000000e+00:3>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. src/runtime/defs_darwin_amd64.go

    type pthreadattr struct {
    	X__sig    int64
    	X__opaque [56]int8
    }
    type pthreadmutex struct {
    	X__sig    int64
    	X__opaque [56]int8
    }
    type pthreadmutexattr struct {
    	X__sig    int64
    	X__opaque [8]int8
    }
    type pthreadcond struct {
    	X__sig    int64
    	X__opaque [40]int8
    }
    type pthreadcondattr struct {
    	X__sig    int64
    	X__opaque [8]int8
    }
    
    type machTimebaseInfo struct {
    	numer uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. src/syscall/syscall_netbsd.go

    const (
    	_SYS_DUP3         = SYS_DUP3
    	_F_DUP2FD_CLOEXEC = 0
    )
    
    type SockaddrDatalink struct {
    	Len    uint8
    	Family uint8
    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	Data   [12]int8
    	raw    RawSockaddrDatalink
    }
    
    func sysctlNodes(mib []_C_int) (nodes []Sysctlnode, err error) {
    	var olen uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/inline/inlheur/serialize.go

    	var shift uint
    
    	for {
    		b := sl[0]
    		sl = sl[1:]
    		value |= (uint64(b&0x7F) << shift)
    		if b&0x80 == 0 {
    			break
    		}
    		shift += 7
    	}
    	return value, sl
    }
    
    func writeUleb128(sb *strings.Builder, v uint64) {
    	if v < 128 {
    		sb.WriteByte(uint8(v))
    		return
    	}
    	more := true
    	for more {
    		c := uint8(v & 0x7f)
    		v >>= 7
    		more = v != 0
    		if more {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:02:55 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. src/go/types/basic.go

    	// predeclared types
    	Bool
    	Int
    	Int8
    	Int16
    	Int32
    	Int64
    	Uint
    	Uint8
    	Uint16
    	Uint32
    	Uint64
    	Uintptr
    	Float32
    	Float64
    	Complex64
    	Complex128
    	String
    	UnsafePointer
    
    	// types for untyped values
    	UntypedBool
    	UntypedInt
    	UntypedRune
    	UntypedFloat
    	UntypedComplex
    	UntypedString
    	UntypedNil
    
    	// aliases
    	Byte = Uint8
    	Rune = Int32
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. src/html/template/context.go

    // HTML attribute produced by
    //
    //	<div title="Hello {{.World}}">
    //
    // is a single token in HTML's grammar but in a template spans several nodes.
    type state uint8
    
    //go:generate stringer -type state
    
    const (
    	// stateText is parsed character data. An HTML parser is in
    	// this state when its parse position is outside an HTML tag,
    	// directive, comment, and special element body.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. src/internal/runtime/atomic/atomic_s390x.s

    #include "textflag.h"
    
    // func Store(ptr *uint32, val uint32)
    TEXT ·Store(SB), NOSPLIT, $0
    	MOVD	ptr+0(FP), R2
    	MOVWZ	val+8(FP), R3
    	MOVW	R3, 0(R2)
    	SYNC
    	RET
    
    // func Store8(ptr *uint8, val uint8)
    TEXT ·Store8(SB), NOSPLIT, $0
    	MOVD	ptr+0(FP), R2
    	MOVB	val+8(FP), R3
    	MOVB	R3, 0(R2)
    	SYNC
    	RET
    
    // func Store64(ptr *uint64, val uint64)
    TEXT ·Store64(SB), NOSPLIT, $0
    	MOVD	ptr+0(FP), R2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top