gpt4 book ai didi

linux - 为什么使用 std::thread::hardware_concurrency() 和 boost::thread::hardware_concurrency() 有区别?

转载 作者:IT王子 更新时间:2023-10-29 00:16:01 28 4
gpt4 key购买 nike

问题本身的描述很简单。我正在测试 C++11 中 std::thread 库和 boost::thread 库的区别。

这些的输出:

#include <iostream>
#include <thread>
#include <boost/thread.hpp>

int main() {
std::cout << std::thread::hardware_concurrency() << std::endl;
std::cout << boost::thread::hardware_concurrency() << std::endl;
return 0;
}

给我不同的结果:

0
4

这是为什么?

PS:gcc包的版本是4.6.2-1.fc16(x86_64)。我正在使用

g++ test.cc -Wall -std=c++0x -lboost_thread-mt -lpthread

最佳答案

查看/usr/include/c++/4.6.2/thread后

可以看出实现其实是:

// Returns a value that hints at the number of hardware thread contexts.
static unsigned int
hardware_concurrency()
{ return 0; }

这样问题就解决了。这只是 gcc 4.6.2 中尚未实现的另一个功能

关于linux - 为什么使用 std::thread::hardware_concurrency() 和 boost::thread::hardware_concurrency() 有区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8540387/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com