| 309 | } |
| 310 | |
| 311 | Node* Switch(Graph* g, Node* in0, Node* in1) { |
| 312 | Node* ret; |
| 313 | TF_CHECK_OK(NodeBuilder(g->NewName("n"), "Switch") |
| 314 | .Input(in0) |
| 315 | .Input(in1) |
| 316 | .Finalize(g, &ret)); |
| 317 | return ret; |
| 318 | } |
| 319 | |
| 320 | Node* Enter(Graph* g, Node* input, const string& frame_name) { |
| 321 | Node* ret; |
no test coverage detected