You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The LLVM OMPD library pass the memory read/write callback address argument by value, but it should be passing the argument as a pointer to the address.
The OMP v5.0 spec (and omp-tools.h header) define the read and write memory callbacks as:
The LLVM OMPD library pass the memory read/write callback address argument by value, but it should be passing the argument as a pointer to the address.
The OMP v5.0 spec (and omp-tools.h header) define the read and write memory callbacks as:
However, the LLVM OMPD library passes the "addr" argument by-value. For example, see:
https://github.com/OpenMPToolsInterface/LLVM-openmp/blob/ompd-devices/libompd/src/ompd.h#L200
The text was updated successfully, but these errors were encountered: