This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Iterative C program for merge sort, partly inspired | |
* by Geeks for geeks article on bottom up mergesort as | |
* well as using code from university slides on co-rank | |
* merges by Dr. Steven S. Lumetta, parallelized */ | |
// compile with "gcc -fopenmp -O3 iterative_mergesort_openmp.c -o iterative_mergesort_openmp -lm" | |
/* Uploaded this file as a gist instead of within a proper repo since | |
* the code within this file isn't quite up to par with coding standards | |
* of code normally uploaded to my github profile */ |