Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 755 Bytes

File metadata and controls

17 lines (12 loc) · 755 Bytes

Parallel Matrix Multiplication using MPI with C++.

A simple parallel matrix multiplication code using MPI.

Details

Matrices are allocated dynamically and are contiguous in memory. Matrix sizes don't need to be divisible by the number or processors; the first worker(slave) processor takes care of this.

More information

How to compile and run MS MPI programs (using MSVC): here.

About contiguous, dynamic multidimensional array allocation in C++: here

This is my first GitHub commit and was made for learning purposes.