Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

core-cuda: CUDA 11.3 instead of 11.2 #1020

Merged
merged 1 commit into from
Mar 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ docker-cuda: DOCKER_ARGS += --build-arg FIXUP="make cuda-ubuntu cuda-ldconfig"

# Install native CUDA toolkit in different versions
cuda-ubuntu: cuda-ldconfig
apt-get -y install --no-install-recommends cuda-runtime-11-0 cuda-runtime-11-1 cuda-runtime-11-2 cuda-runtime-11-7 cuda-runtime-12-1
apt-get -y install --no-install-recommends cuda-runtime-11-0 cuda-runtime-11-1 cuda-runtime-11-3 cuda-runtime-11-7 cuda-runtime-12-1

cuda-ldconfig: /etc/ld.so.conf.d/cuda.conf
ldconfig
Expand All @@ -242,8 +242,8 @@ cuda-ldconfig: /etc/ld.so.conf.d/cuda.conf
@echo /usr/local/cuda-11.0/targets/x86_64-linux/lib >> $@
@echo /usr/local/cuda-11.1/lib64 >> $@
@echo /usr/local/cuda-11.1/targets/x86_64-linux/lib >> $@
@echo /usr/local/cuda-11.2/lib64 >> $@
@echo /usr/local/cuda-11.2/targets/x86_64-linux/lib >> $@
@echo /usr/local/cuda-11.3/lib64 >> $@
@echo /usr/local/cuda-11.3/targets/x86_64-linux/lib >> $@
@echo /usr/local/cuda-11.7/lib64 >> $@
@echo /usr/local/cuda-11.7/targets/x86_64-linux/lib >> $@
@echo /usr/local/cuda-12.1/lib64 >> $@
Expand Down