| 726 | |
| 727 | |
| 728 | class AlgorithmDevicePartitionTwoWayPredicate(Algorithm): |
| 729 | algorithm_name = "device_partition_two_way_predicate" |
| 730 | cpp_configuration_template_name = "partition_two_way_predicate_config_template" |
| 731 | config_selection_params = [ |
| 732 | SelectionType(name="data_type", is_optional=False, select_on_size_only=False) |
| 733 | ] |
| 734 | |
| 735 | def __init__(self, fallback_entries): |
| 736 | Algorithm.__init__(self, fallback_entries) |
| 737 | |
| 738 | |
| 739 | class AlgorithmDevicePartitionTwoWayFlag(Algorithm): |
no test coverage detected