[Openmp-commits] [PATCH] D76469: Enabled CUDA offloading on aarch64 host
Shilei Tian via Phabricator via Openmp-commits
openmp-commits at lists.llvm.org
Thu Mar 19 18:40:04 PDT 2020
tianshilei1992 created this revision.
tianshilei1992 added a project: OpenMP.
Herald added subscribers: openmp-commits, danielkiss, kristof.beyls, mgorny.
Herald added a reviewer: jdoerfert.
I've tried on ORNL Wombat cluster which is aarch64 host with NVIDIA GPUs. Offloading works fine. All 19 tests in `libomptarget` passed.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D76469
Files:
openmp/libomptarget/plugins/cuda/CMakeLists.txt
Index: openmp/libomptarget/plugins/cuda/CMakeLists.txt
===================================================================
--- openmp/libomptarget/plugins/cuda/CMakeLists.txt
+++ openmp/libomptarget/plugins/cuda/CMakeLists.txt
@@ -1,16 +1,16 @@
##===----------------------------------------------------------------------===##
-#
+#
# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
-#
+#
##===----------------------------------------------------------------------===##
#
# Build a plugin for a CUDA machine if available.
#
##===----------------------------------------------------------------------===##
-if (NOT(CMAKE_SYSTEM_PROCESSOR MATCHES "(x86_64)|(ppc64le)$" AND CMAKE_SYSTEM_NAME MATCHES "Linux"))
- libomptarget_say("Not building CUDA offloading plugin: only support CUDA in Linux x86_64 or ppc64le hosts.")
+if (NOT(CMAKE_SYSTEM_PROCESSOR MATCHES "(x86_64)|(ppc64le)|(aarch64)$" AND CMAKE_SYSTEM_NAME MATCHES "Linux"))
+ libomptarget_say("Not building CUDA offloading plugin: only support CUDA in Linux x86_64, ppc64le, or aarch64 hosts.")
return()
elseif (NOT LIBOMPTARGET_DEP_LIBELF_FOUND)
libomptarget_say("Not building CUDA offloading plugin: libelf dependency not found.")
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D76469.251523.patch
Type: text/x-patch
Size: 1356 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20200320/e3f7bbc8/attachment.bin>
More information about the Openmp-commits
mailing list