intel mkl在分布式系统中的使用

发布于 2025-01-11 07:48:16 字数 82 浏览 0 评论 0原文

假设我有一个分布式系统,有36个节点,每个节点有36个核心,现在我使用intel的dgemm函数进行乘法,我想使用所有核心(36*36),我该怎么做?

Let's say I have a distributed system, which has 36 nodes and each node has 36 cores, now I am using intel's dgemm function for multiplication and I want to use all the cores(36*36), How can I do that?

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

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

发布评论

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

评论(1

旧人 2025-01-18 07:48:16

默认情况下,如果您在多核 CPU 上运行,Intel oneMKL 将使用所有可用核心。通过设置 MKL_VERBOSE=1,您可以看到告诉我们正在使用多少个核心的信息。
我们有一个选项 -qmkl=cluster 告诉编译器(intel 编译器)使用特定于集群的库和 oneMKL 中的顺序库进行链接。
请查看以下链接了解更多详情。
https://www.intel.com/content/www/us/en/develop/documentation/onemkl-linux-developer-guide/top/working-with-onemkl-cluster-software/examples-of-linking -for-clusters/examples-for-linking-ac-application.html

By default, Intel oneMKL uses all the available cores if you are running on multicore CPU. By setting MKL_VERBOSE=1 you can see the information which tells us how many cores are being utilized.
We have an option -qmkl=cluster that tells the compiler(intel compiler) to link using the cluster-specific libraries and the sequential libraries in oneMKL.
Please check the below link for more details.
https://www.intel.com/content/www/us/en/develop/documentation/onemkl-linux-developer-guide/top/working-with-onemkl-cluster-software/examples-of-linking-for-clusters/examples-for-linking-a-c-application.html

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