[Openmp-commits] [PATCH] D86082: [libomptarget][NFC] Sort list of plugins in chronological order

George Rokos via Phabricator via Openmp-commits openmp-commits at lists.llvm.org
Mon Aug 17 08:36:50 PDT 2020


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG32ebdc70f3af: [libomptarget][NFC] Sort list of plugins in chronological order (authored by grokos).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D86082/new/

https://reviews.llvm.org/D86082

Files:
  openmp/libomptarget/src/rtl.cpp


Index: openmp/libomptarget/src/rtl.cpp
===================================================================
--- openmp/libomptarget/src/rtl.cpp
+++ 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;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D86082.286030.patch
Type: text/x-patch
Size: 954 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20200817/5b9c6089/attachment.bin>


More information about the Openmp-commits mailing list