-
Notifications
You must be signed in to change notification settings - Fork 614
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
Yet more IREEGPUAttrs cleanup: drop get{A,B,C}SingleSubgroupLayout
methods
#19169
Open
bjacob
wants to merge
2
commits into
iree-org:main
Choose a base branch
from
bjacob:drop-getXsinglesubgrouplayout
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+45
−114
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,22 +30,20 @@ LogicalResult materializeOperandConcreteShape( | |
SmallVector<ReassociationIndices> &reassociations, | ||
RankedTensorType &resultType) { | ||
|
||
SmallVector<int64_t, 2> outerSizes; | ||
auto layout = getSingleSubgroupLayout(mma, fragment); | ||
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. use the actual type here instead of |
||
SmallVector<int64_t, 2> outerSizes = layout.outer; | ||
SmallVector<int64_t, 2> opaqueSizes; | ||
auto [m, n, k] = mma.getMNKShape(); | ||
switch (fragment) { | ||
case IREE::GPU::MMAFragment::Lhs: { | ||
outerSizes = mma.getASingleSubgroupLayout().outer; | ||
opaqueSizes.append({m, k}); | ||
break; | ||
} | ||
case IREE::GPU::MMAFragment::Rhs: { | ||
outerSizes = mma.getBSingleSubgroupLayout().outer; | ||
opaqueSizes.append({k, n}); | ||
break; | ||
} | ||
case IREE::GPU::MMAFragment::Acc: { | ||
outerSizes = mma.getCSingleSubgroupLayout().outer; | ||
opaqueSizes.append({m, n}); | ||
break; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -311,11 +311,12 @@ getContractionLayout(IREE::GPU::MMAScheduleAttr schedule, | |
cSubgroupStrides[dim] = subgroupNStrides[i]; | ||
} | ||
|
||
auto cLayout = createNestedLayout(context, cRank, m, n, | ||
/*subgroupCount=*/cSubgroupSizes, | ||
/*subgroupStrides=*/cSubgroupStrides, | ||
/*batchCount=*/cBatchSizes, | ||
getCSingleSubgroupLayout(mmaAttr)); | ||
auto cLayout = createNestedLayout( | ||
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. also here if you feel like updating this code |
||
context, cRank, m, n, | ||
/*subgroupCount=*/cSubgroupSizes, | ||
/*subgroupStrides=*/cSubgroupStrides, | ||
/*batchCount=*/cBatchSizes, | ||
getSingleSubgroupLayout(mmaAttr, IREE::GPU::MMAFragment::Acc)); | ||
LLVM_DEBUG({ llvm::dbgs() << "C layout: " << cLayout << "\n"; }); | ||
|
||
// A matrix layout | ||
|
@@ -339,11 +340,12 @@ getContractionLayout(IREE::GPU::MMAScheduleAttr schedule, | |
} | ||
aBatchSizes[afk] = bounds[opInfo.getKDims().back()] / intrinsicK; | ||
|
||
auto aLayout = createNestedLayout(context, aRank, afm, afk, | ||
/*subgroupCount=*/aSubgroupSizes, | ||
/*subgroupStrides=*/aSubgroupStrides, | ||
/*batchCount=*/aBatchSizes, | ||
getASingleSubgroupLayout(mmaAttr)); | ||
auto aLayout = createNestedLayout( | ||
context, aRank, afm, afk, | ||
/*subgroupCount=*/aSubgroupSizes, | ||
/*subgroupStrides=*/aSubgroupStrides, | ||
/*batchCount=*/aBatchSizes, | ||
getSingleSubgroupLayout(mmaAttr, IREE::GPU::MMAFragment::Lhs)); | ||
LLVM_DEBUG({ llvm::dbgs() << "A layout: " << aLayout << "\n"; }); | ||
|
||
int64_t bRank = opInfo.getBRank(); | ||
|
@@ -363,11 +365,12 @@ getContractionLayout(IREE::GPU::MMAScheduleAttr schedule, | |
} | ||
bBatchSizes[bfk] = bounds[opInfo.getKDims().back()] / intrinsicK; | ||
|
||
auto bLayout = createNestedLayout(context, bRank, bfk, bfn, | ||
/*subgroupCount=*/bSubgroupSizes, | ||
/*subgroupStrides=*/bSubgroupStrides, | ||
/*batchCount=*/bBatchSizes, | ||
getBSingleSubgroupLayout(mmaAttr)); | ||
auto bLayout = createNestedLayout( | ||
context, bRank, bfk, bfn, | ||
/*subgroupCount=*/bSubgroupSizes, | ||
/*subgroupStrides=*/bSubgroupStrides, | ||
/*batchCount=*/bBatchSizes, | ||
getSingleSubgroupLayout(mmaAttr, IREE::GPU::MMAFragment::Rhs)); | ||
LLVM_DEBUG({ llvm::dbgs() << "B layout: " << bLayout << "\n"; }); | ||
|
||
std::tuple<VectorLayoutInterface, VectorLayoutInterface, | ||
|
@@ -618,11 +621,11 @@ static LogicalResult setAttentionMatmulAnchor(RewriterBase &rewriter, | |
auto pvIntrinsic = | ||
cast<IREE::GPU::MmaInterfaceAttr>(pvSchedule.getIntrinsic()); | ||
IREE::GPU::MMASingleSubgroupLayout lhsLayout = | ||
getASingleSubgroupLayout(pvIntrinsic); | ||
getSingleSubgroupLayout(pvIntrinsic, IREE::GPU::MMAFragment::Lhs); | ||
IREE::GPU::MMASingleSubgroupLayout rhsLayout = | ||
getBSingleSubgroupLayout(pvIntrinsic); | ||
getSingleSubgroupLayout(pvIntrinsic, IREE::GPU::MMAFragment::Rhs); | ||
IREE::GPU::MMASingleSubgroupLayout outLayout = | ||
getCSingleSubgroupLayout(qkIntrinsic); | ||
getSingleSubgroupLayout(qkIntrinsic, IREE::GPU::MMAFragment::Acc); | ||
|
||
auto matchLayout = [](IREE::GPU::MMASingleSubgroupLayout layoutA, | ||
IREE::GPU::MMASingleSubgroupLayout layoutB) -> bool { | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
on CDNA*