Introduction to GPU Radix Sort
Advanced Micro Devices, Inc.
Bonus in book "Heterogeneous Computing with OpenCL", published 2011 by Morgan Kaufman
@article{harada2011introduction,
title={Introduction to GPU Radix Sort},
author={Harada, T. and Howes, L.},
booktitle={Heterogeneous Computing with OpenCL},
year={2011}
}
Radix sort is one of the fastest sorting algorithms. It is fast especially for a large problem size. Radix sort is not a comparison sort but a counting sort. When we sort n bit keys, 2^n counters are prepared for each number.
October 13, 2011 by hgpu