Comparision of CUDA, OpenMP, MPI & Pthreads performances on parallelizing Gaussian Elimination Algorithm.
- Obtained 578x & 8x speedups with CUDA & OpenMP respectively (where 1x is Sequential performance) on Matrix Multiplication of 2048x2048 sized square matrices.
- Implemented parallelization of Gaussian Elimination & Matrix Multiplication Algorithms using CUDA, OpenMP, MPI & Pthreads in C language.
- Obtained 2054%, 697% & 6.3% speedups with OpenMP, Pthreads & MPI respectively on Gaussian Elimination of 2048x2048 square matrices.
- Pthreads - Parallelization of Gaussian Elimination Algorithm using Pthreads.
- OpenMP_and_MPI - Parallelization of Gaussian Elimination Algorithm using OpenMP and MPI, and comparing their performances.
- CUDA_and_OpenMP - Parallelization of Matrix Multiplication Algorithm using CUDA, and comparing its performace with OpenMP.