Intel compiler
- mathematician
- Member
- Posts: 437
- Joined: Fri Dec 15, 2006 5:26 pm
- Location: Church Stretton Uk
Intel compiler
Does anybody know anything about the Intel C++ compiler? It is available for free if you are going to use it for non-commercial use. Admittedly only in its Linux version, but if you are not going to be making any OS system calls, that shouldn't matter too much.
Re: Intel compiler
It's called icc.mathematician wrote:Does anybody know anything about the Intel C++ compiler?
Seriously, what do you want to know? It had been known to generate up to 20% more efficient code than GCC back when GCC 3.something was current. Dunno if that is still the case, or how much.
Every good solution is obvious once you've found it.
-
- Member
- Posts: 368
- Joined: Sun Sep 23, 2007 4:52 am
I'd really love to take some of my asm code, translate it into nice C, and run it through both the Intel compiler and GCC optimized. Somehow, I really doubt the compilers are going to come within a factor of 5 of hand coded compilation. If that is so, then any 20% efficiency advantage of one over the other is meaningless.
The average modern day compiler (GCC 4.x) can outperform handwritten ASM if you're not careful.bewing wrote:I'd really love to take some of my asm code, translate it into nice C, and run it through both the Intel compiler and GCC optimized. Somehow, I really doubt the compilers are going to come within a factor of 5 of hand coded compilation. If that is so, then any 20% efficiency advantage of one over the other is meaningless.