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

https://github.com/audulus/metalkernels

Useful kernels for parallel programming.
https://github.com/audulus/metalkernels

gpu ios macos metal objective-c swift

Last synced: about 1 month ago
JSON representation

Useful kernels for parallel programming.

Awesome Lists containing this project

README

        

# MetalKernels

Swift Package Manager (SPM) compatible

Useful kernels for parallel programming.

[`ScanKernel`](https://github.com/Halfspace-LLC/MetalKernels/blob/main/Sources/MetalKernels/include/ScanKernel.h) implements prefix sum for `uint32_t` values.

[`CompactKernel`](https://github.com/Halfspace-LLC/MetalKernels/blob/main/Sources/MetalKernels/include/CompactKernel.h) implements stream compaction for values of user-specified size.

[`RadixSortKernel`](https://github.com/Halfspace-LLC/MetalKernels/blob/main/Sources/MetalKernels/include/RadixSortKernel.h) implements radix sort for `uint32_t` values. (WIP. Not yet optimized.)