| 737 | |
| 738 | |
| 739 | class AlgorithmDevicePartitionTwoWayFlag(Algorithm): |
| 740 | algorithm_name = "device_partition_two_way_flag" |
| 741 | cpp_configuration_template_name = "partition_two_way_flag_config_template" |
| 742 | config_selection_params = [ |
| 743 | SelectionType(name="data_type", is_optional=False, select_on_size_only=False) |
| 744 | ] |
| 745 | |
| 746 | def __init__(self, fallback_entries): |
| 747 | Algorithm.__init__(self, fallback_entries) |
| 748 | |
| 749 | |
| 750 | class AlgorithmDevicePartitionFlag(Algorithm): |
no test coverage detected