Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for X86_64 (0.15 sec)

  1. tensorflow/BUILD

        visibility = ["//visibility:public"],
    )
    
    # Sometimes Bazel reports darwin_x86_64 as "darwin" and sometimes as
    # "darwin_x86_64". The former shows up when building on a Mac x86_64 host for a Mac x86_64 target.
    # The latter shows up when cross-compiling for Mac x86_64 from a Mac ARM machine and in internal
    # Google builds.
    config_setting(
        name = "macos_x86_64_default",
        constraint_values = if_google(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  2. .bazelrc

    build:android_arm64 --fat_apk_cpu=arm64-v8a
    build:android_x86 --config=android
    build:android_x86 --cpu=x86
    build:android_x86 --fat_apk_cpu=x86
    build:android_x86_64 --config=android
    build:android_x86_64 --cpu=x86_64
    build:android_x86_64 --fat_apk_cpu=x86_64
    
    # Build everything statically for Android since all static libs are later
    # bundled together into a single .so for deployment.
    build:android --dynamic_mode=off
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    |===
    | Tool Chain
    | Architectures
    
    | GCC
    | x86, x86_64, arm64 (macOS Only)
    
    | Clang
    | x86, x86_64, arm64 (macOS only)
    
    | Visual C++
    | x86, x86_64, ia-64
    |===
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

            exit 1
        fi
    }
    
    function detect_arch {
        local host_arch
    
        case "$(uname -m)" in
          x86_64*)
            host_arch=amd64
            ;;
          i?86_64*)
            host_arch=amd64
            ;;
          amd64*)
            host_arch=amd64
            ;;
          aarch64*)
            host_arch=arm64
            ;;
          arm64*)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    			}
    			if *flagLibGCC != "none" {
    				hostArchive(ctxt, *flagLibGCC)
    			}
    			// For glibc systems, the linker setup used by GCC
    			// looks like
    			//
    			//  GROUP ( /lib/x86_64-linux-gnu/libc.so.6
    			//      /usr/lib/x86_64-linux-gnu/libc_nonshared.a
    			//      AS_NEEDED ( /lib64/ld-linux-x86-64.so.2 ) )
    			//
    			// where libc_nonshared.a contains a small set of
    			// symbols including "__stack_chk_fail_local" and a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. configure.py

    _DEFAULT_PROMPT_ASK_ATTEMPTS = 10
    
    _TF_BAZELRC_FILENAME = '.tf_configure.bazelrc'
    _TF_WORKSPACE_ROOT = ''
    _TF_BAZELRC = ''
    _TF_CURRENT_BAZEL_VERSION = None
    
    NCCL_LIB_PATHS = [
        'lib64/', 'lib/powerpc64le-linux-gnu/', 'lib/x86_64-linux-gnu/', ''
    ]
    
    # List of files to configure when building Bazel on Apple platforms.
    APPLE_BAZEL_FILES = [
        'tensorflow/lite/ios/BUILD', 'tensorflow/lite/objc/BUILD',
        'tensorflow/lite/swift/BUILD',
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    // gccMachine returns the gcc -m flag to use, either "-m32", "-m64" or "-marm".
    func (p *Package) gccMachine() []string {
    	switch goarch {
    	case "amd64":
    		if goos == "darwin" {
    			return []string{"-arch", "x86_64", "-m64"}
    		}
    		return []string{"-m64"}
    	case "arm64":
    		if goos == "darwin" {
    			return []string{"-arch", "arm64"}
    		}
    	case "386":
    		return []string{"-m32"}
    	case "arm":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top