(size)
| 792 | |
| 793 | # Prepare dynamic conditional copying of state & output |
| 794 | def _create_zero_arrays(size): |
| 795 | size = _concat(batch_size, size) |
| 796 | return array_ops.zeros( |
| 797 | array_ops.stack(size), _infer_state_dtype(dtype, state)) |
| 798 | |
| 799 | flat_zero_output = tuple( |
| 800 | _create_zero_arrays(output) for output in flat_output_size) |
no test coverage detected