Browsed by
Tag: Non-bloking

Blocking and Non-blocking Communication in MPI

Blocking and Non-blocking Communication in MPI

In parallel computing with MPI (Message Passing Interface), communication between processes plays a crucial role in achieving efficient parallelization of algorithms. Two common approaches to communication are blocking and non-blocking communication. You can visit the detailed tutorial on MPI with Python here. Blocking Communication Blocking communication involves processes halting their execution until the communication operation is complete. In MPI, blocking communication functions like comm.send() and comm.recv() ensure that the sender waits until the receiver receives the message, and vice versa….

Read More Read More

Verified by MonsterInsights