Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for bzl (0.17 sec)

  1. tensorflow/BUILD

            ],
        ),
    )
    
    bzl_library(
        name = "tensorflow_bzl",
        srcs = ["tensorflow.bzl"],
        visibility = ["//visibility:public"],
        deps = [
            "//tensorflow/core/platform:build_config_root_bzl",
            "//tensorflow/core/platform:rules_cc_bzl",
            "//third_party/compute_library:build_defs_bzl",
            "//third_party/llvm_openmp:openmp_bzl",
    Plain Text
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (6)
  2. 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 16 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  3. .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 16 12:39:09 GMT 2024
    - Last Modified: Wed Apr 10 21:49:38 GMT 2024
    - 52.8K bytes
    - Viewed (2)
Back to top