mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-05 22:22:27 +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
7 lines
323 B
CMake
7 lines
323 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)
|
|
|