[llvm] [Offload][OMPX] Add the runtime support for multi-dim grid and block (PR #118042)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Mon Dec 2 05:12:46 PST 2024
================
@@ -566,10 +567,26 @@ Error GenericKernelTy::launch(GenericDeviceTy &GenericDevice, void **ArgPtrs,
Args, Ptrs, *KernelLaunchEnvOrErr);
}
- uint32_t NumThreads = getNumThreads(GenericDevice, KernelArgs.ThreadLimit);
- uint64_t NumBlocks =
- getNumBlocks(GenericDevice, KernelArgs.NumTeams, KernelArgs.Tripcount,
- NumThreads, KernelArgs.ThreadLimit[0] > 0);
+ uint32_t NumThreads[3] = {KernelArgs.ThreadLimit[0],
+ KernelArgs.ThreadLimit[1],
+ KernelArgs.ThreadLimit[2]};
+ uint32_t NumBlocks[3] = {KernelArgs.NumTeams[0], KernelArgs.NumTeams[1],
+ KernelArgs.NumTeams[2]};
+ // FIXME: This is a WA to "calibrate" the bad work done in the front end.
+ // Delete this ugly code after the front end emits proper values.
+ auto CorrectMultiDim = [](uint32_t (&Val)[3]) {
----------------
arsenm wrote:
Just directly fix this? Where is this coming from?
https://github.com/llvm/llvm-project/pull/118042
More information about the llvm-commits
mailing list