2024-06-21 01:55:00 -05:00
|
|
|
/*
|
|
|
|
Copyright 2024 Equinor AS
|
|
|
|
|
|
|
|
This file is part of the Open Porous Media project (OPM).
|
|
|
|
|
|
|
|
OPM is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
OPM is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with OPM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <opm/simulators/flow/ReservoirCouplingMaster.hpp>
|
|
|
|
|
|
|
|
#include <opm/input/eclipse/Schedule/ResCoup/ReservoirCouplingInfo.hpp>
|
|
|
|
#include <opm/input/eclipse/Schedule/ResCoup/MasterGroup.hpp>
|
|
|
|
#include <opm/input/eclipse/Schedule/ResCoup/Slaves.hpp>
|
|
|
|
#include <opm/common/ErrorMacros.hpp>
|
|
|
|
|
|
|
|
#include <opm/simulators/utils/ParallelCommunication.hpp>
|
|
|
|
|
|
|
|
#include <opm/input/eclipse/Schedule/Schedule.hpp>
|
|
|
|
|
|
|
|
|
|
|
|
#include <filesystem>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
|
|
|
|
|
|
|
namespace Opm {
|
|
|
|
|
|
|
|
ReservoirCouplingMaster::ReservoirCouplingMaster(
|
|
|
|
const Parallel::Communication &comm,
|
|
|
|
const Schedule &schedule
|
|
|
|
) :
|
|
|
|
comm_{comm},
|
|
|
|
schedule_{schedule}
|
|
|
|
{ }
|
|
|
|
|
|
|
|
// NOTE: This functions is executed for all ranks, but only rank 0 will spawn
|
|
|
|
// the slave processes
|
|
|
|
void ReservoirCouplingMaster::spawnSlaveProcesses([[maybe_unused]]int argc, char **argv) {
|
|
|
|
const auto& rescoup = this->schedule_[0].rescoup();
|
|
|
|
char *flow_program_name = argv[0];
|
|
|
|
for (const auto& [slave_name, slave] : rescoup.slaves()) {
|
|
|
|
auto master_slave_comm = MPI_Comm_Ptr(new MPI_Comm(MPI_COMM_NULL));
|
|
|
|
// TODO: Here we should extract the relevant options from the master argv
|
|
|
|
// and forward them to the slave process, for now we just pass the deck file name
|
|
|
|
const auto& data_file_name = slave.dataFilename();
|
|
|
|
const auto& directory_path = slave.directoryPath();
|
|
|
|
// Concatenate the directory path and the data file name to get the full path
|
|
|
|
std::filesystem::path dir_path(directory_path);
|
|
|
|
std::filesystem::path data_file(data_file_name);
|
|
|
|
std::filesystem::path full_path = dir_path / data_file;
|
2024-06-28 03:38:56 -05:00
|
|
|
std::vector<char*> slave_argv(2);
|
|
|
|
slave_argv[0] = const_cast<char*>(full_path.c_str());
|
|
|
|
slave_argv[1] = nullptr;
|
2024-06-21 01:55:00 -05:00
|
|
|
auto num_procs = slave.numprocs();
|
|
|
|
std::vector<int> errcodes(num_procs);
|
|
|
|
const std::string log_file = fmt::format("{}.log", slave_name);
|
2024-06-28 05:49:25 -05:00
|
|
|
// TODO: We need to decide how to handle the output from the slave processes..
|
|
|
|
// As far as I can tell, open MPI does not support redirecting the output
|
|
|
|
// to a file, so we might need to implement a custom solution for this
|
2024-06-21 01:55:00 -05:00
|
|
|
int spawn_result = MPI_Comm_spawn(
|
2024-06-28 03:38:56 -05:00
|
|
|
flow_program_name,
|
2024-06-21 01:55:00 -05:00
|
|
|
slave_argv.data(),
|
|
|
|
/*maxprocs=*/num_procs,
|
2024-06-28 05:49:25 -05:00
|
|
|
/*info=*/MPI_INFO_NULL,
|
2024-06-21 01:55:00 -05:00
|
|
|
/*root=*/0, // Rank 0 spawns the slave processes
|
|
|
|
/*comm=*/this->comm_,
|
|
|
|
/*intercomm=*/master_slave_comm.get(),
|
|
|
|
/*array_of_errcodes=*/errcodes.data()
|
|
|
|
);
|
|
|
|
if (spawn_result != MPI_SUCCESS || (*master_slave_comm == MPI_COMM_NULL)) {
|
|
|
|
OPM_THROW(std::runtime_error, "Failed to spawn slave process");
|
|
|
|
}
|
|
|
|
this->master_slave_comm_.push_back(std::move(master_slave_comm));
|
|
|
|
this->slave_names_.push_back(slave_name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Opm
|
|
|
|
|