Open marchdf opened 14 hours ago
I think what's going on is:
Actuator::post_regrid_actions()
calls act->determine_influenced_procs()
and that is in turbine_fast_ops.H
which has a check for AMREX_ALWAYS_ASSERT(info.root_proc > -1)
but act->determine_root_proc(act_proc_count)
hasn't been called yet because post_init_actions
hasn't been called yet.
So is the fix to have a determine_root_proc
call in post_regrid_actions
?
Is it possible to determine the root proc in pre_init_actions?
Bug description
This is due to something I did in #1360: specifically, calling
post_regrid_actions
on L81 ofincflo.cpp
.Actuator::post_regrid_actions()
is doing something different than the others and doesn't have the information it would like...