Skip to content

Latest commit

 

History

History
61 lines (41 loc) · 663 Bytes

README.md

File metadata and controls

61 lines (41 loc) · 663 Bytes

Shallow water parallel solver

Shallow Water Wave Equation with a finite volume solver

Requirements

  • for serial version: icc
  • for MPI version: mpiicpc
  • for GPU version: CUDA® compiler

Data

The data files can be downloaded from here. Data folder should be located in a project folder.

Build

To compile serial version:

cd serial
make

To compile MPI version:

cd MPI
make

To compile CUDA version:

cd CUDA      
make

Run

Serial version:

./serial <nx>

MPI version:

./MPI <nx>

CUDA version:

./CUDA <nx> <block_size>