Closed fdrmrc closed 6 months ago
The previous version of LA::d::V::reinit() (https://dealii.org/developer/doxygen/deal.II/classLinearAlgebra_1_1distributed_1_1Vector.html#a3e6c69e780f5c612a7e52b2cf87ac84b) for the master-slave-relationships (distributed) vector was taking a shared ptr and a communicator comm_sm. This signature assumes that comm_sm consists of processes on the same shared-memory domain.
LA::d::V::reinit()
comm_sm
In larger experiments with more compute nodes this rightfully throws with message:
MPI_ERR_RMA_SHARED: Memory cannot be shared".
Fixed by calling the overload with IndexSet and communicator (the IndexSet argument is retrieved from the partitioner).
The previous version of
LA::d::V::reinit()
(https://dealii.org/developer/doxygen/deal.II/classLinearAlgebra_1_1distributed_1_1Vector.html#a3e6c69e780f5c612a7e52b2cf87ac84b) for the master-slave-relationships (distributed) vector was taking a shared ptr and a communicatorcomm_sm
. This signature assumes thatcomm_sm
consists of processes on the same shared-memory domain.In larger experiments with more compute nodes this rightfully throws with message:
Fixed by calling the overload with IndexSet and communicator (the IndexSet argument is retrieved from the partitioner).