11#include "GaudiKernel/FileIncident.h"
15 m_env = std::make_unique<mpi3::environment>(mpi3::thread_level::multiple);
17 if (
m_env->thread_support() != mpi3::thread_level::multiple) {
18 ATH_MSG_ERROR(
"MPI_THREAD_MULTIPLE is required but unavailable");
19 return StatusCode::FAILURE;
24 char version_string[MPI_MAX_LIBRARY_VERSION_STRING];
25 int version_string_len;
26 MPI_Get_library_version(version_string, &version_string_len);
32 <<
" ranks! This is insufficient!");
33 return StatusCode::FAILURE;
40 if (std::getenv(
"RANK") != std::to_string(
m_rank)) {
41 const char* env_rank = std::getenv(
"RANK");
43 <<
") does not match $RANK = " << env_rank);
47 m_mpiLog->createStatement(
"PRAGMA foreign_keys = ON").run();
51 "CREATE TABLE ranks (rank INTEGER PRIMARY KEY, "
52 "node TEXT, start_time FLOAT, end_time FLOAT)")
56 "INSERT INTO ranks (rank, node, start_time) "
57 "VALUES(?1, ?2, julianday('now'))")
61 "CREATE TABLE files (fileId INTEGER PRIMARY KEY, fileName TEXT)")
65 "CREATE TABLE event_log (rank INTEGER, id INTEGER UNIQUE,"
66 "inputFileId INTEGER,"
67 "runNumber INTEGER, eventNumber INTEGER, complete INTEGER,"
68 "status INTEGER, request_time_ns INTEGER, start_time FLOAT,"
69 "end_time FLOAT, PRIMARY KEY (runNumber, eventNumber, id), "
70 "FOREIGN KEY (rank) REFERENCES ranks(rank),"
71 "FOREIGN KEY (inputFileId) REFERENCES files(fileId))")
74 "INSERT INTO event_log(id, rank, inputFileId, runNumber, eventNumber, "
76 "start_time, request_time_ns) "
77 "VALUES(?1, ?4, ?6, ?2, ?3, 0, julianday('now'), ?5)");
79 "UPDATE event_log SET complete = 1, status = ?4, end_time = "
80 "julianday('now') WHERE runNumber = ?2 "
81 "AND eventNumber = ?3 AND id = ?1");
83 "INSERT INTO files (fileId, fileName) VALUES(?1, ?2)");
87 if (!incsvc.retrieve().isSuccess()) {
89 return (StatusCode::FAILURE);
91 incsvc->addListener(
this, IncidentType::BeginInputFile, 100);
92 incsvc->addListener(
this, IncidentType::BeginProcessing, 100);
94 return StatusCode::SUCCESS;
100 "UPDATE ranks SET end_time = julianday('now') WHERE rank = ?1")
102 return StatusCode::SUCCESS;
108 if (inc.type() == IncidentType::BeginProcessing) {
109 const std::size_t slot = Gaudi::Hive::currentContext().slot();
114 if (inc.type() == IncidentType::BeginInputFile) {
115 const FileIncident* fileInc =
dynamic_cast<const FileIncident*
>(&inc);
116 if (fileInc ==
nullptr) {
117 ATH_MSG_ERROR(
"BeginInputFile does not have a file name attached");
121 const std::string fileName = fileInc->fileName();
152 if (
m_rank != 0 && message.messageType == ClusterMessageType::RequestEvent &&
153 m_world.iprobe().has_value()) {
158 mpi3::communicator& comm =
160 if (message.messageType == ClusterMessageType::Data &&
163 "Event data should be sent with EventData communicator. "
169 const auto& [
header, body] = message.wire_msg();
170 comm.send_n(
header.begin(),
header.size(), destRank, 0);
171 if (body.has_value()) {
172 comm.send_n(body->begin(), body->size(), destRank,
header[2]);
173 if (message.messageType == ClusterMessageType::Data) {
176 char* ptr =
reinterpret_cast<char*
>((std::uint64_t(bdy[0]) << 32) +
177 std::uint64_t(bdy[1]));
178 std::size_t len = (std::uint64_t(bdy[2]) << 32) + std::uint64_t(bdy[3]);
182 constexpr int tag_offset = 16384;
183 comm.send_n(ptr, len, destRank,
header[2] + tag_offset);
190 constexpr int tag_offset = 16384;
191 constexpr std::uint64_t thirtytwo_ones = 0xFFFFFFFF;
194 mpi3::communicator& comm =
198 comm.receive_n(
head.begin(),
head.size());
200 if (
head[0] ==
int(ClusterMessageType::FinalWorkerStatus) ||
201 head[0] ==
int(ClusterMessageType::WorkerError) ||
202 head[0] ==
int(ClusterMessageType::Data)) {
204 comm.receive_n(body->begin(), body->size(),
head[1],
head[2]);
205 if (
head[0] ==
int(ClusterMessageType::Data)) {
208 std::size_t len = (std::uint64_t(bdy[2]) << 32) + std::uint64_t(bdy[3]);
209 std::size_t align = (std::uint64_t(bdy[4]) << 32) + std::uint64_t(bdy[5]);
210 std::size_t alloc_size = len;
211 if (!std::has_single_bit(align)) {
213 align = std::bit_ceil(align);
215 if (len % align != 0) {
220 alloc_size = (len + align - 1) & ~(align - 1);
223 char* ptr =
static_cast<char*
>(std::aligned_alloc(align, alloc_size));
224 comm.receive_n(ptr, len,
head[1],
head[2] + tag_offset);
227 bdy[0] = int(std::uint64_t(ptr) >> 32);
228 bdy[1] = int(std::uint64_t(ptr) & thirtytwo_ones);
238 std::int64_t event_number,
239 std::int64_t request_time_ns,
246 std::int64_t event_number,
247 std::int64_t status) {
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_WARNING(x)
C++ native wrapper for the C xxhash API.
std::int64_t m_lastInputFileHash
virtual ClusterMessage waitReceiveMessage(ClusterComm communicator=ClusterComm::Default) override final
Block until we receive an MPI message.
virtual void barrier() override final
Insert a barrier No rank will continue until all ranks reach this point.
virtual void log_addEvent(int eventIdx, std::int64_t run_number, std::int64_t event_number, std::int64_t request_time_ns, std::size_t slot) override final
Add (begin) an event in the log.
SQLite::Statement m_mpiLog_addFile
std::unique_ptr< mpi3::environment > m_env
SQLite::Statement m_mpiLog_addEvent
virtual void handle(const Incident &inc) override
IIncidentListener handle.
virtual void abort() override final
Abort the MPI run.
virtual int rank() const override final
Return our rank.
mpi3::communicator m_world
virtual StatusCode initialize() override final
Initialize.
mpi3::communicator m_datacom
virtual StatusCode finalize() override final
Finalize.
virtual void log_completeEvent(int eventIdx, std::int64_t run_number, std::int64_t event_number, std::int64_t status) override final
Complete an event in the log.
SQLite::Statement m_mpiLog_completeEvent
virtual void sendMessage(int destRank, ClusterMessage message, ClusterComm communicator=ClusterComm::Default) override final
Send an MPI message.
ServiceHandle< ISQLiteDBSvc > m_mpiLog
virtual int numRanks() const override final
Return number of ranks.
std::map< std::size_t, std::int64_t > m_inputFileSlotMap
std::string head(std::string s, const std::string &pattern)
head of a string
std::uint64_t hash64(const void *data, std::size_t size)
Passthrough to XXH3_64bits.
A class describing a message sent between nodes in a cluster.
std::tuple< WireMsgHdr, std::optional< WireMsgBody > > WireMsg
std::array< std::uint32_t, 10 > WireMsgBody