Changes between Version 68 and Version 69 of OpenMPTransformation


Ignore:
Timestamp:
01/10/19 09:52:34 (7 years ago)
Author:
siegel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OpenMPTransformation

    v68 v69  
    11
     2== TODOs ==
     3
     4For 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`
     5Examples:
     6{{{
     7#pragma omp atomic read
     8v=x;
     9#pragma omp atomic write
     10x=expr;
     11#pragma omp atomic update
     12x=x+expr;
     13#pragma omp atomic capture
     14{
     15  x=x+expr;
     16  v=x;
     17}
     18}}}
    219
    320== OpenMP Primitives ==