Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Win (0.18 sec)

  1. .bazelrc

    build:rbe_win_clang --config=rbe_win_base
    build:rbe_win_clang --crosstool_top="//tensorflow/tools/toolchains/win/20240424:toolchain"
    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"
    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)
  2. configure.py

          get_var(
              environ_cp, 'TF_NEED_CLANG', None, True, question, yes_reply, no_reply
          )
      )
      return var
    
    
    def choose_compiler_Win(environ_cp):
      question = 'Do you want to use Clang to build TensorFlow?'
      yes_reply = 'Add "--config=win_clang" to compile TensorFlow with CLANG.'
      no_reply = 'MSVC will be used to compile TensorFlow.'
      var = int(
          get_var(
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  3. tensorflow/BUILD

            ],
        }),
        per_os_targets = True,
        soversion = VERSION,
        visibility = ["//visibility:public"],
        # copybara:comment_begin(OSS Windows only: DEF file for exported symbols)
        win_def_file = select({
            "//tensorflow:windows": ":tensorflow_filtered_def_file",
            "//conditions:default": None,
        }),
        # copybara:comment_end
        deps = [
            "//tensorflow/c:c_api",
    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)
Back to top