| 486 | Algorithm.__init__(self, fallback_entries) |
| 487 | |
| 488 | class AlgorithmDeviceBinarySearch(Algorithm): |
| 489 | algorithm_name = "device_binary_search" |
| 490 | cpp_configuration_template_name = "binary_search_config_template" |
| 491 | config_selection_params = [ |
| 492 | SelectionType(name="value_type", is_optional=False, select_on_size_only=False), |
| 493 | SelectionType(name="output_type", is_optional=False, select_on_size_only=True)] |
| 494 | def __init__(self, fallback_entries): |
| 495 | Algorithm.__init__(self, fallback_entries) |
| 496 | |
| 497 | class AlgorithmDeviceUpperBound(Algorithm): |
| 498 | algorithm_name = "device_upper_bound" |
no test coverage detected