Skip to content

Commit

Permalink
#2059: Remove NVCC pipeline for 10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
thearusable committed Jan 25, 2023
1 parent ab0a9d0 commit 27fa571
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 248 deletions.
203 changes: 0 additions & 203 deletions ci/azure/azure-nvidia-10-ubuntu-mpich.yml

This file was deleted.

28 changes: 2 additions & 26 deletions ci/docker/ubuntu-nvidia-cpp.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG arch=amd64
FROM ${arch}/ubuntu:18.04 as base

ARG proxy=""
ARG compiler=nvcc-10
ARG compiler=nvcc-11

ENV https_proxy=${proxy} \
http_proxy=${proxy}
Expand All @@ -31,31 +31,7 @@ RUN apt-get update -y -q && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

RUN if test ${compiler} = "nvcc-10"; then \
wget http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-ubuntu1804.pin && \
mv cuda-ubuntu1804.pin /etc/apt/preferences.d/cuda-repository-pin-600 && \
wget http://developer.download.nvidia.com/compute/cuda/10.1/Prod/local_installers/cuda-repo-ubuntu1804-10-1-local-10.1.243-418.87.00_1.0-1_amd64.deb && \
dpkg -i cuda-repo-ubuntu1804-10-1-local-10.1.243-418.87.00_1.0-1_amd64.deb && \
apt-key add /var/cuda-repo-10-1-local-10.1.243-418.87.00/7fa2af80.pub && \
apt-get update && \
apt-get -y install cuda-nvcc-10-1 cuda-cudart-dev-10-1 && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* && \
rm -rf cuda-repo-ubuntu1804-10-1-local-10.1.243-418.87.00_1.0-1_amd64.deb && \
ln -s /usr/local/cuda-10.1 /usr/local/cuda-versioned; \
elif test ${compiler} = "nvcc-10.2"; then \
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-ubuntu1804.pin && \
mv cuda-ubuntu1804.pin /etc/apt/preferences.d/cuda-repository-pin-600 && \
wget https://developer.download.nvidia.com/compute/cuda/10.2/Prod/local_installers/cuda-repo-ubuntu1804-10-2-local-10.2.89-440.33.01_1.0-1_amd64.deb && \
dpkg -i cuda-repo-ubuntu1804-10-2-local-10.2.89-440.33.01_1.0-1_amd64.deb && \
apt-key add /var/cuda-repo-10-2-local-10.2.89-440.33.01/7fa2af80.pub && \
apt-get update && \
apt-get -y install cuda && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* && \
rm -rf cuda-repo-ubuntu1804-10-2-local-10.2.89-440.33.01_1.0-1_amd64.deb && \
ln -s /usr/local/cuda-10.2 /usr/local/cuda-versioned; \
elif test ${compiler} = "nvcc-11"; then \
RUN if test ${compiler} = "nvcc-11"; then \
wget http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-ubuntu1804.pin && \
mv cuda-ubuntu1804.pin /etc/apt/preferences.d/cuda-repository-pin-600 && \
wget http://developer.download.nvidia.com/compute/cuda/11.0.1/local_installers/cuda-repo-ubuntu1804-11-0-local_11.0.1-450.36.06-1_amd64.deb && \
Expand Down
6 changes: 1 addition & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# clang-4.0, clang-5.0, clang-6.0, clang-7, clang-8,
# clang-9, clang-10,
# icpx,
# nvcc-10, nvcc-10.2, nvcc-11, nvcc-11.2}
# nvcc-11, nvcc-11.2}
# REPO=lifflander1/vt
# UBUNTU={18.04, 20.04}
# ULIMIT_CORE=0
Expand Down Expand Up @@ -84,8 +84,6 @@ volumes:
amd64-ubuntu-20.04-gcc-10-cache:
amd64-ubuntu-18.04-icpx-cache:
amd64-ubuntu-18.04-icpc-cache:
amd64-ubuntu-18.04-nvcc-10-cache:
amd64-ubuntu-18.04-nvcc-10.2-cache:
amd64-ubuntu-18.04-nvcc-11-cache:
amd64-ubuntu-18.04-nvcc-11.2-cache:
amd64-alpine-clang-4.0-cache:
Expand All @@ -105,8 +103,6 @@ volumes:
amd64-alpine-icc-20-cache:
amd64-alpine-icpx-cache:
amd64-alpine-icpc-cache:
amd64-alpine-nvcc-10-cache:
amd64-alpine-nvcc-10.2-cache:
amd64-alpine-nvcc-11-cache:
amd64-alpine-nvcc-11.2-cache:
arm64v8-ubuntu-18.04-gcc-7-cache:
Expand Down
14 changes: 0 additions & 14 deletions scripts/workflows-azure.ini
Original file line number Diff line number Diff line change
Expand Up @@ -60,20 +60,6 @@ cache_name = ubuntu-intel-oneapi-icpc-cache
output_name = ci/azure/azure-intel-oneapi-icpc-ubuntu-mpich.yml
vt_extended_tests = 0

[PR-tests-nvcc-10-1]
test_configuration = "nvidia cuda 10.1, ubuntu, mpich"
compiler_type = nvidia
compiler = nvcc-10
distro = 18.04
cache_name = ubuntu-nvidia-10-cache
output_name = ci/azure/azure-nvidia-10-ubuntu-mpich.yml
vt_extended_tests = 0
job_name = build_optional
vt_trace = 1
vt_pool = 0
vt_diagnostics = 0
vt_production_build = 1

[PR-tests-nvcc-11-0]
test_configuration = "nvidia cuda 11.0, ubuntu, mpich"
compiler_type = nvidia
Expand Down

0 comments on commit 27fa571

Please sign in to comment.