Changes between Version 45 and Version 46 of OpenMPTransformation
- Timestamp:
- 06/10/14 15:08:58 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
OpenMPTransformation
v45 v46 41 41 == Support Types == 42 42 43 * `$omp_gteam`: global team object, represents a team of threads executing in a parallel region. A handle type. 43 * `$omp_gteam`: global team object, represents a team of threads executing in a parallel region. A handle type. This is where all the state needed to correctly execute a parallel region will be stored. This includes all the shared object data, and a worksharking queue for every thread. 44 44 * `$omp_team`: local object belonging to a single thread and referencing the global team object. A handle type. 45 45 * `$omp_gshared`: global shared object, used to represent the state of a shared variable. A handle type. … … 441 441 * `omp_get_thread_num()` => `_tid` 442 442 443
