Skip to content

Commit d3c034e

Browse files
authored
Fix typo (#136)
1 parent 24b9349 commit d3c034e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

content/wiki/gpu/sorting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The LSD sort algorithm with the strongest claims to being fastest is [Onesweep].
2828
This has an authoritative implementation in [CUB], for which a good starting point is [agent_radix_sort_onesweep].
2929

3030
A very popular sorting algorithm in gamedev circles is [FidelityFX sort] from AMD, for which the original source is HLSL.
31-
This is has enough similarity to Onesweep that it is worth considering the differences.
31+
It has enough similarity to Onesweep that it is worth considering the differences.
3232

3333
* Onesweep uses a single pass scan for the digit histograms, while FidelityFX uses a traditional multi-dispatch tree reduction approach.
3434
* Onesweep uses 8 bit digits (so 4 passes for a 32 bit key), while FidelityFX uses 4.

0 commit comments

Comments
 (0)