"vscode:/vscode.git/clone" did not exist on "c261b49d5a4db2cdd26738e3df209e5a9068a479"
CMakeLists.txt 288 Bytes
Newer Older
Chao Liu's avatar
Chao Liu committed
1
2
3
4
5
6
7
8
9
cmake_minimum_required(VERSION 3.15)
project(ck_app)
add_compile_options(-std=c++17)

find_package(composable_kernel 1.0.0 COMPONENTS device_operations)
find_package(hip REQUIRED PATHS /opt/rocm)
message(STATUS "Build with HIP ${hip_VERSION}")

add_subdirectory(02_gemm_add_add_fastgelu)