[llvm] WIP: [Offload] Add testing for Offload program and kernel related entry points (PR #127803)
Joseph Huber via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 19 08:07:47 PST 2025
================
@@ -0,0 +1,36 @@
+macro(add_offload_test_device_code test_filename test_name)
+ message("Building Offload API device code for test '${test_name}'")
+ set(SRC_PATH ${CMAKE_CURRENT_SOURCE_DIR}/${test_filename})
+ set(UTIL_PATH ${CMAKE_CURRENT_SOURCE_DIR}/util.h)
+
+ # Build for NVPTX
+ set(BIN_PATH ${CMAKE_CURRENT_BINARY_DIR}/${test_name}.nvptx64.bin)
+ add_custom_command(OUTPUT ${BIN_PATH}
+ COMMAND
+ ${CMAKE_C_COMPILER} --target=nvptx64-nvidia-cuda -march=native
+ --cuda-path=/usr/local/cuda
----------------
jhuber6 wrote:
There is a dedicated CMake variable for this, it should be forwarded to the runtime build, but this should only be specified if present, otherwise let the autodetection do its job.
https://github.com/llvm/llvm-project/pull/127803
More information about the llvm-commits
mailing list