From d79408374dbb75b6a278dbabaaec6385cbb2afc9 Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Wed, 11 Dec 2019 21:23:53 -0600 Subject: [PATCH 1/3] Add linux-anvil-cuda docker image for CUDA 10.2 --- .travis.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.travis.yml b/.travis.yml index f0986a65..9182645a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -50,6 +50,12 @@ matrix: - DOCKERTAG=10.1 - CUDA_VER=10.1 + - os: linux + env: + - DOCKERIMAGE=linux-anvil-cuda + - DOCKERTAG=10.2 + - CUDA_VER=10.2 + env: global: secure: "nM8OaFilQkH14wzD1S6DTGejjo3yL/q/1dpz7144Kw68s8FVqW0zsxCC6960ieokY2LutGSv16qTiIFxnRZnHPCXt7X2MhxcagX8IcMu62DWe2jgqwho0hPI65N/bQYLW1l23e9tjKQxWFZopM4Oyzm6TBqlzibTdbPuQI+YB3RBY0dlkIlupPIYtiNlLRR/HnOyyUny/hg3Z65GWeVpXhiMPqXLlfliTiQ31JgBaNuXiP3/ruSCDeyRPWx62IcPGJ1xVSXL3tvkEI2TpGVCsraKCSbgINhm3AHjQ+8ST6GPMxaOaHrKZzssKJpsZhz1dzWINXTLOQ5LrKtBVwfaevFxDmPEr9RcVlzwAAyuWugCyV4Z6NSt/j2Qqw5qGaiiDHyBH0FMmBgzlPzLZ4JKFsZ68aRkc2qV0MeN0YJRwcQ0EnXRULrcwReBztDHZwixSxqlPpQUwbRr7ne05rBjVoMTKaEhyHPO+KYSwQB1wiQgILBtlP/5ofsYc9Eb46m5JJJhJxuLythKpW9mMqd/US4rQrgEHQ/QRIRYwzGnKf/5WXV3W2o4C9QZpH5Da3J7jOLlqxIY5I+Dv9eEk7XxhT7UaEo7C9tmzjaL2D0yrzPnOnPQhMpmCVNWqdTp1eLcIASKSPbmzz8MuYB5yg48wjXWvDIRBQ6hJyuKHhNGE9k=" From db38103582c0eebfd41c7a35c27246e97578a689 Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Thu, 19 Dec 2019 09:32:17 -0800 Subject: [PATCH 2/3] Drop `cudnn` from the container's cached packages As we do not have CUDA 10.2 package of `cudnn`, drop this from the cached packages in the container so that we are able to build this image. We may decide to add this back later due to the size of the package and how long it takes to download. However this will at least help us make forward progress in the near term and we can always reevaluate this decision in the future. --- linux-anvil-cuda/Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/linux-anvil-cuda/Dockerfile b/linux-anvil-cuda/Dockerfile index 9928e999..3ade4111 100644 --- a/linux-anvil-cuda/Dockerfile +++ b/linux-anvil-cuda/Dockerfile @@ -63,7 +63,6 @@ RUN source /opt/conda/etc/profile.d/conda.sh && \ conda activate && \ conda create -n test --yes --quiet --download-only \ defaults::cudatoolkit=${CUDA_VER} \ - defaults::cudnn && \ conda remove --yes --quiet -n test --all && \ conda clean -tiy && \ chgrp -R lucky /opt/conda && \ From 78d78e8ebb7023a27833e06c96a87632a749bf94 Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Thu, 19 Dec 2019 10:09:45 -0800 Subject: [PATCH 3/3] Add missing `&&` --- linux-anvil-cuda/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/linux-anvil-cuda/Dockerfile b/linux-anvil-cuda/Dockerfile index 3ade4111..8e599fce 100644 --- a/linux-anvil-cuda/Dockerfile +++ b/linux-anvil-cuda/Dockerfile @@ -63,6 +63,7 @@ RUN source /opt/conda/etc/profile.d/conda.sh && \ conda activate && \ conda create -n test --yes --quiet --download-only \ defaults::cudatoolkit=${CUDA_VER} \ + && \ conda remove --yes --quiet -n test --all && \ conda clean -tiy && \ chgrp -R lucky /opt/conda && \