-
Notifications
You must be signed in to change notification settings - Fork 39
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
Hypergraph #778
base: dev
Are you sure you want to change the base?
Hypergraph #778
Changes from all commits
dfcdc0a
3f97feb
5fbea60
5dde4e7
0ef3aa2
84cc0b4
5d93ed0
0ca9608
d1591df
23f30cf
f6ca52e
0ac5e73
a6d0aef
7b874e6
6054a54
7ea579d
1a55ec5
a1c7d5d
aeb6bb7
6891d6a
9a61f21
70d0702
6864a87
418cb14
89b6197
e794fc6
e951630
a7bb565
0edcc75
5d9a192
af2e100
afb2cb2
05441b6
c3f2ab0
1a1ceb7
0a42980
a53b551
3292e97
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -667,6 +667,15 @@ void SysBoundary::applySysBoundaryVlasovConditions( | |
SpatialCell::set_mpi_transfer_type(Transfer::CELL_PARAMETERS | Transfer::POP_METADATA | Transfer::CELL_SYSBOUNDARYFLAG, true); | ||
mpiGrid.update_copies_of_remote_neighbors(SYSBOUNDARIES_EXTENDED_NEIGHBORHOOD_ID); | ||
|
||
// Mark cells that are communicating velocity blocks on system boundaries | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Will this in fact now provide incorrect information to Zoltan? This tells it that a sysboundary cell which currently is not at a process boundary won't cost anything to communicate, even though in the end it would. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is not used for determining partitioning neighborhoods (see |
||
for (auto& cell : mpiGrid.get_local_cells_on_process_boundary(SYSBOUNDARIES_EXTENDED_NEIGHBORHOOD_ID)) { | ||
mpiGrid[cell]->parameters[CellParams::SYSBOUNDARIES_COMM] = mpiGrid[cell]->sysBoundaryLayer == 1 || mpiGrid[cell]->sysBoundaryLayer == 2; | ||
} | ||
|
||
for (auto& cell : mpiGrid.get_local_cells_not_on_process_boundary(SYSBOUNDARIES_EXTENDED_NEIGHBORHOOD_ID)) { | ||
mpiGrid[cell]->parameters[CellParams::SYSBOUNDARIES_COMM] = false; | ||
} | ||
|
||
// Loop over existing particle species | ||
for (uint popID = 0; popID < getObjectWrapper().particleSpecies.size(); ++popID) { | ||
SpatialCell::setCommunicatedSpecies(popID); | ||
|
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.
P::diagnosticWriteAllDROs lost here