30class ALIEN_EXPORT Redistributor
33 enum class Method { dok, csr };
35 Redistributor(
int globalSize, IMessagePassingMng* super, IMessagePassingMng* target, Method method = Method::dok);
36 virtual ~Redistributor() =
default;
62 IMessagePassingMng* m_super_pm;
63 std::unique_ptr<RedistributorCommPlan> m_distributor;
64 Method m_method = Method::dok;