Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 270 for if64 (0.13 sec)

  1. test/convT2X.go

    		panic("u32 != ju32")
    	}
    	if u64 != iu64 {
    		panic("u64 != iu64")
    	}
    	if u64 != ju64 {
    		panic("u64 != ju64")
    	}
    	if u128 != iu128 {
    		panic("u128 != iu128")
    	}
    	if u128 != ju128 {
    		panic("u128 != ju128")
    	}
    	if f32 != if32 {
    		panic("f32 != if32")
    	}
    	if f32 != jf32 {
    		panic("f32 != jf32")
    	}
    	if f64 != if64 {
    		panic("f64 != if64")
    	}
    	if f64 != jf64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 02 23:09:05 UTC 2012
    - 3.3K bytes
    - Viewed (0)
  2. test/ken/convert.go

    		case tf64*100 + ti16:
    			f64 = float64(v); i16 = int16(f64); w = big(i16)
    		case tf64*100 + tu16:
    			f64 = float64(v); u16 = uint16(f64); w = big(u16)
    		case tf64*100 + ti32:
    			f64 = float64(v); i32 = int32(f64); w = big(i32)
    		case tf64*100 + tu32:
    			f64 = float64(v); u32 = uint32(f64); w = big(u32)
    		case tf64*100 + ti64:
    			f64 = float64(v); i64 = int64(f64); w = big(i64)
    		case tf64*100 + tu64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 14.9K bytes
    - Viewed (0)
  3. src/fmt/stringer_test.go

    	s := Sprintf("%v %v %v %v %v", TI(0), TI8(1), TI16(2), TI32(3), TI64(4))
    	check(t, s, "I: 0 I8: 1 I16: 2 I32: 3 I64: 4")
    	s = Sprintf("%v %v %v %v %v %v", TU(5), TU8(6), TU16(7), TU32(8), TU64(9), TUI(10))
    	check(t, s, "U: 5 U8: 6 U16: 7 U32: 8 U64: 9 UI: 10")
    	s = Sprintf("%v %v %v", TF(1.0), TF32(2.0), TF64(3.0))
    	check(t, s, "F: 1.000000 F32: 2.000000 F64: 3.000000")
    	s = Sprintf("%v %v", TB(true), TS("x"))
    	check(t, s, "B: true S: \"x\"")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/float_test.go

    func cvt11(a float32) int {
    	return int(a)
    }
    
    //go:noinline
    func cvt12(a float32) uint {
    	return uint(a)
    }
    
    //go:noinline
    func f2i64p(v float64) *int64 {
    	return ip64(int64(v / 0.1))
    }
    
    //go:noinline
    func ip64(v int64) *int64 {
    	return &v
    }
    
    func TestFloatConvert(t *testing.T) {
    	if got := cvt1(3.5); got != 3 {
    		t.Errorf("cvt1 got %d, wanted 3", got)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/abiutils_test.go

    	i32 := types.Types[types.TINT32]
    	i64 := types.Types[types.TINT64]
    	f32 := types.Types[types.TFLOAT32]
    	f64 := types.Types[types.TFLOAT64]
    	c64 := types.Types[types.TCOMPLEX64]
    	c128 := types.Types[types.TCOMPLEX128]
    	ft := mkFuncType(nil,
    		[]*types.Type{
    			i8, i16, i32, i64,
    			f32, f32, f64, f64,
    			i8, i16, i32, i64,
    			f32, f32, f64, f64,
    			c128, c128, c128, c128, c64,
    			i8, i16, i32, i64,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/tests/verify-tfxla-legalization.mlir

      %0 = mhlo.constant dense<1.000000e+00> : tensor<f64>
      %1 = mhlo.convert %0 : (tensor<f64>) -> tensor<i64>
      %2 = mhlo.reshape %1 : (tensor<i64>) -> tensor<1xi64>
      // expected-error @+1 {{Node `mhlo.dynamic_iota` must have compile-time constant}}
      %3 = "mhlo.dynamic_iota"(%2) <{iota_dimension = 0 : i64}> : (tensor<1xi64>) -> tensor<?xi32>
      %4 = mhlo.multiply %3, %3 : tensor<?xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/DefaultArchitectureTest.groovy

            expect:
            arch.name == name
            arch.i386 == i386
            arch.amd64 == amd64
            arch.ia64 == ia64
            arch.arm == arm || arm64
            arch.arm32 == arm
            arch.arm64 == arm64
    
            where:
            name        | i386  | amd64 | ia64  | arm   | arm64
            "x86"       | true  | false | false | false | false
            "x86-64"    | false | true  | false | false | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/prepare_tpu_computation_for_tf_export.mlir

      func.return %0#0 : tensor<*xf32>
    }
    
    // CHECK-LABEL: @RewriteSendRecvOps
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 18:46:36 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

      }
    
      // CHECK-LABEL: multiple_return_values
      func.func @multiple_return_values(%arg0: tensor<3xi64>) -> tensor<i64> {
         %0:3 = "tf.Unpack"(%arg0) {axis = 0 : i64} : (tensor<3xi64>) -> (tensor<i64>, tensor<i64>, tensor<i64>)
        // CHECK: return %1 : tensor<i64>
        func.return %0#0 : tensor<i64>
      }
    
      // CHECK-LABEL: constant_parameter
      func.func @constant_parameter(%arg0: tensor<2xf32>) -> tensor<2xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK: arith.index_cast {{.*}} : index to i64
      // CHECK: arith.cmpi eq, {{.*}} : i64
      // CHECK: arith.addi {{.*}} : i64
      // CHECK: tensor.dim {{.*}} : tensor<4xi32>
      // CHECK: arith.index_cast {{.*}} : index to i64
      // CHECK: select {{.*}} : i64
      // CHECK: arith.index_cast {{.*}} : i64 to index
      // CHECK: arith.index_cast {{.*}} : i64 to index
      // CHECK: tensor.from_elements {{.*}} : tensor<1xindex>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
Back to top