Skip to content

Commit

Permalink
Merged PR 17467: Enable pipeline with CUDA 11.2
Browse files Browse the repository at this point in the history
Enabling Azure job with Ubuntu 20.04, CUDA 11.1, gcc-9, static, GPU-only.
  • Loading branch information
Roman Grundkiewicz committed Feb 1, 2021
1 parent ba91b39 commit e407d49
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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":
Expand Down Expand Up @@ -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 \
Expand Down

0 comments on commit e407d49

Please sign in to comment.