| 33 | } |
| 34 | |
| 35 | NodeDef MakeNode2Arg(const string& name, const string& opcode, |
| 36 | const string& arg1, const string& arg2) { |
| 37 | NodeDef n; |
| 38 | n.set_name(name); |
| 39 | n.set_op(opcode); |
| 40 | n.add_input(arg1); |
| 41 | n.add_input(arg2); |
| 42 | return n; |
| 43 | } |
| 44 | |
| 45 | NodeDef MakeNode4Arg(const string& name, const string& opcode, |
| 46 | const string& arg1, const string& arg2, const string& arg3, |
no test coverage detected