Alternatives to ppl(ppl 的替代品)
问题描述
在 我之前的问题 我已经问过了,我从 Microsoft 提供的 ppl.h 中触及了 parallel_for 主题.
但不久之后我意识到使用它会使他的应用程序不可移植(如果我是对的,它特定于 Microsoft(ppl.h 标头)).
在我看来,这破坏了 C++ 编程的一个非常重要的方面 - 可移植性,我只是不准备这样做.
所以我的问题是:
1. 我说使用 ppl 中的 parallel_for 会使您的代码不可移植吗(不可移植我的意思是说它不能由除 MS 编译器之外的其他编译器编译)
2. 我是否正确地说,如果在后期我想为我目前正在处理的应用程序提供 UI(在 Qt 中完成),在我的代码中使用 parallel_for 将是一个障碍,这意味着我要么将使用其他(便携式)替代方案替换 parallel_for ,否则我将无法在 Qt 中执行 UI 并在 VS 中执行核心?
3. ppl 的(便携式)替代品是什么?
In my previous question I've asked, I touched the parallel_for subject from ppl.h provided by Microsoft.
But shortly after I've realized that by using it one makes his application unportable (if I'm right it is specific to Microsoft (the ppl.h header)).
In my opinion this breaks very important aspect of programming in C++ - portability, and I'm just not prepare to do it.
So my questions are:
1. Am I right in saying that using parallel_for from ppl makes your code unportable (by unportable I mean that it cannot be compiled by other compiler than the one from MS)
2. Am I right in saying that if on later stage I want to provide UI (done in Qt) for the application I'm working on at the momment, using parallel_for in my code will be an obstruction which would mean that either I'll replace parallel_for with some other (portable) alternative or I won't be able to do UI in Qt and core in VS?
3. What are the (portable) alternatives to ppl?
推荐答案
您可能需要考虑英特尔的线程构建块.与 OpenMP 不同,TBB 实际上使用 C++,而不是简单地在 C++ 编译器下编译(即:作为可以编译为 C++ 的 C 库).它具有您在 PPL 中看到的许多内容,但它是跨平台的.
You may want to consider Intel's Thread Building Blocks. Unlike OpenMP, TBB actually uses C++, rather than simply compiling under a C++ compiler (ie: being a C library that can compile as C++). It has many of the things you see in PPL, but it is cross-platform.
还有 Boost.Thread,它是 C++(虽然不像 TBB 那样直接),而且它是跨平台的.
There is also Boost.Thread, which is C++ (though not quite as direct as TBB is), and it is cross-platform.
这篇关于ppl 的替代品的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:ppl 的替代品
基础教程推荐
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01