无法链接英特尔 MKL

发布于 2024-11-14 18:35:55 字数 425 浏览 3 评论 0原文

我无法正确链接我的程序。我使用以下命令行,但出现错误。

g++ -I/home/blah/intel/composerxe/mkl/include dotProduct.cpp /home/blah/intel/composerxe/mkl/lib/intel64/libmkl_core.a

输出是这样的:

/tmp/ccvw6w13.o: In function `main':
dotProduct.cpp:(.text+0x108): undefined reference to `cblas_sdot'
collect2: ld returned 1 exit status

我还尝试运行一个脚本,尝试对所有 .a 文件进行一一链接,但它们都失败了。任何人都可以建议一个解决方案。 谢谢。

I'm unable to link my program correctly. I use the following command line, but get an error.

g++ -I/home/blah/intel/composerxe/mkl/include dotProduct.cpp /home/blah/intel/composerxe/mkl/lib/intel64/libmkl_core.a

The output is this:

/tmp/ccvw6w13.o: In function `main':
dotProduct.cpp:(.text+0x108): undefined reference to `cblas_sdot'
collect2: ld returned 1 exit status

I also tried running a script that tries to link one by one against all .a files, but they all fail. Can anybody please suggest a solution.
Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

扛起拖把扫天下 2024-11-21 18:35:55

以下是来自英特尔的知识库文章:

http://software.intel.com/en-us/articles/intel-math-kernel-library-intel-mkl-for-linux-linking-applications-with-intel-mkl-version- 100/

顺便说一句,如果您可以使用 Intel 编译器而不是 gcc,则此方法有效(至少对我来说有效):

icpc files -mkl

注意前面没有l,只是-mkl。

Here's a KB article from Intel:

http://software.intel.com/en-us/articles/intel-math-kernel-library-intel-mkl-for-linux-linking-applications-with-intel-mkl-version-100/

On a side note, if you can use Intel compiler instead of gcc, this works (at least it does for me):

icpc files -mkl

Notice there's no l in front, it's just -mkl.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文