MCPcopy Index your code
hub / github.com/dask/dask / dot

Method dot

dask/array/core.py:2185–2196  ·  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

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

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