| 634 | |
| 635 | |
| 636 | class AlgorithmDeviceBinarySearch(Algorithm): |
| 637 | algorithm_name = "device_binary_search" |
| 638 | cpp_configuration_template_name = "binary_search_config_template" |
| 639 | config_selection_params = [ |
| 640 | SelectionType(name="value_type", is_optional=False, select_on_size_only=False), |
| 641 | SelectionType(name="output_type", is_optional=False, select_on_size_only=True), |
| 642 | ] |
| 643 | |
| 644 | def __init__(self, fallback_entries): |
| 645 | Algorithm.__init__(self, fallback_entries) |
| 646 | |
| 647 | |
| 648 | class AlgorithmDeviceUpperBound(Algorithm): |
no test coverage detected