You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
libdistributed version 0.4.3
Bug Fix
+ fix MPI_Recv for std::pair<U,V> which previously would not stick to a
particular source and tag when MPI_ANY_SOURCE or MPI_ANY_TAG was used
libdistributed version 0.4.0
Major Changes
+ breaking change: get_subcommunicator now returns a pointer to the
subcommunicator rather than the subcommunicator itself. This better
supports differences between mpich and openmpi (which at time of
writing use an int and a pointer respectively to refer to MPI_Comm
types).
libdistributed version 0.1.1
bug fixes
+ added support for newer versions of libstdcxx which assert if .front()
is called on an empty string rather than returning a pointer to a null
character
libdistributed version 0.0.11
Major Bug Fix:
+ prior to this release, the type_registry was improperly declared as
static while being in the header file. This caused multiple static to
be declared, one for each file that include the header. This caused
the registry to no longer be a singleton.