✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
…
#pragma omp parallel num_threads (8)
{
for (int i = 0; i < 4; i++)
#pragma omp for
for (int j = 0; j < 200; j++)
for (int k = 0; k < 5; k++)
… // Nécessite 2 cycles d’horloge
}
…