Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

Optimization flags

bucaioni__thomas
Novo colaborador I
891 Visualizações

The fastest and simplest combination I found is -Ofast -static. And I also tried -mtune=haswell and Profile Guided Optimization, but it didn't improve the computation time.

Is there anything else I can do in terms of compilation options?

0 Kudos
1 Solução
jimdempseyatthecove
Colaborador honorário III
888 Visualizações

When the executable is to be run on the same system as the build is performed

   -xHost   (Linux/macOS)
   /QxHost (Windows)

Jim Dempsey

Ver solução na publicação original

2 Respostas
jimdempseyatthecove
Colaborador honorário III
889 Visualizações

When the executable is to be run on the same system as the build is performed

   -xHost   (Linux/macOS)
   /QxHost (Windows)

Jim Dempsey

Steve_Lionel
Colaborador honorário III
876 Visualizações

You can try -fast as a simple shortcut - this sets several options that usually (but not always) improve computation performance. Be aware that this implies -xHost which optimizes for the CPU you compiled on. If you'll be running the program elsewhere, don't use either of these.

Responder