| 635 | Algorithm.__init__(self, fallback_entries) |
| 636 | |
| 637 | class AlgorithmDeviceSelectUnique(Algorithm): |
| 638 | algorithm_name = "device_select_unique" |
| 639 | cpp_configuration_template_name = "select_unique_config_template" |
| 640 | config_selection_params = [ |
| 641 | SelectionType(name="data_type", is_optional=False, select_on_size_only=False)] |
| 642 | def __init__(self, fallback_entries): |
| 643 | Algorithm.__init__(self, fallback_entries) |
| 644 | |
| 645 | class AlgorithmDeviceSelectUniqueByKey(Algorithm): |
| 646 | algorithm_name = "device_select_unique_by_key" |
no test coverage detected