Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 739 for int1 (0.06 sec)

  1. tensorflow/compiler/mlir/tfrt/test_opkernels.cc

    namespace tensorflow {
    namespace tf_mlrt {
    
    REGISTER_OP("TestAsyncIdentity")
        .Input("in: T")
        .Output("out: T")
        .Attr(
            "T: {bfloat16, half, float, double, uint8, int8, int16, uint32, int32, "
            "int64, complex64, complex128}")
        .SetShapeFn(::tensorflow::shape_inference::UnchangedShape);
    
    class TestAsyncIdentityKernel : public AsyncOpKernel {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/config.go

    	valueRewriter func(*Value) bool
    )
    
    type Types struct {
    	Bool       *types.Type
    	Int8       *types.Type
    	Int16      *types.Type
    	Int32      *types.Type
    	Int64      *types.Type
    	UInt8      *types.Type
    	UInt16     *types.Type
    	UInt32     *types.Type
    	UInt64     *types.Type
    	Int        *types.Type
    	Float32    *types.Type
    	Float64    *types.Type
    	UInt       *types.Type
    	Uintptr    *types.Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. src/go/types/builtins_test.go

    	{"make", `var    c int; _ = make([]int, 0, c)`, `func([]int, int, int) []int`},
    	{"make", `var l, c int; _ = make([]int, l, c)`, `func([]int, int, int) []int`},
    
    	// go.dev/issue/37393
    	{"make", `                _ = make([]int       , 0   )`, `func([]int, int) []int`},
    	{"make", `var l    byte ; _ = make([]int8      , l   )`, `func([]int8, byte) []int8`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. src/runtime/testdata/testprog/panicprint.go

    // license that can be found in the LICENSE file.
    
    package main
    
    type MyBool bool
    type MyComplex128 complex128
    type MyComplex64 complex64
    type MyFloat32 float32
    type MyFloat64 float64
    type MyInt int
    type MyInt8 int8
    type MyInt16 int16
    type MyInt32 int32
    type MyInt64 int64
    type MyString string
    type MyUint uint
    type MyUint8 uint8
    type MyUint16 uint16
    type MyUint32 uint32
    type MyUint64 uint64
    type MyUintptr uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. security/pkg/pki/testdata/multilevelpki/int-cert.cfg

    Oliver Liu <******@****.***> 1520311744 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 06 04:49:04 UTC 2018
    - 526 bytes
    - Viewed (0)
  6. src/math/rand/rand.go

    			low = uint32(prod)
    		}
    	}
    	return int32(prod >> 32)
    }
    
    // Intn returns, as an int, a non-negative pseudo-random number in the half-open interval [0,n).
    // It panics if n <= 0.
    func (r *Rand) Intn(n int) int {
    	if n <= 0 {
    		panic("invalid argument to Intn")
    	}
    	if n <= 1<<31-1 {
    		return int(r.Int31n(int32(n)))
    	}
    	return int(r.Int63n(int64(n)))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. test/fixedbugs/issue13471.go

    	const _ int16 = 1e6464569   // ERROR "integer too large|floating-point constant truncated to integer|exponent too large|truncated"
    	const _ int8 = 1e646456     // ERROR "integer too large|floating-point constant truncated to integer|exponent too large|truncated"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 17:50:13 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  8. schema/field.go

    			}
    		}
    	case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
    		field.DataType = Int
    		if field.HasDefaultValue && !skipParseDefaultValue {
    			if field.DefaultValueInterface, err = strconv.ParseInt(field.DefaultValue, 0, 64); err != nil {
    				schema.err = fmt.Errorf("failed to parse %s as default value for int, got error: %v", field.DefaultValue, err)
    			}
    		}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/common/ir/FakeQuantSupport.h

    //
    // Specifically, it combines the following concerns, each of which would be
    // independent variables in a more generic setup:
    //   - numBits and isSigned imply storage data type (uint8, int8, int16)
    //   - numBits < 8 is promoted to uint8 or int8
    //   - "narrow_range" narrows the lower bound of the storage type's range by
    //     1
    //   - the specified min/max values are "nudged" so that the result has a zero
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:52:27 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. src/go/types/basic.go

    // license that can be found in the LICENSE file.
    
    package types
    
    // BasicKind describes the kind of basic type.
    type BasicKind int
    
    const (
    	Invalid BasicKind = iota // type is invalid
    
    	// predeclared types
    	Bool
    	Int
    	Int8
    	Int16
    	Int32
    	Int64
    	Uint
    	Uint8
    	Uint16
    	Uint32
    	Uint64
    	Uintptr
    	Float32
    	Float64
    	Complex64
    	Complex128
    	String
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top