We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b880ed5 commit a8716ceCopy full SHA for a8716ce
ci/cli/build.py
@@ -654,6 +654,9 @@ async def main():
654
if args.cudnn_version != "9.1.1":
655
logging.debug("Setting Hermetic cuDNN version to %s", args.cudnn_version)
656
bazel_command.append(f"--repo_env=HERMETIC_CUDNN_VERSION={args.cudnn_version}")
657
+ if args.cuda_compute_capabilities:
658
+ logging.debug("Setting CUDA compute capabilities to %s", args.cuda_compute_capabilities)
659
+ bazel_command.append(f"--repo_env HERMETIC_CUDA_COMPUTE_CAPABILITIES={args.cuda_compute_capabilities}")
660
661
# If building ROCM packages, set the ROCm path and ROCm AMD GPU targets.
662
if "rocm" in args.command:
0 commit comments