Skip to content
Snippets Groups Projects
Commit fc2ac11f authored by Giovanni Bussi's avatar Giovanni Bussi
Browse files

Added support for MPI_UNSIGNED_LONG

parent 00405908
No related branches found
No related tags found
No related merge requests found
...@@ -155,6 +155,7 @@ template<> MPI_Datatype PlumedCommunicator::getMPIType<double>(){ return MPI_DOU ...@@ -155,6 +155,7 @@ template<> MPI_Datatype PlumedCommunicator::getMPIType<double>(){ return MPI_DOU
template<> MPI_Datatype PlumedCommunicator::getMPIType<int>() { return MPI_INT;} template<> MPI_Datatype PlumedCommunicator::getMPIType<int>() { return MPI_INT;}
template<> MPI_Datatype PlumedCommunicator::getMPIType<char>() { return MPI_CHAR;} template<> MPI_Datatype PlumedCommunicator::getMPIType<char>() { return MPI_CHAR;}
template<> MPI_Datatype PlumedCommunicator::getMPIType<unsigned>() { return MPI_UNSIGNED;} template<> MPI_Datatype PlumedCommunicator::getMPIType<unsigned>() { return MPI_UNSIGNED;}
template<> MPI_Datatype PlumedCommunicator::getMPIType<long unsigned>() { return MPI_UNSIGNED_LONG;}
#endif #endif
} }
......
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