Not really a 2-argument but convenient to construct.
| 47 | |
| 48 | // Not really a 2-argument but convenient to construct. |
| 49 | inline NodeDef MakeNodeAddN(const string& name, const string& arg1, |
| 50 | const string& arg2) { |
| 51 | return MakeNode2Arg(name, "AddN", arg1, arg2); |
| 52 | } |
| 53 | |
| 54 | inline NodeDef MakeNodeSub(const string& name, const string& arg1, |
| 55 | const string& arg2) { |
no test coverage detected