Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • mpcdf/training/cmake-recipes
  • seibl/cmake-recipes
2 results
Show changes
Commits on Source (3)
image: gitlab-registry.mpcdf.mpg.de/mpcdf/module-image
image: gitlab-registry.mpcdf.mpg.de/mpcdf/ci-module-image/intel_2024_0-impi_2021_11:2024
check-recipes:
before_script:
- zypper install -y doxygen
- module purge
- module load cmake/3.24 doxygen git
- module load intel/21.5.0
- module load cmake
- module load intel/2024.0 impi/2021.11
- module load gsl
- module list
- cmake --version
......@@ -72,11 +73,11 @@ check-recipes:
check-links:
before_script:
- module purge
- module load anaconda/3/2021.11
- module load anaconda/3/2023.03
- module list
- pip3 install linkcheckmd
script:
- /root/.local/bin/linkcheckMarkdown -vr .
- linkcheckMarkdown -vr .
......@@ -7,9 +7,9 @@ find_package(OpenMP REQUIRED)
set(MKL_ARCH intel64)
set(MKL_LINK dynamic)
set(MKL_THREADING intel_thread)
set(MKL_INTERFACE lp64)
set(MKL_MPI openmpi)
set(MKL_THREADING sequential)
set(MKL_INTERFACE ilp64)
set(MKL_MPI intelmpi)
find_package(MKL REQUIRED)
add_executable(main)
......