charm for productivity and performance
play

Charm++ for Productivity and Performance A Submission to the 2011 - PowerPoint PPT Presentation

Charm++ for Productivity and Performance A Submission to the 2011 HPC Class II Challenge Laxmikant V. Kale Anshu Arya Abhinav Bhatele Abhishek Gupta Nikhil Jain Pritish Jetley Jonathan Lifflander Phil Miller Yanhua Sun Ramprasad


  1. Charm++ for Productivity and Performance A Submission to the 2011 HPC Class II Challenge Laxmikant V. Kale ∗ Anshu Arya Abhinav Bhatele Abhishek Gupta Nikhil Jain Pritish Jetley Jonathan Lifflander Phil Miller Yanhua Sun Ramprasad Venkataraman ∗ Lukasz Wesolowski Gengbin Zheng Parallel Programming Laboratory Department of Computer Science University of Illinois at Urbana-Champaign ∗ { kale, ramv } @illinois.edu LLNL-PRES-513271 SC11: November 15, 2011 Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 1 / 25

  2. Benchmarks Required Dense LU Factorization 1D FFT Random Access Optional Molecular Dynamics Barnes-Hut Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 2 / 25

  3. Charm++ Programming Model Object-based Express logic via indexed collections of interacting objects (both data and tasks) Over-decomposed Expose more parallelism than available processors Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 3 / 25

  4. Charm++ Programming Model Runtime-Assisted scheduling, observation-based adaptivity, load balancing, composition, etc. Message-Driven Trigger computation by invoking remote entry methods Non-blocking, Asynchronous Implicitly overlapped data transfer Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 4 / 25

  5. Charm++ Program Structure Regular C++ code ◮ No special compilers Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 5 / 25

  6. Charm++ Program Structure Regular C++ code ◮ No special compilers Small parallel interface description file ◮ Can contain control flow DAG ◮ Parsed to generate more C++ code Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 5 / 25

  7. Charm++ Program Structure Regular C++ code ◮ No special compilers Small parallel interface description file ◮ Can contain control flow DAG ◮ Parsed to generate more C++ code Inherit from framework classes to ◮ Communicate with remote objects ◮ Serialize objects for transmission Exploit modern C++ program design techniques (OO, generics etc) Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 5 / 25

  8. Charm++ Capabilities Promotes natural expression of parallelism Supports modularity Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 6 / 25

  9. Charm++ Capabilities Promotes natural expression of parallelism Supports modularity Overlaps communication and computation Automatically balances load Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 6 / 25

  10. Charm++ Capabilities Promotes natural expression of parallelism Supports modularity Overlaps communication and computation Automatically balances load Automatically handles heterogenous systems Adapts to reduce energy consumption Tolerates component failures For more info http://charm.cs.illinois.edu/why/ Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 6 / 25

  11. Metrics: Performance Our Implementations in Charm++ Code Machine Max Cores Best Performance LU Cray XT5 8K 67.4% of peak FFT IBM BG/P 64K 2.512 TFlop/s RandomAccess IBM BG/P 64K 22.19 GUPS Cray XE6 16K 1.9 ms/step (125K atoms) MD IBM BG/P 64K 11.6 ms/step (1M atoms) 27 × 10 9 interactions/s Barnes-Hut IBM BG/P 16K Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 7 / 25

  12. Metrics: Code Size Our Implementations in Charm++ Total 1 Code C++ CI Libraries LU 1231 418 1649 BLAS FFT 112 47 159 FFTW, Mesh RandomAccess 155 23 178 Mesh MD 645 128 773 Barnes-Hut 2871 56 2927 TIPSY C++ Regular C++ code CI Parallel interface descriptions and control flow DAG 1 Required logic, excluding test harness, input generation, verification, etc. Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 8 / 25

  13. Metrics: Code Size Our Implementations in Charm++ Total 1 Code C++ CI Libraries LU 1231 418 1649 BLAS FFT 112 47 159 FFTW, Mesh RandomAccess 155 23 178 Mesh MD 645 128 773 Barnes-Hut 2871 56 2927 TIPSY C++ Regular C++ code CI Parallel interface descriptions and control flow DAG Remember: Lots of freebies! automatic load balancing, fault tolerance, overlap, composition, portability 1 Required logic, excluding test harness, input generation, verification, etc. Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 8 / 25

  14. LU: Capabilities Composable library ◮ Modular program structure ◮ Seamless execution structure (interleaved modules) Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 9 / 25

  15. LU: Capabilities Composable library ◮ Modular program structure ◮ Seamless execution structure (interleaved modules) Block-centric ◮ Algorithm from a block’s perspective ◮ Agnostic of processor-level considerations Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 9 / 25

  16. LU: Capabilities Composable library ◮ Modular program structure ◮ Seamless execution structure (interleaved modules) Block-centric ◮ Algorithm from a block’s perspective ◮ Agnostic of processor-level considerations Separation of concerns ◮ Domain specialist codes algorithm ◮ Systems specialist codes tuning, resource mgmt etc Lines of Code Module-specific CI C++ Total Commits Factorization 517 419 472/572 83% 936 Mem. Aware Sched. 9 492 501 86/125 69% Mapping 10 72 82 29/42 69% Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 9 / 25

  17. LU: Capabilities Flexible data placement ◮ Experiment with data layout Memory-constrained adaptive lookahead Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 10 / 25

  18. LU: Performance Weak Scaling: (N such that matrix fills 75% memory) 100 Theoretical peak on XT5 Weak scaling on XT5 65.7% 10 Total TFlop/s 67.4% 66.2% 67.4% 1 67.1% 67% 0.1 128 1024 8192 Number of Cores Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 11 / 25

  19. LU: Performance ... and strong scaling too! (N=96,000) 100 Theoretical peak on XT5 Weak scaling on XT5 Theoretical peak on BG/P Strong scaling on BG/P 10 Total TFlop/s 31.6% 40.8% 1 45% 60.3% 0.1 128 1024 8192 Number of Cores Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 12 / 25

  20. FFT: Parallel Coordination Code doFFT() for(phase = 0; phase < 3; ++phase) { atomic { sendTranspose(); } for(count = 0; count < P; ++count) when recvTranspose[phase] (fftMsg *msg) atomic { applyTranspose(msg); } if (phase < 2) atomic { fftw execute(plan); if(phase == 0) twiddle(); } } Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 13 / 25

  21. FFT: Performance IBM Blue Gene/P (Intrepid), 25% memory, ESSL /w fftw wrappers 4 10 3 10 GFlop/s 2 10 P2P All−to−all Mesh All−to−all Serial FFT limit 1 10 256 512 1024 2048 4096 8192 16384 32768 65536 Cores Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 14 / 25

  22. FFT: Performance IBM Blue Gene/P (Intrepid), 25% memory, ESSL /w fftw wrappers 4 10 Charm++ all-to-all 3 10 Asynchronous, Non-blocking, Topology-aware, Combining, Streaming GFlop/s 2 10 P2P All−to−all Mesh All−to−all Serial FFT limit 1 10 256 512 1024 2048 4096 8192 16384 32768 65536 Cores Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 14 / 25

  23. Random Access What Charm++ brings to the table Productivity Automatically detect completion by sensing quiescence Automatically detect network topology of partition Performance Uses same Charm++ all-to-all Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 15 / 25

  24. Random Access: Performance IBM Blue Gene/P (Intrepid), 2 GB of memory per node Perfect Scaling 32 Charm++ 16 22.19 8 4 GUPS 2 1 0.5 0.25 0.125 128 256 512 1K 2K 4K 8K 16K 32K 64K Number of cores Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 16 / 25

  25. Optional Benchmarks Why MD and Barnes-Hut? Relevant scientific computing kernels Challenge the parallelization paradigm ◮ Load imbalances ◮ Dynamic communication structure Express non-trivial parallel control flow Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 17 / 25

  26. Molecular Dynamics Overview 1 Mimics force calculation in NAMD 2 Resembles the miniMD application in the Mantevo benchmark suite 3 SLOC is 773 in comparison to just under 3000 lines for miniMD (a) 1 Away Decomposition (b) 2 AwayX Decomposition Kale et al. (PPL, Illinois) Charm++ for Productivity and Performance SC11: November 15, 2011 18 / 25

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