Not really a 2-argument but convenient to construct.
| 57 | |
| 58 | // Not really a 2-argument but convenient to construct. |
| 59 | NodeDef MakeNodeShapeN(const string& name, const string& arg1, |
| 60 | const string& arg2) { |
| 61 | // This opcode is multi-input but not commutative. |
| 62 | return MakeNode2Arg(name, "ShapeN", arg1, arg2); |
| 63 | } |
| 64 | |
| 65 | // Not really a 2-argument but convenient to construct. |
| 66 | NodeDef MakeNodeIdentityN(const string& name, const string& arg1, |
no test coverage detected