-
Notifications
You must be signed in to change notification settings - Fork 77
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
dialects: Fix affine.ParallelOp boundsGroup checks. #2235
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2235 +/- ##
=======================================
Coverage 89.62% 89.62%
=======================================
Files 346 346
Lines 41027 41027
Branches 6096 6096
=======================================
Hits 36771 36771
Misses 3364 3364
Partials 892 892 ☔ View full report in Codecov by Sentry. |
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.
How did you find it is off? Add a test? ;-)
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.
Nice find! 🕵️
Through errors on an xDSL+MLIR flow I'm working on; will try and add a test sure! |
@PapyChacal, any progress on this? |
Yep 👼 |
The current (my 😅) verifier of
affine.parallel
is off.boundsGroups work like operandSegmentSizes; it contains the lengths of each group.
The current verifier assumes they work like mappings from each bound to its group.