2020-10-05 13:20:58 -04:00
|
|
|
Build procedure
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
2020-10-12 10:27:33 -04:00
|
|
|
To build a sample, run in the sample folder,
|
2020-10-05 13:20:58 -04:00
|
|
|
|
2020-10-12 10:27:33 -04:00
|
|
|
mkdir -p build && cd build
|
2020-10-05 13:20:58 -04:00
|
|
|
|
2020-10-12 10:27:33 -04:00
|
|
|
rm -rf * (to clear up)
|
|
|
|
|
|
|
|
|
|
a. to build with shared libs, run
|
2020-10-05 13:20:58 -04:00
|
|
|
|
|
|
|
|
cmake ..
|
|
|
|
|
|
2020-10-12 10:27:33 -04:00
|
|
|
b. to build with static libs, run
|
|
|
|
|
|
2021-11-25 15:10:15 +05:30
|
|
|
cmake -DCMAKE_PREFIX_PATH="<ROCM_PATH>/llvm/lib/cmake" ..
|
2020-10-05 13:20:58 -04:00
|
|
|
|
2020-10-12 10:27:33 -04:00
|
|
|
Then run,
|
|
|
|
|
|
|
|
|
|
make
|
2020-10-09 21:13:34 -04:00
|
|
|
|
2020-10-12 10:27:33 -04:00
|
|
|
Note that if you want debug version, add "-DCMAKE_BUILD_TYPE=Debug" in cmake cmd.
|