| 432 | |
| 433 | |
| 434 | class AlgorithmDeviceRadixSortBlockSort(Algorithm): |
| 435 | algorithm_name = "device_radix_sort_block_sort" |
| 436 | cpp_configuration_template_name = "radixsort_block_sort_config_template" |
| 437 | config_selection_params = [ |
| 438 | SelectionType(name="key_type", is_optional=False, select_on_size_only=False), |
| 439 | SelectionType(name="value_type", is_optional=True, select_on_size_only=True)] |
| 440 | def __init__(self, fallback_entries): |
| 441 | Algorithm.__init__(self, fallback_entries, block_sort_config_get_best) |
| 442 | |
| 443 | |
| 444 | class AlgorithmDeviceRadixSortOnesweep(Algorithm): |
no test coverage detected