Adding distributed orthogonal mesh creation.#1070
Open
wdhawkins wants to merge 1 commit into
Open
Conversation
51799cd to
74fceae
Compare
Contributor
|
should there be an example/tutorial and/or a regression test added? |
Collaborator
Author
Yes. I'll add regression tests and a tutorial. |
ragusa
approved these changes
May 19, 2026
ragusa
left a comment
Contributor
There was a problem hiding this comment.
read the comments and decide. you can just resolve the conversation if appropriate.
andrsd
reviewed
May 19, 2026
andrsd
left a comment
Collaborator
There was a problem hiding this comment.
This seems ok.
It is marked as draft, so I can check again when ready for review.
cecfd7c to
2d76d59
Compare
2d76d59 to
c9da699
Compare
andrsd
reviewed
Jun 15, 2026
| const int cell_pid = cell_pids[cell_gid]; | ||
| ++partI_num_cells[cell_pid]; | ||
|
|
||
| std::array<int, 27> recipient_pids = {}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds distributed orthogonal mesh creation. This implementation differs from true distributed mesh creation in that rank 0 creates the entire global cell graph. This was intentional, as it allows the existing partitioning algorithms to work as is. After partitioning, rank 0 distributes partition and cell data to each rank, and the individual ranks build their own cells and populate the mesh.
Once this is tested at scale, I'll remove the "Draft" designation.
Closes #19
PR Checklist