| 495 | Algorithm.__init__(self, fallback_entries) |
| 496 | |
| 497 | class AlgorithmDeviceUpperBound(Algorithm): |
| 498 | algorithm_name = "device_upper_bound" |
| 499 | cpp_configuration_template_name = "upper_bound_config_template" |
| 500 | config_selection_params = [ |
| 501 | SelectionType(name="value_type", is_optional=False, select_on_size_only=False), |
| 502 | SelectionType(name="output_type", is_optional=False, select_on_size_only=True)] |
| 503 | def __init__(self, fallback_entries): |
| 504 | Algorithm.__init__(self, fallback_entries) |
| 505 | |
| 506 | class AlgorithmDeviceLowerBound(Algorithm): |
| 507 | algorithm_name = "device_lower_bound" |
no test coverage detected