An open API service indexing awesome lists of open source software.

https://github.com/quabug/parallel-counting-sort

algorithm of parallel counting sort for Unity3D
https://github.com/quabug/parallel-counting-sort

compute-shader dots parallel unity3d

Last synced: about 2 months ago
JSON representation

algorithm of parallel counting sort for Unity3D

Awesome Lists containing this project

README

          

# parallel counting sort for Unity3D
include CPU and GPU versions of parallel counting sort algorithm[^1] based on parallel prefix sum implementations[^2].
- [![openupm](https://img.shields.io/npm/v/com.quabug.parallel-counting-sort.cpu?label=openupm&registry_uri=https://package.openupm.com)](https://openupm.com/packages/com.quabug.parallel-counting-sort.cpu/) [CPU Version](Packages/com.quabug.parallel-counting-sort.cpu): Unity3D DOTS ([Example](Assets/Sample/CPU.cs))
- [![openupm](https://img.shields.io/npm/v/com.quabug.parallel-counting-sort.gpu?label=openupm&registry_uri=https://package.openupm.com)](https://openupm.com/packages/com.quabug.parallel-counting-sort.gpu/) [GPU Version](Packages/com.quabug.parallel-counting-sort.gpu): Unity3D Compute Shader ([Example](Assets/Sample/GPU.cs))

[^1]: https://en.wikipedia.org/wiki/Counting_sort
[^2]: https://github.com/quabug/parallel-prefix-sum