Skip to content

Commit f28f0c9

Browse files
[spark-rapids] Update spark rapids version to 24.06.0 (#1187)
* update tests to unblock CI Signed-off-by: Suraj Aralihalli <[email protected]> * update 24.06.0 Signed-off-by: Suraj Aralihalli <[email protected]> --------- Signed-off-by: Suraj Aralihalli <[email protected]>
1 parent 09e1383 commit f28f0c9

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

spark-rapids/spark-rapids.sh

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ else
4141
fi
4242

4343
# Update SPARK RAPIDS config
44-
readonly DEFAULT_SPARK_RAPIDS_VERSION="24.04.0"
44+
readonly DEFAULT_SPARK_RAPIDS_VERSION="24.06.0"
4545
readonly SPARK_RAPIDS_VERSION=$(get_metadata_attribute 'spark-rapids-version' ${DEFAULT_SPARK_RAPIDS_VERSION})
4646
readonly XGBOOST_VERSION=$(get_metadata_attribute 'xgboost-version' ${DEFAULT_XGBOOST_VERSION})
4747

@@ -237,14 +237,17 @@ function install_nvidia_gpu_driver() {
237237

238238
elif [[ ${OS_NAME} == "rocky" ]]; then
239239

240+
# Ensure the Correct Kernel Development Packages are Installed
241+
execute_with_retries "yum install -y kernel-devel-$(uname -r) kernel-headers-$(uname -r)"
242+
240243
ROCKY_VERSION=$(lsb_release -r | awk '{print $2}') # 8.8 or 9.1
241244
ROCKY_VERSION=${ROCKY_VERSION%.*} # 8 or 9
242245

243246
readonly NVIDIA_ROCKY_REPO_URL="https://developer.download.nvidia.com/compute/cuda/repos/rhel${ROCKY_VERSION}/x86_64/cuda-rhel${ROCKY_VERSION}.repo"
244247
execute_with_retries "dnf config-manager --add-repo ${NVIDIA_ROCKY_REPO_URL}"
245248
execute_with_retries "dnf clean all"
246-
execute_with_retries "dnf -y -q module install nvidia-driver:${NVIDIA_DRIVER_VERSION_PREFIX}"
247-
execute_with_retries "dnf -y -q install cuda-toolkit-${CUDA_VERSION_MAJOR//./-}"
249+
execute_with_retries "dnf -y -q module install nvidia-driver:latest-dkms"
250+
execute_with_retries "dnf -y -q install cuda-toolkit"
248251
modprobe nvidia
249252

250253
else

0 commit comments

Comments
 (0)