| 273 | } |
| 274 | |
| 275 | Operator* GetOpWithInput(const Model& model, const string& array_name) { |
| 276 | auto it = FindOpWithInput(model, array_name); |
| 277 | return it == model.operators.end() ? nullptr : it->get(); |
| 278 | } |
| 279 | |
| 280 | Operator* GetFirstOpWithInput(const Model& model, const string& array_name) { |
| 281 | auto it = FindOpWithInput(model, array_name); |
no test coverage detected