We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24b9349 commit d3c034eCopy full SHA for d3c034e
1 file changed
content/wiki/gpu/sorting.md
@@ -28,7 +28,7 @@ The LSD sort algorithm with the strongest claims to being fastest is [Onesweep].
28
This has an authoritative implementation in [CUB], for which a good starting point is [agent_radix_sort_onesweep].
29
30
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.
+It has enough similarity to Onesweep that it is worth considering the differences.
32
33
* Onesweep uses a single pass scan for the digit histograms, while FidelityFX uses a traditional multi-dispatch tree reduction approach.
34
* Onesweep uses 8 bit digits (so 4 passes for a 32 bit key), while FidelityFX uses 4.
0 commit comments