(pred)
| 347 | summary_ops.scalar('scalar', 2.0) |
| 348 | return constant_op.constant(False) |
| 349 | def cond(pred): |
| 350 | return pred |
| 351 | pred = array_ops.placeholder(dtypes.bool) |
| 352 | x = control_flow_ops.while_loop(cond, body, [pred]) |
| 353 | x.eval(feed_dict={pred: True}) |
no outgoing calls
no test coverage detected