方法: combinable を使用して集合を結合する
このトピックを使用する方法を示しています、 concurrency::combinable クラスは、素数のセットを計算します。
使用例
次の例では、素数の集合を 2 回計算します。それぞれの計算結果は、std::bitset オブジェクトに格納されます。この例ではまず、集合を逐次的に計算した後で、並列処理によっても計算します。また、それぞれの計算に要する時間もコンソールに出力します。
次の使用例を使用して、 concurrency::parallel_for アルゴリズムとcombinableスレッド ローカル セットを生成するオブジェクト。次を使用して、 concurrency::combinable::combine_each メソッドは、スレッド ローカル セットの最後のセットに結合します。
// parallel-combine-primes.cpp
// compile with: /EHsc
#include <windows.h>
#include <ppl.h>
#include <bitset>
#include <iostream>
using namespace concurrency;
using namespace std;
// Calls the provided work function and returns the number of milliseconds
// that it takes to call that function.
template <class Function>
__int64 time_call(Function&& f)
{
__int64 begin = GetTickCount();
f();
return GetTickCount() - begin;
}
// Determines whether the input value is prime.
bool is_prime(int n)
{
if (n < 2)
return false;
for (int i = 2; i < n; ++i)
{
if ((n % i) == 0)
return false;
}
return true;
}
const int limit = 40000;
int wmain()
{
// A set of prime numbers that is computed serially.
bitset<limit> primes1;
// A set of prime numbers that is computed in parallel.
bitset<limit> primes2;
__int64 elapsed;
// Compute the set of prime numbers in a serial loop.
elapsed = time_call([&]
{
for(int i = 0; i < limit; ++i) {
if (is_prime(i))
primes1.set(i);
}
});
wcout << L"serial time: " << elapsed << L" ms" << endl << endl;
// Compute the same set of numbers in parallel.
elapsed = time_call([&]
{
// Use a parallel_for loop and a combinable object to compute
// the set in parallel.
// You do not need to synchronize access to the set because the
// combinable object provides a separate bitset object to each thread.
combinable<bitset<limit>> working;
parallel_for(0, limit, [&](int i) {
if (is_prime(i))
working.local().set(i);
});
// Merge each thread-local computation into the final result.
working.combine_each([&](bitset<limit>& local) {
primes2 |= local;
});
});
wcout << L"parallel time: " << elapsed << L" ms" << endl << endl;
}
4 つのプロセッサを備えたコンピューターを使用したときのサンプル出力を次に示します。
serial time: 312 ms
parallel time: 78 ms
コードのコンパイル
コード例をコピーして、Visual Studio プロジェクトでは、貼り付けるまたはという名前のファイルに貼り付けて並列・結合・ primes.cpp と、Visual Studio のコマンド プロンプト ウィンドウで次のコマンドを実行します。
cl.exe /EHsc parallel-combine-primes.cpp