Skip to content

[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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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;
Comment on lines +256 to +257
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if (ReqdSize.has_value())
return ReqdSize.value() - 1;
if (ReqdSize)
return *ReqdSize - 1;

return getFlatWorkGroupSizes(Kernel).second - 1;
}

Expand Down Expand Up @@ -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())
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if (ReqdSize.has_value())
if (ReqdSize)

MinSize = MaxSize = *ReqdSize;
}
}
}
Expand Down
6 changes: 6 additions & 0 deletions llvm/lib/Target/AMDGPU/AMDGPUSubtarget.h
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,12 @@ class AMDGPUSubtarget {
/// be converted to integer, or violate subtarget's specifications.
std::pair<unsigned, unsigned> getFlatWorkGroupSizes(const Function &F) const;

/// \returns The required size of workgroups that will be used to execute \p F
/// in the \p Dim dimension, if it is known (from `!reqd_work_group_size`
/// metadata. Otherwise, returns std::nullopt.
std::optional<unsigned> getReqdWorkGroupSize(const Function &F,
unsigned Dim) const;

/// \returns Subtarget's default pair of minimum/maximum number of waves per
/// execution unit for function \p F, or minimum/maximum number of waves per
/// execution unit explicitly requested using "amdgpu-waves-per-eu" attribute
Expand Down
41 changes: 32 additions & 9 deletions llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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) &&
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if (ReqdXDimSize.has_value() && isPowerOf2_32(*ReqdXDimSize) &&
if (ReqdXDimSize && isPowerOf2_32(*ReqdXDimSize) &&

*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);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
return !(ThisDimSize.has_value() && *ThisDimSize == 1);
return !ThisDimSize || *ThisDimSize != 1;

}
default:
return AMDGPU::isIntrinsicSourceOfDivergence(IID);
}
Expand Down Expand Up @@ -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
Copy link
Contributor

Choose a reason for hiding this comment

The 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);
Expand Down
25 changes: 23 additions & 2 deletions llvm/test/CodeGen/AMDGPU/uniform-load-from-tid.ll
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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
}

Copy link
Contributor

Choose a reason for hiding this comment

The 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
Expand Down