is eigen dense-sparse matrix product threaded?

南笙酒味 提交于 2019-12-24 00:54:40

问题


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

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

What about dense-sparse?


回答1:


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.



来源:https://stackoverflow.com/questions/49959657/is-eigen-dense-sparse-matrix-product-threaded

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!