LAPACK wrappers for C/C++

前端 未结 5 1325
醉酒成梦
醉酒成梦 2021-01-14 14:44

I would like to use Visual Studio 2008, programming in C++, but would also like to use LAPACK power, Is there any wrapper so I can use LAPACK in

5条回答
  •  终归单人心
    2021-01-14 15:23

    LAPACK provides its own C bindings since version 3.4.0.

    There are two binding options for each LAPACK function, either a low-level wrapper that just mimics the FORTRAN function call or a higher-level wrapper that takes care of all the workspace memory allocation for you.

    Another nice touch is that you can choose whether to use column-major or row-major ordering now.

提交回复
热议问题