Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mrigankdoshy/matrix-multiplication

This repository will serve as a comparison of Sequential, OpenMP Parallel and MPI Parallel code that accomplishes Matrix Multiplication. Along with comparing the total matrix multiplication times of the codes, we will look at the ratio of time spent calculating the multiplication to the time the parallel tool spends communicating data.
https://github.com/mrigankdoshy/matrix-multiplication

matrix-multiplication mpi openmp parallel-computing

Last synced: 3 days ago
JSON representation

This repository will serve as a comparison of Sequential, OpenMP Parallel and MPI Parallel code that accomplishes Matrix Multiplication. Along with comparing the total matrix multiplication times of the codes, we will look at the ratio of time spent calculating the multiplication to the time the parallel tool spends communicating data.

Awesome Lists containing this project

README

        

# Matrix Multiplication

The multiplication of two matrices is to be implemented as:
1. A sequential program
2. An OpenMP shared memory program
3. A Message Passing Program using the MPI Standard

This repository will serve as a comparison of Sequential, OpenMP Parallel and MPI Parallel code that accomplishes Matrix Multiplication. Along with comparing the total matrix multiplication times of the codes, we will look at the
ratio of time spent calculating the multiplication to the time the parallel tool spends communicating data.