See TensorArray.
(self)
| 496 | self._element_shape[0] = self.element_shape.merge_with(shape) |
| 497 | |
| 498 | def identity(self): |
| 499 | """See TensorArray.""" |
| 500 | flow = array_ops.identity(self._flow) |
| 501 | return build_ta_with_new_flow(self, flow) |
| 502 | |
| 503 | def grad(self, source, flow=None, name=None): |
| 504 | """Not supported.""" |
nothing calls this directly
no test coverage detected