source: palm/trunk/TESTS/builds/gfortran_openmp_mpi/build_config.yml @ 4838

Last change on this file since 4838 was 4838, checked in by raasch, 3 years ago

hybrid MPI/openmp testcase added

File size: 1.1 KB
Line 
1---
2# this is a palmtest build configuration file
3
4compiler:
5  id: GNU
6  executable: "{{GNU.executable}}"
7  mpi_wrapper: "{{GNU.mpi_wrapper}}"
8  definitions:
9    - "MPI_REAL=MPI_DOUBLE_PRECISION"
10    - "MPI_2REAL=MPI_2DOUBLE_PRECISION"
11    - "__parallel"
12    - "__netcdf"
13    - "__netcdf4"
14    - "__netcdf4_parallel"
15    - "__fftw"
16    - "__rrtmg"
17    - "__gfortran"
18  options:
19    default:
20      - "-cpp"
21      - "-Wall"
22      - "-Werror"
23      - "-Wextra"
24      - "-pedantic"
25      - "-Wno-maybe-uninitialized"
26      - "-Wno-conversion"
27      - "-Wno-compare-reals"
28      - "-Ofast"
29      - "-ffree-line-length-none"
30      - "-fopenmp"
31    debug:
32      - "-cpp"
33      - "-O0"
34      - "-g"
35      - "-Wall"
36      - "-Werror"
37      - "-Wextra"
38      - "-pedantic"
39      - "-fcheck=all"
40      - "-fbacktrace"
41      - "-Wno-conversion"
42      - "-Wno-compare-reals"
43      - "-finit-real=nan"
44      - "-ffree-line-length-none"
45      - "-fopenmp"
46  includes:
47    - "{{GNU.include.netcdf}}"
48    - "{{GNU.include.fftw}}"
49    - "{{GNU.include.rrtmg}}"
50
51linker:
52  options:
53    - "{{GNU.lib.netcdf}}"
54    - "{{GNU.lib.fftw}}"
55    - "{{GNU.lib.rrtmg}}"
56    - "-fopenmp"
Note: See TracBrowser for help on using the repository browser.