Intel® C++ Compiler
Community support and assistance for creating C++ code that runs on platforms based on Intel® processors.

'omp parallel for' or 'omp for'

raulhuertas
Beginner
347 Views
What's the difference between this two directives?
'omp parallel for' or 'omp for'
0 Kudos
1 Reply
TimP
Honored Contributor III
347 Views
omp for works only in a parallel region set by omp parallel.
omp parallel for sets up its own parallel region.
0 Kudos
Reply