[Openmp-commits] [openmp] 32ebdc7 - [libomptarget][NFC] Sort list of plugins in chronological order
George Rokos via Openmp-commits
openmp-commits at lists.llvm.org
Mon Aug 17 08:36:44 PDT 2020
Author: George Rokos
Date: 2020-08-17T08:33:36-07:00
New Revision: 32ebdc70f3af478f4f6a9c75b4bc47a453b1b933
URL: https://github.com/llvm/llvm-project/commit/32ebdc70f3af478f4f6a9c75b4bc47a453b1b933
DIFF: https://github.com/llvm/llvm-project/commit/32ebdc70f3af478f4f6a9c75b4bc47a453b1b933.diff
LOG: [libomptarget][NFC] Sort list of plugins in chronological order
Differential Revision: https://reviews.llvm.org/D86082
Added:
Modified:
openmp/libomptarget/src/rtl.cpp
Removed:
################################################################################
diff --git a/openmp/libomptarget/src/rtl.cpp b/openmp/libomptarget/src/rtl.cpp
index 8e101b7a7a5b..ed339e034501 100644
--- a/openmp/libomptarget/src/rtl.cpp
+++ b/openmp/libomptarget/src/rtl.cpp
@@ -23,12 +23,12 @@
// List of all plugins that can support offloading.
static const char *RTLNames[] = {
+ /* PowerPC target */ "libomptarget.rtl.ppc64.so",
+ /* x86_64 target */ "libomptarget.rtl.x86_64.so",
+ /* CUDA target */ "libomptarget.rtl.cuda.so",
+ /* AArch64 target */ "libomptarget.rtl.aarch64.so",
/* SX-Aurora VE target */ "libomptarget.rtl.ve.so",
- /* PowerPC target */ "libomptarget.rtl.ppc64.so",
- /* x86_64 target */ "libomptarget.rtl.x86_64.so",
- /* CUDA target */ "libomptarget.rtl.cuda.so",
- /* AArch64 target */ "libomptarget.rtl.aarch64.so",
- /* AMDGPU target */ "libomptarget.rtl.amdgpu.so",
+ /* AMDGPU target */ "libomptarget.rtl.amdgpu.so",
};
RTLsTy *RTLs;
More information about the Openmp-commits
mailing list