-
Notifications
You must be signed in to change notification settings - Fork 14.7k
[AMDGPU] Mark workitem IDs uniform in more cases #152581
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -237,11 +237,13 @@ AMDGPUSubtarget::getWavesPerEU(std::pair<unsigned, unsigned> FlatWorkGroupSizes, | |||||
return getEffectiveWavesPerEU(Requested, FlatWorkGroupSizes, LDSBytes); | ||||||
} | ||||||
|
||||||
static unsigned getReqdWorkGroupSize(const Function &Kernel, unsigned Dim) { | ||||||
std::optional<unsigned> | ||||||
AMDGPUSubtarget::getReqdWorkGroupSize(const Function &Kernel, | ||||||
unsigned Dim) const { | ||||||
auto *Node = Kernel.getMetadata("reqd_work_group_size"); | ||||||
if (Node && Node->getNumOperands() == 3) | ||||||
return mdconst::extract<ConstantInt>(Node->getOperand(Dim))->getZExtValue(); | ||||||
return std::numeric_limits<unsigned>::max(); | ||||||
return std::nullopt; | ||||||
} | ||||||
|
||||||
bool AMDGPUSubtarget::isMesaKernel(const Function &F) const { | ||||||
|
@@ -250,9 +252,9 @@ bool AMDGPUSubtarget::isMesaKernel(const Function &F) const { | |||||
|
||||||
unsigned AMDGPUSubtarget::getMaxWorkitemID(const Function &Kernel, | ||||||
unsigned Dimension) const { | ||||||
unsigned ReqdSize = getReqdWorkGroupSize(Kernel, Dimension); | ||||||
if (ReqdSize != std::numeric_limits<unsigned>::max()) | ||||||
return ReqdSize - 1; | ||||||
std::optional<unsigned> ReqdSize = getReqdWorkGroupSize(Kernel, Dimension); | ||||||
if (ReqdSize.has_value()) | ||||||
return ReqdSize.value() - 1; | ||||||
return getFlatWorkGroupSizes(Kernel).second - 1; | ||||||
} | ||||||
|
||||||
|
@@ -303,9 +305,9 @@ bool AMDGPUSubtarget::makeLIDRangeMetadata(Instruction *I) const { | |||||
} | ||||||
|
||||||
if (Dim <= 3) { | ||||||
unsigned ReqdSize = getReqdWorkGroupSize(*Kernel, Dim); | ||||||
if (ReqdSize != std::numeric_limits<unsigned>::max()) | ||||||
MinSize = MaxSize = ReqdSize; | ||||||
std::optional<unsigned> ReqdSize = getReqdWorkGroupSize(*Kernel, Dim); | ||||||
if (ReqdSize.has_value()) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
MinSize = MaxSize = *ReqdSize; | ||||||
} | ||||||
} | ||||||
} | ||||||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -22,6 +22,7 @@ | |||||
#include "llvm/Analysis/LoopInfo.h" | ||||||
#include "llvm/Analysis/ValueTracking.h" | ||||||
#include "llvm/CodeGen/Analysis.h" | ||||||
#include "llvm/IR/Function.h" | ||||||
#include "llvm/IR/IRBuilder.h" | ||||||
#include "llvm/IR/IntrinsicsAMDGPU.h" | ||||||
#include "llvm/IR/PatternMatch.h" | ||||||
|
@@ -1003,6 +1004,21 @@ bool GCNTTIImpl::isSourceOfDivergence(const Value *V) const { | |||||
DstAS == AMDGPUAS::FLAT_ADDRESS && | ||||||
ST->hasGloballyAddressableScratch(); | ||||||
} | ||||||
case Intrinsic::amdgcn_workitem_id_y: | ||||||
case Intrinsic::amdgcn_workitem_id_z: { | ||||||
// If the X dimension is guaranteed to launch with a size that is a power | ||||||
// of 2 | ||||||
// >= the wavefront size, then the Y and Z dimensions are uniform. | ||||||
// Similarly, if the dimension has size 1, it is also uniform. | ||||||
const Function *F = Intrinsic->getFunction(); | ||||||
std::optional<unsigned> ReqdXDimSize = ST->getReqdWorkGroupSize(*F, 0); | ||||||
if (ReqdXDimSize.has_value() && isPowerOf2_32(*ReqdXDimSize) && | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
*ReqdXDimSize >= ST->getWavefrontSize()) | ||||||
return false; | ||||||
std::optional<unsigned> ThisDimSize = ST->getReqdWorkGroupSize( | ||||||
*F, IID == Intrinsic::amdgcn_workitem_id_y ? 1 : 2); | ||||||
return !(ThisDimSize.has_value() && *ThisDimSize == 1); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
} | ||||||
default: | ||||||
return AMDGPU::isIntrinsicSourceOfDivergence(IID); | ||||||
} | ||||||
|
@@ -1049,28 +1065,35 @@ bool GCNTTIImpl::isAlwaysUniform(const Value *V) const { | |||||
// packed into a same wave which gives 1 and 0 after the division by 64 | ||||||
// respectively. | ||||||
// | ||||||
// FIXME: limit it to 1D kernels only, although that shall be possible | ||||||
// to perform this optimization is the size of the X dimension is a power | ||||||
// of 2, we just do not currently have infrastructure to query it. | ||||||
// The X dimension doesn't reset within a wave if either both the Y | ||||||
// and Z dimensions are of length 1, or if the X dimension's required | ||||||
// size is a power of 2. Note, however, if the X dimension's maximum | ||||||
// size is a power of 2 < the wavefront size, division by the wavefront | ||||||
// size is guaranteed to yield 0, so this is also a no-reset case. | ||||||
bool XDimDoesntResetWithinWaves = false; | ||||||
if (auto *I = dyn_cast<Instruction>(V)) { | ||||||
const Function *F = I->getFunction(); | ||||||
std::optional<unsigned> ReqdXDimSize = ST->getReqdWorkGroupSize(*F, 0); | ||||||
XDimDoesntResetWithinWaves = | ||||||
ST->getMaxWorkitemID(*F, 1) == 0 && ST->getMaxWorkitemID(*F, 2) == 0; | ||||||
if (ReqdXDimSize.has_value() && isPowerOf2_32(*ReqdXDimSize)) | ||||||
Comment on lines
+1076
to
+1079
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you push this into another "is 1D workgroup" helper in the subtarget? This is re-querying the same metadata repeatedly, and we're likely to end up with a secondary representation of this in the future that doesn't depend on the exact dispatch size |
||||||
XDimDoesntResetWithinWaves = true; | ||||||
} | ||||||
using namespace llvm::PatternMatch; | ||||||
uint64_t C; | ||||||
if (match(V, m_LShr(m_Intrinsic<Intrinsic::amdgcn_workitem_id_x>(), | ||||||
m_ConstantInt(C))) || | ||||||
match(V, m_AShr(m_Intrinsic<Intrinsic::amdgcn_workitem_id_x>(), | ||||||
m_ConstantInt(C)))) { | ||||||
const Function *F = cast<Instruction>(V)->getFunction(); | ||||||
return C >= ST->getWavefrontSizeLog2() && | ||||||
ST->getMaxWorkitemID(*F, 1) == 0 && ST->getMaxWorkitemID(*F, 2) == 0; | ||||||
return C >= ST->getWavefrontSizeLog2() && XDimDoesntResetWithinWaves; | ||||||
} | ||||||
|
||||||
Value *Mask; | ||||||
if (match(V, m_c_And(m_Intrinsic<Intrinsic::amdgcn_workitem_id_x>(), | ||||||
m_Value(Mask)))) { | ||||||
const Function *F = cast<Instruction>(V)->getFunction(); | ||||||
const DataLayout &DL = F->getDataLayout(); | ||||||
return computeKnownBits(Mask, DL).countMinTrailingZeros() >= | ||||||
ST->getWavefrontSizeLog2() && | ||||||
ST->getMaxWorkitemID(*F, 1) == 0 && ST->getMaxWorkitemID(*F, 2) == 0; | ||||||
XDimDoesntResetWithinWaves; | ||||||
} | ||||||
|
||||||
const ExtractValueInst *ExtValue = dyn_cast<ExtractValueInst>(V); | ||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,10 +98,13 @@ entry: | |
} | ||
|
||
; GCN-LABEL: {{^}}lshr_threadid_3d: | ||
; GCN: global_load_dword | ||
; W64: global_load_dword | ||
; W32: v_readfirstlane_b32 [[OFFSET:s[0-9]+]], v0 | ||
; W32: s_load_dword s{{[0-9]+}}, s[{{[0-9:]+}}], [[OFFSET]] | ||
|
||
; OPT-LABEL: @lshr_threadid_3d | ||
; OPT: %arrayidx = getelementptr inbounds i32, ptr addrspace(1) %in, i64 %div4{{$}} | ||
; OPT-W64: %arrayidx = getelementptr inbounds i32, ptr addrspace(1) %in, i64 %div4{{$}} | ||
; OPT-W32: %arrayidx = getelementptr inbounds i32, ptr addrspace(1) %in, i64 %div4, !amdgpu.uniform | ||
define amdgpu_kernel void @lshr_threadid_3d(ptr addrspace(1) align 4 %in, ptr addrspace(1) align 4 %out) !reqd_work_group_size !2 { | ||
entry: | ||
%lid = tail call i32 @llvm.amdgcn.workitem.id.x() | ||
|
@@ -114,6 +117,24 @@ entry: | |
ret void | ||
} | ||
|
||
; GCN-LABEL: {{^}}high_id_uniform: | ||
; GCN: v_lshlrev_b32_e32 v0, 2, v2 | ||
; GCN: v_readfirstlane_b32 [[OFFSET:s[0-9]+]], v0 | ||
; GCN: s_load_dword s{{[0-9]+}}, s[{{[0-9:]+}}], [[OFFSET]] | ||
|
||
; OPT-LABEL: @high_id_uniform | ||
; OPT: %arrayidx = getelementptr inbounds i32, ptr addrspace(1) %in, i64 %zid.zext, !amdgpu.uniform | ||
define amdgpu_kernel void @high_id_uniform(ptr addrspace(1) align 4 %in, ptr addrspace(1) align 4 %out) !reqd_work_group_size !2 { | ||
entry: | ||
%zid = tail call i32 @llvm.amdgcn.workitem.id.z() | ||
%zid.zext = zext nneg i32 %zid to i64 | ||
%arrayidx = getelementptr inbounds i32, ptr addrspace(1) %in, i64 %zid.zext | ||
%load = load i32, ptr addrspace(1) %arrayidx, align 4 | ||
%arrayidx2 = getelementptr inbounds i32, ptr addrspace(1) %out, i64 %zid.zext | ||
store i32 %load, ptr addrspace(1) %arrayidx2, align 4 | ||
ret void | ||
} | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you add direct tests in test/Analysis/UniformityAnalysis |
||
; GCN-LABEL: {{^}}lshr_threadid_1d_uneven: | ||
; W64: global_load_dword | ||
; W32: v_readfirstlane_b32 [[OFFSET:s[0-9]+]], v0 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.