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