tacco.utils.gemmT¶
- gemmT(A, B, parallel=True, sparse_result=False)[source]¶
Perform a matrix-matrix multiplication A @ B.T for arbitrary sparseness of A and B in parallel. Uses sparse_dot_mkl if available.
- Parameters:
- Returns:
Depending on sparse_result returns either a
ndarray
or a scipy sparse matrix containing the result.