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

Update NVCC: 10.1.243 -> 11.0.221 #8

Merged
merged 1 commit into from
Dec 29, 2021
Merged
Show file tree
Hide file tree
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
22 changes: 21 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,33 @@ RUN apt-get update && \
apt-add-repository -y "deb http://archive.ubuntu.com/ubuntu/ xenial-updates universe" && \
apt-get update && \
apt-get install -y --no-install-recommends \
ca-certificates gnupg \
git astyle ninja-build make unzip iwyu libidn11 valgrind \
lsb-release wget software-properties-common lcov gpg-agent nvidia-cuda-toolkit \
lsb-release wget software-properties-common lcov gpg-agent \
g++-4.8 g++-4.9 g++-5 g++-6 g++-7 g++-8 g++-9 g++-10 g++-11 g++ \
clang-3.5 clang-3.6 clang-3.7 clang-3.8 clang-3.9 clang-4.0 clang-5.0 clang-6.0 clang-7 clang-8 clang-9 clang-10 clang-11 clang-12 && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

############################
# get a newer CUDA Toolkit #
############################

RUN wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/7fa2af80.pub && \
apt-key add 7fa2af80.pub && \
echo "deb https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64 /" \
| tee /etc/apt/sources.list.d/cuda.list && \
apt-get update && \
apt-get install -y \
cuda-command-line-tools-11-0 \
cuda-compiler-11-0 \
cuda-minimal-build-11-0 && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* && \
ln -s cuda-11.0 /usr/local/cuda

ENV PATH=${PATH}:/usr/local/cuda/bin

####################
# get latest CMake #
####################
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ docker pull nlohmann/json-ci:latest

The goal is to provide a fairly recent C++ build and analysis tool chain.

Versions (as of 2021-11-21):
Versions (as of 2021-12-29):

- Clang 14.0.0-++20211221052852+55c71c9eac9b-1~exp1~20211221172954.95
- GCC 12.0.0 20211219 (experimental)
Expand Down Expand Up @@ -56,7 +56,7 @@ Furthermore, some "historic" C++ compilers are available:
- clang 11.0.0
- clang 12.0.0
- clang 13.0.1-++20211015123032+cf15ccdeb6d5-1~exp1~20211015003613.5
- nvcc 10.1.243
- nvcc 11.0.221


### Scripts
Expand Down