Changes between Version 12 and Version 13 of OpenMPTransformation


Ignore:
Timestamp:
04/20/14 18:20:55 (12 years ago)
Author:
siegel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OpenMPTransformation

    v12 v13  
    120120    $omp_gws _gws = $omp_gws_create($here, _nthreads);
    121121    void _thread(int _tid) {
    122       $omp_ws = $omp_ws_create(_gws, _tid);
     122      $omp_ws _ws = $omp_ws_create(_gws, _tid);
    123123
    124124      translate(S)
     
    180180{{{
    181181{
    182   $int_iter iter = $omp_ws_arrive_sections(ws, 42);
     182  $int_iter iter = $omp_ws_arrive_sections(_ws, 42);
    183183
    184184  while ($int_iter_hasNext(iter)) {
     
    213213
    214214{{{
    215 if ($omp_arrive_single(ws, 33)) {
     215if ($omp_arrive_single(_ws, 33)) {
    216216  translate(S);
    217217}
     
    230230
    231231{{{
    232 $omp_barrier_arrive(ws, 58);
     232$omp_barrier_arrive(_ws, 58);
    233233$barrier...
    234234}}}