From e127f6a9d118b87f7b4bdaefb82eacdb0db0fbc4 Mon Sep 17 00:00:00 2001 From: Thrupti Raj Lakshmana Gowda Date: Thu, 19 Feb 2026 00:29:54 -0600 Subject: [PATCH] Update CMakeLists.txt (#4655) ## Motivation Tile Engine is an internal benchmarking tool and it need not be built everytime which would impact the build time with this PR we are excluding build for stream k operator in Tile Engine. ## Technical Details ## Test Plan ## Test Result ## Submission Checklist - [x] Look over the contributing guidelines at https://github.com/ROCm/ROCm/blob/develop/CONTRIBUTING.md#pull-requests. Co-authored-by: Illia Silin <98187287+illsilin@users.noreply.github.com> --- tile_engine/ops/gemm_streamk/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/tile_engine/ops/gemm_streamk/CMakeLists.txt b/tile_engine/ops/gemm_streamk/CMakeLists.txt index c692a6d247..ae453ea11b 100644 --- a/tile_engine/ops/gemm_streamk/CMakeLists.txt +++ b/tile_engine/ops/gemm_streamk/CMakeLists.txt @@ -66,6 +66,7 @@ function(create_individual_gemm_target datatype layout trait tile_config config_ # Create the executable add_executable(${target_name} + EXCLUDE_FROM_ALL ${GEMM_SOURCE_DIR}/gemm_streamk_benchmark_single.cpp ${instance_header} )