Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
lib/Target/AMDGPU/SIISelLowering.cpp | ||
---|---|---|
1643 ↗ | (On Diff #206762) | This should be derived from the subtarget maximum workgroup size |
lib/Target/AMDGPU/SIISelLowering.cpp | ||
---|---|---|
1643 ↗ | (On Diff #206762) | It is derived from the theoretical maximum you can pack into 32 bit register (and agrees with maximum whg size as well of course, which makes it possible). |
lib/Target/AMDGPU/SIISelLowering.cpp | ||
---|---|---|
1643 ↗ | (On Diff #206762) | For the record: there is conformation that any given WG dimension can never be more that 1024. This enables this code and allows to add few more AssertZExt I suppose. Probably there is something in clang as well. |