Remove changes from gemm example

This commit is contained in:
Manish Kumar
2025-11-25 06:28:46 +00:00
parent 984e3d4b71
commit 7aead9064b

2
example/ck_tile/03_gemm/CMakeLists.txt Normal file → Executable file
View File

@@ -3,7 +3,6 @@ add_executable(tile_example_gemm_universal EXCLUDE_FROM_ALL universal_gemm.cpp)
add_executable(tile_example_gemm_weight_preshuffle EXCLUDE_FROM_ALL gemm_weight_preshuffle.cpp)
add_executable(tile_example_gemm_reduce EXCLUDE_FROM_ALL gemm_splitk_two_stage_reduce.cpp)
add_executable(tile_example_gemm_splitk_two_stage EXCLUDE_FROM_ALL gemm_splitk_two_stage.cpp)
add_executable(tile_example_gemm_persistent_async EXCLUDE_FROM_ALL gemm_persistent_async.cpp)
set(EXAMPLE_GEMM_COMPILE_OPTIONS)
set(EXAMPLE_WEIGHT_PRESHUFFLE_COMPILE_OPTIONS)
if(CK_USE_OCP_FP8)
@@ -19,4 +18,3 @@ target_compile_options(tile_example_gemm_universal PRIVATE ${EXAMPLE_GEMM_COMPIL
target_compile_options(tile_example_gemm_weight_preshuffle PRIVATE ${EXAMPLE_WEIGHT_PRESHUFFLE_COMPILE_OPTIONS})
target_compile_options(tile_example_gemm_reduce PRIVATE ${EXAMPLE_GEMM_COMPILE_OPTIONS})
target_compile_options(tile_example_gemm_splitk_two_stage PRIVATE ${EXAMPLE_GEMM_COMPILE_OPTIONS})
target_compile_options(tile_example_gemm_persistent_async PRIVATE ${EXAMPLE_GEMM_COMPILE_OPTIONS})