We no longer need to install libnvidia-ml.so

This commit is contained in:
Ashwin Srinath
2025-12-03 15:37:20 -05:00
parent 7ad064ea4f
commit cadfa7de61

View File

@@ -9,11 +9,6 @@ set -euo pipefail
echo -e "#!/bin/bash\nsource /opt/rh/gcc-toolset-13/enable" >/etc/profile.d/enable_devtools.sh
source /etc/profile.d/enable_devtools.sh
# Install NVIDIA Management Library (required by pynvbench at runtime)
# This is a driver library that we exclude from the wheel but need for testing
echo "Installing libnvidia-ml.so.1..."
/workspace/ci/util/retry.sh 5 30 dnf -y install nvidia-driver-libs
# Set up Python environment (only if not already available)
source /workspace/ci/pyenv_helper.sh
if ! command -v python${py_version} &> /dev/null; then