-
Notifications
You must be signed in to change notification settings - Fork 13.6k
[MLIR][ArmSVE] Add an ArmSVE dialect operation which maps to svdupq_lane
#135356
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
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 |
---|---|---|
|
@@ -24,6 +24,7 @@ using SdotOpLowering = OneToOneConvertToLLVMPattern<SdotOp, SdotIntrOp>; | |
using SmmlaOpLowering = OneToOneConvertToLLVMPattern<SmmlaOp, SmmlaIntrOp>; | ||
using UdotOpLowering = OneToOneConvertToLLVMPattern<UdotOp, UdotIntrOp>; | ||
using UmmlaOpLowering = OneToOneConvertToLLVMPattern<UmmlaOp, UmmlaIntrOp>; | ||
using DupQLaneLowering = OneToOneConvertToLLVMPattern<DupQLaneOp, DupQLaneIntrOp>; | ||
using ScalableMaskedAddIOpLowering = | ||
OneToOneConvertToLLVMPattern<ScalableMaskedAddIOp, | ||
ScalableMaskedAddIIntrOp>; | ||
|
@@ -192,6 +193,7 @@ void mlir::populateArmSVELegalizeForLLVMExportPatterns( | |
SmmlaOpLowering, | ||
UdotOpLowering, | ||
UmmlaOpLowering, | ||
DupQLaneLowering, | ||
ScalableMaskedAddIOpLowering, | ||
ScalableMaskedAddFOpLowering, | ||
ScalableMaskedSubIOpLowering, | ||
|
@@ -219,6 +221,7 @@ void mlir::configureArmSVELegalizeForExportTarget( | |
SmmlaIntrOp, | ||
UdotIntrOp, | ||
UmmlaIntrOp, | ||
DupQLaneIntrOp, | ||
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. [nit] I know we’ve already diverged from alphabetical order, but let’s try to course-correct. Would you mind moving this to the top of the list? Same comment applies below. 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. I've put the new op in this position (instead of top or bottom) as it makes for a smaller diff. |
||
ScalableMaskedAddIIntrOp, | ||
ScalableMaskedAddFIntrOp, | ||
ScalableMaskedSubIIntrOp, | ||
|
@@ -238,6 +241,7 @@ void mlir::configureArmSVELegalizeForExportTarget( | |
SmmlaOp, | ||
UdotOp, | ||
UmmlaOp, | ||
DupQLaneOp, | ||
ScalableMaskedAddIOp, | ||
ScalableMaskedAddFOp, | ||
ScalableMaskedSubIOp, | ||
|
Uh oh!
There was an error while loading. Please reload this page.