12 #ifndef SST_CORE_RANKSYNCPARALLELSKIP_H
13 #define SST_CORE_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
41 void execute(
int thread)
override;
50 SimTime_t getNextSyncTime()
override {
return myNextSyncTime; }
52 uint64_t getDataSize()
const override;
56 static SimTime_t myNextSyncTime;
59 void exchange_master(
int thread);
60 void exchange_slave(
int thread);
62 struct comm_send_pair {
69 struct comm_recv_pair {
71 uint32_t local_thread;
73 std::vector<Activity*> activity_vec;
76 #ifdef SST_CONFIG_HAVE_MPI
81 typedef std::map<RankInfo, comm_send_pair > comm_send_map_t;
82 typedef std::map<RankInfo, comm_recv_pair > comm_recv_map_t;
83 typedef std::map<LinkId_t, Link*> link_map_t;
86 comm_send_map_t comm_send_map;
87 comm_recv_map_t comm_recv_map;
91 double deserializeTime;
96 std::atomic<int32_t> remaining_deser;
102 void deserializeMessage(comm_recv_pair* msg);
113 #endif // SST_CORE_RANKSYNCPARALLELSKIP_H
A class to convert between a component's view of time and the core's view of time.
Definition: timeConverter.h:25
Definition: syncManager.h:33
Definition: rankSyncParallelSkip.h:33
void finalizeLinkConfigurations() override
Finish link configuration.
Definition: rankSyncParallelSkip.cc:118
void prepareForComplete() override
Prepare for complete() stage.
Definition: rankSyncParallelSkip.cc:131
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:351
RankSyncParallelSkip(RankInfo num_ranks, TimeConverter *minPartTC)
Create a new Sync object which fires with a specified period.
Definition: rankSyncParallelSkip.cc:42
Base Class for a queue of Activities.
Definition: activityQueue.h:22
Definition: threadsafe.h:50
Link between two components.
Definition: link.h:32