| 535 | |
| 536 | |
| 537 | class AlgorithmDeviceHistogram(Algorithm): |
| 538 | algorithm_name = "device_histogram" |
| 539 | cpp_configuration_template_name = "histogram_config_template" |
| 540 | config_selection_params = [ |
| 541 | SelectionType(name="value_type", is_optional=False, select_on_size_only=False), |
| 542 | SelectionConst(name="channels"), |
| 543 | SelectionConst(name="active_channels"), |
| 544 | ] |
| 545 | |
| 546 | def __init__(self, fallback_entries): |
| 547 | Algorithm.__init__(self, fallback_entries) |
| 548 | |
| 549 | |
| 550 | class AlgorithmDeviceMergeSortBlockSort(Algorithm): |
no test coverage detected