Changes between Version 39 and Version 40 of Next-GenOpenMPTransformation


Ignore:
Timestamp:
10/30/19 11:02:03 (7 years ago)
Author:
wuwenhao
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Next-GenOpenMPTransformation

    v39 v40  
    1616== OpenMP Constructs ==
    1717
    18 * `parallel` . . . . . . . . . . . . . . . . [In-progress]
     18* `parallel` ([https://vsl.cis.udel.edu/trac/civl/wiki/Next-GenOpenMPTransformation#Translatingparallel detail])\\
    1919 * `private(`list`)`
    2020 * `firstprivate(list)`
     
    2727 * `reduction(op:list)`
    2828
    29 * `sections` . . . . . . . . . . . . . . . . .[In-progress]
     29* `sections` ([https://vsl.cis.udel.edu/trac/civl/wiki/Next-GenOpenMPTransformation#Translatingsections detail])
    3030 * `private(`list`)`
    3131 * `firstprivate(list)`
     
    3434 * `nowait`
    3535
    36 * `section`
    37 
    38 * `single` . . . . . . . . . . . . . . . . . . [In-progress]
     36* `section` (see `sections`)
     37
     38* `single` ([https://vsl.cis.udel.edu/trac/civl/wiki/Next-GenOpenMPTransformation#Translatingsingle detail])
    3939 * `private(`list`)`
    4040 * `firstprivate(list)`
     
    4242 * `nowait`
    4343 
    44 * `for` . . . . . . . . . . . . . . . . . . . . .[In-progress]
     44* `for` ([https://vsl.cis.udel.edu/trac/civl/wiki/Next-GenOpenMPTransformation#Translatingfor detail])
    4545 * `private(`list`)`
    4646 * `firstprivate(list)`
     
    8080 * `notinbranch`
    8181
     82* `master` ([https://vsl.cis.udel.edu/trac/civl/wiki/Next-GenOpenMPTransformation#Translatingmaster detail])
     83
    8284* `barrier`
    8385
     
    9395 * `seq_cst` . . . . . . . . . . . . . [Unsupported]
    9496
    95 * `master` . . . . . . . . . . . . . . . . . . [Unsupported]
    9697
    9798== OpenMP Types ==
     
    402403
    403404== Translations of specific directives ==
    404 [https://vsl.cis.udel.edu/trac/civl/wiki/Next-GenOpenMPTransformation#Translatingparallel 1. parallel construct]\\
    405 [https://vsl.cis.udel.edu/trac/civl/wiki/Next-GenOpenMPTransformation#Translatingsections 2. worksharing sections construct]\\
    406 [https://vsl.cis.udel.edu/trac/civl/wiki/Next-GenOpenMPTransformation#Translatingsingle 3. worksharing single construct]\\
    407 [https://vsl.cis.udel.edu/trac/civl/wiki/Next-GenOpenMPTransformation#Translatingfor 4. worksharing loop construct]\\
    408 [https://vsl.cis.udel.edu/trac/civl/wiki/Next-GenOpenMPTransformation#Translatingmaster 5. master construct]\\
    409405
    410406=== Translating `parallel` ===