| 233 | } |
| 234 | |
| 235 | void onnx_parser::parse_undefined(module* mod, const std::string& name) |
| 236 | { |
| 237 | if(not contains(instructions, name)) |
| 238 | { |
| 239 | auto ins = mod->add_instruction(make_op("undefined")); |
| 240 | instructions[name] = ins; |
| 241 | } |
| 242 | } |
| 243 | |
| 244 | void onnx_parser::parse_from(std::istream& is, std::string name) |
| 245 | { |
no test coverage detected