Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual C++ 2010 and Lapack, Blas libraries

I want to use Blas and Lapack libraries to use some rutines, however I do not know how to use them in Visual C++ 2010.

How to use them in this context?

like image 848
edgarmtze Avatar asked Feb 24 '23 11:02

edgarmtze


2 Answers

Though I haven't used it, it appears that LAPACK has a C++ dll interface. See this site - scroll down to the section titled "Part 2: Using LAPACK subroutines in a Visual (Studio) C/C++ Project".

There are pre-built Windows binaries available.

If I understand correctly, a reference version of the BLAS is included in LAPACK.

like image 194
jwd Avatar answered Mar 11 '23 10:03

jwd


If you're like me and have stopped using VS2010 and instead recently upgraded to Visual Studio 2013: here's a link to the BLAS and LAPACK dlls built for this platform. Currently only available for 64 bit though. https://bitbucket.org/aperezrathke/vs-lapack

like image 24
aprstar Avatar answered Mar 11 '23 11:03

aprstar