(name, element_shape, dtype)
| 813 | base_name = scope |
| 814 | |
| 815 | def _create_ta(name, element_shape, dtype): |
| 816 | return tensor_array_ops.TensorArray( |
| 817 | dtype=dtype, |
| 818 | size=time_steps, |
| 819 | element_shape=element_shape, |
| 820 | tensor_array_name=base_name + name) |
| 821 | |
| 822 | in_graph_mode = not context.executing_eagerly() |
| 823 | if in_graph_mode: |
no test coverage detected