-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
9 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,26 @@ | ||
@buildgfortran | ||
option build --compiler=gfortran --flag "-cpp -O3 -march=native -flto" | ||
option build --compiler gfortran --flag "-cpp -O3 -march=native" | ||
|
||
@testgfortran | ||
option test --compiler=gfortran --flag "-cpp -O3 -march=native -flto" | ||
option test --compiler gfortran --flag "-cpp -O3 -march=native" | ||
|
||
|
||
@buildifort | ||
option build --compiler=ifort --flag "-fpp -O3 -xHost -ipo" | ||
option build --compiler ifort --flag "-fpp -O3 -xHost" | ||
|
||
@testifort | ||
option test --compiler=ifort --flag "-fpp -O3 -xHost -ipo" | ||
option test --compiler ifort --flag "-fpp -O3 -xHost" | ||
|
||
|
||
@buildifx | ||
option build --compiler=ifx --flag "-fpp -O3" | ||
option build --compiler ifx --flag "-fpp -O3 -xHost" | ||
|
||
@testifx | ||
option test --compiler=ifx --flag "-fpp -O3" | ||
option test --compiler ifx --flag "-fpp -O3 -xHost" | ||
|
||
|
||
@buildnvfortran | ||
option build --compiler=nvfortran --flag "-Mpreprocess -fast -Minline" | ||
option build --compiler nvfortran --flag "-Mpreprocess -fast" | ||
|
||
@testnvfortran | ||
option test --compiler=nvfortran --flag "-Mpreprocess -fast -Minline" | ||
option test --compiler nvfortran --flag "-Mpreprocess -fast" |