From 3ea2682f3bb70ad453570e3992e63bb61d6a322e Mon Sep 17 00:00:00 2001 From: PaliC <> Date: Tue, 25 Jun 2024 16:06:34 -0700 Subject: [PATCH] fix typo --- tools/scripts/generate_binary_build_matrix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/scripts/generate_binary_build_matrix.py b/tools/scripts/generate_binary_build_matrix.py index a6fc82255b..5ef96b5f4a 100644 --- a/tools/scripts/generate_binary_build_matrix.py +++ b/tools/scripts/generate_binary_build_matrix.py @@ -290,7 +290,7 @@ def get_wheel_install_command( use_split_build: bool = False, ) -> str: if use_split_build: - if (gpu_arch_version in CUDA_ARCHES) and (os == LINUX) and (channel == NIGHTLY): + if (gpu_arch_version in CUDA_ARCHES) and (os == LINUX) and (channel == NIGHTLY): return f"{WHL_INSTALL_BASE} {PACKAGES_TO_INSTALL_WHL} --index-url {get_base_download_url_for_repo('whl', channel, gpu_arch_type, desired_cuda)}_pypi_pkg" else: raise ValueError("Split build is not supported for this configuration. It is only supported for CUDA 11.8, 12.1, 12.4 on Linux nightly builds.")