mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-18 03:49:41 +00:00
* Add a condition to build fp8 instances
* simplified buffer_load/store
* add bfp8/fp8
* fixed
* remove all f8/bf8 condition include folder
* fixed cmake conditions
* fixed DTYPES=fp16/bfp16
* fix
* fixed buffer_load
* fixed buffer_store
* fix
* clean example cmake files
* fixed ci
* fixed cit
---------
Co-authored-by: Rostyslav Geyyer <rosty.geyyer@amd.com>
Co-authored-by: Jing Zhang <jizha@amd.com>
[ROCm/composable_kernel commit: bf435140dc]
19 lines
753 B
CMake
19 lines
753 B
CMake
add_custom_target(example_cgemm_xdl)
|
|
|
|
add_example_executable(example_cgemm_xdl_bf16 cgemm_xdl_bf16.cpp)
|
|
add_example_dependencies(example_cgemm_xdl example_cgemm_xdl_bf16)
|
|
|
|
add_example_executable(example_cgemm_xdl_fp16 cgemm_xdl_fp16.cpp)
|
|
add_example_dependencies(example_cgemm_xdl example_cgemm_xdl_fp16)
|
|
|
|
add_example_executable(example_cgemm_xdl_fp32 cgemm_xdl_fp32.cpp)
|
|
add_example_dependencies(example_cgemm_xdl example_cgemm_xdl_fp32)
|
|
|
|
add_example_executable(example_cgemm_xdl_int8 cgemm_xdl_int8.cpp)
|
|
add_example_dependencies(example_cgemm_xdl example_cgemm_xdl_int8)
|
|
|
|
if(USE_BITINT_EXTENSION_INT4)
|
|
add_example_executable(example_cgemm_xdl_int4 cgemm_xdl_int4.cpp)
|
|
add_example_dependencies(example_cgemm_xdl example_cgemm_xdl_int4)
|
|
endif()
|