mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-04 21:51:28 +00:00
* Add gemm_mx_fp8_bf8 example with row-major B * Add more overloads of MX MFMA instructions * Add MK_KN (RRR) tests * Add KM_NK (CCR) tests * Add more problem sizes to Large tests * Add test_gemm_mx to the list of regression tests
12 lines
417 B
CMake
12 lines
417 B
CMake
add_custom_target(example_gemm_mx)
|
|
|
|
add_example_executable(example_gemm_mx_fp8 gemm_mx_fp8.cpp)
|
|
add_example_dependencies(example_gemm_mx example_gemm_mx_fp8)
|
|
|
|
add_example_executable(example_gemm_mx_bf8 gemm_mx_bf8.cpp)
|
|
add_example_dependencies(example_gemm_mx example_gemm_mx_bf8)
|
|
|
|
add_example_executable(example_gemm_mx_fp8_bf8 gemm_mx_fp8_bf8.cpp)
|
|
add_example_dependencies(example_gemm_mx example_gemm_mx_fp8_bf8)
|
|
|