how runtime systems can support resource awareness in hpc
play

How runtime systems can support resource awareness in HPC: the HPX - PowerPoint PPT Presentation

Introduction Resource awareness HPX RA in HPX Example Summary How runtime systems can support resource awareness in HPC: the HPX case Tommaso Bianucci Technische Universitt Mnchen 22 June 2018 Tommaso Bianucci Technische Universitt


  1. Introduction Resource awareness HPX RA in HPX Example Summary How runtime systems can support resource awareness in HPC: the HPX case Tommaso Bianucci Technische Universität München 22 June 2018 Tommaso Bianucci Technische Universität München

  2. Introduction Resource awareness HPX RA in HPX Example Summary Exascale will be hard ◮ 1 ExaFLOPS = 10 18 FLOPS ◮ Billions of cores? ◮ Etherogeneous hardware ◮ Manycore CPUs ◮ GPUs ◮ FPGAs − → These machines expose an extreme degree of parallelism. Tommaso Bianucci Technische Universität München

  3. Introduction Resource awareness HPX RA in HPX Example Summary Exascale will be hard ◮ 1 ExaFLOPS = 10 18 FLOPS ◮ Billions of cores? ◮ Etherogeneous hardware ◮ Manycore CPUs ◮ GPUs ◮ FPGAs − → These machines expose an extreme degree of parallelism. Tommaso Bianucci Technische Universität München

  4. Introduction Resource awareness HPX RA in HPX Example Summary Applications are hard ◮ Scaling-impaired applications ◮ Unbalanced execution tree This causes: ◮ Poor parallel performance ◮ Suboptimal resource usage − → Some applications do not scale well. Tommaso Bianucci Technische Universität München

  5. Introduction Resource awareness HPX RA in HPX Example Summary Applications are hard ◮ Scaling-impaired applications ◮ Unbalanced execution tree This causes: ◮ Poor parallel performance ◮ Suboptimal resource usage − → Some applications do not scale well. Tommaso Bianucci Technische Universität München

  6. Introduction Resource awareness HPX RA in HPX Example Summary Applications are hard ◮ Scaling-impaired applications ◮ Unbalanced execution tree This causes: ◮ Poor parallel performance ◮ Suboptimal resource usage − → Some applications do not scale well. Tommaso Bianucci Technische Universität München

  7. Introduction Resource awareness HPX RA in HPX Example Summary Programming model matters Current predominant model in HPC: ◮ Fork-join for shared memory (OpenMP) ◮ Communicating Sequential Processes for distributed memory (MPI) Problems: ◮ Global barriers ◮ Load imbalance P.A.Grubel:"Dynamic adaptation in hpx, a task-based parallel runtime system" 2016. Tommaso Bianucci Technische Universität München

  8. Introduction Resource awareness HPX RA in HPX Example Summary Programming model matters Current predominant model in HPC: ◮ Fork-join for shared memory (OpenMP) ◮ Communicating Sequential Processes for distributed memory (MPI) Problems: ◮ Global barriers ◮ Load imbalance P.A.Grubel:"Dynamic adaptation in hpx, a task-based parallel runtime system" 2016. Tommaso Bianucci Technische Universität München

  9. Introduction Resource awareness HPX RA in HPX Example Summary Resource awareness: clever software for complex hardware Resource awareness ◮ Adaptive allocation and usage of resources ◮ The system is aware of its own resources ◮ At runtime vs. before execution Tommaso Bianucci Technische Universität München

  10. Introduction Resource awareness HPX RA in HPX Example Summary Resource awareness: clever software for complex hardware Resource awareness ◮ Adaptive allocation and usage of resources ◮ The system is aware of its own resources ◮ At runtime vs. before execution Tommaso Bianucci Technische Universität München

  11. Introduction Resource awareness HPX RA in HPX Example Summary What are resources? 1. Hardware entities ◮ Computational units ◮ Memory ◮ Bus/network bandwidth ◮ I/O devices ◮ Power ◮ Thermal 2. Software entities ◮ Buffers ◮ Queues Tommaso Bianucci Technische Universität München

  12. Introduction Resource awareness HPX RA in HPX Example Summary What are resources? 1. Hardware entities ◮ Computational units ◮ Memory ◮ Bus/network bandwidth ◮ I/O devices ◮ Power ◮ Thermal 2. Software entities ◮ Buffers ◮ Queues Tommaso Bianucci Technische Universität München

  13. Introduction Resource awareness HPX RA in HPX Example Summary Different levels of awareness 1. Embedded computing E.g.: Invasive computing on MPSoC 2. Application/runtime system level E.g.: load balance, task scheduling 3. Supercomputing facility E.g.: Invasive MPI + job scheduler integration Tommaso Bianucci Technische Universität München

  14. Introduction Resource awareness HPX RA in HPX Example Summary Different levels of awareness 1. Embedded computing E.g.: Invasive computing on MPSoC 2. Application/runtime system level E.g.: load balance, task scheduling 3. Supercomputing facility E.g.: Invasive MPI + job scheduler integration Tommaso Bianucci Technische Universität München

  15. Introduction Resource awareness HPX RA in HPX Example Summary Different levels of awareness 1. Embedded computing E.g.: Invasive computing on MPSoC 2. Application/runtime system level E.g.: load balance, task scheduling 3. Supercomputing facility E.g.: Invasive MPI + job scheduler integration Tommaso Bianucci Technische Universität München

  16. Introduction Resource awareness HPX RA in HPX Example Summary High Performance paralleX C++ runtime system for ◮ Task-based parallelism ◮ Shared memory + Distributed memory parallelization ◮ Fine-grained parallelism Tommaso Bianucci Technische Universität München

  17. Introduction Resource awareness HPX RA in HPX Example Summary High Performance paralleX C++ runtime system for ◮ Task-based parallelism ◮ Shared memory + Distributed memory parallelization ◮ Fine-grained parallelism Tommaso Bianucci Technische Universität München

  18. Introduction Resource awareness HPX RA in HPX Example Summary HPX foundations ◮ Asynchronous scheduling and execution ◮ Lightweight synchronization ◮ Active Global Address Space (AGAS) ◮ Performance monitoring T. Heller et al.: “Hpx – an open source c++ framework standard library for parallelism and concurrency” 2017. Tommaso Bianucci Technische Universität München

  19. Introduction Resource awareness HPX RA in HPX Example Summary Futures H. Kaiser et al.: “Parallex an advanced parallel execution model for scaling-impaired applications” 2009. Tommaso Bianucci Technische Universität München

  20. Introduction Resource awareness HPX RA in HPX Example Summary Programming model T. Heller: “C++ on its way to exascale and beyond - The HPX Parallel Runtime System” 2016. Tommaso Bianucci Technische Universität München

  21. Introduction Resource awareness HPX RA in HPX Example Summary Programming model T. Heller: “C++ on its way to exascale and beyond - The HPX Parallel Runtime System” 2016. Tommaso Bianucci Technische Universität München

  22. Introduction Resource awareness HPX RA in HPX Example Summary Programming model T. Heller: “C++ on its way to exascale and beyond - The HPX Parallel Runtime System” 2016. Tommaso Bianucci Technische Universität München

  23. Introduction Resource awareness HPX RA in HPX Example Summary Programming model T. Heller: “C++ on its way to exascale and beyond - The HPX Parallel Runtime System” 2016. Tommaso Bianucci Technische Universität München

  24. Introduction Resource awareness HPX RA in HPX Example Summary HPX and Resource Awareness Capabilities 1. Task scheduling − → Work stealing + NUMA-awareness 2. AGAS − → Dynamic relocation of objects 3. Percolation − → Directly addressing HW accelerators 4. Performance counters − → Easier integration into applications Tommaso Bianucci Technische Universität München

  25. Introduction Resource awareness HPX RA in HPX Example Summary HPX and Resource Awareness Capabilities 1. Task scheduling − → Work stealing + NUMA-awareness 2. AGAS − → Dynamic relocation of objects 3. Percolation − → Directly addressing HW accelerators 4. Performance counters − → Easier integration into applications Tommaso Bianucci Technische Universität München

  26. Introduction Resource awareness HPX RA in HPX Example Summary HPX and Resource Awareness Capabilities 1. Task scheduling − → Work stealing + NUMA-awareness 2. AGAS − → Dynamic relocation of objects 3. Percolation − → Directly addressing HW accelerators 4. Performance counters − → Easier integration into applications Tommaso Bianucci Technische Universität München

  27. Introduction Resource awareness HPX RA in HPX Example Summary HPX and Resource Awareness Capabilities 1. Task scheduling − → Work stealing + NUMA-awareness 2. AGAS − → Dynamic relocation of objects 3. Percolation − → Directly addressing HW accelerators 4. Performance counters − → Easier integration into applications Tommaso Bianucci Technische Universität München

  28. Introduction Resource awareness HPX RA in HPX Example Summary HPX and Resource Awareness Capabilities 1. Task scheduling − → Work stealing + NUMA-awareness 2. AGAS − → Dynamic relocation of objects 3. Percolation − → Directly addressing HW accelerators 4. Performance counters − → Easier integration into applications Tommaso Bianucci Technische Universität München

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