(size)
| 694 | |
| 695 | # Prepare dynamic conditional copying of state & output |
| 696 | def _create_zero_arrays(size): |
| 697 | size = _concat(batch_size, size) |
| 698 | return array_ops.zeros( |
| 699 | array_ops.stack(size), _infer_state_dtype(dtype, state)) |
| 700 | |
| 701 | flat_zero_output = tuple(_create_zero_arrays(output) |
| 702 | for output in flat_output_size) |
no test coverage detected