Changes between Version 34 and Version 35 of OpenMPTransformation
- Timestamp:
- 06/10/14 11:15:35 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
OpenMPTransformation
v34 v35 46 46 * `$omp_gshared`: global shared object, used to represent the state of a shared variable. A handle type. 47 47 * `$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 52 49 53 50 === Functions === … … 57 54 * `$omp_team $omp_team_create($scope scope, $omp_gteam gteam, int tid)` 58 55 * `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 59 67 60 68
