From eaad54210ebfbb9ba0bada9ecae8893fe21b064a Mon Sep 17 00:00:00 2001 From: Vineet Bansal Date: Wed, 27 May 2026 12:56:34 -0400 Subject: [PATCH 1/2] trying to fix ci --- backend/cuda/cibuildwheel.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/cuda/cibuildwheel.toml b/backend/cuda/cibuildwheel.toml index ced222b..91f9663 100644 --- a/backend/cuda/cibuildwheel.toml +++ b/backend/cuda/cibuildwheel.toml @@ -8,8 +8,7 @@ repair-wheel-command = "" [tool.cibuildwheel.linux] before-all = [ "yum-config-manager --add-repo https://developer.download.nvidia.com/compute/cuda/repos/rhel9/x86_64/cuda-rhel9.repo", - "yum search cuda-toolkit*", - "yum install -y cuda-toolkit-12-6" + "yum install -y --nobest cuda-toolkit-12-6" ] environment = { CMAKE_CUDA_COMPILER = "/usr/local/cuda-12.6/bin/nvcc" } From ca8649b09399348a3fa098595809d713d31d756b Mon Sep 17 00:00:00 2001 From: Vineet Bansal Date: Wed, 27 May 2026 13:03:39 -0400 Subject: [PATCH 2/2] cuda toolkit version fix --- backend/cuda/cibuildwheel.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/cuda/cibuildwheel.toml b/backend/cuda/cibuildwheel.toml index 91f9663..961712d 100644 --- a/backend/cuda/cibuildwheel.toml +++ b/backend/cuda/cibuildwheel.toml @@ -8,7 +8,8 @@ repair-wheel-command = "" [tool.cibuildwheel.linux] before-all = [ "yum-config-manager --add-repo https://developer.download.nvidia.com/compute/cuda/repos/rhel9/x86_64/cuda-rhel9.repo", - "yum install -y --nobest cuda-toolkit-12-6" + "yum install -y cuda-cccl-12-6-12.6.77-1.x86_64", + "yum install -y cuda-toolkit-12-6" ] environment = { CMAKE_CUDA_COMPILER = "/usr/local/cuda-12.6/bin/nvcc" }