| 384 | } |
| 385 | |
| 386 | Node* Next(Graph* g, const string& name, Node* input) { |
| 387 | Node* ret; |
| 388 | TF_CHECK_OK( |
| 389 | NodeBuilder(name, "NextIteration").Input(input).Finalize(g, &ret)); |
| 390 | return ret; |
| 391 | } |
| 392 | |
| 393 | Node* LoopCond(Graph* g, Node* input) { |
| 394 | Node* ret; |
no test coverage detected