|
| GhLockstep (CkMigrateMessage *) |
|
| WRAPPED_PUPable_decl_template (GhLockstep) |
|
std::unique_ptr< GhInterfaceManager > | get_clone () const override |
|
void | insert_gh_data (TimeStepId time_id, const tnsr::aa< DataVector, 3 > &spacetime_metric, const tnsr::iaa< DataVector, 3 > &phi, const tnsr::aa< DataVector, 3 > &pi) |
| Store a provided data set in a std::deque . More...
|
|
void | request_gh_data (const TimeStepId &time_id) override |
|
auto | retrieve_and_remove_first_ready_gh_data () -> std::optional< std::tuple< TimeStepId, gh_variables > > override |
| Return a std::optional<std::tuple> of the least recently submitted generalized harmonic boundary data if any exists and removes it from the internal std::deque , otherwise returns std::nullopt . More...
|
|
size_t | number_of_pending_requests () const override |
| This class ignores requests to ensure a one-way communication pattern, so the number of requests is always 0. More...
|
|
size_t | number_of_gh_times () const override |
| The number of times at which data from a GH evolution have been stored and not yet retrieved. More...
|
|
void | pup (PUP::er &p) override |
| Serialization for Charm++.
|
|
| WRAPPED_PUPable_abstract (GhInterfaceManager) |
|
virtual std::unique_ptr< GhInterfaceManager > | get_clone () const =0 |
|
virtual void | request_gh_data (const TimeStepId &)=0 |
|
virtual auto | retrieve_and_remove_first_ready_gh_data () -> std::optional< std::tuple< TimeStepId, gh_variables > >=0 |
|
virtual size_t | number_of_pending_requests () const =0 |
|
virtual size_t | number_of_gh_times () const =0 |
|
Simple implementation of a GhInterfaceManager
that only provides boundary data on matching TimeStepId
s.
Details
This version of the interface manager assumes that the CCE system and the generalized harmonic system that it communicates with evolve with an identical time stepper and on identical time step intervals (they evolve in 'lock step'). As a result, and to streamline communications, new data is always immediately 'ready' and requests are ignored to produce the behavior of just immediately gauge-transforming and sending the data to the CCE component as soon as it becomes available from the GH system.
- Warning
- Using this interface manager when the GH components and the CCE evolution are not identically stepped is considered undefined behavior. For current implementations involving dense output and local time-stepping, this interface manager can only be used during self-start.