Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for x64 (0.17 sec)

  1. ci/devinfra/docker_windows/Dockerfile

    RUN New-Item -Path "C:/" -Name "TEMP" -ItemType "directory"; \
        Invoke-WebRequest "https://aka.ms/vs/17/release/vc_redist.x64.exe" \
            -OutFile C:/TEMP/vc_redist.x64.exe -UseBasicParsing; \
        Start-Process -filepath C:/TEMP/vc_redist.x64.exe -ArgumentList '/install', '/passive', '/norestart' -Wait; \
        Remove-Item C:/TEMP/vc_redist.x64.exe
    
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri Aug 18 17:24:20 GMT 2023
    - 13.6K bytes
    - Viewed (0)
  2. .bazelrc

    build:rbe_win_clang --extra_toolchains="//tensorflow/tools/toolchains/win/20240424:cc-toolchain-x64_windows-clang-cl"
    build:rbe_win_clang --extra_execution_platforms="//tensorflow/tools/toolchains/win:x64_windows-clang-cl"
    build:rbe_win_clang --host_platform="//tensorflow/tools/toolchains/win:x64_windows-clang-cl"
    build:rbe_win_clang --platforms="//tensorflow/tools/toolchains/win:x64_windows-clang-cl"
    build:rbe_win_clang --compiler=clang-cl
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Apr 24 20:50:35 GMT 2024
    - 52.6K bytes
    - Viewed (2)
  3. tensorflow/BUILD

        constraint_values = if_google(
            ["//third_party/bazel_platforms/os:windows"],
            [],
        ),
        # OSS builds query the CPU type.
        values = if_oss(
            {"cpu": "x64_windows"},
            {},
        ),
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "no_tensorflow_py_deps",
        define_values = {"no_tensorflow_py_deps": "true"},
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (8)
  4. RELEASE.md

    ### Known Caveats
    
    ### Major Features and Improvements
    
    *   [oneDNN CPU performance optimizations](https://github.com/tensorflow/community/blob/master/rfcs/20210930-enable-onednn-ops.md)
        Windows x64 & x86.
    
        *   **Windows x64 & x86 packages:**
            *   oneDNN optimizations are *enabled by default* on X86 CPUs
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top