4a8a95a8e9
This reverts commit37282c6132. Reason for revert: <INSERT REASONING HERE> Change-Id: Ib2d1084ea21461f70f96f95c6025a08f88288357 [ROCm/hip commit:5b7533e49f]
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.
To build a sample, type in sample folder,
mkdir build (if build folder is missing)
cd build
cmake ..
make
If you want debug version, follow,
cmake -DCMAKE_BUILD_TYPE=Debug ..