We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9b7bbf commit 59eb6b7Copy full SHA for 59eb6b7
1 file changed
.github/workflows/buildcupy.yaml
@@ -34,11 +34,12 @@ jobs:
34
nvcc --version &&
35
nvidia-smi
36
'
37
- - name: Find CUDA modules
+ - name: Find CUDA installs
38
run: |
39
srun --account=yuxilab -n 1 -N 1 --gres=gpu:L40S:1 bash -c '
40
- source /etc/profile.d/modules.sh &&
41
- module avail cuda 2>&1
+ find /usr/local -maxdepth 1 -name "cuda*" 2>/dev/null &&
+ find /opt -maxdepth 2 -name "cuda*" 2>/dev/null &&
42
+ find /cm -maxdepth 4 -name "libnvvm.so" 2>/dev/null
43
44
- name: Test with pytest
45
0 commit comments