| 156 | } |
| 157 | |
| 158 | tf_parser::tf_parser() |
| 159 | { |
| 160 | // Add all registered op parsers |
| 161 | for(auto&& name : get_op_parsers()) |
| 162 | ops.emplace(name, get_op_parser(name)); |
| 163 | } |
| 164 | |
| 165 | static std::string get_name(const tensorflow::NodeDef& node) { return node.name(); } |
| 166 |
nothing calls this directly
no test coverage detected