Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for local_config_cuda (0.17 sec)

  1. ci/official/containers/linux_arm64/devel.usertools/code_check_full.bats

        --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 + "\
        "@local_config_cuda//cuda:cuda_driver + "\
        "@local_config_cuda//cuda:cudnn + "\
    Registered: Tue Oct 29 12:39:09 UTC 2024
    - Last Modified: Wed Aug 14 18:47:44 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. ci/official/utilities/code_check_full.bats

        --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 + "\
        "@local_config_cuda//cuda:cuda_driver + "\
    Registered: Tue Oct 29 12:39:09 UTC 2024
    - Last Modified: Wed Oct 23 18:48:35 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. ci/official/pycpp.sh

    if [[ $TFCI_PYCPP_SWAP_TO_BUILD_ENABLE == 1 ]]; then
      tfrun bazel build $TFCI_BAZEL_COMMON_ARGS --profile "$PROFILE_JSON_PATH" --@local_config_cuda//cuda:override_include_cuda_libs=true --config="${TFCI_BAZEL_TARGET_SELECTING_CONFIG_PREFIX}_pycpp_test"
    else
      tfrun bazel test $TFCI_BAZEL_COMMON_ARGS --profile "$PROFILE_JSON_PATH" --@local_config_cuda//cuda:override_include_cuda_libs=true --config="${TFCI_BAZEL_TARGET_SELECTING_CONFIG_PREFIX}_pycpp_test"
    fi
    
    Registered: Tue Oct 29 12:39:09 UTC 2024
    - Last Modified: Wed Oct 23 18:48:35 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. tensorflow/BUILD

        actual = if_oss(
            "@local_config_cuda//:is_cuda_enabled",
            "@local_config_cuda//cuda:using_config_cuda",
        ),
    )
    
    # Config setting that is satisfied when CUDA device code should be compiled
    # with clang. It does not imply that CUDA support has been enabled.
    alias(
        name = "is_cuda_compiler_clang",
        actual = if_oss(
            "@local_config_cuda//:is_cuda_compiler_clang",
    Registered: Tue Oct 29 12:39:09 UTC 2024
    - Last Modified: Wed Oct 16 05:28:35 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  5. .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 Oct 29 12:39:09 UTC 2024
    - Last Modified: Mon Oct 28 22:02:31 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  6. WORKSPACE

    cudnn_redist_init_repository(
        cudnn_redistributions = CUDNN_REDISTRIBUTIONS,
    )
    
    load(
        "@local_tsl//third_party/gpus/cuda/hermetic:cuda_configure.bzl",
        "cuda_configure",
    )
    
    cuda_configure(name = "local_config_cuda")
    
    load(
        "@local_tsl//third_party/nccl/hermetic:nccl_redist_init_repository.bzl",
        "nccl_redist_init_repository",
    )
    
    nccl_redist_init_repository()
    
    load(
    Registered: Tue Oct 29 12:39:09 UTC 2024
    - Last Modified: Fri Oct 11 16:49:28 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top