Skip to content
Snippets Groups Projects
Commit 6c159ad1 authored by Jan David Mol's avatar Jan David Mol
Browse files

COB-57: Distribute antenna fields over MPI nodes

parent e5fb422a
No related branches found
No related tags found
1 merge request!6Import cobalt2 into lofar4
...@@ -104,14 +104,18 @@ int main( int argc, char **argv ) ...@@ -104,14 +104,18 @@ int main( int argc, char **argv )
for (size_t f = 0; f < ps.settings.antennaFields.size(); ++f) { for (size_t f = 0; f < ps.settings.antennaFields.size(); ++f) {
const ObservationSettings::AntennaField& field = ps.settings.antennaFields[f]; const ObservationSettings::AntennaField& field = ps.settings.antennaFields[f];
// Distribute the fields round-robin over the MPI processes
if (static_cast<int>(f) % mpi.size() != mpi.rank())
continue;
vector< SmartPtr<Stream> > outputStreams; vector< SmartPtr<Stream> > outputStreams;
for (size_t s = 0; s < field.inputStreams.size(); ++s) { for (size_t s = 0; s < field.inputStreams.size(); ++s) {
const string& desc = field.inputStreams[s]; const string& desc = field.inputStreams[s];
LOG_INFO_STR("Connecting to " << desc); LOG_INFO_STR("Setting up stream to " << desc);
outputStreams.push_back(createStream(desc, false)); outputStreams.push_back(createStream(desc, false));
LOG_INFO_STR("Connected."); LOG_INFO_STR("Stream created to " << desc);
} }
struct StationID stationID(field.name); struct StationID stationID(field.name);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment