| 790 | } |
| 791 | |
| 792 | std::pair<bool, MLGOHeuristics> parse_mlgo(std::istream &in) |
| 793 | { |
| 794 | auto tokens = TokenStream(in); |
| 795 | bool valid = true; |
| 796 | auto h = mlgo(tokens, valid); |
| 797 | return std::make_pair(std::move(valid), std::move(h)); |
| 798 | } |
| 799 | } // namespace parser |
| 800 | } // namespace mlgo |
| 801 | } // namespace arm_compute |
no test coverage detected