mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-16 10:59:55 +00:00
* adding contraction
* add contraction example
* update examle
* update example
* format
* update readme
* clean header
* clean header
* contraction with multiple D
* rename
* fix naming issue; add instances for contraction+bilinear
* change assumed virtual layout of contraction; add client example
* update example
* update
* contraction+scale
* use type_convert
* rename
[ROCm/composable_kernel commit: 4fe9c393b8]
13 lines
383 B
CMake
13 lines
383 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)
|