mirror of
https://github.com/ROCm/ROCm.git
synced 2026-04-05 03:01:17 -04:00
Changed warpSize = 32 to warpSize = 64
This commit is contained in:
@@ -93,7 +93,11 @@ private:
|
||||
SmallVector<Value> mmaColIdx(4);
|
||||
SmallVector<Value> mmaRowIdx(2);
|
||||
Value threadId = getThreadId(rewriter, loc);
|
||||
#ifdef USE_ROCM
|
||||
Value warpSize = idx_val(64);
|
||||
#else
|
||||
Value warpSize = idx_val(32);
|
||||
#endif
|
||||
Value laneId = urem(threadId, warpSize);
|
||||
Value warpId = udiv(threadId, warpSize);
|
||||
// TODO: fix the bug in MMAEncodingAttr document
|
||||
|
||||
Reference in New Issue
Block a user