From 7aead9064bd78f6e5b5b85f202ab61d581f77be4 Mon Sep 17 00:00:00 2001 From: Manish Kumar Date: Tue, 25 Nov 2025 06:28:46 +0000 Subject: [PATCH] Remove changes from gemm example --- example/ck_tile/03_gemm/CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) mode change 100644 => 100755 example/ck_tile/03_gemm/CMakeLists.txt diff --git a/example/ck_tile/03_gemm/CMakeLists.txt b/example/ck_tile/03_gemm/CMakeLists.txt old mode 100644 new mode 100755 index 2cc6b227e2..d2112a67bf --- a/example/ck_tile/03_gemm/CMakeLists.txt +++ b/example/ck_tile/03_gemm/CMakeLists.txt @@ -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})