| 459 | Algorithm.__init__(self, fallback_entries) |
| 460 | |
| 461 | class AlgorithmDeviceSegmentedReduce(Algorithm): |
| 462 | algorithm_name = "device_segmented_reduce" |
| 463 | config_selection_params = [ |
| 464 | SelectionType(name="key_type", is_optional=False, select_on_size_only=False)] |
| 465 | cpp_configuration_template_name = "segmented_reduce_config_template" |
| 466 | def __init__(self, fallback_entries): |
| 467 | Algorithm.__init__(self, fallback_entries) |
| 468 | |
| 469 | class AlgorithmDeviceScan(Algorithm): |
| 470 | algorithm_name = "device_scan" |
no test coverage detected