Skip to content

Instantly share code, notes, and snippets.

View tedliosu's full-sized avatar
💭
I may be slow to respond.

Ted Li tedliosu

💭
I may be slow to respond.
  • Ohio State University - Main Campus
View GitHub Profile
@tedliosu
tedliosu / iterative_mergesort_openmp.c
Last active October 7, 2024 06:12
OpenMP Parallel Mergesort Sample
/* 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 */