Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/marian.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Grundkiewicz <rogrundk@microsoft.com>2021-02-01 22:40:46 +0300
committerRoman Grundkiewicz <rogrundk@microsoft.com>2021-02-01 22:40:46 +0300
commite407d49bda00a4b932e477a8b6d1945d5b9226cd (patch)
tree7b9b4208dcbaf9537e08dfbefd2d055c79e37e7c /azure-pipelines.yml
parentba91b391e28567fed467234dd702f504129b2ee8 (diff)
Merged PR 17467: Enable pipeline with CUDA 11.2
Enabling Azure job with Ubuntu 20.04, CUDA 11.1, gcc-9, static, GPU-only.
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml24
1 files changed, 12 insertions, 12 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index d85f0112..dee567f4 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -181,19 +181,19 @@ stages:
################################################################
# Ubuntu 20.04 supports CUDA 11+
#
- # Disabled because FBGEMM + GCC 9+ do not compile on machines with
+ # CPU is disabled because FBGEMM + GCC 9+ do not compile on machines with
# avx512_vnni, see https://github.com/marian-nmt/marian-dev/issues/709
#
- #"20.04 CUDA 11.0 gcc-9":
- #image: ubuntu-20.04
- #boost: false # ubuntu-20.04 does not have Boost pre-installed yet
- #cpu: true
- #gpu: true
- #cuda: 11.0
- #gcc: 9
- #unit_tests: false # disable unit tests to minimize compilation time
- #examples: false # disable examples to minimize compilation time
- #static: false
+ "20.04 CUDA 11.1 gcc-9":
+ image: ubuntu-20.04
+ boost: false # ubuntu-20.04 does not have Boost pre-installed yet
+ cpu: false # the used fbgemm does not compile with gcc 9+
+ gpu: true
+ cuda: 11.1
+ gcc: 9
+ unit_tests: false # disable unit tests to minimize compilation time
+ examples: false # disable examples to minimize compilation time
+ static: false
################################################################
# Ubuntu 18.04 supports CUDA 10.1+
"18.04 CUDA 10.2 gcc-8":
@@ -257,7 +257,7 @@ stages:
-DCOMPILE_EXAMPLES=$(examples) \
-DCOMPILE_SERVER=$(boost) \
-DCOMPILE_TESTS=$(unit_tests) \
- -DUSE_FBGEMM=on \
+ -DUSE_FBGEMM=$(cpu) \
-DUSE_SENTENCEPIECE=on \
-DUSE_STATIC_LIBS=$(static) \
-DBOOST_ROOT=$BOOST_ROOT_1_72_0 \