1 / 4

When are control messages handled?

Learn about different methods used to handle control messages in MPI, including polling, interrupts, and during MPI calls or periodic "polls". Understand the pros and cons of each method and their impact on performance.

Download Presentation

When are control messages handled?

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. When are control messages handled? • Polling • During MPI calls or periodic “polls” • Interrupts • When message arrives at process (e.g., OS signals an I/O event) • No method is “best”

  2. MPI_Send User System Sync Delay Transfer Request Acknowledgment System User Polling Mode MPI

  3. MPI_Send User System Transfer Acknowledgment Request System User Interrupt Mode MPI • Cost of interrupt higher than polling (usually)

  4. Example of the effect of Polling • IBM SP2 MPI_Allreduce times for each mode • Times in usecs. Similar effects on other operations. • BUT some programs (with extensive computing) can show better performance with interrupt mode

More Related