34976df246
* SWDEV-385161 - Deprecate usage of env vars in HIP samples and tests env vars such as HIP_PATH, ROCM_PATH, HIP_COMPILER, HIP_RUNTIME, HSA_PATH etc are removed. Change-Id: I280e20b291cfb14675846aae72d97fa5b3ad567d
38 wiersze
800 B
Markdown
38 wiersze
800 B
Markdown
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.
|
|
The same steps can be followed for both.
|
|
|
|
To build a sample, run in the sample folder,
|
|
|
|
mkdir -p build && cd build
|
|
|
|
rm -rf * (to clear up)
|
|
|
|
cmake -DCMAKE_PREFIX_PATH=<path/to/rocm> -DHIP_CXX_COMPILER=<path/to/clang> ..
|
|
|
|
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
|
|
|