()
| 427 | |
| 428 | |
| 429 | def _get_ready_op(): |
| 430 | ready_op = _get_first_op_from_collection(ops.GraphKeys.READY_OP) |
| 431 | if ready_op is None: |
| 432 | ready_op = variables.report_uninitialized_variables() |
| 433 | ops.add_to_collection(ops.GraphKeys.READY_OP, ready_op) |
| 434 | return ready_op |
| 435 | |
| 436 | |
| 437 | def _get_local_init_op(): |
no test coverage detected