mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-18 03:49:41 +00:00
* Update Softmax device operation interface.
* Update ckProfiler.
* Update Softmax UT.
* Update example.
* Client example.
* Clang format
Co-authored-by: Adam Osewski <aosewski@amd.com>
[ROCm/composable_kernel commit: 3da5c19e62]
15 lines
443 B
CMake
15 lines
443 B
CMake
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(01_gemm)
|
|
add_subdirectory(02_gemm_add_add_fastgelu)
|
|
add_subdirectory(03_gemm_layernorm)
|
|
add_subdirectory(04_contraction)
|
|
add_subdirectory(05_layernorm)
|
|
add_subdirectory(06_softmax)
|