
This commit refactors the `add_offload_test_device_code` CMake function to compile device code using the C++ compiler (`CMAKE_CXX_COMPILER`) instead of the C compiler. This change enables the use of C++ features, such as templates, within device-side test kernels. This will allow for more advanced and reusable kernel wrappers, reducing boilerplate code in the conformance test suite. As part of this change: - All `.c` files for device code in `unittests/` have been renamed to `.cpp`. - Kernel definitions are now wrapped in `extern "C"` to ensure C linkage and prevent name mangling. This change affects the `OffloadAPI` and `Conformance` test suites. cc @callumfare @RossBrunton @jhuber6
12 lines
251 B
C++
12 lines
251 B
C++
#include <gpuintrin.h>
|
|
#include <stdint.h>
|
|
|
|
extern "C" __gpu_kernel void sequence(uint32_t idx, uint32_t *inout) {
|
|
if (idx == 0)
|
|
inout[idx] = 0;
|
|
else if (idx == 1)
|
|
inout[idx] = 1;
|
|
else
|
|
inout[idx] = inout[idx - 1] + inout[idx - 2];
|
|
}
|