Created
February 5, 2020 14:36
-
-
Save kaityo256/d41481467df504c5039715d38954ab8a to your computer and use it in GitHub Desktop.
Intel Compiler vs. GCC
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <random> | |
struct myrand { | |
uint32_t operator()() { | |
return 0; | |
} | |
uint32_t max(){ | |
return std::mt19937::max(); | |
} | |
uint32_t min(){ | |
return 0; | |
} | |
}; | |
double run(void) { | |
myrand mt; | |
double r = 0.0; | |
std::uniform_real_distribution<> ud(-1.0, 1.0); | |
for (int j = 0; j <10000; j++) { | |
for (int i = 0; i < 10000; i++) { | |
if (i%2) r += ud(mt); | |
} | |
} | |
return r; | |
} | |
int main(){ | |
std::cout << run() << std::endl; | |
} |
I measured the execution time of the code modified by @equal-l2. And I also measured the execution time of that code with Clang and show the results.
Environment
- CPU: Intel(R) Core(TM) i7-7820X @ 3.60GHz
- OS: Linux Mint 19.3 Tricia (x86_64)
- g++ (gcc) 9.2.1 20191102
- icpc (ICC) 19.1.0.166
- clang++ (Clang) 8.0.0-3~ubuntu18.04.2
$ g++ -O3 -march=native -Wall -Wextra -std=c++11 test.cpp -o gcc.out
$ time ./gcc.out
-5e+07
real 0m0.058s
user 0m0.058s
sys 0m0.000s
$ icpc -O3 -xHOST -Wall -Wextra -std=c++11 test.cpp -o icpc.out
$ time ./icpc.out
-5e+07
real 0m2.914s
user 0m2.914s
sys 0m0.000s
$ clang++-8 -O3 -march=native -Wall -Wextra -std=c++11 test.cpp -o clang.out
$ time ./clang.out
-5e+07
real 0m3.358s
user 0m3.354s
sys 0m0.004s
As you can see, under my environment, the Intel compiler is about 50 times slower than gcc and Clang is about 58 times slower than gcc.
Thanks @dc1394. That's interesting.
In that sense, we should say "GCC generates faster executables" instead of "Intel compiler generates slower ones"...
I think this code doesn't measure the code-gen quality of those two compilers but compares the performance of the Mersenne twister implementation and tuning...
Yep, you are right, @uTnOJkji5quPSNE5.
I should say, "the Mersenne Twister implementation included in GCC was fast". Anyway, I'm not sure why.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you @equal-l2.
I have tried on Linux.
While I used the latest version of the Intel compiler, I observed similar behavior.
It's weird...