Skip to content
Snippets Groups Projects
Commit d98853c4 authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

gitlab-ci: Add nvhpc 24.7 to the mix.

parent ac760200
No related branches found
No related tags found
No related merge requests found
...@@ -137,6 +137,22 @@ include: ...@@ -137,6 +137,22 @@ include:
- ci_configure_args=(--with-idxtype=long --disable-static) - ci_configure_args=(--with-idxtype=long --disable-static)
- ci_configure_args+=(LDFLAGS='-acc=gpu -gpu=cc80,nordc -mp') - ci_configure_args+=(LDFLAGS='-acc=gpu -gpu=cc80,nordc -mp')
.init_build_nvhpc_24_7:
extends: .init_build
before_script:
- *load_basic_modules
- module load gcc/11.2.0-gcc-11.2.0 nvhpc/24.7-gcc-11.2.0 openmpi/4.1.5-nvhpc-24.7
- SW_ROOT='/sw/spack-levante'
- CUDA_ROOT=$(command -v nvc) ; CUDA_ROOT="${CUDA_ROOT%compilers/bin/nvc}cuda"
- export OMPI_MCA_btl_sm_use_knem=0
- export OMPI_MCA_btl_vader_single_copy_mechanism=none
- ci_FC=mpifort
- ci_FCFLAGS="-O2 -g -I${CUDA_ROOT}/include -acc=gpu -gpu=cc80,nordc -Minfo -mp"
- ci_CC=mpicc
- ci_CFLAGS="-O2 -g -I${CUDA_ROOT}/include -acc=gpu -gpu=cc80,nordc -Minfo -mp"
- ci_configure_args=(--with-idxtype=long --disable-static)
- ci_configure_args+=(LDFLAGS='-acc=gpu -gpu=cc80,nordc -mp')
.basic_build: .basic_build:
script: script:
- scripts/reconfigure - scripts/reconfigure
...@@ -256,6 +272,12 @@ run_test_nvhpc_22_5: ...@@ -256,6 +272,12 @@ run_test_nvhpc_22_5:
- .init_build_nvhpc_22_5 - .init_build_nvhpc_22_5
- .basic_build - .basic_build
run_test_nvhpc_24_7:
stage: tests
extends:
- .init_build_nvhpc_24_7
- .basic_build
gen_doxy_html: gen_doxy_html:
stage: documentation stage: documentation
needs: needs:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment