| 4364 | } |
| 4365 | |
| 4366 | StatusOr<FrontendAttributes> ParseFrontendAttributes(absl::string_view str) { |
| 4367 | HloParserImpl parser(str); |
| 4368 | return parser.ParseFrontendAttributesOnly(); |
| 4369 | } |
| 4370 | |
| 4371 | StatusOr<std::vector<bool>> ParseParameterReplication(absl::string_view str) { |
| 4372 | HloParserImpl parser(str); |
no test coverage detected