| 781 | |
| 782 | |
| 783 | class AlgorithmDeviceSelectFlag(Algorithm): |
| 784 | algorithm_name = "device_select_flag" |
| 785 | cpp_configuration_template_name = "select_flag_config_template" |
| 786 | config_selection_params = [ |
| 787 | SelectionType(name="data_type", is_optional=False, select_on_size_only=False) |
| 788 | ] |
| 789 | |
| 790 | def __init__(self, fallback_entries): |
| 791 | Algorithm.__init__(self, fallback_entries) |
| 792 | |
| 793 | |
| 794 | class AlgorithmDeviceSelectPredicate(Algorithm): |
no test coverage detected