| 429 | } |
| 430 | |
| 431 | tensorflow::Status Export(const Model& model, string* output_file_contents, |
| 432 | const ExportParams& params) { |
| 433 | const auto ops_by_type = BuildOperatorByTypeMap(params.enable_select_tf_ops); |
| 434 | return Export(model, output_file_contents, params, ops_by_type); |
| 435 | } |
| 436 | |
| 437 | void ParseControlFlowErrors(std::set<string>* custom_ops, |
| 438 | std::vector<string>* error_msgs) { |
nothing calls this directly
no test coverage detected