Skip to content

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.

Notifications You must be signed in to change notification settings

mrigankdoshy/matrix-multiplication

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

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.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages