mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-04-20 06:49:15 +00:00
Clean DTYPES conditions in CMake (#974)
* 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>
This commit is contained in:
@@ -1,14 +1,10 @@
|
||||
add_custom_target(example_permute)
|
||||
|
||||
add_example_executable(example_permute_1xHxW_fp16 permute_1xHxW_fp16.cpp)
|
||||
if(result EQUAL 0)
|
||||
add_dependencies(example_permute example_permute_1xHxW_fp16)
|
||||
endif()
|
||||
add_example_dependencies(example_permute example_permute_1xHxW_fp16)
|
||||
|
||||
add_example_executable(example_permute_NxHxW_fp16 permute_NxHxW_fp16.cpp)
|
||||
if(result EQUAL 0)
|
||||
add_dependencies(example_permute example_permute_NxHxW_fp16)
|
||||
endif()
|
||||
add_example_dependencies(example_permute example_permute_NxHxW_fp16)
|
||||
|
||||
add_example_executable(example_permute_HxWx4_fp16 permute_HxWx4_fp16.cpp)
|
||||
if(result EQUAL 0)
|
||||
add_dependencies(example_permute example_permute_HxWx4_fp16)
|
||||
endif()
|
||||
add_example_dependencies(example_permute example_permute_HxWx4_fp16)
|
||||
|
||||
Reference in New Issue
Block a user