TBB并发向量与openmp
我们可以将TBB并发向量与openmp一起使用吗?
是否允许并发更新?
Can we use TBB concurrent_vector with openmp?
Will concurrent updates be allowed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我们可以将TBB并发向量与openmp一起使用吗?
是否允许并发更新?
Can we use TBB concurrent_vector with openmp?
Will concurrent updates be allowed?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
是的,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.
根据英特尔网站上 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.