我想遵循本指南: http: //gcc.gnu.org/onlinedocs/libstdc++/manual/bk01pt12ch31s03.html
这是一些示例代码:
#include <numeric>
#include <vector>
#include <iostream>
#include <chrono>
using namespace std;
int main()
{
vector<int> in(1000);
vector<double> out(1000);
iota(in.begin(), in.end(), 1);
auto t = std::chrono::high_resolution_clock::now();
for(int i = 0; i < 100000; ++i)
accumulate(in.begin(), in.end(), 0);
auto t2 = std::chrono::high_resolution_clock::now();
cout << std::chrono::duration_cast<std::chrono::milliseconds>(t2 - t).count() << endl;
return 0;
}
我有以下结果:
~:$ g++ test.cpp -std=c++11
~:$ ./a.out
900
~:$ g++ test.cpp -D_GLIBCXX_PARALLEL -std=c++11 -fopenmp -march=native
~:$ ./a.out
1026
在进行多次运行时,这两个几乎同时保持。我还尝试过其他算法,例如排序、生成、查找、转换……我有一个 i7,启用了超线程(4 个逻辑核心)。我运行 g++-4.8.1
谢谢