This project contains three separate implementations focusing on parallel numerical methods using MPI:
- Parallel Implementation of Poisson Equation using Jacobi Iterative Solver and MPI in Fortran
- Parallel Implementation of Poisson Equation using Jacobi Iterative Solver and MPI in C++
- Parallel Implementation of a Random Walk of a Point in a 3D Lattice using MPI (Parallelized in 2D)
- Project Structure
- Prerequisites
- Installation and Compilation
- Running the Programs
- Description of the Algorithms
- Authors
.
├── fortran_poisson_jacobi/
│ ├── Makefile
│ ├── poisson_jacobi.f90
│ └── README.md
├── cpp_poisson_jacobi/
│ ├── Makefile
│ ├── poisson_jacobi.cpp
│ └── README.md
└── random_walk/
├── random_walk_3d_mpi.cpp
└── README.md