a parallel numerical library for upc
play

A Parallel Numerical Library for UPC Jorge Gonzlez-Domnguez 1 *, Mara - PowerPoint PPT Presentation

Introduction Design of the library Implementation of the library Experimental evaluation Conclusions A Parallel Numerical Library for UPC Jorge Gonzlez-Domnguez 1 *, Mara J. Martn 1 , Guillermo L. Taboada 1 , Juan Tourio 1 , Ramn


  1. Introduction Design of the library Implementation of the library Experimental evaluation Conclusions A Parallel Numerical Library for UPC Jorge González-Domínguez 1 *, María J. Martín 1 , Guillermo L. Taboada 1 , Juan Touriño 1 , Ramón Doallo 1 , Andrés Gómez 2 1 Computer Architecture Group 2 Galicia Supercomputing Center University of A Coruña (Spain) (CESGA) {jgonzalezd,mariam,taboada, Santiago de Compostela (Spain) juan,doallo}@udc.es {agomez}@cesga.es 15th International European Conference on Parallel and Distributed Computing (Euro-Par 2009), Delft University of Technology, Delft, The Netherlands 1/32

  2. Introduction Design of the library Implementation of the library Experimental evaluation Conclusions Introduction 1 Unified Parallel C for High-Performance Computing Parallel Numerical Computing in UPC Design of the library 2 Private routines Shared routines Implementation of the library 3 Experimental evaluation 4 Conclusions 5 2/32

  3. Introduction Design of the library Unified Parallel C for High-Performance Computing Implementation of the library Parallel Numerical Computing in UPC Experimental evaluation Conclusions Introduction 1 Unified Parallel C for High-Performance Computing Parallel Numerical Computing in UPC Design of the library 2 Implementation of the library 3 Experimental evaluation 4 Conclusions 5 3/32

  4. Introduction Design of the library Unified Parallel C for High-Performance Computing Implementation of the library Parallel Numerical Computing in UPC Experimental evaluation Conclusions UPC: a Suitable Alternative for HPC in Multi-core Era Programming models: PGAS Languages: Traditionally: Shared/Distributed memory programming models UPC -> C Challenge: hybrid memory architectures Titanium -> Java PGAS (Partitioned Global Address Co-Array Fortran -> Space) Fortran UPC Compilers: Berkeley UPC GCC (Intrepid) Michigan TU HP , Cray and IBM UPC Compilers 4/32

  5. Introduction Design of the library Unified Parallel C for High-Performance Computing Implementation of the library Parallel Numerical Computing in UPC Experimental evaluation Conclusions UPC: a Suitable Alternative for HPC in Multi-core Era Programming models: PGAS Languages: Traditionally: Shared/Distributed memory programming models UPC -> C Challenge: hybrid memory architectures Titanium -> Java PGAS (Partitioned Global Address Co-Array Fortran -> Space) Fortran UPC Compilers: Berkeley UPC GCC (Intrepid) Michigan TU HP , Cray and IBM UPC Compilers 4/32

  6. Introduction Design of the library Unified Parallel C for High-Performance Computing Implementation of the library Parallel Numerical Computing in UPC Experimental evaluation Conclusions UPC: a Suitable Alternative for HPC in Multi-core Era Programming models: PGAS Languages: Traditionally: Shared/Distributed memory programming models UPC -> C Challenge: hybrid memory architectures Titanium -> Java PGAS (Partitioned Global Address Co-Array Fortran -> Space) Fortran UPC Compilers: Berkeley UPC GCC (Intrepid) Michigan TU HP , Cray and IBM UPC Compilers 4/32

  7. Introduction Design of the library Unified Parallel C for High-Performance Computing Implementation of the library Parallel Numerical Computing in UPC Experimental evaluation Conclusions Important identifiers THREADS -> Total number of threads in execution MYTHREAD -> Rank of the current thread #include<stdio.h> #include<upc.h> int main() { printf("Thread %d of %d: Hello world\n", MYTHREAD, THREADS);} $ upcc -o helloworld helloworld.upc $ upcrun -n 3 helloworld Thread 0 of 3: Hello world Thread 2 of 3: Hello world Thread 1 of 3: Hello world 5/32

  8. Introduction Design of the library Unified Parallel C for High-Performance Computing Implementation of the library Parallel Numerical Computing in UPC Experimental evaluation Conclusions Important identifiers THREADS -> Total number of threads in execution MYTHREAD -> Rank of the current thread #include<stdio.h> #include<upc.h> int main() { printf("Thread %d of %d: Hello world\n", MYTHREAD, THREADS);} $ upcc -o helloworld helloworld.upc $ upcrun -n 3 helloworld Thread 0 of 3: Hello world Thread 2 of 3: Hello world Thread 1 of 3: Hello world 5/32

  9. Introduction Design of the library Unified Parallel C for High-Performance Computing Implementation of the library Parallel Numerical Computing in UPC Experimental evaluation Conclusions Important identifiers THREADS -> Total number of threads in execution MYTHREAD -> Rank of the current thread #include<stdio.h> #include<upc.h> int main() { printf("Thread %d of %d: Hello world\n", MYTHREAD, THREADS);} $ upcc -o helloworld helloworld.upc $ upcrun -n 3 helloworld Thread 0 of 3: Hello world Thread 2 of 3: Hello world Thread 1 of 3: Hello world 5/32

  10. Introduction Design of the library Unified Parallel C for High-Performance Computing Implementation of the library Parallel Numerical Computing in UPC Experimental evaluation Conclusions Shared array declaration shared [block_factor] A [size] size -> Total number of elements block_factor -> Number of consecutive elements with affinity to the same thread -> Size of the chunks 6/32

  11. Introduction Design of the library Unified Parallel C for High-Performance Computing Implementation of the library Parallel Numerical Computing in UPC Experimental evaluation Conclusions BLAS libraries Basic Linear Algebra Subprograms Specification of a set of numerical functions Widely used by scientists and engineers SparseBLAS and PBLAS (Parallel BLAS) BLAS implementations Generic and open source GSL -> GNU Optimized for specific architectures MKL -> Intel ACML -> AMD CXML -> Compaq MLIB -> HP 7/32

  12. Introduction Design of the library Unified Parallel C for High-Performance Computing Implementation of the library Parallel Numerical Computing in UPC Experimental evaluation Conclusions BLAS libraries Basic Linear Algebra Subprograms Specification of a set of numerical functions Widely used by scientists and engineers SparseBLAS and PBLAS (Parallel BLAS) BLAS implementations Generic and open source GSL -> GNU Optimized for specific architectures MKL -> Intel ACML -> AMD CXML -> Compaq MLIB -> HP 7/32

  13. Introduction Design of the library Unified Parallel C for High-Performance Computing Implementation of the library Parallel Numerical Computing in UPC Experimental evaluation Conclusions BLAS level Tblasname Action Tcopy Copies a vector Tswap Swaps the elements of two vectors Tscal Scales a vector by a scalar Taxpy Updates a vector using another one: y = α ∗ x + y BLAS1 Tdot Dot product Tnrm2 Euclidean norm Tasum Sums the absolute value of the elements of a vector iTamax Finds the index with the maximum value iTamin Finds the index with the minimum value Tgemv Matrix-vector product BLAS2 Ttrsv Solves a triangular system of equations Tger Outer product Tgemm Matrix-matrix product BLAS3 Ttrsm Solves a block of triangular systems of equations 8/32

  14. Introduction Design of the library Unified Parallel C for High-Performance Computing Implementation of the library Parallel Numerical Computing in UPC Experimental evaluation Conclusions Numerical computing in UPC No numerical libraries for PGAS languages Alternatives for the programmers: Develop the routine by themselves More effort Worse performance Use different programming models with parallel numerical libraries Distributed memory -> MPI Shared memory -> OpenMP Consequence: Barrier to the productivity of PGAS languages. 9/32

  15. Introduction Design of the library Unified Parallel C for High-Performance Computing Implementation of the library Parallel Numerical Computing in UPC Experimental evaluation Conclusions Numerical computing in UPC No numerical libraries for PGAS languages Alternatives for the programmers: Develop the routine by themselves More effort Worse performance Use different programming models with parallel numerical libraries Distributed memory -> MPI Shared memory -> OpenMP Consequence: Barrier to the productivity of PGAS languages. 9/32

  16. Introduction Design of the library Unified Parallel C for High-Performance Computing Implementation of the library Parallel Numerical Computing in UPC Experimental evaluation Conclusions Numerical computing in UPC No numerical libraries for PGAS languages Alternatives for the programmers: Develop the routine by themselves More effort Worse performance Use different programming models with parallel numerical libraries Distributed memory -> MPI Shared memory -> OpenMP Consequence: Barrier to the productivity of PGAS languages. 9/32

  17. Introduction Design of the library Private routines Implementation of the library Shared routines Experimental evaluation Conclusions Introduction 1 Design of the library 2 Private routines Shared routines Implementation of the library 3 Experimental evaluation 4 Conclusions 5 10/32

  18. Introduction Design of the library Private routines Implementation of the library Shared routines Experimental evaluation Conclusions Analysis of related works Distributed memory approach (Parallel -MPI- BLAS) Message Passing paradigm Only private memory New structures to represent distributed vectors or matrices Difficult to understand and work with Functions to help to work with them Creation Storage of data Deletion New approach Usage of UPC shared arrays 11/32

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