Skip to content
Snippets Groups Projects
Commit 5879699d authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Experimentation showed that radix-sorting two bits at a time is better.

parent 94eb9a38
No related branches found
No related tags found
No related merge requests found
......@@ -339,7 +339,7 @@ class RadixSort(object):
on the compute device.
"""
def __init__(self, context, arguments, key_expr, sort_arg_names,
bits_at_a_time=3, index_dtype=np.int32, key_dtype=np.uint32,
bits_at_a_time=2, index_dtype=np.int32, key_dtype=np.uint32,
options=[]):
"""
:arg arguments: A string of comma-separated C argument declarations.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment