mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Explicitly instantiate further pack functions for needed symbols
This commit is contained in:
parent
3968d23a5a
commit
95cc555561
@ -3210,6 +3210,38 @@ void unpack(WellTestConfig& data,
|
|||||||
data = WellTestConfig(ddata);
|
data = WellTestConfig(ddata);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#define INSTANTIATE_PACK_VECTOR(T) \
|
||||||
|
template std::size_t packSize(const std::vector<T>& data, \
|
||||||
|
Dune::MPIHelper::MPICommunicator comm); \
|
||||||
|
template void pack(const std::vector<T>& data, \
|
||||||
|
std::vector<char>& buffer, int& position, \
|
||||||
|
Dune::MPIHelper::MPICommunicator comm); \
|
||||||
|
template void unpack(std::vector<T>& data, \
|
||||||
|
std::vector<char>& buffer, int& position, \
|
||||||
|
Dune::MPIHelper::MPICommunicator comm);
|
||||||
|
|
||||||
|
INSTANTIATE_PACK_VECTOR(double);
|
||||||
|
INSTANTIATE_PACK_VECTOR(std::vector<double>);
|
||||||
|
INSTANTIATE_PACK_VECTOR(bool);
|
||||||
|
INSTANTIATE_PACK_VECTOR(char);
|
||||||
|
#undef INSTANTIATE_PACK_VECTOR
|
||||||
|
|
||||||
|
#define INSTANTIATE_PACK(T) \
|
||||||
|
template std::size_t packSize(const T& data, \
|
||||||
|
Dune::MPIHelper::MPICommunicator comm); \
|
||||||
|
template void pack(const T& data, \
|
||||||
|
std::vector<char>& buffer, int& position, \
|
||||||
|
Dune::MPIHelper::MPICommunicator comm); \
|
||||||
|
template void unpack(T& data, \
|
||||||
|
std::vector<char>& buffer, int& position, \
|
||||||
|
Dune::MPIHelper::MPICommunicator comm);
|
||||||
|
|
||||||
|
INSTANTIATE_PACK(double);
|
||||||
|
INSTANTIATE_PACK(std::size_t);
|
||||||
|
INSTANTIATE_PACK(bool);
|
||||||
|
INSTANTIATE_PACK(int);
|
||||||
|
#undef INSTANTIATE_PACK
|
||||||
|
|
||||||
} // end namespace Mpi
|
} // end namespace Mpi
|
||||||
|
|
||||||
RestartValue loadParallelRestart(const EclipseIO* eclIO, SummaryState& summaryState,
|
RestartValue loadParallelRestart(const EclipseIO* eclIO, SummaryState& summaryState,
|
||||||
@ -3248,4 +3280,5 @@ RestartValue loadParallelRestart(const EclipseIO* eclIO, SummaryState& summarySt
|
|||||||
return eclIO->loadRestart(summaryState, solutionKeys, extraKeys);
|
return eclIO->loadRestart(summaryState, solutionKeys, extraKeys);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
} // end namespace Opm
|
} // end namespace Opm
|
||||||
|
Loading…
Reference in New Issue
Block a user