-
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
transformations: fix memref_streamify non idempotency and wrong maps for outs #2589
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2589 +/- ##
=======================================
Coverage 89.64% 89.64%
=======================================
Files 358 358
Lines 45359 45361 +2
Branches 6827 6828 +1
=======================================
+ Hits 40663 40665 +2
Misses 3665 3665
Partials 1031 1031 ☔ 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.
Can't really reason about the correctness of this change myself, but code-wise it's all good!
@@ -1,5 +1,9 @@ | |||
// RUN: xdsl-opt -p memref-streamify %s | filecheck %s | |||
|
|||
// Check that streamfying twice does not make further changes | |||
// RUN: xdsl-opt -p memref-streamify,memref-streamify %s | filecheck %s |
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.
This is a very neat idea! I like adding these kinds of things to tests!
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.
idempotency is a pre-requisite for our exhaustive search of IRs not to explode BTW
No description provided.