The Problem
We have a mid-sized programm for a simulation task, that we need to optimize. We have allready done our best optimising the source to the limit of our programming skills, including profiling with Gprof and Valgrind.
When finally finished, we want to run the programm on several systems probably for some months. Therefore we are really interested in pushing the optimisation to the limits.
All systems will run Debian/Linux on relativly new hardware (Intel i5 or i7).
The Question
What are possible optimisation options using a recent version (4.7 or 4.8) of g++, that go beyond -O3/-Ofast?
We are also interested in costly minor optimisation, that will payout in the long run.
What we use right now
Right now we use the following g++ optimisation options:
-Ofast: Highest "standard" optimisation level. The included-ffast-mathdid not cause any problems in our calculations, so we decided to go for it, despite of the non standard-compliance.-march=native: Enabling the use of all CPU specific instructions.-fltotogether with-fwhole-programto allow link time optimisation, across different compilation units.