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.
- Host: GitHub
- URL: https://github.com/audulus/metalkernels
- Owner: audulus
- License: mit
- Created: 2021-08-06T18:35:09.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-03-05T20:24:45.000Z (3 months ago)
- Last Synced: 2025-04-15T13:58:05.424Z (about 1 month ago)
- Topics: gpu, ios, macos, metal, objective-c, swift
- Language: Objective-C++
- Homepage:
- Size: 66.4 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MetalKernels
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.)