You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following is a parallel version of SOR Algorithm for solving Laplace Approximation. It uses standard MPI functions to accomplish the task. This program is also a part of my college assignment in multiprocessor systems course.
In this Project, I implemented Major Functions From Scratch. The MPI standard defines the syntax and semantics of library routines that are useful to a wide range of users writing portable message-passing programs in C, C++
A C-MPI parallel program that receives on an array X as input, returns its average, its variance and a new array based on: d[i]=((X[i]-min(X))/(max(X)-min(X))*100.
The following program is a parallel matrix multiplication algorithm that employs 2D partitioning of the work between the processing nodes. It uses standard MPI functions to accomplish the task. This program is a part of my college assignment in multiprocessor systems course.