large scale ultrasound simulations using
play

Large-scale Ultrasound Simulations Using the Hybrid OpenMP/MPI - PowerPoint PPT Presentation

Large-scale Ultrasound Simulations Using the Hybrid OpenMP/MPI Decomposition Jiri Jaros*, Vojtech Nikl*, Bradley E. Treeby * Department of Compute Systems, Brno University of Technology Department of Medical Physics, University College


  1. Large-scale Ultrasound Simulations Using the Hybrid OpenMP/MPI Decomposition Jiri Jaros*, Vojtech Nikl*, Bradley E. Treeby † * Department of Compute Systems, Brno University of Technology † Department of Medical Physics, University College London

  2. Outline • Ultrasound simulations in soft tissues – What is ultrasound – Why do we need ultrasound simulations – Factors for the ultrasound simulations – What is the challenge • k-Wave toolbox – Acoustic model – Spectral methods • Large-scale ultrasound simulations – 1D domain decomposition with pure-MPI – 2D hybrid decomposition with OpenMP/MPI • Achieved results – FFTW scaling – Strong scaling • Conclusions and open questions Jiri Jaros: Large-scale Ultrasound Simulations… 2

  3. What Is Ultrasound? Longitudinal (compressional ) acoustic waves … … with a frequency above 20 kHz Jiri Jaros: Large- scale Ultrasound Simulations… 3

  4. Ultrasound Simulation • Photoacoustic imaging • Aberration correction • Training ultrasonographers • Ultrasound transducer design • Treatment planning (HIFU) Jiri Jaros: Large- scale Ultrasound Simulations… 4

  5. HIFU Treatment Planning • CT or MR scan of a patient Scan • Scan segmentation (bones, fat, skin, …) • Medium parameters (density, sound Parameter speed) setting • Ultrasound propagation simulation • Dosage, focus position, aberration correction Simulation • Application of the ultrasound treatment Operation Jiri Jaros: Large- scale Ultrasound Simulations… 5

  6. Factors for Ultrasound Simulation • Nonlinear wave propagation – Production of harmonics – Energy dependent • Heterogeneous medium – Dispersion – Reflection • Absorbing medium – Frequency dependent – Medium dependent Jiri Jaros: Large- scale Ultrasound Simulations… 6

  7. How Big Simulations Do We Need? Speed of sound in water ≈ 1500 m/s At 1 MHz, 20 cm ≈ 133 λ At 10 MHz, 20 cm ≈ 1333 λ At 15 grid points per wavelength, each matrix is 30 TB ! Source Freq Nonlinear Max Freq Domain Size Domain Size Modeling Scenario [MHz] Source Type Harmonics [MHz] [mm] [Wavelengths] X Y Z X Y Z Diagnostic Ultrasound: 3 Tone Burst 5 18 150 80 25 1800 960 300 Abdominal Curvilinear Transducer Diagnostic Ultrasound: 10 Tone Burst 5 60 50 80 30 2000 3200 1200 Linear Transducer Transrectal Prostate HIFU 4 CW 15 64 80 60 20 3413 2560 853 Minimal Cavitation MR-Guided HIFU 1.5 CW 10 15 250 250 150 2500 2500 1500 Minimal Cavitation Histotripsy 1 CW 50 50 250 250 150 8333 8333 5000 Intense Cavitation Jiri Jaros: Large- scale Ultrasound Simulations… 7

  8. Acoustic Model for Soft Tissues • k-Wave Toolbox (http://www.k-wave.org) – 3,385 registered users • Full-wave 3D acoustic model – including nonlinearity – heterogeneities – power law absorption • Solves coupled first-order equations momentum conservation mass conservation pressure-density relation absorption term Jiri Jaros: Large- scale Ultrasound Simulations… 8

  9. k -space Pseudospectral Method in C++ • Technique – Medium properties generated by Matlab scripts from a medical scan. – Input signal is injected by a transducer. – Sensor data is collected in the form of raw time series or aggregated acoustics values. – Post processing and visualization handled by Matlab. • Operations executed in every time step – 6 forward 3D FFTs – 8 inverse 3D FFTs – 3+3 forward and inverse 1D FFTs in the case of non-staggered velocity – About 100 element wise matrix operations (multiplication, addition ,…) • Global data set – 14 +3 (scratch) + 3 (unstaggering) real 3D matrices – 3+3 complex 3D matrices – 6 real 1D vectors – 6 complex 1D vectors – Sensor mask, source mask, source input – <0 , 20> real buffers for aggregated quantities (max, min, rms, max_all, min_all) Jiri Jaros: Large- scale Ultrasound Simulations… 9

  10. K-Wave++ Toolbox Distributed 1D decomposition • Implementation language – C/C++ and MPI parallelization – MPI-FFTW library – efficient way to calculate distributed 3D FFTs – HDF5 library – hierarchical data format for parallel I/O • Data decomposition – Data decomposed along the Z dimension – Data distributed when read using parallel I/O – Frequency domain operations work on transposed data to reduce the number of global communications (3D transpositions). Jiri Jaros: Large- scale Ultrasound Simulations… 10

  11. K-Wave++ Toolbox Strong Scaling (1D decomposition) Strong Scaling of Ultrasound Simulations Problem size remains constant as the number of cores is increased 100 10 Time per timestep [s] 1 0,1 0,01 SEQ 8 cores 16 cores 32 cores 64 cores 128 cores 256 cores 512 cores 1024 cores (1 node) (2 nodes) (4 nodes) (8 nodes) (16 nodes) (32 nodes) (64 nodes) (128 nodes) 128x128x128 256x128x128 256x256x128 256x256x256 512x256x256 512x512x256 512x512x512 1024x512x512 1024x1024x512 1024x1024x1024 2048x1024x1024 2048x2048x1024 2048x2048x2048 4096x2048x2048 Jiri Jaros: Large- scale Ultrasound Simulations… 11

  12. Scalability Problem • 1D decomposition – The number of cores is limited by the largest dimension – It makes some simulation run for too long – It makes some simulation not fit into memory + It requires less communication • 2D decomposition + The number of codes is limited by a product of two largest dimensions + It is enough for anything we could think of running – It requires more communication and smaller messages • Example – 4096 3 matrix -> ~256GB in single precision – Say 32 matrices -> 8TB RAM in total – Max 4096 cores -> 2GB per core (Anselm – 2GB, Fermi – 1GB) Jiri Jaros: Large- scale Ultrasound Simulations… 12

  13. 2D Hybrid Domain Decompostion + high core count limit + only 1 MPI global transposition + lower number of larger MPI messages Jiri Jaros: Large- scale Ultrasound Simulations… 13

  14. FFT libraries strong scaling Anselm supercomputer (1024 3 ) Jiri Jaros: Large- scale Ultrasound Simulations… 14

  15. FFT libraries strong scaling Fermi supercomputer (1024 3 ) Jiri Jaros: Large- scale Ultrasound Simulations… 15

  16. Time distribution of hybrid FFT Jiri Jaros: Large- scale Ultrasound Simulations… 16

  17. Simulation scaling (Anselm) 128 - Pure 65536 32768 128 - Socket 16384 128 - Node 8192 256 - Pure 4096 Time per timestep [ms] 256 - Socket 2048 1024 256 - Node 512 512 - Pure 256 512 - Socket 128 64 512 - Node 32 1024 - Pure 16 1024 - Socket 8 1024 - Node 4 16 32 64 128 256 512 1024 2048 Cores Jiri Jaros: Large- scale Ultrasound Simulations… 17

  18. Simulation scaling (SuperMUC) 8192 4096 2048 128 - Pure 128 - Socket 1024 Time per timestep [ms] 128 - Node 512 256 - Pure 256 256 - Socket 256 - Node 128 512 - Pure 64 512 - Socket 32 512 - Node 1024 - Pure 16 1024 - Socket 8 1024 - Node 4 128 256 512 1024 2048 4096 8192 Cores Jiri Jaros: Large- scale Ultrasound Simulations… 18

  19. Memory scaling (SuperMUC) 1024 512 256 128 - Pure 128 - Socket 128 Memory per core [MB] 128 - Node 64 256 - Pure 256 - Socket 32 256 - Node 512 - Pure 16 512 - Socket 8 512 - Node 1024 - Pure 4 1024 - Socket 2 1024 - Node 1 128 256 512 1024 2048 4096 8192 Cores Jiri Jaros: Large- scale Ultrasound Simulations… 19

  20. Conclusions • Clinical relevant results – To get clinically relevant simulation we need grid sizes of 4096 3 to 8192 3 at least for 50k simulation timesteps • Two different Implementations – 1D domain decomposition gives better results for small core counts – 2D domain decomposition works well on Anselm, however there is a room for improvement on SuperMUC – Memory scaling enables us to run much bigger simulations • Future work – Communication and synchronization reduction via overlapping Jiri Jaros: Large- scale Ultrasound Simulations… 20

  21. Questions and Comments Our work has been supported by following institutions and grants The project is financed from the SoMoPro II programme. The research leading to this invention has acquired a financial grant from the People Programme (Marie Curie action) of the Seventh Framework Programme of EU according to the REA Grant Agreement No. 291782. The research is further co-financed by the South- Moravian Region. This work reflects only the author’s view and the European Union is not liable for any use that may be made of the information con tained therein. This work was also supported by the research project "Architecture of parallel and embedded computer systems", Brno University of Technology, FIT-S-14-2297, 2014-2016. This work was supported by the IT4Innovations Centre of Excellence project (CZ.1.05/1.1.00/02.0070), funded by the European Regional Development Fund and the national budget of the Czech Republic via the Research and Development for Innovations Operational Programme, as well as Czech Ministry of Education, Youth and Sports via the project Large Research, Development and Innovations Infrastructures (LM2011033). We acknowledge CINECA and PRACE Summer of HPC project for the availability of high performance computing resources. The authors gratefully acknowledge the Gauss Centre for Supercomputing e.V. (www.gauss-centre.eu) for funding this project by providing computing time on the GCS Supercomputer SuperMUC at Leibniz Supercomputing Centre (LRZ, www.lrz.de). Jiri Jaros: Large- scale Ultrasound Simulations… 21

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