(x)
| 257 | init_value = constant_op.constant(1) |
| 258 | cond = lambda i: math_ops.less(i, 3) |
| 259 | def body(x): |
| 260 | with ops.control_dependencies([m(x)]): |
| 261 | return math_ops.add(x, 1) |
| 262 | accumulate = control_flow_ops.while_loop(cond, body, [init_value]) |
| 263 | |
| 264 | result = m.result() |
nothing calls this directly
no test coverage detected