vote up 1 vote down star

Hi, I'd want your input which gcc compiler flags to use when optimizing for Xeons?

There's no 'xeon' in mtune or march so which is the closest match?

flag
1  
You might want to be more specific about which Xeon your are targeting. The Xeon brand has been around for quite some time and spans a range of very different architectures. – Dan Moulding Jun 3 at 11:31

5 Answers

vote up 2 vote down check

Xeon is a marketing term, as such it covers a long list of processors with very different internals.

If you meant the newer Nehalem processors (Core i7) then this slide indicates that as of 4.3.1 gcc should be use -march=generic (though your own testing of your own app may find other settings thatoutperform this). The 4.3 series also added -msse4.2 if you wish to optimize that aspect of FP maths.

Here is some discussion comparing tuning in Intel's compiler versus some gcc flags.

link|flag
vote up 0 vote down

Using -march=pentium4 might work..

link|flag
That's OK for 32-bit, but not for 64-bit userland. – jmanning2k Sep 8 at 20:19
vote up 2 vote down

newer versions of gcc have -march=native which lets the compiler automatically determine the optimal -march flag.

link|flag
Bundle that with -mtune=native and you are done. – cartman Jun 3 at 12:22
actually, if you don't explicitly specify -mtune, -march has an implied -mtune equal to the passed -march according to the gcc docs. – ilproxyil Jun 18 at 5:18
vote up 1 vote down

march=native is okay for your own machine but bad for binary releases.

-march=nocona is suggested for atom 330 (p4/64bit) -march=core2 is for core2

I'm assuming you're going 64bit.

link|flag
vote up 0 vote down

My experience with Intel CPUs and x86_64 has been that every time I tried to tell gcc to optimize for a specific CPU type, the performance got worse than with -march=generic, not better. YMMV, of course, but I've been playing around with stuff like this lots of times over the years, and it has always been like that.

OTOH, on i386 it might make sense to target at least i686 or, if you want SSE math, at least Pentium 4.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.