| 223 | } |
| 224 | |
| 225 | Node* Unary(Graph* g, const string& func, Node* input, int index) { |
| 226 | Node* ret; |
| 227 | TF_CHECK_OK(NodeBuilder(g->NewName("n"), func, g->op_registry()) |
| 228 | .Input(input, index) |
| 229 | .Finalize(g, &ret)); |
| 230 | return ret; |
| 231 | } |
| 232 | |
| 233 | Node* Binary(Graph* g, const string& func, Node* in0, Node* in1) { |
| 234 | Node* ret; |
no test coverage detected