mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
add mpi serialization for Location
This commit is contained in:
@@ -22,6 +22,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "ParallelRestart.hpp"
|
#include "ParallelRestart.hpp"
|
||||||
|
#include <opm/common/OpmLog/Location.hpp>
|
||||||
#include <opm/parser/eclipse/EclipseState/Runspec.hpp>
|
#include <opm/parser/eclipse/EclipseState/Runspec.hpp>
|
||||||
#include <opm/parser/eclipse/EclipseState/Grid/NNC.hpp>
|
#include <opm/parser/eclipse/EclipseState/Grid/NNC.hpp>
|
||||||
#include <opm/parser/eclipse/EclipseState/InitConfig/Equil.hpp>
|
#include <opm/parser/eclipse/EclipseState/InitConfig/Equil.hpp>
|
||||||
@@ -1480,6 +1481,13 @@ std::size_t packSize(const DeckRecord& data,
|
|||||||
return packSize(data.getItems(), comm);
|
return packSize(data.getItems(), comm);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::size_t packSize(const Location& data,
|
||||||
|
Dune::MPIHelper::MPICommunicator comm)
|
||||||
|
{
|
||||||
|
return packSize(data.filename, comm) +
|
||||||
|
packSize(data.lineno, comm);
|
||||||
|
}
|
||||||
|
|
||||||
////// pack routines
|
////// pack routines
|
||||||
|
|
||||||
template<class T>
|
template<class T>
|
||||||
@@ -2988,6 +2996,14 @@ void pack(const DeckRecord& data,
|
|||||||
pack(data.getItems(), buffer, position, comm);
|
pack(data.getItems(), buffer, position, comm);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void pack(const Location& data,
|
||||||
|
std::vector<char>& buffer, int& position,
|
||||||
|
Dune::MPIHelper::MPICommunicator comm)
|
||||||
|
{
|
||||||
|
pack(data.filename, buffer, position, comm);
|
||||||
|
pack(data.lineno, buffer, position, comm);
|
||||||
|
}
|
||||||
|
|
||||||
/// unpack routines
|
/// unpack routines
|
||||||
|
|
||||||
template<class T>
|
template<class T>
|
||||||
@@ -5109,6 +5125,15 @@ void unpack(DeckRecord& data,
|
|||||||
data = DeckRecord(std::move(items));
|
data = DeckRecord(std::move(items));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void unpack(Location& data,
|
||||||
|
std::vector<char>& buffer, int& position,
|
||||||
|
Dune::MPIHelper::MPICommunicator comm)
|
||||||
|
{
|
||||||
|
data.filename.clear();
|
||||||
|
unpack(data.filename, buffer, position, comm);
|
||||||
|
unpack(data.lineno, buffer, position, comm);
|
||||||
|
}
|
||||||
|
|
||||||
#define INSTANTIATE_PACK_VECTOR(T) \
|
#define INSTANTIATE_PACK_VECTOR(T) \
|
||||||
template std::size_t packSize(const std::vector<T>& data, \
|
template std::size_t packSize(const std::vector<T>& data, \
|
||||||
Dune::MPIHelper::MPICommunicator comm); \
|
Dune::MPIHelper::MPICommunicator comm); \
|
||||||
|
|||||||
@@ -84,6 +84,7 @@ class InitConfig;
|
|||||||
class IOConfig;
|
class IOConfig;
|
||||||
template<class T> class IOrderSet;
|
template<class T> class IOrderSet;
|
||||||
class JFunc;
|
class JFunc;
|
||||||
|
class Location;
|
||||||
class MessageLimits;
|
class MessageLimits;
|
||||||
class MLimits;
|
class MLimits;
|
||||||
class NNC;
|
class NNC;
|
||||||
@@ -622,6 +623,7 @@ ADD_PACK_PROTOTYPES(Group::GroupProductionProperties)
|
|||||||
ADD_PACK_PROTOTYPES(InitConfig)
|
ADD_PACK_PROTOTYPES(InitConfig)
|
||||||
ADD_PACK_PROTOTYPES(IOConfig)
|
ADD_PACK_PROTOTYPES(IOConfig)
|
||||||
ADD_PACK_PROTOTYPES(JFunc)
|
ADD_PACK_PROTOTYPES(JFunc)
|
||||||
|
ADD_PACK_PROTOTYPES(Location)
|
||||||
ADD_PACK_PROTOTYPES(MessageLimits)
|
ADD_PACK_PROTOTYPES(MessageLimits)
|
||||||
ADD_PACK_PROTOTYPES(MLimits)
|
ADD_PACK_PROTOTYPES(MLimits)
|
||||||
ADD_PACK_PROTOTYPES(NNC)
|
ADD_PACK_PROTOTYPES(NNC)
|
||||||
|
|||||||
@@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
#include <boost/test/unit_test.hpp>
|
#include <boost/test/unit_test.hpp>
|
||||||
|
|
||||||
#include <opm/simulators/utils/ParallelRestart.hpp>
|
#include <opm/common/OpmLog/Location.hpp>
|
||||||
#include <opm/material/fluidsystems/blackoilpvt/DryGasPvt.hpp>
|
#include <opm/material/fluidsystems/blackoilpvt/DryGasPvt.hpp>
|
||||||
#include <opm/material/fluidsystems/blackoilpvt/SolventPvt.hpp>
|
#include <opm/material/fluidsystems/blackoilpvt/SolventPvt.hpp>
|
||||||
#include <opm/material/fluidsystems/blackoilpvt/WetGasPvt.hpp>
|
#include <opm/material/fluidsystems/blackoilpvt/WetGasPvt.hpp>
|
||||||
@@ -86,6 +86,7 @@
|
|||||||
#include <opm/parser/eclipse/EclipseState/Tables/TableManager.hpp>
|
#include <opm/parser/eclipse/EclipseState/Tables/TableManager.hpp>
|
||||||
#include <opm/parser/eclipse/EclipseState/Tables/TableSchema.hpp>
|
#include <opm/parser/eclipse/EclipseState/Tables/TableSchema.hpp>
|
||||||
#include <opm/output/eclipse/RestartValue.hpp>
|
#include <opm/output/eclipse/RestartValue.hpp>
|
||||||
|
#include <opm/simulators/utils/ParallelRestart.hpp>
|
||||||
|
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
@@ -2029,6 +2030,17 @@ BOOST_AUTO_TEST_CASE(DeckRecord)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(Location)
|
||||||
|
{
|
||||||
|
#ifdef HAVE_MPI
|
||||||
|
Opm::Location val1{"test", 1};
|
||||||
|
auto val2 = PackUnpack(val1);
|
||||||
|
BOOST_CHECK(std::get<1>(val2) == std::get<2>(val2));
|
||||||
|
BOOST_CHECK(val1 == std::get<0>(val2));
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
bool init_unit_test_func()
|
bool init_unit_test_func()
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
Reference in New Issue
Block a user