Eigenpoll : D wish list : Easy threading a la OpenMP 

OpenMP is a C extension that allows semi-automatic multithreading of loops by adding a pragma before the loop. For example, the following C code will be automatically distributed on all the cores of the computer:

====================8<--------------------
#pragma omp parallel for
for (i = 0; i < n; ++i)
c[i] = a[i] + b[i];
-------------------->8====================


Report this item for cleanup