Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 83 for f64 (0.03 sec)

  1. src/cmd/compile/internal/test/testdata/fp_test.go

    	if d != e {
    		fmt.Printf("For (float32) %v %v %v, expected %v, got %v\n", a, s, b, e, d)
    	}
    }
    
    func expect64(t *testing.T, s string, x, expected float64) {
    	if x != expected {
    		println("F64 Expected", expected, "for", s, ", got", x)
    	}
    }
    
    func expect32(t *testing.T, s string, x, expected float32) {
    	if x != expected {
    		println("F32 Expected", expected, "for", s, ", got", x)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 35K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      func.return %0 : tensor<i16>
    }
    
    // CHECK-LABEL: @testRealDivWithRef
    func.func @testRealDivWithRef(%arg0: tensor<f64>, %arg1: tensor<!tf_type.f64ref>) -> tensor<f64> {
      // CHECK: tf.RealDivOp
      %0 = "tf.RealDivOp"(%arg0, %arg1) : (tensor<f64>, tensor<!tf_type.f64ref>) -> tensor<f64>
      func.return %0 : tensor<f64>
    }
    
    // CHECK-LABEL: @testDivNoNanWithRef
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/ops.mlir

    // -----
    
    // CHECK-LABEL: testReal
    func.func @testReal(%arg0: tensor<? x complex<f64>>) -> tensor<?xf64> {
      // CHECK: "tfl.real"(%arg0)
      %0 = "tfl.real"(%arg0): (tensor<? x complex<f64>>) -> tensor<?xf64>
      func.return %0 : tensor<?xf64>
    }
    
    // -----
    
    func.func @testRealWrongShape(%arg0: tensor<3 x complex<f64>>) -> tensor<4xf32> {
      // expected-error @+1 {{requires the same shape for all operands and results}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/obj6.go

    		AFCOMD,
    		AFCOMDP,
    		AADDSD,
    		ASUBSD,
    		AMULSD,
    		ADIVSD,
    		ACOMISD,
    		AUCOMISD:
    		if p.From.Type == obj.TYPE_FCONST {
    			f64 := p.From.Val.(float64)
    			p.From.Type = obj.TYPE_MEM
    			p.From.Name = obj.NAME_EXTERN
    			p.From.Sym = ctxt.Float64Sym(f64)
    			p.From.Offset = 0
    		}
    	}
    
    	if ctxt.Flag_dynlink {
    		rewriteToUseGot(ctxt, p, newprog)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td

    // Floating-point types (including corresponding reference types)
    
    def TF_Float16 : AnyTypeOf<[F16, TF_Float16Ref], "16-bit float">;
    def TF_Float32 : AnyTypeOf<[F32, TF_Float32Ref], "32-bit float">;
    def TF_Float64 : AnyTypeOf<[F64, TF_Float64Ref], "64-bit float">;
    def TF_Bfloat16 : AnyTypeOf<[BF16, TF_Bfloat16Ref], "bfloat16">;
    def TF_Float8E4M3FN : AnyTypeOf<[F8E4M3FN, TF_Float8E4M3FNRef], "float8e4m3fn">;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    	case 'B':
    		rst.backref(rst.demangleType)
    	default:
    		rst.fail("unrecognized character in type")
    	}
    }
    
    var rustBasicTypes = map[byte]string{
    	'a': "i8",
    	'b': "bool",
    	'c': "char",
    	'd': "f64",
    	'e': "str",
    	'f': "f32",
    	'h': "u8",
    	'i': "isize",
    	'j': "usize",
    	'l': "i32",
    	'm': "u32",
    	'n': "i128",
    	'o': "u128",
    	'p': "_",
    	's': "i16",
    	't': "u16",
    	'u': "()",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "FCMP", argLength: 2, reg: fp2flags, asm: "FCMPU", typ: "Flags"},  // arg0 compare to arg1, f64
    		{name: "LTDBR", argLength: 1, reg: fp1flags, asm: "LTDBR", typ: "Flags"}, // arg0 compare to 0, f64
    		{name: "LTEBR", argLength: 1, reg: fp1flags, asm: "LTEBR", typ: "Flags"}, // arg0 compare to 0, f32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/codegen.cc

        case xla::U32:
          *str = "tensorflow::uint32";
          break;
        case xla::U64:
          *str = "tensorflow::uint64";
          break;
        case xla::F32:
          *str = "float";
          break;
        case xla::F64:
          *str = "double";
          break;
        default:
          return errors::Unimplemented("XLA type ", xla::PrimitiveType_Name(type),
                                       " has no equivalent in C++");
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		{name: "UCOMISS", argLength: 2, reg: fp2flags, asm: "UCOMISS", typ: "Flags"}, // arg0 compare to arg1, f32
    		{name: "UCOMISD", argLength: 2, reg: fp2flags, asm: "UCOMISD", typ: "Flags"}, // arg0 compare to arg1, f64
    
    		{name: "TESTL", argLength: 2, reg: gp2flags, commutative: true, asm: "TESTL", typ: "Flags"}, // (arg0 & arg1) compare to 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // storage type is i32. i32 storage type is not compatible with
    // `tfl.dequantize`.
    
    func.func @uniform_dequantize_op_return_f64(%arg: tensor<2x2x!quant.uniform<i8:f64, 1.000000e+0:8>>) -> tensor<2x2xf64> {
      %0 = stablehlo.uniform_dequantize %arg : (tensor<2x2x!quant.uniform<i8:f64, 1.000000e+0:8>>) -> tensor<2x2xf64>
      return %0 : tensor<2x2xf64>
    }
    // CHECK-LABEL: uniform_dequantize_op_return_f64
    // CHECK: stablehlo.uniform_dequantize
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
Back to top