-
Notifications
You must be signed in to change notification settings - Fork 82
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
rebalance_coarsest question and possible issue #256
Comments
I have avoided the stack trace by passing the current level for all levels > 0. Can you confirm that L0 will be rebalanced by load balancers when the I could guess that the |
We are hitting an assertion (or segfault in release) in hier/OverlapConnectorAlgorithm.cpp#L685 If we ever rebalance L0, and only if there is two levels, for some reason 3 levels does not have this assertion. |
Could you try rebuilding with Regarding the |
This seems to solve the issue. Thanks for the clarifications, it does seem like Level 0 is a special case, which I guess makes sense as copying the entire level might be substantial, and even impossible if there is not enough resources available |
Thanks for the quick turnaround |
Hello,
We are trying to update our project to support coarsest level rebalancing.
I have a question and a potential issue I am hoping you can help me with.
Firstly, the bool
rebalance_coarsest
which is passed to the TimeRefinementIntegrator::advance function, does not appear to use the load balancer to check if the coarsest should be rebalanced.Is this the case? And if so are we supposed to access the load balancers ourselves manually to see if we want to rebalance the coarsest level?
The reason I ask if that it is always true, we are seeing immediate data re-initialization on first advance, which I would think is not necessary given the load for us is generally balanced on init.
Second, we seem to be hitting a segfault during schedule creation when
rebalance_coarsest
is True.We are using this function here: https://github.com/LLNL/SAMRAI/blob/develop/source/SAMRAI/xfer/RefineAlgorithm.cpp#L495
Which appears to support a null
src_level
.But later in
RefineSchedule::createCoarseInterpPatchLevel
there is no null check ifhas_cached_connectors
is false.I am also seeing a message like this which I would guess is related to this
has_cached_connectors
check failure.We only see these messages when
rebalance_coarsest
is True.I'm entirely expecting this to be an issue with our misuse of SAMRAI, but any help or pointers would be apprecaited.
Segfault: https://github.com/LLNL/SAMRAI/blob/develop/source/SAMRAI/xfer/RefineSchedule.cpp#L1705
cleaned up stacktrace
full stack https://gist.github.com/PhilipDeegan/6b8385056df94526baa4c01fb399fc40
thanks
The text was updated successfully, but these errors were encountered: