src.sparse_torch.csx_matrix.dot¶
- src.sparse_torch.csx_matrix.dot(t1: src.sparse_torch.csx_matrix.CSRMatrix3d, t2: src.sparse_torch.csx_matrix.CSCMatrix3d, dense_output=False)[source]¶
Compute the dot product of one CSR/dense matrix and one CSC matrix. The result will be returned in a new CSR or dense matrix. Note that only a few combinations of types are implemented. :param t1: fist input matrix :param t2: second input matrix :param dense_output: output matrix in dense format :return: dot result in new csr matrix (dense=False) or
dot result in dense matrix (dense=True)