-
Notifications
You must be signed in to change notification settings - Fork 93
Draft: update periodic #1361
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
base: master
Are you sure you want to change the base?
Draft: update periodic #1361
Conversation
| auto* nodeVol = | ||
| meta_.get_field(stk::topology::NODE_RANK, "tioga_nodal_volume"); | ||
| stk::mesh::parallel_max(bulk_, {nodeVol}); | ||
| comm::scatter_max(realm_.bulk_data(), {nodeVol}); |
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.
I had to make this change to get it to compile
| comm::scatter_max(realm_.bulk_data(), {nodeVol}); | |
| sierra::nalu::comm::scatter_max(bulk_, {nodeVol}); |
|
When I try to run the hackathon test case on Kestrel GPUs with these changes, I get many errors during the decomposition like this: |
I'm guessing this is that I failed to properly add the periodic parts back into the part vec for the |
|
Hi @rcknaus, how do you feel about this PR? Is there more that you want to do? |
|
This PR is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 7 days. |
Currently diffs and needs some correctness testing. But the idea is to glue the
parallel_opandperiodic_optogether, as a periodic replicated node has almost always the same behavior as a shared node -- when you want a parallel sum, you also want a periodic sum.