稀疏矩阵乘法程序openmp

发布于 2024-11-30 05:01:12 字数 66 浏览 2 评论 0 原文

我正在寻找任何使用 OpenMP API 进行稀疏矩阵向量或矩阵矩阵乘法的标准 C 程序。谁能告诉我是否有这样的程序。

I'm looking for any standard C program that uses OpenMP APIs for a sparse matrix-vector or matrix-matrix multiplications. Can anyone let me know if there are any such programs.

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

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

发布评论

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

评论(2

千寻… 2024-12-07 05:01:12

如果您不是在寻找开源库,您可以尝试查看 Intel MKL Sparse-BLAS 2 级和 3 级例程:

http://software.intel.com/sites/products/documentation/hpc/mkl/updates/10.3.5/mklman/index.htm

这些库应使用 OpenMP 进行多线程处理,如下所示如下页所述:

http://software.intel.com/en-us/articles/intel-math-kernel-library-intel-mkl-using-intel-mkl-with-threaded-applications/

If you are not looking for an open-source library, you can try to have a look at the Intel MKL Sparse-BLAS level 2 and level 3 routines:

http://software.intel.com/sites/products/documentation/hpc/mkl/updates/10.3.5/mklman/index.htm

These libraries should be multithreaded using OpenMP, as stated in the following page:

http://software.intel.com/en-us/articles/intel-math-kernel-library-intel-mkl-using-intel-mkl-with-threaded-applications/

翻了热茶 2024-12-07 05:01:12

我不明白您为什么要寻找第三方库来执行稀疏矩阵乘法。

看看这本很棒的书(并行计算简介):http://www.scribd.com/doc/60118054/72/The-matrix%E2%80%93vector-multiplication-with-OpenMP

I don't understand why you are looking for a 3rd party library to perform sparse matrix-matrix multiplications.

Have a look at this great Book (Introduction to Parallel Computing): http://www.scribd.com/doc/60118054/72/The-matrix%E2%80%93vector-multiplication-with-OpenMP

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