Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fandreuz/parallel-programming-for-hpc

Scientific codes in C/C++ with CUDA, OpenACC, FFTW, (cu)BLAS
https://github.com/fandreuz/parallel-programming-for-hpc

cpp cuda hpc mpi

Last synced: 18 days ago
JSON representation

Scientific codes in C/C++ with CUDA, OpenACC, FFTW, (cu)BLAS

Awesome Lists containing this project

README

        

# Parallel programming for HPC
Weekly exercises for the course in _Parallel programming for HPC_ @ UniTS.

## Topics
- Distributed parallelism (MPI)
- BLAS
- (NVIDIA) GPU programming
- CUDA
- Theory & best practices
- cuBLAS
- OpenACC
- FFTW

## Some plots
The following time measurements were taken on standard nodes on [Marconi-100](https://wiki.u-gov.it/confluence/pages/viewpage.action?pageId=336727645).

### Matrix multiplication (MPI, BLAS, cuBLAS)

**2500x2500**

![](imgs/matmul_2500.png)

**5000x5000**

![](imgs/matmul_5000.png)

### Jacobi method --- heat diffusion (MPI, OpenACC)

![](imgs/jacobi_10000_1000.png)

### FFT 3D (MPI, FFTW)

![](imgs/fft3d.png)