Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for bzl (0.13 sec)

  1. configure.py

      # Convert python path to Windows style before writing into bazel.rc
      if is_windows() or is_cygwin():
        python_lib_path = cygpath(python_lib_path)
    
      # Set-up env variables used by python_configure.bzl
      write_action_env_to_bazelrc('PYTHON_BIN_PATH', python_bin_path)
      write_action_env_to_bazelrc('PYTHON_LIB_PATH', python_lib_path)
      write_to_bazelrc('build --python_path=\"{}"'.format(python_bin_path))
    Python
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  2. .bazelrc

    build:cuda_clang_official --crosstool_top="@sigbuild-r2.17-clang_config_cuda//crosstool:toolchain"
    
    # Build with nvcc for CUDA and clang for host
    build:nvcc_clang --config=cuda
    # Unfortunately, cuda_configure.bzl demands this for using nvcc + clang
    build:nvcc_clang --action_env=TF_CUDA_CLANG="1"
    build:nvcc_clang --action_env=TF_NVCC_CLANG="1"
    build:nvcc_clang --@local_config_cuda//:cuda_compiler=nvcc
    
    
    # Debug config
    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