mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-16 02:54:21 +00:00
* Grouped GEmm int4.
* Formatting + fix K dimension for int8.
* Batched Gemm int4 example.
* CGEMM int4 example.
* Include inc filese in clang-format.
* SplitK int4 example
* Refactoring of performance measurement.
* Fix #ifdef statements.
Co-authored-by: Adam Osewski <aosewski@amd.com>
[ROCm/composable_kernel commit: 3ab20fd753]
18 lines
778 B
CMake
18 lines
778 B
CMake
add_custom_target(example_splitK_gemm_xdl)
|
|
|
|
add_example_executable(example_splitK_gemm_xdl_fp32 splitK_gemm_xdl_fp32.cpp)
|
|
add_example_executable(example_splitK_gemm_xdl_fp16 splitK_gemm_xdl_fp16.cpp)
|
|
add_example_executable(example_splitK_gemm_xdl_bfp16 splitK_gemm_xdl_bfp16.cpp)
|
|
add_example_executable(example_splitK_gemm_xdl_int8 splitK_gemm_xdl_int8.cpp)
|
|
|
|
add_dependencies(example_splitK_gemm_xdl
|
|
example_splitK_gemm_xdl_fp32
|
|
example_splitK_gemm_xdl_fp16
|
|
example_splitK_gemm_xdl_bfp16
|
|
example_splitK_gemm_xdl_int8)
|
|
|
|
if(USE_BITINT_EXTENSION_INT4)
|
|
add_example_executable(example_splitK_gemm_xdl_int4 splitK_gemm_xdl_int4.cpp)
|
|
add_dependencies(example_splitK_gemm_xdl example_splitK_gemm_xdl_int4)
|
|
endif()
|