Maximum amount of data that can be sent using MPI::Send

后端 未结 4 1669
醉话见心
醉话见心 2020-12-10 07:19

With the syntax for MPI::Isend as

MPI::Request MPI::Comm::Isend(const void *buf, int count, 
              const MPI::Datatype& datatype, 
                       


        
4条回答
  •  佛祖请我去吃肉
    2020-12-10 08:12

    This issue and a number of workarounds (with code) are discussed on https://github.com/jeffhammond/BigMPI. In particular, this project demonstrates how to send more than INT_MAX elements via user-defined datatypes.

提交回复
热议问题