We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eed6476 commit 32ebdc7Copy full SHA for 32ebdc7
openmp/libomptarget/src/rtl.cpp
@@ -23,12 +23,12 @@
23
24
// List of all plugins that can support offloading.
25
static const char *RTLNames[] = {
26
+ /* PowerPC target */ "libomptarget.rtl.ppc64.so",
27
+ /* x86_64 target */ "libomptarget.rtl.x86_64.so",
28
+ /* CUDA target */ "libomptarget.rtl.cuda.so",
29
+ /* AArch64 target */ "libomptarget.rtl.aarch64.so",
30
/* 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",
31
- /* AMDGPU target */ "libomptarget.rtl.amdgpu.so",
+ /* AMDGPU target */ "libomptarget.rtl.amdgpu.so",
32
};
33
34
RTLsTy *RTLs;
0 commit comments