gfx942 return

This commit is contained in:
root
2025-09-23 06:55:57 +00:00
parent c2e0f0a0b7
commit 8d978054ff

View File

@@ -753,6 +753,7 @@ struct MoeFlatmmKernel
template <class MoeFlatmmKernelArgs>
CK_TILE_DEVICE void operator()(MoeFlatmmKernelArgs kargs) const
{
#if defined(__gfx950__)
int partition_idx = blockIdx.x;
int total_work_tile_cnt = TilePartitioner::GridSize(kargs.M, kargs.N);
do
@@ -763,6 +764,7 @@ struct MoeFlatmmKernel
this->operator()(kargs, block_offset_m, block_offset_n);
partition_idx += gridDim.x;
} while(UsePersistentKernel && partition_idx < total_work_tile_cnt);
#endif
}
template <class MoeFlatmmKernelArgs>