Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/mrigankdoshy/matrix-multiplication
- Owner: mrigankdoshy
- Created: 2019-08-10T00:14:21.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-23T18:27:36.000Z (over 5 years ago)
- Last Synced: 2023-10-20T21:54:48.246Z (over 1 year ago)
- Topics: matrix-multiplication, mpi, openmp, parallel-computing
- Language: C++
- Homepage:
- Size: 22.5 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 StandardThis 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.