Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 272 for Int8 (0.04 sec)

  1. tensorflow/compiler/mlir/lite/transforms/modify_io_nodes.cc

          if (current_type == input_type) {  // int8 == int8
            arg_type = quantize_output.getType();
            new_arg = block.addArgument(arg_type, loc);
            quantize_output.replaceAllUsesWith(new_arg);
          } else if (input_type.isUnsignedInteger(
                         current_type.getIntOrFloatBitWidth())) {  // int8 != uint8
            arg_type = quant::ConvertSignedQuantizedToUnsigned(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm64.go

    type RawSockaddrUnix struct {
    	Len    uint8
    	Family uint8
    	Path   [104]int8
    }
    
    type RawSockaddrDatalink struct {
    	Len    uint8
    	Family uint8
    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	Data   [24]int8
    }
    
    type RawSockaddr struct {
    	Len    uint8
    	Family uint8
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [92]int8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_mips64.go

    type RawSockaddrUnix struct {
    	Len    uint8
    	Family uint8
    	Path   [104]int8
    }
    
    type RawSockaddrDatalink struct {
    	Len    uint8
    	Family uint8
    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	Data   [24]int8
    }
    
    type RawSockaddr struct {
    	Len    uint8
    	Family uint8
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [92]int8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go

    type RawSockaddrUnix struct {
    	Len    uint8
    	Family uint8
    	Path   [104]int8
    }
    
    type RawSockaddrDatalink struct {
    	Len    uint8
    	Family uint8
    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	Data   [24]int8
    }
    
    type RawSockaddr struct {
    	Len    uint8
    	Family uint8
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [92]int8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go

    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	Data   [12]int8
    }
    
    type RawSockaddr struct {
    	Len    uint8
    	Family uint8
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [92]int8
    }
    
    type _Socklen uint32
    
    type Linger struct {
    	Onoff  int32
    	Linger int32
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint32
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/testdata/loadstore_test.go

    	// Test that sign/zero extensions are kept when a load-hit-store
    	// is replaced by a register-register move.
    	{
    		var in int8 = (1 << 6) + 1
    		var p int8
    		got := loadHitStore8(in, &p)
    		want := int32(in * in)
    		if got != want {
    			t.Errorf("testLoadHitStore (int8) failed. want = %d, got = %d", want, got)
    		}
    	}
    	{
    		var in uint8 = (1 << 6) + 1
    		var p uint8
    		got := loadHitStoreU8(in, &p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go

    type RawSockaddrUnix struct {
    	Len    uint8
    	Family uint8
    	Path   [104]int8
    }
    
    type RawSockaddrDatalink struct {
    	Len    uint8
    	Family uint8
    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	Data   [24]int8
    }
    
    type RawSockaddr struct {
    	Len    uint8
    	Family uint8
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [92]int8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. test/interface/returntype.go

    // Test interface methods with different return types are distinct.
    
    package main
    
    type S struct { a int }
    type T struct { b string }
    
    func (s *S) Name() int8 { return 1 }
    func (t *T) Name() int64 { return 64 }
    
    type I1 interface { Name() int8 }
    type I2 interface { Name() int64 }
    
    func main() {
    	shouldPanic(p1)
    }
    
    func p1() {
    	var i1 I1
    	var s *S
    	i1 = s
    	print(i1.(I2).Name())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:33:41 UTC 2012
    - 670 bytes
    - Viewed (0)
  9. test/fixedbugs/issue21963.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    	"runtime"
    )
    
    //go:noinline
    func f(x []int32, y *int8) int32 {
    	c := int32(int16(*y))
    	runtime.GC()
    	return x[0] * c
    }
    
    func main() {
    	var x = [1]int32{5}
    	var y int8 = -1
    	if got, want := f(x[:], &y), int32(-5); got != want {
    		panic(fmt.Sprintf("wanted %d, got %d", want, got))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 26 16:24:08 UTC 2017
    - 483 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/roundtrip_test.go

    			obj:  uint16(math.MaxUint16),
    		},
    		{
    			name: "uint16 zero",
    			obj:  uint16(0),
    		},
    		{
    			name: "int8 max",
    			obj:  int8(math.MaxInt8),
    		},
    		{
    			name: "int8 min",
    			obj:  int8(math.MinInt8),
    		},
    		{
    			name: "int8 zero",
    			obj:  int8(math.MinInt8),
    		},
    		{
    			name: "uint8 max",
    			obj:  uint8(math.MaxUint8),
    		},
    		{
    			name: "uint8 zero",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 21:48:12 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top