-
Notifications
You must be signed in to change notification settings - Fork 1
/
fpm.rsp
35 lines (22 loc) · 1.18 KB
/
fpm.rsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
@buildmp
option build --compiler gfortran --profile debug --flag "-fopenmp"
@buildintel
option build --compiler ifort
@runmp
option run sMCRT --compiler gfortran --profile release --flag "-fopenmp -O3 -flto -march=native -fPIC -funroll-loops -fstack-arrays"
@debug
option run sMCRT --compiler gfortran --flag "-O2 -march=native -flto -mavx -g -fbacktrace -fcheck=all -fbounds-check -ffpe-trap=invalid,overflow,underflow,denormal"
@debugmp
option run sMCRT --compiler gfortran --flag "-fopenmp -O2 -march=native -flto -mavx -g -fbacktrace -fcheck=all -fbounds-check -ffpe-trap=invalid,overflow,underflow,denormal -fstack-arrays"
@test
option test --compiler gfortran --flag "-O0 -fprofile-arcs -ftest-coverage --coverage"
@testdebug
option test --compiler gfortran --flag "-O0 -g -fbacktrace -fcheck=all -ffpe-trap=invalid,overflow,underflow,denormal"
@testintel
option test --compiler ifort
@runnv
option run sMCRT --compiler nvfortran --flag "-fast -Mbackslash"
@runifort
option run sMCRT --compiler ifort --profile release --flag "-qopenmp"
@runifortdebug
option run sMCRT --compiler ifort --flag "-O2 -xHost -ipo -assume byterecl -g -debug -traceback -CB -CU -CA -fpe0 -warn all -stand f08"