时间:2019-03-17 标签:c#visualstudio和lapack
有没有办法在C#
(Visual Studio 2008
)中调用存储过程
内的LAPACK例程?
如果可以的话,步骤是怎样的?
Is there a way to call LAPACK routines inside a stored procedure
in C#
(visual studio 2008
)?.
If so, How would be the steps?.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须将 LAPACK 编译为 .dll,然后从 C# 调用它。我不知道 SQL 如何适应这个问题,但我认为这是一个单独的问题。
详细请参见 http://icl.cs.utk.edu/lapack- for-windows/lapack/ 最后有关于如何编译源代码的说明。我为 BLAS 制作了一个静态库,为 LAPACK 制作了一个动态库。然后,根据您要使用的过程,您必须编写调用
.dll
的托管包装函数。You have to compile LAPACK into a .dll and then call it from C#. I don't know how SQL will fit in this, but I think that is a separate question.
In detail look at http://icl.cs.utk.edu/lapack-for-windows/lapack/ and in the end there are instructions on how to compile the sources. I make a static library for BLAS and a dynamic library for LAPACK. Then depending on which procedures you want to use, you will have to write managed wrapper functions that call the
.dll
.