Tagged Questions
-1
votes
1answer
62 views
Different results depending on operating system
I'm using an CFD-code written in Fortran. Some parts of it have been parallelized with OpenMP. Even if I turn of OpenMP and use the same compiler options (-O3) on a Windows an a Linux machine I get ...
1
vote
1answer
134 views
Compiling with /O2 versus /Ox — which is faster (as a rule of thumb)?
This question and MSDN seem to imply that /O2 would be faster, but if you look at Microsoft's own SafeInt class, you will notice it says:
1) Compile optimized code - /Ox is best, /O2 also performs ...
1
vote
3answers
313 views
What is the specific GCC flag that turns on immediate value propagation for inline assembly parameters?
Consider the following x86 code example:
#include <stdlib.h>
static int i;
static inline __attribute__((always_inline)) test(int x)
{
asm volatile("mov %1, %0" : "=r"(i): "i"(x));
}
int ...
1
vote
3answers
204 views
How to start debugging numerical code, when NaN's appear only when compiled with optimizations?
What are the general strategies to start debugging numerical code, when:
code compiled with aggressive optimization flags, produces occational NaN's and Inf's in the output
code compiled with -g ...
4
votes
1answer
1k views
What's optimal march & mtune options for gcc for “Pentium4 and above” processors
My C++ application (compiled using g++) needs to work on Pentium-4 (32-bit) and above. However, it's typically used with Core2Duo or better processors.
I'm currently using: -march=pentium4 ...
6
votes
3answers
3k views
Visual C++ Compiler Optimization Flags: Difference Between /O2 and /Ot
What's the difference between the /Ot flag ("favor fast code") and the /O2 flag ("maximize speed")?
(Ditto with /Os and /O1.)
3
votes
4answers
6k views
how to disable compiler optimization in gcc
I am trying to learn assembly language. I have searched and found how to disassemble a "c" file but I think it produces some optimized version of the program. Is there any way so that I can find the ...
16
votes
1answer
3k views
What is the difference between the /Ox and /O2 compiler options?
Microsoft's C++ compiler (cl.exe, as included with Visual Studio) offers several optimization switches. The difference between most of them seems self-explanatory, but it's not clear to me what the ...