"vscode:/vscode.git/clone" did not exist on "bbe5079e37df7e97c906c24465a9d8569dabee5b"
CMakeLists.txt 383 Bytes
Newer Older
Chao Liu's avatar
Chao Liu committed
1
2
3
4
5
6
7
8
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}")

9
add_subdirectory(01_gemm)
Chao Liu's avatar
Chao Liu committed
10
add_subdirectory(02_gemm_add_add_fastgelu)
11
add_subdirectory(03_gemm_layernorm)
12
add_subdirectory(04_contraction)