Skip to content

Commit 3888d38

Browse files
normallytangentnilsfriess
authored andcommitted
downgrade cuda version to 11.6
1 parent 43c023d commit 3888d38

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/linux.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,15 @@ jobs:
4545
sudo ./b2 install -j4
4646
- name: install CUDA
4747
run: |
48-
cd
49-
wget https://developer.download.nvidia.com/compute/cuda/11.8.0/local_installers/cuda_11.8.0_520.61.05_linux.run
50-
sudo sh cuda_11.8.0_520.61.05_linux.run --override --silent --toolkit
48+
cd
49+
wget https://developer.download.nvidia.com/compute/cuda/11.6.0/local_installers/cuda_11.6.0_510.39.01_linux.run
50+
sudo sh cuda_11.6.0_510.39.01_linux.run --override --silent --toolkit
51+
cd
52+
- name: test CUDA and cuBLAS
53+
run: |
54+
/usr/local/cuda/bin/nvcc --version
55+
cat /usr/local/cuda/version.json
56+
cat /usr/local/cuda/include/cublas.h | grep CUBLAS
5157
- name: build hipSYCL
5258
run: |
5359
cd
@@ -84,7 +90,7 @@ jobs:
8490
cd oneMKL
8591
mkdir build
8692
cd build
87-
cmake -DCUDA_CUDA_LIBRARY=/usr/local/cuda-11.8/lib64/stubs/libcuda.so \
93+
cmake -DCUDA_CUDA_LIBRARY=/usr/local/cuda-11.6/lib64/stubs/libcuda.so \
8894
-DENABLE_CUBLAS_BACKEND=True \
8995
-DENABLE_CURAND_BACKEND=False \
9096
-DENABLE_CUSOLVER_BACKEND=False \

0 commit comments

Comments
 (0)