[Openmp-commits] [PATCH] D103037: [libomptarget] [amdgpu] Fix copy-paste error setting NumThreads for a corner case.
Dhruva Chakrabarti via Phabricator via Openmp-commits
openmp-commits at lists.llvm.org
Mon May 24 15:24:01 PDT 2021
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGca17b26d4d7a: [libomptarget] [amdgpu] Fix copy-paste error setting NumThreads for a corner… (authored by dhruvachak).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D103037/new/
https://reviews.llvm.org/D103037
Files:
openmp/libomptarget/plugins/amdgpu/src/rtl.cpp
Index: openmp/libomptarget/plugins/amdgpu/src/rtl.cpp
===================================================================
--- openmp/libomptarget/plugins/amdgpu/src/rtl.cpp
+++ openmp/libomptarget/plugins/amdgpu/src/rtl.cpp
@@ -836,7 +836,7 @@
RTLDeviceInfoTy::Default_WG_Size);
if (DeviceInfo.NumThreads[device_id] >
DeviceInfo.ThreadsPerGroup[device_id]) {
- DeviceInfo.NumTeams[device_id] = DeviceInfo.ThreadsPerGroup[device_id];
+ DeviceInfo.NumThreads[device_id] = DeviceInfo.ThreadsPerGroup[device_id];
DP("Default number of threads exceeds device limit, capping at %d\n",
DeviceInfo.ThreadsPerGroup[device_id]);
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D103037.347519.patch
Type: text/x-patch
Size: 659 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20210524/da64c877/attachment.bin>
More information about the Openmp-commits
mailing list