[OpenMP] Fix printing routine for OMP_TOOL_VERBOSE_INITAlso fixed typo in the verbose message.Differential Revision: https://reviews.llvm.org/D100414
[OpenMP][OMPT] Implement verbose tool loadingOpenMP 5.1 introduces the new env variableOMP_TOOL_VERBOSE_INIT=(disabled|stdout|stderr|<filename>) to enable verboseloading and initialization of OMP
[OpenMP][OMPT] Implement verbose tool loadingOpenMP 5.1 introduces the new env variableOMP_TOOL_VERBOSE_INIT=(disabled|stdout|stderr|<filename>) to enable verboseloading and initialization of OMPT tools.This env variable helps to understand the cause when loading of a tool fails(e.g., undefined symbols or dependency not in LD_LIBRARY_PATH)Output of OMP_TOOL_VERBOSE_INIT is added for OMP_DISPLAY_ENVTests for this patch are integrated into the different existing tool loadingtests, making these tests more verbose. An Archer specific verbose test isintegrated into an existing Archer test.Patch prepared by: Isabel ThärigenDifferential Revision: https://reviews.llvm.org/D91464
show more ...
[OpenMP][OMPT] Update the omp-tools header file to reflect 5.1 changesThis doesn't add functionality, but just adds the new types and renames themaster callback to masked callback.Differential R
[OpenMP][OMPT] Update the omp-tools header file to reflect 5.1 changesThis doesn't add functionality, but just adds the new types and renames themaster callback to masked callback.Differential Revision: https://reviews.llvm.org/D90752
[OMPT] Second chunk of final OMPT 5.0 interface updatesThe omp-tools.h file is generated from the OpenMP spec to ensure that the interfaceis implemented as specified.The other changes are necessa
[OMPT] Second chunk of final OMPT 5.0 interface updatesThe omp-tools.h file is generated from the OpenMP spec to ensure that the interfaceis implemented as specified.The other changes are necessary to update the interface implementation to thefinal version as published in 5.0.The omp-tools.h header was previously called ompt.h, currently a copy under this nameis installed for legacy tools.Patch partially perpared by @sconventReviewers: AndreyChurbanov, hbae, HahnfeldReviewed By: hbaeTags: #openmp, #omptDifferential Revision: https://reviews.llvm.org/D55579llvm-svn: 351197
Dropped non-supoorted "--no-as-needed" flag from OMPT tests for macOSThe flag "--no-as-needed" is not recognized by the linker on macOS making the following tests fail:ompt/loadtool/tool_availabl
Dropped non-supoorted "--no-as-needed" flag from OMPT tests for macOSThe flag "--no-as-needed" is not recognized by the linker on macOS making the following tests fail:ompt/loadtool/tool_available/tool_available.compt/loadtool/tool_not_available/tool_not_available.cThis patch removes this flag for macOS and adds it only for Linux and Windows.I tested it on Ubuntu 16.04 and macOS HighSierra, with Clang/LLVM 6.0.1 and OpenMP trunk.This solution was also discussed in the OpenMP-dev mailing list.Patch provided by Simone AtzeniDifferential Revision: https://reviews.llvm.org/D48888llvm-svn: 336327
[OMPT] Add tool_not_available testcaseAdd a testcase that checks wheter the runtime can handle an ompt_start_toolmethod that returns NULL indicating that no tool shall be loaded.All tool_availab
[OMPT] Add tool_not_available testcaseAdd a testcase that checks wheter the runtime can handle an ompt_start_toolmethod that returns NULL indicating that no tool shall be loaded.All tool_available testcases need a separate folder to avoid file conflicts forthe generated tools.Differential Revision: https://reviews.llvm.org/D41904llvm-svn: 324587