Dot product of self and other. Refer to :func:`dask.array.tensordot` for full documentation. See Also -------- dask.array.dot : equivalent function
(self, other)
| 2189 | return self.blocks |
| 2190 | |
| 2191 | def dot(self, other): |
| 2192 | """Dot product of self and other. |
| 2193 | |
| 2194 | Refer to :func:`dask.array.tensordot` for full documentation. |
| 2195 | |
| 2196 | See Also |
| 2197 | -------- |
| 2198 | dask.array.dot : equivalent function |
| 2199 | """ |
| 2200 | from dask.array.routines import tensordot |
| 2201 | |
| 2202 | return tensordot(self, other, axes=((self.ndim - 1,), (other.ndim - 2,))) |
| 2203 | |
| 2204 | @property |
| 2205 | def A(self): |