Skip to content

Latest commit

 

History

History
3 lines (2 loc) · 758 Bytes

README.md

File metadata and controls

3 lines (2 loc) · 758 Bytes

Batch-merge-sort-cuda-cpp

Implementation of batch merge sort algorithm, based on the article of O. Green et al., 2013. For simplification, we only consider the case of power of 2 arrays. We test different versions for comparaison : one version on CPU and two versions on GPU (with and without shared memory). For the last one, we use all the memory capacity for each block so for this one, we need to only consider arrays of size $n \leq 2^{12}$. In the file Batch-merge-sort.cu, we take a batch of vector and sort them on GPU ; in Batch-cpu-gpu.cu, we compare speed of CPU and GPU versions and finally in Comparaison-shared.cu, we compare speed of version with/without shared memory.