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

后端 未结 4 1640
醉话见心
醉话见心 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:18

    The maximum size of an MPI_Send will be limited by the maximum amount of memory you can allocate

    and most MPI implementations supportsizeof(size_t)

提交回复
热议问题