I'd like to replace MPI4PY's built-in Pickle
-serialization with dill. According to the doc the class _p_Pickle should have 2 attributes called dumps
and loads
. However, python says there are no such attributes when i try the following
from mpi4py Import MPI
MPI._p_Pickle.dumps
-> AttributeError: type object 'mpi4py.MPI._p_Pickle' has no attribute 'dumps'
Where have dumps
and loads
gone?
MPI.Version
tells you the version of the underlining MPI implementation. Are you working with MPICH (newest version :3.0) ? or openmpi (1.7) ? or ... What is the output ofmpicc -show
? – Groh