2
votes

I know that sparse-dense product is threaded according to the documentation:

https://eigen.tuxfamily.org/dox/TopicMultiThreading.html

What about dense-sparse?

1

1 Answers

2
votes

To be more precise, sparse-dense product is multithreaded only if the left-hand-side sparse matrix is row-major. Conversely, dense-sparse products is multithreaded if the right-hand-side sparse matrix is column-major.