From 0b0684aff267bffee07a28ce1bfcd3c9bf735cb7 Mon Sep 17 00:00:00 2001 From: Qianfeng Zhang Date: Tue, 23 Jun 2026 09:31:31 +0000 Subject: [PATCH] Revert "[ck_tile] Add get_partition_index_v2 which uses warp_id in vgpr and to be used by tile_windows on lds-based tensor_view" This reverts commit 2b0f3791a6e8edf47d199600a61deb05ca1c4d42. --- include/ck_tile/core/tensor/tile_distribution.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/ck_tile/core/tensor/tile_distribution.hpp b/include/ck_tile/core/tensor/tile_distribution.hpp index 8fe16a1693..606b346e19 100644 --- a/include/ck_tile/core/tensor/tile_distribution.hpp +++ b/include/ck_tile/core/tensor/tile_distribution.hpp @@ -114,8 +114,7 @@ struct tile_distribution } else if constexpr(NDimP == 2) { - return array{get_warp_id(bool_constant{}), - get_lane_id()}; + return array{get_warp_id(), get_lane_id()}; } }