parallel-sorting
There are 26 repositories under parallel-sorting topic.
koss-null/FuncFrog
Stream api (kind of) implementation for go, other useful functions and packages to use go in a functional way
b0nes164/ShaderOneSweep
A compute shader implementation of the OneSweep sorting algorithm.
alugowski/poolSTL
Light and self-contained implementation of C++17 parallel algorithms.
rbga/CUDA-Merge-and-Bitonic-Sort
Efficient implementations of Merge Sort and Bitonic Sort algorithms using CUDA for GPU parallel processing, resulting in accelerated sorting of large arrays. Includes both CPU and GPU versions, along with a performance comparison.
GabTux/PPQSort
PPQSort - Parallel Pattern Quicksort.
kdgyun/Sorting_Algorithm
implementation for various sorting algorithm in java
b0nes164/OneSweep
A simple library-less CUDA implementation of the OneSweep sorting algorithm.
YottaLee/ParallelSorting
Parallel Computing for Sorting, including parallel quick sort, parallel merge sort, parallel rank sort and their corresponding sequential sorting.
Shikha-code36/cuda-hft-fundamentals
CUDA implementation of HFT components showcasing GPU acceleration for financial applications. Features limit order book with matching engine and parallel sorting for market data. Demonstrates significant performance gains over CPU implementations.
ArmanDavoodi/Parallel-Sorting
Parallel and sequential implementations of different sorting algorithms in C++ using OpenMP and CUDA
pavlosdais/Operating-Systems
Programming assignments in Operating Systems
rhaeguard/psrs
Two different implementations of the Parallel Sorting by Regular Sampling
Bader-Research/PSRS
PSRS: Parallel Sorting using Regular Sampling
prateekroy/Parallel-Programming
Parallel Programming with CILK, OPENMPI, CUDA
cermi29/ParallelStableSort
A parallel stable sort using arbitrary extra memory
mehmetalikenger/Merge-and-Quick-Sort-using-Multi-threading
This program uses merge and quick sort to sort a txt file that contains letters and words. The selected algorithm can use parallel sorting if the number of given threads is more than one. If the number of threads is not enough to sort to all words/letters, the program uses the sequential version of the selected algorithm.
rharri/array-sort-bench
Micro-benchmark comparing parallelSort and Sort.
StardustDL-Labs/NJU-PC-Lab
This is the source codes of my programming assignment (Parallel Sorting) of PC2019 (Parallel Computing) courses at NJU.
Bader-Research/ImageU
ImageU: Parallel Combinatorial Algorithms
Bader-Research/PSort
PSort: Parallel Sorting using Sampling with Randomized and Deterministic Approaches
gvnberaldi/ParallelSortingAlgorithms
Efficient parallel sorting algorithms implemented in C++ with MPI, featuring Bitonic Sort, Odd-Even Sort, and Quick Sort. This project highlights task distribution, process dependencies, and performance analysis.
imgovindjee/Parallel-Algorithm
Parallel Computing
Nalaka1693/pthread_merge_sort
Parallelized merge sort using C pthreads.
namralkeeg/SharpCollectionsLib
#CollectionsLib is a library of Collections (data structures) written entirely in c#
Samarium150/parallel_sorting_by_regular_sampling
A C++ implementation of the paper, On the Versatility of Parallel Sorting by Regular Sampling