Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for isIa64 (0.12 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinBinaryInfo.groovy

            switch (archString) {
                case "x86":
                    return Architectures.forInput("x86")
                case "x64":
                    return Architectures.forInput("x86_64")
                case "IA64":
                    return Architectures.forInput("ia-64")
                case "ARM":
                    return Architectures.forInput("arm")
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. src/time/zoneinfo_read.go

    	// describe a broader range of dates.
    
    	is64 := false
    	if version > 1 {
    		// Skip the 32-bit data.
    		skip := n[NTime]*4 +
    			n[NTime] +
    			n[NZone]*6 +
    			n[NChar] +
    			n[NLeap]*8 +
    			n[NStdWall] +
    			n[NUTCLocal]
    		// Skip the version 2 header that we just read.
    		skip += 4 + 16
    		d.read(skip)
    
    		is64 = true
    
    		// Read the counts again, they can differ.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultVisualStudioLocatorTest.groovy

            "32-bit" | SystemInfo.Architecture.i386  | "ia64"         | false          | LEGACY_IA64_ON_X86
            "64-bit" | SystemInfo.Architecture.amd64 | "ia64"         | true           | LEGACY_IA64_ON_X86
            "64-bit" | SystemInfo.Architecture.amd64 | "ia64"         | false          | LEGACY_IA64_ON_X86
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 25.1K bytes
    - Viewed (0)
  4. src/debug/dwarf/typeunit.go

    		boff := b.off
    		d.typeSigs[sig] = &typeUnit{
    			unit: unit{
    				base:   base,
    				off:    boff,
    				data:   b.bytes(int(n - (b.off - hdroff))),
    				atable: atable,
    				asize:  int(asize),
    				vers:   vers,
    				is64:   dwarf64,
    			},
    			toff: Offset(toff),
    			name: name,
    		}
    		if b.err != nil {
    			return b.err
    		}
    	}
    	return nil
    }
    
    // Return the type for a type signature.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/while_loop_outline.cc

    }
    
    bool IsCompatibleTypeWithTFLCastOp(Type type) {
      auto elemType = getElementTypeOrSelf(type);
      // F16, F32, F64, BF16 types are allowed.
      if (elemType.isBF16() || elemType.isF16() || elemType.isF32() ||
          elemType.isF64())
        return true;
    
      // I1, I4, I8, I16, I32, I64 types are allowed.
      if (elemType.isInteger(1) || elemType.isInteger(4) || elemType.isInteger(8) ||
          elemType.isInteger(16) || elemType.isInteger(32) ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_operator.h

      return std::vector<float>();
    }
    
    template <>
    inline std::vector<double> GetVector(DenseElementsAttr elements) {
      auto type = elements.getType();
      auto elemType = type.getElementType();
      if (elemType.isF64()) {
        auto vec = llvm::to_vector(llvm::map_range(
            elements.getValues<APFloat>(),
            [&](APFloat value) -> double { return value.convertToFloat(); }));
        return std::vector<double>(vec.begin(), vec.end());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 21:00:09 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.cc

                rand_val = mlir::IntegerAttr::get(element_type, std::rand());
              } else if (element_type.isF16() || element_type.isF32() ||
                         element_type.isF64()) {
                rand_val = mlir::FloatAttr::get(element_type,
                                                std::rand() * 1.0 / RAND_MAX);
    
              } else {
                inst.emitWarning()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 11:51:44 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

                 << ")";
          });
          return false;
        }
    
        // Verify the data type is supported.
        Type element_ty = getElementTypeOrSelf(conv.getType());
        if (!element_ty.isF32() && !element_ty.isF64()) {
          (void)rewriter.notifyMatchFailure(conv, [&](Diagnostic &diag) {
            diag << "supported data types for _FusedConv2D are float and double, "
                 << " but got " << element_ty;
          });
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf.go

    	fsu.SetType(sym.SDWARFSECT)
    	isdw64 := isDwarf64(d.linkctxt)
    	haslr := d.linkctxt.Arch.HasLR
    
    	// Length field is 4 bytes on Dwarf32 and 12 bytes on Dwarf64
    	lengthFieldSize := int64(4)
    	if isdw64 {
    		lengthFieldSize += 8
    	}
    
    	// Emit the CIE, Section 6.4.1
    	cieReserve := uint32(16)
    	if haslr {
    		cieReserve = 32
    	}
    	if isdw64 {
    		cieReserve += 4 // 4 bytes added for cid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetectorTest.groovy

        private static Map<String, String> hpuxJvm(String version) {
            ['java.home': "java-home",
             'java.version': "1.${version}.0_66",
             'java.vendor': "Hewlett-Packard Co.",
             'os.arch': "ia64",
             'java.vm.name': "Java HotSpot(TM) 64-Bit Server VM",
             'java.vm.version': "25.66-b17",
             'java.vm.vendor': "Hewlett-Packard Co.",
             'java.runtime.name': "Java(TM) SE Runtime Environment",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 22.9K bytes
    - Viewed (0)
Back to top