Reputation: 11
I know that classic example of parallelization on Intel Xeon Phi are done with OpenMP
. But is it possible to use std::thread
to automatically launch tasks on Xeon Phi ?
Upvotes: 1
Views: 378
Reputation: 168
The current shipping compilers that support Xeon Phi do not support C++11 and therfore do not support std::Thread.
Upvotes: 0
Reputation: 71
The answer is yes, please see http://software.intel.com/en-us/articles/choosing-the-right-threading-framework
Upvotes: 3