Merge commit '95e4a4efcb967b806dbad401c79c31abb7ffed47' into develop

This commit is contained in:
assistant-librarian[bot]
2025-08-27 06:14:36 +00:00
parent 4d55b9edcc
commit c5d677d1cd

View File

@@ -1937,7 +1937,7 @@ struct XdlopsGemm
template <bool SwizzleA>
__device__ static auto GetGfx11InputBlkIdx()
{
const auto laneId = GetLaneId() % mfma_instr.num_threads_per_blk;
auto laneId = GetLaneId() % mfma_instr.num_threads_per_blk;
if constexpr(SwizzleA)
{
laneId = ((laneId & 1) << 3) | (laneId >> 1);