Files
rocm-systems/samples/2_Cookbook/22_cmake_hip_lang
Rahul Manocha 1a2f1eb11c SWDEV-437139 hip sample 22 fix
Change-Id: Icb7a9d759e62dab95399c81e2b68ff2cd8c24c0b
2023-12-12 17:34:07 +00:00
..
2023-12-12 17:34:07 +00:00

This will test HIP language support in upstream CMake

I. Build

mkdir -p build; cd build
rm -rf *;
cmake -DCMAKE_PREFIX_PATH=/opt/rocm ..
make

II. Test

$ ./square
info: running on device
info: allocate host mem (  7.63 MB)
info: allocate device mem (  7.63 MB)
info: copy Host2Device
info: launch 'vector_square' kernel
info: copy Device2Host
info: check result
PASSED!