- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi:
I read the gcc document as well as intel compiler document, they both said that the default behavior will not detect the underlying microarchitecture in linux x86-64 (default is -xsse2). As a result, I need to put -march=nehalem in CXXFLAGS in g++ and put -xsse4.2 in CXXFLAGS in icpc. However, while linking with mkl, there is no flag to tell mkl that my microarchitecture is nehalem:
g++:
g++ -std=c++11 -O2 -march=nehalem -c main.cpp
g++ main.o -lmkl_rt
icpc:
icpc -std=c++11 -xsse4.2 -c main.cpp
icpc -mkl main.o
So, how to guarantee mkl can take full advantage of nehalem and get the highest performance?
Thank you very much
Chaowen GUO
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You don't need it. MKL has a built-in dispatcher that detects the microarchitecture at run time and dispatch the execution to the appropriate code path. The compiler flags don't affect MKL code path in any way. These flags only affect the user code to be compiled, not the libraries to be linked.
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page