2019-10-10 16:06:55 -05:00
|
|
|
/*
|
|
|
|
Copyright 2019 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/>.
|
|
|
|
*/
|
|
|
|
#ifndef PARALLEL_RESTART_HPP
|
|
|
|
#define PARALLEL_RESTART_HPP
|
|
|
|
|
|
|
|
#if HAVE_MPI
|
|
|
|
#include <mpi.h>
|
|
|
|
#endif
|
|
|
|
|
2021-04-26 15:39:32 -05:00
|
|
|
#include <opm/common/ErrorMacros.hpp>
|
2019-10-10 16:06:55 -05:00
|
|
|
#include <opm/output/eclipse/RestartValue.hpp>
|
|
|
|
#include <opm/output/eclipse/EclipseIO.hpp>
|
|
|
|
#include <opm/output/eclipse/Summary.hpp>
|
2020-06-16 07:39:18 -05:00
|
|
|
#include <opm/parser/eclipse/EclipseState/Schedule/Action/State.hpp>
|
2021-02-25 13:46:51 -06:00
|
|
|
#include <opm/common/utility/TimeService.hpp>
|
2019-10-10 16:06:55 -05:00
|
|
|
|
|
|
|
#include <dune/common/parallel/mpihelper.hh>
|
|
|
|
|
2021-01-03 03:30:51 -06:00
|
|
|
#include <chrono>
|
2020-04-28 04:37:11 -05:00
|
|
|
#include <optional>
|
|
|
|
#include <map>
|
2020-01-06 08:26:41 -06:00
|
|
|
#include <set>
|
2021-01-05 04:08:00 -06:00
|
|
|
#include <string>
|
2019-12-05 02:34:29 -06:00
|
|
|
#include <tuple>
|
2021-01-05 04:08:00 -06:00
|
|
|
#include <typeinfo>
|
2019-10-10 16:06:55 -05:00
|
|
|
#include <unordered_map>
|
2020-04-28 04:37:11 -05:00
|
|
|
#include <vector>
|
2019-11-28 06:47:56 -06:00
|
|
|
|
2019-10-10 16:06:55 -05:00
|
|
|
namespace Opm
|
|
|
|
{
|
2019-11-28 05:58:40 -06:00
|
|
|
|
2019-10-10 16:06:55 -05:00
|
|
|
namespace Mpi
|
|
|
|
{
|
|
|
|
template<class T>
|
|
|
|
std::size_t packSize(const T*, std::size_t, Dune::MPIHelper::MPICommunicator,
|
|
|
|
std::integral_constant<bool, false>);
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
std::size_t packSize(const T*, std::size_t l, Dune::MPIHelper::MPICommunicator comm,
|
|
|
|
std::integral_constant<bool, true>);
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
std::size_t packSize(const T* data, std::size_t l, Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
std::size_t packSize(const T&, Dune::MPIHelper::MPICommunicator,
|
2020-03-12 04:41:35 -05:00
|
|
|
std::integral_constant<bool, false>)
|
|
|
|
{
|
2021-01-05 04:08:00 -06:00
|
|
|
std::string msg = std::string{"Packing not (yet) supported for non-pod type: "} + typeid(T).name();
|
|
|
|
OPM_THROW(std::logic_error, msg);
|
2020-03-12 04:41:35 -05:00
|
|
|
}
|
2019-10-10 16:06:55 -05:00
|
|
|
|
|
|
|
template<class T>
|
|
|
|
std::size_t packSize(const T&, Dune::MPIHelper::MPICommunicator comm,
|
2020-03-12 04:41:35 -05:00
|
|
|
std::integral_constant<bool, true>)
|
|
|
|
{
|
|
|
|
#if HAVE_MPI
|
|
|
|
int size{};
|
|
|
|
MPI_Pack_size(1, Dune::MPITraits<T>::getType(), comm, &size);
|
|
|
|
return size;
|
|
|
|
#else
|
|
|
|
(void) comm;
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
2019-10-10 16:06:55 -05:00
|
|
|
|
|
|
|
template<class T>
|
2020-03-12 04:41:35 -05:00
|
|
|
std::size_t packSize(const T& data, Dune::MPIHelper::MPICommunicator comm)
|
|
|
|
{
|
|
|
|
return packSize(data, comm, typename std::is_pod<T>::type());
|
|
|
|
}
|
2019-10-10 16:06:55 -05:00
|
|
|
|
|
|
|
template<class T1, class T2>
|
|
|
|
std::size_t packSize(const std::pair<T1,T2>& data, Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2020-04-28 04:37:11 -05:00
|
|
|
template<class T>
|
|
|
|
std::size_t packSize(const std::optional<T>& data, Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2019-11-25 06:04:40 -06:00
|
|
|
template<class T, class A>
|
|
|
|
std::size_t packSize(const std::vector<T,A>& data, Dune::MPIHelper::MPICommunicator comm);
|
2019-10-10 16:06:55 -05:00
|
|
|
|
2020-01-06 08:26:41 -06:00
|
|
|
template<class K, class C, class A>
|
|
|
|
std::size_t packSize(const std::set<K,C,A>& data,
|
|
|
|
Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2019-12-11 06:29:58 -06:00
|
|
|
template<class T, class H, class KE, class A>
|
|
|
|
std::size_t packSize(const std::unordered_set<T,H,KE,A>& data,
|
|
|
|
Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2019-11-29 18:21:56 -06:00
|
|
|
template<class A>
|
|
|
|
std::size_t packSize(const std::vector<bool,A>& data, Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2019-12-05 02:34:29 -06:00
|
|
|
template<class... Ts>
|
|
|
|
std::size_t packSize(const std::tuple<Ts...>& data, Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2019-12-04 13:27:18 -06:00
|
|
|
template<class T, std::size_t N>
|
|
|
|
std::size_t packSize(const std::array<T,N>& data, Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2019-10-10 16:06:55 -05:00
|
|
|
std::size_t packSize(const char* str, Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2019-11-25 06:04:40 -06:00
|
|
|
template<class T1, class T2, class C, class A>
|
|
|
|
std::size_t packSize(const std::map<T1,T2,C,A>& data, Dune::MPIHelper::MPICommunicator comm);
|
2019-10-10 16:06:55 -05:00
|
|
|
|
2019-11-25 06:04:40 -06:00
|
|
|
template<class T1, class T2, class H, class P, class A>
|
|
|
|
std::size_t packSize(const std::unordered_map<T1,T2,H,P,A>& data, Dune::MPIHelper::MPICommunicator comm);
|
2019-10-10 16:06:55 -05:00
|
|
|
|
|
|
|
////// pack routines
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
void pack(const T*, std::size_t, std::vector<char>&, int&,
|
|
|
|
Dune::MPIHelper::MPICommunicator, std::integral_constant<bool, false>);
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
void pack(const T* data, std::size_t l, std::vector<char>& buffer, int& position,
|
|
|
|
Dune::MPIHelper::MPICommunicator comm, std::integral_constant<bool, true>);
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
void pack(const T* data, std::size_t l, std::vector<char>& buffer, int& position,
|
|
|
|
Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
void pack(const T&, std::vector<char>&, int&,
|
2020-03-12 04:41:35 -05:00
|
|
|
Dune::MPIHelper::MPICommunicator, std::integral_constant<bool, false>)
|
|
|
|
{
|
|
|
|
OPM_THROW(std::logic_error, "Packing not (yet) supported for this non-pod type.");
|
|
|
|
}
|
2019-10-10 16:06:55 -05:00
|
|
|
|
|
|
|
template<class T>
|
|
|
|
void pack(const T& data, std::vector<char>& buffer, int& position,
|
2020-03-12 04:41:35 -05:00
|
|
|
Dune::MPIHelper::MPICommunicator comm, std::integral_constant<bool, true>)
|
|
|
|
{
|
|
|
|
#if HAVE_MPI
|
|
|
|
MPI_Pack(&data, 1, Dune::MPITraits<T>::getType(), buffer.data(),
|
|
|
|
buffer.size(), &position, comm);
|
|
|
|
#else
|
|
|
|
(void) data;
|
|
|
|
(void) comm;
|
|
|
|
(void) buffer;
|
|
|
|
(void) position;
|
|
|
|
#endif
|
|
|
|
}
|
2019-10-10 16:06:55 -05:00
|
|
|
|
|
|
|
template<class T>
|
|
|
|
void pack(const T& data, std::vector<char>& buffer, int& position,
|
2020-03-12 04:41:35 -05:00
|
|
|
Dune::MPIHelper::MPICommunicator comm)
|
|
|
|
{
|
|
|
|
pack(data, buffer, position, comm, typename std::is_pod<T>::type());
|
|
|
|
}
|
2019-10-10 16:06:55 -05:00
|
|
|
|
|
|
|
template<class T1, class T2>
|
|
|
|
void pack(const std::pair<T1,T2>& data, std::vector<char>& buffer, int& position,
|
|
|
|
Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2020-04-28 04:37:11 -05:00
|
|
|
template<class T>
|
|
|
|
void pack(const std::optional<T>& data, std::vector<char>& buffer, int& position,
|
|
|
|
Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2019-11-25 06:04:40 -06:00
|
|
|
template<class T, class A>
|
|
|
|
void pack(const std::vector<T,A>& data, std::vector<char>& buffer, int& position,
|
2019-10-10 16:06:55 -05:00
|
|
|
Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2019-11-29 18:21:56 -06:00
|
|
|
template<class A>
|
|
|
|
void pack(const std::vector<bool,A>& data, std::vector<char>& buffer, int& position,
|
|
|
|
Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2019-12-05 02:34:29 -06:00
|
|
|
template<class... Ts>
|
|
|
|
void pack(const std::tuple<Ts...>& data, std::vector<char>& buffer,
|
|
|
|
int& position, Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2020-01-06 08:26:41 -06:00
|
|
|
template<class K, class C, class A>
|
|
|
|
void pack(const std::set<K,C,A>& data,
|
|
|
|
std::vector<char>& buffer, int& position,
|
|
|
|
Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2019-12-11 06:29:58 -06:00
|
|
|
template<class T, class H, class KE, class A>
|
|
|
|
void pack(const std::unordered_set<T,H,KE,A>& data,
|
|
|
|
std::vector<char>& buffer, int& position,
|
|
|
|
Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2019-12-04 13:27:18 -06:00
|
|
|
template<class T, size_t N>
|
|
|
|
void pack(const std::array<T,N>& data, std::vector<char>& buffer, int& position,
|
|
|
|
Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2019-11-25 06:04:40 -06:00
|
|
|
template<class T1, class T2, class C, class A>
|
|
|
|
void pack(const std::map<T1,T2,C,A>& data, std::vector<char>& buffer, int& position,
|
2019-10-10 16:06:55 -05:00
|
|
|
Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2019-11-25 06:04:40 -06:00
|
|
|
template<class T1, class T2, class H, class P, class A>
|
|
|
|
void pack(const std::unordered_map<T1,T2,H,P,A>& data, std::vector<char>& buffer, int& position,
|
2019-10-10 16:06:55 -05:00
|
|
|
Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2019-11-28 06:47:56 -06:00
|
|
|
void pack(const char* str, std::vector<char>& buffer, int& position,
|
2019-10-10 16:06:55 -05:00
|
|
|
Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
|
|
|
/// unpack routines
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
void unpack(T*, const std::size_t&, std::vector<char>&, int&,
|
|
|
|
Dune::MPIHelper::MPICommunicator, std::integral_constant<bool, false>);
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
void unpack(T* data, const std::size_t& l, std::vector<char>& buffer, int& position,
|
|
|
|
Dune::MPIHelper::MPICommunicator comm,
|
|
|
|
std::integral_constant<bool, true>);
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
void unpack(T* data, const std::size_t& l, std::vector<char>& buffer, int& position,
|
|
|
|
Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
void unpack(T&, std::vector<char>&, int&,
|
2020-03-12 04:41:35 -05:00
|
|
|
Dune::MPIHelper::MPICommunicator, std::integral_constant<bool, false>)
|
|
|
|
{
|
|
|
|
OPM_THROW(std::logic_error, "Packing not (yet) supported for this non-pod type.");
|
|
|
|
}
|
2019-10-10 16:06:55 -05:00
|
|
|
|
|
|
|
template<class T>
|
|
|
|
void unpack(T& data, std::vector<char>& buffer, int& position,
|
2020-03-12 04:41:35 -05:00
|
|
|
Dune::MPIHelper::MPICommunicator comm, std::integral_constant<bool, true>)
|
|
|
|
{
|
|
|
|
#if HAVE_MPI
|
|
|
|
MPI_Unpack(buffer.data(), buffer.size(), &position, &data, 1,
|
|
|
|
Dune::MPITraits<T>::getType(), comm);
|
|
|
|
#else
|
|
|
|
(void) data;
|
|
|
|
(void) comm;
|
|
|
|
(void) buffer;
|
|
|
|
(void) position;
|
|
|
|
#endif
|
|
|
|
}
|
2019-10-10 16:06:55 -05:00
|
|
|
|
|
|
|
template<class T>
|
|
|
|
void unpack(T& data, std::vector<char>& buffer, int& position,
|
2020-03-12 04:41:35 -05:00
|
|
|
Dune::MPIHelper::MPICommunicator comm)
|
|
|
|
{
|
|
|
|
unpack(data, buffer, position, comm, typename std::is_pod<T>::type());
|
|
|
|
}
|
2019-10-10 16:06:55 -05:00
|
|
|
|
|
|
|
template<class T1, class T2>
|
|
|
|
void unpack(std::pair<T1,T2>& data, std::vector<char>& buffer, int& position,
|
|
|
|
Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2020-04-28 04:37:11 -05:00
|
|
|
template<class T>
|
|
|
|
void unpack(std::optional<T>& data, std::vector<char>& buffer, int& position,
|
|
|
|
Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2019-11-25 06:04:40 -06:00
|
|
|
template<class T, class A>
|
|
|
|
void unpack(std::vector<T,A>& data, std::vector<char>& buffer, int& position,
|
2019-10-10 16:06:55 -05:00
|
|
|
Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2019-11-29 18:21:56 -06:00
|
|
|
template<class A>
|
|
|
|
void unpack(std::vector<bool,A>& data, std::vector<char>& buffer, int& position,
|
|
|
|
Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2019-12-05 02:34:29 -06:00
|
|
|
template<class... Ts>
|
|
|
|
void unpack(std::tuple<Ts...>& data, std::vector<char>& buffer,
|
|
|
|
int& position, Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2020-01-06 08:26:41 -06:00
|
|
|
template<class K, class C, class A>
|
|
|
|
void unpack(std::set<K,C,A>& data,
|
|
|
|
std::vector<char>& buffer, int& position,
|
|
|
|
Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2019-12-11 06:29:58 -06:00
|
|
|
template<class T, class H, class KE, class A>
|
|
|
|
void unpack(std::unordered_set<T,H,KE,A>& data,
|
|
|
|
std::vector<char>& buffer, int& position,
|
|
|
|
Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2019-12-04 13:27:18 -06:00
|
|
|
template<class T, size_t N>
|
|
|
|
void unpack(std::array<T,N>& data, std::vector<char>& buffer, int& position,
|
|
|
|
Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2019-11-25 06:04:40 -06:00
|
|
|
template<class T1, class T2, class C, class A>
|
|
|
|
void unpack(std::map<T1,T2,C,A>& data, std::vector<char>& buffer, int& position,
|
2019-10-10 16:06:55 -05:00
|
|
|
Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2019-11-25 06:04:40 -06:00
|
|
|
template<class T1, class T2, class H, class P, class A>
|
|
|
|
void unpack(std::unordered_map<T1,T2,H,P,A>& data, std::vector<char>& buffer, int& position,
|
2019-10-10 16:06:55 -05:00
|
|
|
Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2019-11-28 06:47:56 -06:00
|
|
|
void unpack(char* str, std::size_t length, std::vector<char>& buffer, int& position,
|
2019-10-10 16:06:55 -05:00
|
|
|
Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
2019-11-28 06:47:56 -06:00
|
|
|
/// prototypes for complex types
|
|
|
|
|
|
|
|
#define ADD_PACK_PROTOTYPES(T) \
|
|
|
|
std::size_t packSize(const T& data, Dune::MPIHelper::MPICommunicator comm); \
|
|
|
|
void pack(const T& data, std::vector<char>& buffer, int& position, \
|
|
|
|
Dune::MPIHelper::MPICommunicator comm); \
|
|
|
|
void unpack(T& data, std::vector<char>& buffer, int& position, \
|
|
|
|
Dune::MPIHelper::MPICommunicator comm);
|
|
|
|
|
|
|
|
ADD_PACK_PROTOTYPES(data::CellData)
|
|
|
|
ADD_PACK_PROTOTYPES(data::Connection)
|
2020-01-30 06:44:51 -06:00
|
|
|
ADD_PACK_PROTOTYPES(data::CurrentControl)
|
2019-11-28 06:47:56 -06:00
|
|
|
ADD_PACK_PROTOTYPES(data::Rates)
|
|
|
|
ADD_PACK_PROTOTYPES(data::Segment)
|
|
|
|
ADD_PACK_PROTOTYPES(data::Solution)
|
2020-08-28 01:31:52 -05:00
|
|
|
ADD_PACK_PROTOTYPES(data::GuideRateValue)
|
2020-08-28 01:39:09 -05:00
|
|
|
ADD_PACK_PROTOTYPES(data::GroupConstraints)
|
|
|
|
ADD_PACK_PROTOTYPES(data::GroupGuideRates)
|
|
|
|
ADD_PACK_PROTOTYPES(data::GroupData)
|
2020-09-20 15:16:07 -05:00
|
|
|
ADD_PACK_PROTOTYPES(data::NodeData)
|
|
|
|
ADD_PACK_PROTOTYPES(data::GroupAndNetworkValues)
|
2019-11-28 06:47:56 -06:00
|
|
|
ADD_PACK_PROTOTYPES(data::Well)
|
|
|
|
ADD_PACK_PROTOTYPES(data::WellRates)
|
|
|
|
ADD_PACK_PROTOTYPES(RestartKey)
|
|
|
|
ADD_PACK_PROTOTYPES(RestartValue)
|
2019-12-18 05:25:59 -06:00
|
|
|
ADD_PACK_PROTOTYPES(std::string)
|
2021-02-25 13:46:51 -06:00
|
|
|
ADD_PACK_PROTOTYPES(Opm::time_point)
|
2019-10-10 16:06:55 -05:00
|
|
|
|
|
|
|
} // end namespace Mpi
|
2019-12-11 07:17:10 -06:00
|
|
|
|
2020-06-16 07:39:18 -05:00
|
|
|
RestartValue loadParallelRestart(const EclipseIO* eclIO, Action::State& actionState, SummaryState& summaryState,
|
2019-10-10 16:06:55 -05:00
|
|
|
const std::vector<Opm::RestartKey>& solutionKeys,
|
|
|
|
const std::vector<Opm::RestartKey>& extraKeys,
|
|
|
|
Dune::CollectiveCommunication<Dune::MPIHelper::MPICommunicator> comm);
|
|
|
|
|
|
|
|
} // end namespace Opm
|
|
|
|
#endif // PARALLEL_RESTART_HPP
|