-
Notifications
You must be signed in to change notification settings - Fork 89
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
Refactoring of the ghosting setup #3063
base: develop
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #3063 +/- ##
===========================================
- Coverage 56.45% 53.19% -3.26%
===========================================
Files 1022 990 -32
Lines 86431 83550 -2881
===========================================
- Hits 48794 44445 -4349
- Misses 37637 39105 +1468 ☔ View full report in Codecov by Sentry. |
This reverts commit ae9a456.
…l block to sub region mapping directly.
std::size_t const numGlbNodes = gis.nodes.get() + 1; // TODO Use strongly typed integers | ||
std::size_t const numOwnedNodes = std::size( ownedNodesIdcs ); // TODO Use strongly typed integers | ||
|
||
auto const missingIndicesMap = make_rcp< TriMap const >( numGlbMissingIndices, numGlbMissingIndices, TriGlbIdx{ 0 }, comm ); |
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 the second argument here be numLocMissingIndices instead of the global ?
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.
Hmm, yes probably, I would have expected a failure then...
I guess my current test case is too simple.
* added comments for global numbering (Ryan's version) * comments for constructing owned and present mesh data (Ryan's version) * comments for construction of alocal djacency matrix data by each rank (Ryan's version) * Comments through ghostingFootprint (Ryan's version) * Comments through construction of GhostSend/GhostRecv for each rank (Ryan's version) * complete comments for performGhosting (Ryan's version) * Update comments about sorting following fix * finished comments of doTheNewGhosting (Ryan's version) * make new ghosting active/deactive by setting command line flag (-g 1)
This reverts commit a62ce3a.
…what I think is non-contiguous local indices
No description provided.