Skip to content

Latest commit

 

History

History
14 lines (8 loc) · 337 Bytes

File metadata and controls

14 lines (8 loc) · 337 Bytes

parallel_sorting

Implementation of merge sort and sample sort with MPI.

For merge sort, merges arrays on a single process so algorithm has same complexity as serial merge sort algorithm.

To build use: $ make

To run use:

$ mpirun -n np main.out N

Where np is number of processors to use and N is number of elements to sort.