`TensorShape` of this `LinearOperator`. If this operator acts like the batch matrix `A` with `A.shape = [B1,...,Bb, M, N]`, then this returns `TensorShape([B1,...,Bb, M, N])`, equivalent to `A.shape`. Returns: `TensorShape`, statically determined, may be undefined.
(self)
| 267 | |
| 268 | @property |
| 269 | def shape(self): |
| 270 | """`TensorShape` of this `LinearOperator`. |
| 271 | |
| 272 | If this operator acts like the batch matrix `A` with |
| 273 | `A.shape = [B1,...,Bb, M, N]`, then this returns |
| 274 | `TensorShape([B1,...,Bb, M, N])`, equivalent to `A.shape`. |
| 275 | |
| 276 | Returns: |
| 277 | `TensorShape`, statically determined, may be undefined. |
| 278 | """ |
| 279 | return self._shape() |
| 280 | |
| 281 | @abc.abstractmethod |
| 282 | def _shape_tensor(self): |
no test coverage detected