| 692 | |
| 693 | |
| 694 | class AlgorithmDeviceAdjacentFind(Algorithm): |
| 695 | algorithm_name = "device_adjacent_find" |
| 696 | cpp_configuration_template_name = "adjacent_find_config_template" |
| 697 | config_selection_params = [ |
| 698 | SelectionType(name="input_type", is_optional=False, select_on_size_only=False) |
| 699 | ] |
| 700 | |
| 701 | def __init__(self, fallback_entries): |
| 702 | Algorithm.__init__(self, fallback_entries) |
| 703 | |
| 704 | |
| 705 | class AlgorithmDeviceSegmentedRadixSort(Algorithm): |
no test coverage detected