a practically constant time mpi broadcast algorithm for
play

A practically constant-time MPI Broadcast Algorithm for large-scale - PowerPoint PPT Presentation

A practically constant-time MPI Broadcast Algorithm for large-scale InfiniBand Clusters with Multicast T. Hoefler, C. Siebert, W. Rehm Open Systems Lab Computer Architecture Group Indiana University Chemnitz University of Technology


  1. A practically constant-time MPI Broadcast Algorithm for large-scale InfiniBand Clusters with Multicast T. Hoefler, C. Siebert, W. Rehm Open Systems Lab Computer Architecture Group Indiana University Chemnitz University of Technology Bloomington, USA Chemnitz, Germany IPDPS’07 - CAC’07 Workshop Long Beach, CA, USA 26th March 2007 T. Hoefler, C. Siebert, W. Rehm Constant-time Multicast

  2. Introduction MPI is (still) the de-facto standard in parallel programming systems are going to extreme scale applications start to use high scalability collective operations are an important tool scalable collective operations are very important Our approach Use special hardware features to improve scalability of collective operations. T. Hoefler, C. Siebert, W. Rehm Constant-time Multicast

  3. Introduction MPI is (still) the de-facto standard in parallel programming systems are going to extreme scale applications start to use high scalability collective operations are an important tool scalable collective operations are very important Our approach Use special hardware features to improve scalability of collective operations. T. Hoefler, C. Siebert, W. Rehm Constant-time Multicast

  4. Traditional Approach ensure scalability with O ( log 2 P ) algorithms optimized implementations available for different collectives looks promising, but: grows fast for small process-counts (e.g., 256 processes need t = 8 · t send ) processes are skewed by the algorithm (e.g., node 1 leaves the tree faster than node 7) 0 round 1 1 round 2 3 2 round 3 7 5 6 4 T. Hoefler, C. Siebert, W. Rehm Constant-time Multicast

  5. Multicast Support Multicast characteristics unreliable no guaranteed in-order delivery datagrams limited in size (MTU) MC groups must be network-wide unique MPI Interface reliable transmission virtually unlimited message size multiple independent MPI jobs on a single network T. Hoefler, C. Siebert, W. Rehm Constant-time Multicast

  6. Multicast Support Multicast characteristics unreliable no guaranteed in-order delivery datagrams limited in size (MTU) MC groups must be network-wide unique MPI Interface reliable transmission virtually unlimited message size multiple independent MPI jobs on a single network T. Hoefler, C. Siebert, W. Rehm Constant-time Multicast

  7. Traditional Approaches to Ensure Reliability ACK Schemes linear ACK - hot-spot problems tree-based ACK - high latency co-root scheme - combination of both, similar problems every (co-)root waits for last process in its group retransmission timeout NACK Schemes topologies similar to ACK root has to wait for some time (or save the message buffer) timeout very hard to determine and not reliable synchronization problems (delayed processes?) T. Hoefler, C. Siebert, W. Rehm Constant-time Multicast

  8. Traditional Approaches to Ensure Reliability ACK Schemes linear ACK - hot-spot problems tree-based ACK - high latency co-root scheme - combination of both, similar problems every (co-)root waits for last process in its group retransmission timeout NACK Schemes topologies similar to ACK root has to wait for some time (or save the message buffer) timeout very hard to determine and not reliable synchronization problems (delayed processes?) T. Hoefler, C. Siebert, W. Rehm Constant-time Multicast

  9. A new Approach The new algorithm two-stage approach packets are fragmented to the MTU first stage sends fragmented message via Multicast processes that received the fragment correctly become new root second stage performs a reliable ring-broadcast ⇒ highest possible parallelism T. Hoefler, C. Siebert, W. Rehm Constant-time Multicast

  10. The algorithm ��� ��� 5 ��� ��� ���� ���� ��� ��� 6 ��� ��� 4 ���� ���� ��� ��� ���� ���� ��� ��� ��� ��� ��� ��� 7 3 ��� ��� ��� ��� ��� ��� ��� ��� ���� ���� ��� ��� 8 2 ���� ���� ��� ��� ���� ���� 1 ��� ��� T. Hoefler, C. Siebert, W. Rehm Constant-time Multicast

  11. The algorithm ��� ��� 5 ��� ��� ���� ���� 6 ��� ��� 4 ���� ���� ���� ���� 7 3 ��� ��� 8 2 ��� ��� 1 ��� ��� T. Hoefler, C. Siebert, W. Rehm Constant-time Multicast

  12. Multicast Group Management problematic if multiple MPI jobs run in a subnet ideal solution: MADCAP for InfiniBand TM does not exist (subnet-manager?) select MCGID randomly carefully seeded cryptographically secure pseudorandom number generator (Blum-Blum-Shub) 112 bit address space collision probability for 1000 groups: 10 − 18 T. Hoefler, C. Siebert, W. Rehm Constant-time Multicast

  13. Packet Format Data (Payload) Sequence BID CRC−32 Number Fields Sequence Number: number of fragment BID: Broadcast Identifier CRC: (optional) checksum packet error rate: 0.287% T. Hoefler, C. Siebert, W. Rehm Constant-time Multicast

  14. Implementation implemented as collv1 component MCGID is selected per communicator one UD QP per communicator (scalable) n pre-posted RRs on this QP (selectable, default 5) use to “tuned” for small communicators/large messages API independent macro layer for OFED/MVAPI T. Hoefler, C. Siebert, W. Rehm Constant-time Multicast

  15. Performance Results Benchmark Environment odin cluster at Indiana University 128 InfiniBand TM nodes 2Ghz dual core AMD Opteron(tm) processor 270 → 1-byte IMB latency 60 IB TUNED 50 Time in microseconds 40 30 20 10 0 0 20 40 60 80 100 120 Communicator Size T. Hoefler, C. Siebert, W. Rehm Constant-time Multicast

  16. Performance Results 1-byte latency for each rank 70 IB TUNED 60 Time in microseconds 50 40 30 20 10 0 0 20 40 60 80 100 120 MPI Rank T. Hoefler, C. Siebert, W. Rehm Constant-time Multicast

  17. Performance Results 1-byte latency or rank 1 50 IB 45 TUNED 40 Time in microseconds 35 30 25 20 15 10 5 0 0 20 40 60 80 100 120 Communicator Size T. Hoefler, C. Siebert, W. Rehm Constant-time Multicast

  18. Performance Results 1-byte latency or rank N − 1 70 IB TUNED 60 Time in microseconds 50 40 30 20 10 0 0 20 40 60 80 100 120 Communicator Size T. Hoefler, C. Siebert, W. Rehm Constant-time Multicast

  19. Conclusions and Future Work Conclusions a new algorithm to use Multicast for MPI_BCAST massively parallel scheme to deal with reliability issues (average) constant-time (2 · t send ) bcast implementation tree-based algorithms cause process skew the newly proposed algorithm does not skew processes Future Work investigate other collective operations investigate the influence of process skew on applications investigate large message support T. Hoefler, C. Siebert, W. Rehm Constant-time Multicast

  20. Conclusions and Future Work Conclusions a new algorithm to use Multicast for MPI_BCAST massively parallel scheme to deal with reliability issues (average) constant-time (2 · t send ) bcast implementation tree-based algorithms cause process skew the newly proposed algorithm does not skew processes Future Work investigate other collective operations investigate the influence of process skew on applications investigate large message support T. Hoefler, C. Siebert, W. Rehm Constant-time Multicast

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend