-
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
mpi: Fix haloupdate with inner dim [v2] #2272
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #2272 +/- ##
==========================================
+ Coverage 86.80% 86.82% +0.02%
==========================================
Files 229 229
Lines 42296 42383 +87
Branches 7830 7845 +15
==========================================
+ Hits 36713 36797 +84
- Misses 4923 4926 +3
Partials 660 660 ☔ View full report in Codecov by Sentry. |
def process(self, clusters): | ||
return self._process_fatd(clusters, 1, seen=set()) | ||
|
||
def callback(self, clusters, prefix, seen=None): | ||
if seen.issuperset(clusters): | ||
if not prefix: |
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.
Should this be both not prefix or seen.issuperset(clusters)
?
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 the seen
check is performed a few lines below on a per-cluster basis
bfa0fec
to
d6d8a6e
Compare
No description provided.