https://github.com/naps62/parallel-sort
Parallel sorting algorithm implementation in OpenMP and MPI
https://github.com/naps62/parallel-sort
Last synced: about 1 year ago
JSON representation
Parallel sorting algorithm implementation in OpenMP and MPI
- Host: GitHub
- URL: https://github.com/naps62/parallel-sort
- Owner: naps62
- License: mit
- Created: 2012-04-26T23:17:03.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2020-04-05T16:17:35.000Z (over 6 years ago)
- Last Synced: 2025-03-31T02:21:56.148Z (over 1 year ago)
- Language: C++
- Size: 995 KB
- Stars: 18
- Watchers: 5
- Forks: 7
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Parallel Sorting
================
Parallel sorting algorithm implementation in OpenMP and MPI
Update: Now adding TBB version
# References
1. [Load Balanced Parallel Radix Sort](http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.79.4515&rep=rep1&type=pdf)
# Some other links
1. [Parallel Mergesort](http://www.mcs.anl.gov/~itf/dbpp/text/node127.html)
2. [Parallel Quicksort using MPI & Performance Analysis](http://www.codeproject.com/Articles/42311/Parallel-Quicksort-using-MPI-Performance-Analysis)
3. [[PDF] Parallel Quicksort Implementation using MPI and PThreads](http://www.winlab.rutgers.edu/~pkataria/pdc.pdf)
4. [Some Chinese bullshit about sorting](http://www.hackchina.com/en/cont/101283)
5. [C++ & MPI Parallel Quick Sort](http://berenger.eu/blog/2011/07/18/cmpi-parallel-quick-sort-multi-procs/)
6. [[PDF] A User's Experience with Parallel Sorting and OpenMP](http://www.plm.eecs.uni-kassel.de/plm/fileadmin/pm/publications/suess/sortOpenMP.pdf)