| 770 | |
| 771 | |
| 772 | class AlgorithmDevicePartitionThreeWay(Algorithm): |
| 773 | algorithm_name = "device_partition_three_way" |
| 774 | cpp_configuration_template_name = "partition_three_way_config_template" |
| 775 | config_selection_params = [ |
| 776 | SelectionType(name="data_type", is_optional=False, select_on_size_only=False) |
| 777 | ] |
| 778 | |
| 779 | def __init__(self, fallback_entries): |
| 780 | Algorithm.__init__(self, fallback_entries) |
| 781 | |
| 782 | |
| 783 | class AlgorithmDeviceSelectFlag(Algorithm): |
no test coverage detected