Files
rocm-systems/projects/hip-tests/samples/README.md
T
Rahul Manocha b821fdbfba [SWDEV-431345][SWDEV-432633] toplevel cmake for hip samples
Change-Id: If22e7e96604f184458cc6ab6bb9945152f9359e0


[ROCm/hip-tests commit: 7481de706f]
2023-12-05 11:36:15 -05:00

832 B

Build procedure

The CMakeLists.txt at hip-tests/samples folder can be used for building and packaging samples.

CMakeLists.txt can support shared and static libs of hip-rocclr runtime. The same steps can be followed for both.

  1. To build a specific sample (e.g. 0_Intro/bit_extract) run ..

cd samples/0_Intro/bit_extract

mkdir -p build && cd build

cmake ..

make all

  1. To build all samples together run ..

cd hip-tests

mkdir -p build && cd build

rm -rf * (to clear up)

cmake ../samples

make build_samples

In order to build specific samples (Intro, Utils or Cookbook) run ..

make build_intro make build_utils make build_cookbook

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

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

cmake ../samples

make package_samples