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

Method dot

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

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