We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22cfa35 commit ab478a1Copy full SHA for ab478a1
1 file changed
.github/workflows/UnitTests.yml
@@ -74,6 +74,19 @@ jobs:
74
- name: Checkout Repository
75
uses: actions/checkout@v4
76
77
+ - name: Check Host CUDA and GPU Environment
78
+ run: |
79
+ echo "--- Checking NVIDIA driver and supported CUDA version ---"
80
+ nvidia-smi || echo "nvidia-smi command not found. No GPU or NVIDIA driver detected."
81
+
82
+ echo ""
83
+ echo "--- Checking for default CUDA toolkit installation ---"
84
+ ls -l /usr/local/ | grep cuda || echo "No default CUDA toolkit found in /usr/local/"
85
86
87
+ echo "--- Checking dynamic linker library path ---"
88
+ echo "LD_LIBRARY_PATH=${LD_LIBRARY_PATH:-'Not Set'}"
89
90
- name: Print dependencies
91
run: |
92
# pip uninstall -y transformer-engine transformer-engine-jax transformer-engine-cu12
0 commit comments