This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository openmp.
from 74e9371 [OpenMP] Add entry for Intel Compiler 18 new cac6ef0 [libomptarget] Move header files and CMake library definition new c35df18 [libomptarget] Split RTL plugin functionality new 4303e18 [libomptarget] Split device functionality new 25af465 [libomptarget] Split implementation of API functions new 5a07983 [libomptarget] Split implementation of interface functions
The 5 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 | 20 +- libomptarget/{src => include}/omptarget.h | 2 +- libomptarget/{src => include}/omptargetplugin.h | 0 libomptarget/src/CMakeLists.txt | 31 + libomptarget/src/api.cpp | 282 ++++ libomptarget/src/device.cpp | 365 +++++ libomptarget/src/device.h | 167 +++ libomptarget/{ => src}/exports | 0 libomptarget/src/interface.cpp | 501 +++++++ libomptarget/src/omptarget.cpp | 1743 +---------------------- libomptarget/src/private.h | 49 + libomptarget/src/rtl.cpp | 366 +++++ libomptarget/src/rtl.h | 165 +++ 13 files changed, 1946 insertions(+), 1745 deletions(-) rename libomptarget/{src => include}/omptarget.h (99%) rename libomptarget/{src => include}/omptargetplugin.h (100%) create mode 100644 libomptarget/src/CMakeLists.txt create mode 100644 libomptarget/src/api.cpp create mode 100644 libomptarget/src/device.cpp create mode 100644 libomptarget/src/device.h rename libomptarget/{ => src}/exports (100%) create mode 100644 libomptarget/src/interface.cpp create mode 100644 libomptarget/src/private.h create mode 100644 libomptarget/src/rtl.cpp create mode 100644 libomptarget/src/rtl.h