Changes between Version 48 and Version 49 of OpenMPTransformation


Ignore:
Timestamp:
06/12/14 17:33:37 (12 years ago)
Author:
siegel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OpenMPTransformation

    v48 v49  
    204204
    205205{{{
    206 #pragma omp parallel for
     206#pragma omp for
    207207for (i=0; i<n; i++) 
    208208  S
     
    244244    translate(S);
    245245  }
    246   $barrier_and_flush(team);
     246  $omp_barrier_and_flush(team);
    247247}
    248248}}}
     
    436436}}}
    437437
     438=== Translating `nowait` ===
     439
     440Just leave out the `$omp_barrier_and_flush` at the end of the translated construct.
     441
    438442== Translating functions ==
    439443