Skip to content

Commit

Permalink
replace Ofast with O3
Browse files Browse the repository at this point in the history
  • Loading branch information
perazz committed Sep 15, 2023
1 parent 6ebc226 commit 1a5ffb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fpm_compiler.F90
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ module fpm_compiler
flag_intel_warn = " -warn all", &
flag_intel_check = " -check all", &
flag_intel_debug = " -O0 -g", &
flag_intel_opt = " -Ofast", &
flag_intel_opt = " -O3", &
flag_intel_fp = " -fp-model precise -pc64", &
flag_intel_align = " -align all", &
flag_intel_limit = " -error-limit 1", &
Expand All @@ -190,7 +190,7 @@ module fpm_compiler
flag_intel_warn_win = " /warn:all", &
flag_intel_check_win = " /check:all", &
flag_intel_debug_win = " /Od /Z7", &
flag_intel_opt_win = " /Ofast", &
flag_intel_opt_win = " /O3", &
flag_intel_fp_win = " /fp:precise", &
flag_intel_align_win = " /align:all", &
flag_intel_limit_win = " /error-limit:1", &
Expand Down

0 comments on commit 1a5ffb6

Please sign in to comment.