This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository openmp.
from b00226f Correct wrong comment in bug_nested_proxy_task.c new 6009b40 [OpenMP] Initial implementation of OpenMP offloading library [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: libomptarget/CMakeLists.txt | 3 + libomptarget/plugins/CMakeLists.txt | 71 +++ libomptarget/plugins/common/elf_common.c | 73 +++ libomptarget/plugins/cuda/CMakeLists.txt | 49 ++ libomptarget/plugins/cuda/src/rtl.cpp | 670 +++++++++++++++++++++ libomptarget/plugins/exports | 15 + libomptarget/plugins/generic-elf-64bit/src/rtl.cpp | 314 ++++++++++ libomptarget/plugins/ppc64/CMakeLists.txt | 18 + libomptarget/plugins/ppc64le/CMakeLists.txt | 18 + libomptarget/plugins/x86_64/CMakeLists.txt | 18 + 10 files changed, 1249 insertions(+) create mode 100644 libomptarget/plugins/CMakeLists.txt create mode 100644 libomptarget/plugins/common/elf_common.c create mode 100644 libomptarget/plugins/cuda/CMakeLists.txt create mode 100644 libomptarget/plugins/cuda/src/rtl.cpp create mode 100644 libomptarget/plugins/exports create mode 100644 libomptarget/plugins/generic-elf-64bit/src/rtl.cpp create mode 100644 libomptarget/plugins/ppc64/CMakeLists.txt create mode 100644 libomptarget/plugins/ppc64le/CMakeLists.txt create mode 100644 libomptarget/plugins/x86_64/CMakeLists.txt