Reputation: 13
I looked that Eigen can use with BLAS.
And BLIS is the BLAS-like dense linear algebra libraries.
Can Eigen link BLIS? How to do it?
THX
Upvotes: 0
Views: 644
Reputation: 29225
Simply link to the BLAS compatibility layer of BLIS using the instructions you referenced: http://eigen.tuxfamily.org/dox-devel/TopicUsingBlasLapack.html, that is compile your application with -DEIGEN_USE_BLAS -lblis
Upvotes: 1