Files
rocm-systems/projects/hip-tests/samples/README.md
T
ROCm CI Service Account db3c379967 SWDEV-382266, SWDEV-379678 - hip samples package from hip-tests project (#168)
Use make package_samples to generate the packages

Change-Id: I30b382fed385f6daac026375537726622c05ca88

[ROCm/hip-tests commit: 6a5e95122b]
2023-02-15 17:47:59 -08:00

824 B

Build procedure

The CMakeLists.txt at hip-tests/samples folder is currently used for packaging purpose. We provide Makefile and CMakeLists.txt to build the samples seperately.

1.Makefile supports shared lib of hip-rocclr runtime and nvcc.

To build a sample, just type in sample folder,

make

2.CMakeLists.txt can support shared and static libs of hip-rocclr runtime.

To build a sample, run in the sample folder,

mkdir -p build && cd build

rm -rf * (to clear up)

a. to build with shared libs, run

cmake ..

make

b. to build with static libs, run

cmake -DCMAKE_PREFIX_PATH="<ROCM_PATH>/llvm/lib/cmake" ..

Then run,

make

Note that if you want debug version, add "-DCMAKE_BUILD_TYPE=Debug" in cmake cmd.

3.To package samples and generate packages. From hip-tests/build

cmake ../samples

make package_samples