compile.sh 702 Bytes
Newer Older
liuhy's avatar
liuhy committed
1
2
3
4
5
6
7
8
9
mkdir build -p
cd build

cmake                                                                                             \
-D CMAKE_PREFIX_PATH=${ROCM_PATH}                                                              \
-D CMAKE_CXX_COMPILER=${ROCM_PATH}/bin/hipcc                                                    \
-D CMAKE_CXX_FLAGS="-O3"                                                                          \
-D CMAKE_BUILD_TYPE=Release                                                                       \
-D GPU_TARGETS="gfx906;gfx926"                                                                           \
liuhy's avatar
liuhy committed
10
-D CMAKE_INSTALL_PREFIX=~/composable_kernel-develop/install_ck  \
liuhy's avatar
liuhy committed
11
12
13
..

cd -