(it, cost)
| 209 | return it < 5 |
| 210 | |
| 211 | def body(it, cost): |
| 212 | embedding = embedding_ops.embedding_lookup(embedding_matrix + 0.0, [0]) |
| 213 | cost += math_ops.reduce_sum(embedding) |
| 214 | return it + 1, cost |
| 215 | |
| 216 | _, cost = control_flow_ops.while_loop( |
| 217 | cond, body, [constant_op.constant(0), |
nothing calls this directly
no test coverage detected