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 2b0f3791a6.
This commit is contained in:
Qianfeng Zhang
2026-06-23 09:31:31 +00:00
parent 1805c985a0
commit 0b0684aff2

View File

@@ -114,8 +114,7 @@ struct tile_distribution
}
else if constexpr(NDimP == 2)
{
return array<index_t, 2>{get_warp_id(bool_constant<save_warp_id_in_sgpr>{}),
get_lane_id()};
return array<index_t, 2>{get_warp_id(), get_lane_id()};
}
}