Changes between Version 68 and Version 69 of OpenMPTransformation
- Timestamp:
- 01/10/19 09:52:34 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
OpenMPTransformation
v68 v69 1 1 2 == TODOs == 3 4 For atomic directives, must check for the `x`,`v` (scalar type l-exprs) and `expr` expressions: neither `v` nor `expr` may access the memory location designated by `x`, and neither `x` nor `expr` may access the memory location designated by `v` 5 Examples: 6 {{{ 7 #pragma omp atomic read 8 v=x; 9 #pragma omp atomic write 10 x=expr; 11 #pragma omp atomic update 12 x=x+expr; 13 #pragma omp atomic capture 14 { 15 x=x+expr; 16 v=x; 17 } 18 }}} 2 19 3 20 == OpenMP Primitives ==
