12 #ifndef SST_CORE_SYNC_RANKSYNCPARALLELSKIP_H
13 #define SST_CORE_SYNC_RANKSYNCPARALLELSKIP_H
15 #include "sst/core/sst_types.h"
16 #include "sst/core/sync/syncManager.h"
17 #include "sst/core/threadsafe.h"
18 #include "sst/core/warnmacros.h"
22 #ifdef SST_CONFIG_HAVE_MPI
23 DISABLE_WARN_MISSING_OVERRIDE
43 void execute(
int thread)
override;
52 SimTime_t getNextSyncTime()
override {
return myNextSyncTime; }
54 uint64_t getDataSize()
const override;
57 static SimTime_t myNextSyncTime;
60 void exchange_master(
int thread);
61 void exchange_slave(
int thread);
74 uint32_t local_thread;
76 std::vector<Activity*> activity_vec;
79 #ifdef SST_CONFIG_HAVE_MPI
84 typedef std::map<RankInfo, comm_send_pair> comm_send_map_t;
85 typedef std::map<RankInfo, comm_recv_pair> comm_recv_map_t;
86 typedef std::map<LinkId_t, Link*> link_map_t;
89 comm_send_map_t comm_send_map;
90 comm_recv_map_t comm_recv_map;
94 double deserializeTime;
99 std::atomic<int32_t> remaining_deser;
105 void deserializeMessage(comm_recv_pair* msg);
114 #endif // SST_CORE_SYNC_RANKSYNCPARALLELSKIP_H
A class to convert between a component's view of time and the core's view of time.
Definition: timeConverter.h:26
Definition: syncManager.h:32
Definition: rankSyncParallelSkip.h:33
void finalizeLinkConfigurations() override
Finish link configuration.
Definition: rankSyncParallelSkip.cc:119
void prepareForComplete() override
Prepare for complete() stage.
Definition: rankSyncParallelSkip.cc:133
Definition: rankInfo.h:21
ActivityQueue * registerLink(const RankInfo &to_rank, const RankInfo &from_rank, LinkId_t link_id, Link *link) override
Register a Link which this Sync Object is responsible for.
Definition: rankSyncParallelSkip.cc:85
Internal API.
Definition: syncQueue.h:29
void exchangeLinkUntimedData(int thread, std::atomic< int > &msg_count) override
Cause an exchange of Untimed Data to occur.
Definition: rankSyncParallelSkip.cc:357
RankSyncParallelSkip(RankInfo num_ranks, TimeConverter *minPartTC)
Create a new Sync object which fires with a specified period.
Definition: rankSyncParallelSkip.cc:39
Base Class for a queue of Activities.
Definition: activityQueue.h:21
Definition: threadsafe.h:47
Link between two components.
Definition: link.h:31