Changes between Version 34 and Version 35 of OpenMPTransformation


Ignore:
Timestamp:
06/10/14 11:15:35 (12 years ago)
Author:
siegel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OpenMPTransformation

    v34 v35  
    4646* `$omp_gshared`: global shared object, used to represent the state of a shared variable.  A handle type.
    4747* `$omp_shared`: local view of the shared object, belonging to a single thread, with reference to the global object.  A handle type
    48 * `$omp_ref`: a reference to a shared object (local)
    49 * `$omp_array_element_ref`: a reference to an element of a shared object of array type
    50 * `$omp_member_ref`: a reference to a member of a structure or union shared object
    51 
     48* `$omp_ref`: a reference to a shared object or some part of a shared object
    5249
    5350=== Functions ===
     
    5754* `$omp_team $omp_team_create($scope scope, $omp_gteam gteam, int tid)`
    5855* `void $omp_team_destroy($omp_team team)`
     56* `void $omp_barrier($omp_team team)`
     57* `void $omp_barrier_and_flush($omp_team team)`
     58* `$omp_gshared $omp_gshared_create($omp_gteam, void *original)`
     59* `void $omp_gshared_destroy($omp_gshared gshared)`
     60* `$omp_shared $omp_shared_create($omp_team team, $omp_gshared gshared)`
     61* `void $omp_shared_destroy($omp_shared shared)`
     62* `$omp_ref $omp_identity_ref($omp_shared shared)`
     63* `$omp_ref $omp_array_element_ref($omp_ref ref, int index)`
     64* `$omp_ref $omp_member_ref($omp_ref, int fieldIndex)`
     65
     66
    5967
    6068