| 34 | tensorflow::Status TransformWithStatus(const TocoFlags& toco_flags, |
| 35 | Model* model); |
| 36 | inline void Transform(const TocoFlags& toco_flags, Model* model) { |
| 37 | auto s = TransformWithStatus(toco_flags, model); |
| 38 | CHECK(s.ok()) << s.error_message(); |
| 39 | } |
| 40 | |
| 41 | // Exports the Model, which must be of the 'lowered' form returned by |
| 42 | // Transform, to a file of the format given by |
no test coverage detected