mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-18 03:49:41 +00:00
* add example
* fix example
* add instance for gemm permute
* add to client example
* change configs
* change instance file name
* formate
* change client example file name and remove example
[ROCm/composable_kernel commit: 55236709e2]
10 lines
514 B
CMake
10 lines
514 B
CMake
add_executable(client_contraction_scale contraction_scale.cpp)
|
|
target_link_libraries(client_contraction_scale PRIVATE composable_kernel::device_operations)
|
|
|
|
add_executable(client_contraction_bilinear contraction_bilinear.cpp)
|
|
target_link_libraries(client_contraction_bilinear PRIVATE composable_kernel::device_operations)
|
|
|
|
add_executable(contraction_g1m2n3k1_add_xdl_fp16 contraction_g1m2n3k1_add_xdl_fp16.cpp)
|
|
target_link_libraries(contraction_g1m2n3k1_add_xdl_fp16 PRIVATE composable_kernel::device_operations)
|
|
|