TBB并发向量与openmp

发布于 2024-12-08 14:48:47 字数 50 浏览 0 评论 0原文

我们可以将TBB并发向量与openmp一起使用吗?

是否允许并发更新?

Can we use TBB concurrent_vector with openmp?

Will concurrent updates be allowed?

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

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

发布评论

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

评论(2

蝶舞 2024-12-15 14:48:47

是的,TBB 的并发数据结构是线程安全的,这意味着任何线程范例,例如 OpenMP、TBB、Cilk、PPL 等,都可以使用 TBB 的并发数据结构。这是因为concurrent_vector只是一个数据结构类而不是线程相关的控制代码。

此外,TBB 的互斥锁还可以在 OpenMP、Cilk 和 PPL 中使用。

Yes, TBB's concurrent data structures are meant to be thread-safe, which means whatever threading paradigms, such as OpenMP, TBB, Cilk, PPL, and etc, are okay to use TBB's concurrent data structures. This is because concurrent_vector is simply a data structure class rather than threading-related control code.

Furthermore, TBB's mutex can be also used within OpenMP, Cilk, and PPL.

我最亲爱的 2024-12-15 14:48:47

根据英特尔网站上 concurrent_vector 页面 的第 1.11 节,增量增长,有限的增长以及将新对象推送到向量上都是线程安全的操作。

简介还说添加新元素不会使现有迭代器失效。

所有这些结合起来意味着您应该能够使用 openmp 安全地多线程访问并发向量。

Per Section 1.11 of the concurrent_vector page on the Intel site, incremental growth, limited growth, and pushing of new objects onto the vector are all thread-safe operations.

The introduction also says that adding new elements does not invalidate existing iterators.

All these combined mean that you should be able to safely multithread access to the concurrent_vector with openmp.

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