| 669 | Algorithm.__init__(self, fallback_entries) |
| 670 | |
| 671 | class AlgorithmDeviceRunLengthEncode(Algorithm): |
| 672 | algorithm_name = 'device_run_length_encode' |
| 673 | cpp_configuration_template_name = 'run_length_encode_config_template' |
| 674 | config_selection_params = [SelectionType(name='key_type', is_optional=False, select_on_size_only=False)] |
| 675 | def __init__(self, fallback_entries): |
| 676 | Algorithm.__init__(self, fallback_entries) |
| 677 | |
| 678 | class AlgorithmDeviceRunLengthEncodeNonTrivial(Algorithm): |
| 679 | algorithm_name = 'device_run_length_encode_non_trivial' |
no test coverage detected