Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 576 for Int8 (0.05 sec)

  1. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/mul_v3.mlir

      // CHECK-NEXT:      type: INT8,
      // CHECK-NEXT:      buffer: 1,
      // CHECK-NEXT:      name: "arg0",
      // CHECK-NEXT:      quantization: {
      // CHECK-NEXT:        scale: [ 1.0 ],
      // CHECK-NEXT:        zero_point: [ 0 ]
      // CHECK-NEXT:       },
      // CHECK-NEXT:       has_rank: true
      // CHECK-NEXT:    }, {
      // CHECK-NEXT:      shape: [ 3 ],
      // CHECK-NEXT:      type: INT8,
      // CHECK-NEXT:      buffer: 2,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/divconst_test.go

    	}
    }
    
    var i8res int8
    
    func BenchmarkDivconstI8(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		i8res = int8(i) / 7
    	}
    }
    
    func BenchmarkModconstI8(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		i8res = int8(i) % 7
    	}
    }
    
    func BenchmarkDivisiblePow2constI8(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		boolres = int8(i)%16 == 0
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 00:07:35 UTC 2020
    - 7.7K bytes
    - Viewed (0)
  3. src/runtime/race/testdata/atomic_test.go

    // license that can be found in the LICENSE file.
    
    package race_test
    
    import (
    	"runtime"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"unsafe"
    )
    
    func TestNoRaceAtomicAddInt64(t *testing.T) {
    	var x1, x2 int8
    	_ = x1 + x2
    	var s int64
    	ch := make(chan bool, 2)
    	go func() {
    		x1 = 1
    		if atomic.AddInt64(&s, 1) == 2 {
    			x2 = 1
    		}
    		ch <- true
    	}()
    	go func() {
    		x2 = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 16 17:26:46 UTC 2020
    - 4.9K bytes
    - Viewed (0)
  4. test/rename.go

    	n :=
    		append +
    			bool +
    			byte +
    			complex +
    			complex64 +
    			complex128 +
    			cap +
    			close +
    			delete +
    			error +
    			false +
    			float32 +
    			float64 +
    			imag +
    			int +
    			int8 +
    			int16 +
    			int32 +
    			int64 +
    			len +
    			make +
    			new +
    			nil +
    			panic +
    			print +
    			println +
    			real +
    			recover +
    			rune +
    			string +
    			true +
    			uint +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.5K bytes
    - Viewed (0)
  5. src/reflect/iter.go

    				return []Value{ValueOf(yield(in[0]))}
    			})
    			v.Call([]Value{rf})
    		}
    	}
    	switch v.Kind() {
    	case Int:
    		return rangeNum[int](v.Int())
    	case Int8:
    		return rangeNum[int8](v.Int())
    	case Int16:
    		return rangeNum[int16](v.Int())
    	case Int32:
    		return rangeNum[int32](v.Int())
    	case Int64:
    		return rangeNum[int64](v.Int())
    	case Uint:
    		return rangeNum[uint](v.Uint())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 13:40:11 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. test/convinline.go

    	}
    	panic(t1)
    }
    
    func convert1[T int64 | uint64 | float64](v T, t2 string) string {
    	switch t2 {
    	case "int":
    		return fmt.Sprintf("%s(%#x)", t2, int(v))
    	case "int8":
    		return fmt.Sprintf("%s(%#x)", t2, int8(v))
    	case "int16":
    		return fmt.Sprintf("%s(%#x)", t2, int16(v))
    	case "int32":
    		return fmt.Sprintf("%s(%#x)", t2, int32(v))
    	case "int64":
    		return fmt.Sprintf("%s(%#x)", t2, int64(v))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 13:46:05 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  7. src/cmd/api/testdata/src/pkg/p1/golden.txt

    pkg p1, const FloatConst = 1.5  // 3/2
    pkg p1, const FloatConst ideal-float
    pkg p1, const StrConst = "foo"
    pkg p1, const StrConst ideal-string
    pkg p1, func Bar(int8, int16, int64)
    pkg p1, func Bar1(int8, int16, int64) uint64
    pkg p1, func Bar2(int8, int16, int64) (uint8, uint64)
    pkg p1, func BarE() Error
    pkg p1, func Now() Time
    pkg p1, func PlainFunc(int, int, string) (*B, error)
    pkg p1, func TakesFunc(func(int) int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  8. src/crypto/internal/edwards25519/tables.go

    }
    
    // Given odd x with 0 < x < 2^4, return x*Q (in variable time).
    func (v *nafLookupTable5) SelectInto(dest *projCached, x int8) {
    	*dest = v.points[x/2]
    }
    
    // Given odd x with 0 < x < 2^7, return x*Q (in variable time).
    func (v *nafLookupTable8) SelectInto(dest *affineCached, x int8) {
    	*dest = v.points[x/2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 05 21:02:45 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  9. utils/tests/dummy_dialecter.go

    	writer.WriteByte('?')
    }
    
    func (DummyDialector) QuoteTo(writer clause.Writer, str string) {
    	var (
    		underQuoted, selfQuoted bool
    		continuousBacktick      int8
    		shiftDelimiter          int8
    	)
    
    	for _, v := range []byte(str) {
    		switch v {
    		case '`':
    			continuousBacktick++
    			if continuousBacktick == 2 {
    				writer.WriteString("``")
    				continuousBacktick = 0
    			}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 06 06:03:31 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. test/typeparam/listimp.dir/a.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package a
    
    type Ordered interface {
    	~int | ~int8 | ~int16 | ~int32 | ~int64 |
    		~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr |
    		~float32 | ~float64 |
    		~string
    }
    
    // List is a linked list of ordered values of type T.
    type List[T Ordered] struct {
    	Next *List[T]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 1.1K bytes
    - Viewed (0)
Back to top