共用方式為


如何:平行執行對應和縮減作業

這個範例顯示如何在檔案中使用 concurrency::parallel_transform 和 concurrency::parallel_reduce 演算法和 concurrency::concurrent_unordered_map 類別來計算字數事件。

對應作業將函式套用至序列的每個值。 取消 作業合併序列中的項目的值。 您可以使用 Standard Template Library (STL) std::transform std::accumulate 類別執行對應和取消作業。 不過如果要讓許多問題增進效能,您可以使用 parallel_transform 演算法平行執行對應作業和 parallel_reduce 演算法平行執行取消作業。 在某些情況下,您可以使用 concurrent_unordered_map 執行對應和在一個作業簡化運算。

範例

下列範例會計算寫入檔案中的事件。 它會使用 std::vector 代表兩個檔案的內容。 在每個向量對應作業計算文字事件。 取消作業累積跨兩個向量的詞數。

// parallel-map-reduce.cpp 
// compile with: /EHsc
#include <ppl.h>
#include <algorithm>
#include <iostream>
#include <string>
#include <vector>
#include <numeric>
#include <unordered_map>
#include <windows.h>

using namespace concurrency;
using namespace std;

class MapFunc 
{ 
public:
    unordered_map<wstring, size_t> operator()(vector<wstring>& elements) const 
    { 
        unordered_map<wstring, size_t> m;
        for_each(begin(elements), end(elements), [&m](const wstring& elem)
        { 
            m[elem]++;
        });
        return m; 
    }
}; 

struct ReduceFunc : binary_function<unordered_map<wstring, size_t>, 
                    unordered_map<wstring, size_t>, unordered_map<wstring, size_t>>
{
    unordered_map<wstring, size_t> operator() (
        const unordered_map<wstring, size_t>& x, 
        const unordered_map<wstring, size_t>& y) const
    {
        unordered_map<wstring, size_t> ret(x);
        for_each(begin(y), end(y), [&ret](const pair<wstring, size_t>& pr) {
            auto key = pr.first;
            auto val = pr.second;
            ret[key] += val;
        });
        return ret; 
    }
}; 

int wmain()
{ 
    // File 1 
    vector<wstring> v1;
    v1.push_back(L"word1"); //1 
    v1.push_back(L"word1"); //2 
    v1.push_back(L"word2"); 
    v1.push_back(L"word3"); 
    v1.push_back(L"word4"); 

    // File 2 
    vector<wstring> v2; 
    v2.push_back(L"word5"); 
    v2.push_back(L"word6"); 
    v2.push_back(L"word7"); 
    v2.push_back(L"word8"); 
    v2.push_back(L"word1"); //3 

    vector<vector<wstring>> v;
    v.push_back(v1);
    v.push_back(v2);

    vector<unordered_map<wstring, size_t>> map(v.size()); 

    // The Map operation
    parallel_transform(begin(v), end(v), begin(map), MapFunc()); 

    // The Reduce operation 
    unordered_map<wstring, size_t> result = parallel_reduce(
        begin(map), end(map), unordered_map<wstring, size_t>(), ReduceFunc());

    wcout << L"\"word1\" occurs " << result.at(L"word1") << L" times. " << endl;
} 
/* Output:
   "word1" occurs 3 times.
*/

編譯程式碼

若要編譯程式碼,請複製該程式碼,然後將它貼入 Visual Studio 專案中,或貼入名為 parallel-map-reduce.cpp 的檔案,然後在 Visual Studio 的 [命令提示字元] 視窗中執行下列命令。

cl.exe /EHsc parallel-map-reduce.cpp

穩固程式設計

在此範例中,您可以使用 concurrent_unordered_map 類別,也就是在 concurrent_unordered_map.h 定義,運算對應和簡化運算。

// File 1 
vector<wstring> v1;
v1.push_back(L"word1"); //1 
v1.push_back(L"word1"); //2 
v1.push_back(L"word2"); 
v1.push_back(L"word3"); 
v1.push_back(L"word4"); 

// File 2 
vector<wstring> v2; 
v2.push_back(L"word5"); 
v2.push_back(L"word6"); 
v2.push_back(L"word7"); 
v2.push_back(L"word8"); 
v2.push_back(L"word1"); //3 

vector<vector<wstring>> v;
v.push_back(v1);
v.push_back(v2);

concurrent_unordered_map<wstring, size_t> result;
for_each(begin(v), end(v), [&result](const vector<wstring>& words) {
    parallel_for_each(begin(words), end(words), [&result](const wstring& word) {
        InterlockedIncrement(&result[word]);
    });
});

wcout << L"\"word1\" occurs " << result.at(L"word1") << L" times. " << endl;

/* Output:
   "word1" occurs 3 times.
*/

通常,您只平行處理外部或內部迴圈。 如果您有少數檔案和每個檔案包含許多文字中,則平行處理內部迴圈。 如果您有許多檔案和每個檔案包含少數文字,則平行處理外部迴圈。

請參閱

參考

parallel_transform 函式

parallel_reduce 函式

concurrent_unordered_map 類別

概念

平行演算法