| 861 | |
| 862 | |
| 863 | class AlgorithmDeviceRunLengthEncode(Algorithm): |
| 864 | algorithm_name = "device_run_length_encode" |
| 865 | cpp_configuration_template_name = "run_length_encode_config_template" |
| 866 | config_selection_params = [ |
| 867 | SelectionType(name="key_type", is_optional=False, select_on_size_only=False) |
| 868 | ] |
| 869 | |
| 870 | def __init__(self, fallback_entries): |
| 871 | Algorithm.__init__(self, fallback_entries) |
| 872 | |
| 873 | |
| 874 | class AlgorithmDeviceRunLengthEncodeNonTrivial(Algorithm): |
no test coverage detected