Arnaud
Arnaud

Reputation: 11

Is it possible to use std::thread to parallelize on Intel Xeon Phi?

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

Answers (2)

sssylvester
sssylvester

Reputation: 168

The current shipping compilers that support Xeon Phi do not support C++11 and therfore do not support std::Thread.

Upvotes: 0

Related Questions