Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for ARM64 (0.07 sec)

  1. src/cmd/asm/internal/asm/testdata/arm64.s

    eric fang <******@****.***> 1701834073 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    		case "linux/386", "linux/amd64", "linux/arm", "linux/arm64", "linux/loong64", "linux/ppc64le", "linux/riscv64", "linux/s390x",
    			"android/amd64", "android/arm", "android/arm64", "android/386",
    			"freebsd/amd64",
    			"darwin/amd64", "darwin/arm64",
    			"ios/amd64", "ios/arm64",
    			"aix/ppc64",
    			"openbsd/arm64",
    			"windows/386", "windows/amd64", "windows/arm", "windows/arm64":
    			return true
    		}
    		return false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.31.md

    [kubernetes-client-darwin-arm64.tar.gz](https://dl.k8s.io/v1.31.0-alpha.1/kubernetes-client-darwin-arm64.tar.gz) | 054897580442e027c4d0c5c67769e0f98f464470147abb981b200358bcf13b134eac166845350f2e2c8460df3577982f18eafad3be698cfee6e5a4a2e088f0d3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  4. .bazelrc

    # ARM64 PYCPP
    # In Linux Arm64 presubmit/continuous build, we cross-compile the binaries on
    # Linux x86 so that we can use RBE. Since tests still need to run on the single
    # host Arm64 machine, the build becomes too slow (~30 min) to be a presubmit.
    # For testing purposes, we want to see the runtime performance of an
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    	"android/arm":     true,
    	"android/arm64":   true,
    	"ios/arm64":       true,
    	"ios/amd64":       true,
    	"js/wasm":         false,
    	"wasip1/wasm":     false,
    	"netbsd/386":      true,
    	"netbsd/amd64":    true,
    	"netbsd/arm":      true,
    	"netbsd/arm64":    true,
    	"openbsd/386":     true,
    	"openbsd/amd64":   true,
    	"openbsd/arm":     true,
    	"openbsd/arm64":   true,
    	"openbsd/mips64":  true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    }
    
    // returns the lsb part of the auxInt field of arm64 bitfield ops.
    func (bfc arm64BitField) getARM64BFlsb() int64 {
    	return int64(uint64(bfc) >> 8)
    }
    
    // returns the width part of the auxInt field of arm64 bitfield ops.
    func (bfc arm64BitField) getARM64BFwidth() int64 {
    	return int64(bfc) & 0xff
    }
    
    // checks if mask >> rshift applied at lsb is a valid arm64 bitfield op mask.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. src/runtime/malloc.go

    	// we'll accept for the heap. We can't just move to the full
    	// 48 bits because this uses too much address space for older
    	// iOS versions.
    	// TODO(mknyszek): Once iOS <14 is deprecated, promote ios/arm64
    	// to a 48-bit address space like every other arm64 platform.
    	//
    	// WebAssembly currently has a limit of 4GB linear memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. tensorflow/BUILD

        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "arm64-v8a",
        values = {"cpu": "arm64-v8a"},
        visibility = ["//visibility:public"],
    )
    
    selects.config_setting_group(
        name = "arm_any",
        match_any = [
            ":arm",
            ":armeabi",
            ":armeabi-v7a",
            ":arm64-v8a",
            ":linux_aarch64",
            ":linux_armhf",
        ],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "JUMPTABLE", controls: 2, aux: "Sym"},
    	}
    
    	archs = append(archs, arch{
    		name:               "ARM64",
    		pkg:                "cmd/internal/obj/arm64",
    		genfile:            "../../arm64/ssa.go",
    		ops:                ops,
    		blocks:             blocks,
    		regnames:           regNamesARM64,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    			// when OpenBSD 7.5 is released and 7.3 is no longer supported.
    			argv = append(argv, "-Wl,-z,nobtcfi")
    		}
    		if ctxt.Arch.InFamily(sys.ARM64) {
    			// Disable execute-only on openbsd/arm64 - the Go arm64 assembler
    			// currently stores constants in the text section rather than in rodata.
    			// See issue #59615.
    			argv = append(argv, "-Wl,--no-execute-only")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top