(i, x)
| 567 | return MidBody |
| 568 | |
| 569 | def OuterBody(i, x): |
| 570 | iterations = array_ops.size(p, name="iterations") |
| 571 | return (i + 1, x + control_flow_ops.while_loop( |
| 572 | lambda *_: True, |
| 573 | MidBodyBuilder(iterations), (0, x), |
| 574 | maximum_iterations=iterations, |
| 575 | name="mid")[1]) |
| 576 | |
| 577 | def CreateWhileLoop(): |
| 578 | with ops.device("/cpu:0"): |
nothing calls this directly
no test coverage detected