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