Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for HERMETIC_CUDA_VERSION (0.13 sec)

  1. configure.py

    def set_hermetic_cuda_version(environ_cp):
      """Set HERMETIC_CUDA_VERSION."""
      ask_cuda_version = (
          'Please specify the hermetic CUDA version you want to use '
          'or leave empty to use the default version. '
      )
      hermetic_cuda_version = get_from_env_or_user_or_default(
          environ_cp, 'HERMETIC_CUDA_VERSION', ask_cuda_version, None
      )
      if hermetic_cuda_version:
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Wed Oct 02 22:16:02 UTC 2024
    - 48.2K bytes
    - Viewed (0)
  2. ci/official/containers/linux_arm64/devel.usertools/code_check_full.bats

    @test "Pip package doesn't depend on CUDA" {
      bazel cquery \
        --experimental_cc_shared_library \
        --@local_config_cuda//:enable_cuda \
        --repo_env=HERMETIC_CUDA_VERSION="12.3.2" \
        --repo_env=HERMETIC_CUDNN_VERSION="8.9.7.29" \
        "somepath(//tensorflow/tools/pip_package:build_pip_package, " \
        "@local_config_cuda//cuda:cudart + "\
        "@local_config_cuda//cuda:cudart + "\
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Wed Aug 14 18:47:44 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. ci/official/utilities/code_check_full.bats

    @test "Pip package doesn't depend on CUDA" {
      bazel cquery \
        --experimental_cc_shared_library \
        --@local_config_cuda//:enable_cuda \
        --@local_config_cuda//cuda:include_cuda_libs=false \
        --repo_env=HERMETIC_CUDA_VERSION="12.3.2" \
        --repo_env=HERMETIC_CUDNN_VERSION="8.9.7.29" \
        "somepath(//tensorflow/tools/pip_package:wheel, " \
        "@local_config_cuda//cuda:cudart + "\
        "@local_config_cuda//cuda:cudart + "\
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Wed Oct 23 18:48:35 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. .bazelrc

    build:cuda --repo_env TF_NEED_CUDA=1
    build:cuda --crosstool_top=@local_config_cuda//crosstool:toolchain
    build:cuda --@local_config_cuda//:enable_cuda
    # Default CUDA and CUDNN versions.
    build:cuda --repo_env=HERMETIC_CUDA_VERSION="12.5.1"
    build:cuda --repo_env=HERMETIC_CUDNN_VERSION="9.3.0"
    # This flag is needed to include CUDA libraries.
    build:cuda --@local_config_cuda//cuda:include_cuda_libs=true
    
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Mon Oct 28 22:02:31 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top