-
Notifications
You must be signed in to change notification settings - Fork 229
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
Fixup _hoist_halospots #1496
Fixup _hoist_halospots #1496
Conversation
82cf3af
to
6269ab9
Compare
@@ -91,7 +91,7 @@ def rule1(dep, candidates): | |||
|
|||
for f in hs.fmapper: | |||
for n, i in enumerate(iters): | |||
candidates = set().union(*[i.dim._defines for i in iters[n:]]) | |||
candidates = [i.dim._defines for i in iters[n:]] |
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.
No need for set anymore?
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.
no, ._defines
is a set and the check now works at level of each ._defines
set, not the cumulative set
Codecov Report
@@ Coverage Diff @@
## master #1496 +/- ##
===========================================
- Coverage 86.52% 61.45% -25.08%
===========================================
Files 197 122 -75
Lines 28525 15385 -13140
Branches 3878 2902 -976
===========================================
- Hits 24682 9455 -15227
- Misses 3409 5386 +1977
- Partials 434 544 +110
Continue to review full report at Codecov.
|
6269ab9
to
bd88a53
Compare
Merged. |
fixes #1491