Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[OMPD] The LLVM OMPD ompd_get_api_version() function returns a non-standard API version #51

Open
jdelsign opened this issue Feb 27, 2019 · 1 comment

Comments

@jdelsign
Copy link

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:

    #define OMPD_DLL_VERSION 201811;

    #define OMPD_IMPLEMENTS_OPENMP 5
    #define OMPD_IMPLEMENTS_OPENMP_SUBVERSION 0
    #define OMPD_TR_VERSION 6
    #define OMPD_TR_SUBVERSION 2
    #define OMPD_VERSION                                                           \
      (OMPD_IMPLEMENTS_OPENMP << 24) + (OMPD_IMPLEMENTS_OPENMP_SUBVERSION << 16) + \
	  (OMPD_TR_VERSION << 8) + OMPD_TR_SUBVERSION

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.

@jdelsign 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
@jdelsign
Copy link
Author

jdelsign commented Apr 1, 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.

jdelsign added a commit that referenced this issue Apr 25, 2019
* 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".
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants