Changes between Version 19 and Version 20 of OpenMPTransformation


Ignore:
Timestamp:
04/20/14 21:33:51 (12 years ago)
Author:
siegel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OpenMPTransformation

    v19 v20  
    330330}
    331331}}}
     332
     333=== Translating `master` ===
     334
     335{{{
     336#pragma omp master
     337S
     338}}}
     339
     340=>
     341
     342{{{
     343if (_tid == 0) {
     344  translate(S);
     345}
     346}}}
     347
     348== Translating functions ==
     349
     350* `omp_get_num_threads()` => `_nthreads`
     351* `omp_get_thread_num()` => `_tid`
     352