- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在阅读英特尔的 Integrated Performance Primitives C 和 C++ 库。他们提到外线程是新功能之一。
New API’s for external threading is more effective than internal threading. source
什么是外线程,它与 C++ 中的 std::thread
有什么关系?
最佳答案
在 IPP 中:
内部线程 - 在原语中
外线程 - 在应用程序级别
Intel IPP 8.2 continues deprecation of internal threading that was started in version 7.1. The threaded static libraries will be available as a separate download, and code developed with these libraries will still work as before. The ThreadedFunctionsList.txt file in ...\Documentation\en_US\ipp\ lists functions that are available in an internally threaded format. However, multi-threaded libraries are deprecated and moving to external threading is recommended for the following reasons:
Internal (inside a primitive) threading is significantly less effective than external (at the application level) threading.
与 std::thread
外线程无关。
关于c++ - 什么是英特尔 IPP 库中的外线程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32251786/
我正在使用 Seaborn 库中的 violinplot 函数。有时外线可视化: 有时它们不是: 这些示例基于相同的代码,但运行时间不同: df = pd.DataFrame(np.random.
我是一名优秀的程序员,十分优秀!