[pipepar] Fix pragma for 12 cores in pipeline_template

Add state10 to the list of private variable in the last pragma in the
case of 12 cores in pipeline_template computation.
This commit is contained in:
Thomas Preud'homme 2012-09-04 20:00:29 +02:00
parent 4827baead3
commit 73f99e761e
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ int compute_metrics(void)
#elif NB_CORES == 12
#pragma omp parallel default (none) \
shared (nb_packets, seed) \
private (state1, state2, state3, state4, state5, state6, state7, state8, state9, state11, i)
private (state1, state2, state3, state4, state5, state6, state7, state8, state9, state10, state11, i)
#else
#error Only supporting NB_CORES <= 12
#endif