Ask Your Question
1

Multiplying sparse matrices

asked 6 years ago

PW gravatar image

updated 2 years ago

tmonteil gravatar image

Can Sage multiply sparse matrices? If so, does it require some special syntax? I've been trying to run the following code:

M = Matrix(QQ, 1000001, 1000001, {(3,2): 27, (2,98): 71})
M2 = M*M

and it hasn't been working. If M is being converted to a dense matrix for multiplication then of course I wouldn't expect this to run. But it shouldn't be hard to do as sparse matrices, right?

Preview: (hide)

2 Answers

Sort by » oldest newest most voted
1

answered 6 years ago

nbruin gravatar image

I think the relevant code is here: https://github.com/sagemath/sage/blob...

The algorithm does take into account the sparse nature, but it does have a triple-nested for-loop, enumerating all the indices. It may be that for moderate sparsity this is faster than just enumerating the non-zero entries, but especially for your example it's pretty clear a much more efficient implementation is possible.

Preview: (hide)
link
1

answered 6 years ago

tmonteil gravatar image

Thanks for reporting, this is now trac ticket 26532.

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 6 years ago

Seen: 450 times

Last updated: Oct 23 '18