tree: 42da26f3849f1412a7d78a602ea9b7d772ed9acf [path history] [tgz]
  1. gen/
  2. images/
  3. vk/
  4. README.md
src/graphics/lib/compute/hotsort/README.md

HotSort

HotSort is a high-performance GPU-accelerated integer sorting library for Vulkan.

HotSort's advantages include:

  • Ultra-fast sorting of 32‑bit or 64‑bit keys
  • Reaches peak throughput on small arrays
  • In-place sorting for low-memory environments
  • Strong scaling with number of multiprocessors
  • Low memory transactions relative to array size
  • A concurrency-friendly dense kernel grid
  • Support for GPU post-processing of sorted results

HotSort is typically significantly faster than other GPU-accelerated implementations when sorting arrays of smaller than 500K-2M keys.

Benchmarks

Throughput

Here is a throughput plot for HotSort sorting 32-bit and 64-bit keys on a 640-core Quadro M1200:

HotSort throughput on Vulkan (Mesa) on a 704-core AMD V1807B APU:

HotSort throughput on Vulkan on a 192-core Intel HD 630:

Execution time

Note that these sorting rates translate to sub-millisecond to multi-millisecond execution times on small GPUs:

Usage

This repository contains the HotSort API, a utility for generating HotSort's compute shaders, and recipes for a number of target architectures.

A simple benchmarking example for HotSort can be found here: hs_bench_vk.

Note that HotSort is a comparison sort and supports in-place sorting.

Not all targeted architectures have been tested.

Vulkan

The following architectures are supported:

VendorArchitecture32‑bit64‑bit32+32‑bitNotes
NVIDIAsm_35,sm_37,sm_50,sm_52,sm_60,sm_61,sm_70:white_check_mark::white_check_mark::x:Not tested on all architectures
NVIDIAsm_30,sm_32,sm_53,sm_62:x::x::x:Need to generate properly shaped kernels
AMDGCN:white_check_mark::white_check_mark::x:Tested on Linux MESA 18.2
IntelGEN8+:white_check_mark::white_check_mark::x:Good but the assumed best-shaped kernels aren't being used due to a compiler issue
IntelAPL/GLK using a 2x9 or 1x12 thread pool:x::x::x:Need to generate properly shaped kernels

Add an arch-specific HotSort algorithm (aka “target”) to your project by including a .c source and .h header file:

Key SizeSourceHeader
32‑bithotsort/vk/<vendor>/<arch>/u32/hs_<vendor>_<arch>_u32.chotsort/vk/<vendor>/<arch>/u32/hs_target.h
64‑bithotsort/vk/<vendor>/<arch>/u64/hs_<vendor>_<arch>_u64.chotsort/vk/<vendor>/<arch>/u64/hs_target.h

To sort count keys on Vulkan:

#include "hotsort/vk/intel/gen8/u32/hs_target.h"

...

// create the Vulkan HotSort target
struct hs_vk * hs = hs_vk_create(<address of target>,...);

// allocate a descriptor set from a pool
VkDescriptorSet hs_ds = hs_vk_ds_alloc(hs,descriptor_pool);

...

// command buffer begin

...

// bind buffer(s) to a command buffer
hs_vk_ds_bind(hs,hs_ds,cb,vin,vout); // or (...,vin,VK_NULL_HANDLE) for in-place sorting

// see how much padding may be required
hs_vk_pad(hs,count,&count_padded_in,&count_padded_out);

// append compute shaders to command buffer
hs_vk_sort(hs,cb,...,vin,...,vout,...); // hs_vk_sort() and hs_vk_ds_bind() must have matching vin/vout args

...

// command buffer end and queue submit

...

// release the Vulkan HotSort target
hs_vk_release(hs,...);

The hs_vk.h header file describes these functions in greater detail.

Background

The HotSort sorting algorithm was created in 2012 and generalized in 2015 to support GPUs that benefit from non-power-of-two workgroups.

The objective of HotSort is to achieve high throughput as early as possible on small GPUs when sorting modestly-sized arrays ― 1,000s to 100s of thousands of 64‑bit keys.

HotSort uses both well-known and obscure properties of bitonic sequences to create a novel mapping of keys onto data-parallel devices like GPUs.

Overview

The overall flow of the HotSort algorithm is below. Kernel launches are in italics.

  1. For each workgroup of slabs:
    1. For each slab in the workgroup:
      1. Slab Load
      2. Slab Sort
    2. Until all slabs in the workgroup are merged:
      1. Multi-Slab Flip Merge
    3. Slab Store
  2. Until all slabs are merged:
    1. Streaming Flip Merge
    2. If necessary, Streaming Half Merge
    3. If necessary, Multi-Slab Half Merge
    4. If necessary, Slab Half Merge
    5. If complete:
      1. Optionally, Report Key Changes
      2. Optionally, Slab Transpose & Store
    6. Otherwise: Slab Store
  3. Done

Sorting

The algorithm begins with a very dense per-multiprocessor block sorting algorithm that loads a “slab” of keys into a subgroup's registers, sorts the slabs, merges all slabs in the workgroup, and stores the slabs back to global memory.

In the slab sorting phase, each lane of a subgroup executes a bitonic sorting network on its registers and successively merges lanes until the slab of registers is sorted in serpentine order.

Merging

HotSort has several different merging strategies.

The merging kernels leverage the multiprocessor's register file by loading, merging and storing a large number of strided slab rows without using local memory.

The merging kernels exploit the bitonic sequence property that interleaved subsequences of a bitonic sequence are also bitonic sequences. This property also holds for non-power-of-two sequences.

As an example, the Streaming Flip Merge kernel is illustrated below:

Future Enhancements

Hybrid improved merging

HotSort's initial sorting and merging phases are performed on bitonic sequences. Because of this, throughput decreases as the problem size increases.

A hybrid algorithm that combined HotSort‘s block sorter and several rounds of merging with a state-of-the-art GPU merging algorithm would probably improve the algorithm’s performance on larger arrays.

Reenable support for devices lacking shuffle functions

The original version of HotSort ran on pre-Kepler GPUs without intra-warp/inter-lane shuffling ― reenable this capability.