MCPcopy Create free account
hub / github.com/dask/dask / dot

Method dot

dask/array/core.py:2191–2202  ·  view source on GitHub ↗

Dot product of self and other. Refer to :func:`dask.array.tensordot` for full documentation. See Also -------- dask.array.dot : equivalent function

(self, other)

Source from the content-addressed store, hash-verified

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):

Callers 15

test_complex_orderingFunction · 0.45
test_array_bag_delayedFunction · 0.45
sfqrFunction · 0.45
compression_matrixFunction · 0.45
svd_compressedFunction · 0.45
solveFunction · 0.45
lstsqFunction · 0.45
_tensordotFunction · 0.45
test_tsqrFunction · 0.45
test_tsqr_uncertainFunction · 0.45
test_sfqrFunction · 0.45
_get_symmatFunction · 0.45

Calls 1

tensordotFunction · 0.90

Tested by 15

test_complex_orderingFunction · 0.36
test_array_bag_delayedFunction · 0.36
test_tsqrFunction · 0.36
test_tsqr_uncertainFunction · 0.36
test_sfqrFunction · 0.36
_get_symmatFunction · 0.36
test_chunked_dot_productFunction · 0.36
test_matmulFunction · 0.36
test_matmul_array_ufuncFunction · 0.36
test_dtype_complexFunction · 0.36
test_no_chunks_2dFunction · 0.36