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 ompd_get_api_version() function returns the API version as 0x5000602, but that value is not in the OMP v5.0 standard. What should it be? The standard does not say, which is a problem with the standard itself, reported here: http://trac.openmp.org/trac/OpenMP/ticket/894
I assume that the intent was that for a given OpenMP spec, the OMPD API version would be equal to the OpenMP version (defined by the _OPENMP macro). For example, OpenMP 5.0 defines _OPENMP and 201811, therefore the version of the OMPD API contained within the OpenMP 5.0 spec should be 201811.
Currently omp-debug.h in the above LLVM OMPD repository defines:
Once the issue is resolved in the OMP standard, the LLVM OMPD library should return the correct value.
BTW: There is a stray semi-colon at the end of line defining OMPD_DLL_VERSION.
The text was updated successfully, but these errors were encountered:
jdelsign
changed the title
[OMPD] ompd_get_api_version() function returns a non-standard API version
[OMPD] The LLVM OMPD ompd_get_api_version() function returns a non-standard API version
Feb 27, 2019
The fix that was pushed for this issue to ompd-devices-50 is not correct. It changed the value of OMPD_DLL_VERSION, but it should have changed the value of OMPD_VERSION, which is the value returned from ompd_get_api_version(). AFAICT, OMPD_DLL_VERSION is defined but not referenced anywhere.
* Corrected the fix for issue: [OMPD] The LLVM OMPD
ompd_get_api_version() function returns a non-standard API version.
#51
- Define OMPD_VERSION as 201811.
- Define OMPD_DLL_VERSION to what used to be defined as OMPD_VERSION.
* Fixed issue: [OMPD] The LLVM OMPD ompd_get_task_in_parallel()
function misspells "ompd_nvptx_parallel_info_t". It was marked a
being fixed by Manoel on March 26, 2019, but AFAICT the fix is not
in the ompd-device-50 branch sources.
#64
- Change "ompd_nvptx_paralel_info" to "ompd_nvptx_parallel_info_t".
The LLVM OMPD ompd_get_api_version() function returns the API version as 0x5000602, but that value is not in the OMP v5.0 standard. What should it be? The standard does not say, which is a problem with the standard itself, reported here: http://trac.openmp.org/trac/OpenMP/ticket/894
I assume that the intent was that for a given OpenMP spec, the OMPD API version would be equal to the OpenMP version (defined by the _OPENMP macro). For example, OpenMP 5.0 defines _OPENMP and 201811, therefore the version of the OMPD API contained within the OpenMP 5.0 spec should be 201811.
Currently omp-debug.h in the above LLVM OMPD repository defines:
Once the issue is resolved in the OMP standard, the LLVM OMPD library should return the correct value.
BTW: There is a stray semi-colon at the end of line defining OMPD_DLL_VERSION.
The text was updated successfully, but these errors were encountered: