Parallel implementation of the determinant of the k-th power of a matrix
For the Parallel Processing class I implemented a program that calculates the |Xk| in parallel using various parallel formulations. You can find the source code and the documentation of the project here.
Determinant of a Matrix
For CS 566 I implemented an algorithm that runs on a cluster and find the determinant of a matrix. The algorithm distributes the matrix across the nodes of the cluster and divides the processing across the nodes. More info here.
MPI find_max Project
For the CS 566 class (Parallel Processing) I implemented the find_max algorithm for use on clusters. The program creates a random array of n numbers, distributes the array across all the nodes of the cluster and then finds the max. The program also calculates the processing time, communication time and overall time to find the…

