Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for linux_x86_64 (0.19 sec)

  1. tensorflow/c/experimental/filesystem/plugins/posix/BUILD

    # On Linux, we can copy files faster using `sendfile`. But not elsewhere.
    # Hence, this private library to select which implementation to use.
    cc_library(
        name = "copy_file",
        srcs = select({
            "//tensorflow:linux_x86_64": ["copy_file_linux.cc"],
            "//conditions:default": ["copy_file_portable.cc"],
        }),
        hdrs = ["copy_file.h"],
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Sun Mar 24 20:08:23 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  2. tensorflow/BUILD

    )
    
    config_setting(
        name = "linux_x86_64",
        values = {"cpu": "k8"},
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "haswell",
        values = {"cpu": "haswell"},
        visibility = ["//visibility:public"],
    )
    
    # This condition takes precedence over :linux_x86_64
    config_setting(
        name = "linux_x86_64_no_sse",
        values = {
            "cpu": "k8",
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (6)
  3. .bazelrc

    build:cross_compile_base --host_crosstool_top=//tensorflow/tools/toolchains/cross_compile/cc:cross_compile_toolchain_suite
    build:cross_compile_base --extra_execution_platforms=//tensorflow/tools/toolchains/cross_compile/config:linux_x86_64
    
    # XLA related settings for cross-compiled build. Certain paths are
    # different in the XLA repo.
    build:cross_compile_base_xla --host_cpu=k8
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 23 01:21:54 GMT 2024
    - 53.4K bytes
    - Viewed (2)
Back to top