admin管理员组

文章数量:1352141

In my projects, there are several std::vector<std::vector<int>> dynamic arrays. The first dimension is about 10 million, the second dimension is about 10-100. Both of the dimensions are dynamic, i.e. frequently push_back/resize/clear, which seriously affects the performance of the parallel logic, such as OpenMP and TBB. In some cases, the CPU utilization is lower to 20% with the full kernel added.

How to solve this problem?

std::vector<std::vector<int>> A;
A.clear();
A.resize(12000000);
for(int32_t i=0; i<A.size(); ++i)
{
    A[i].resize(32);
    for(int32_t j=0; j<32; j++)
    {
        A[i].push_back(i * j);
    }
}

I have tried to use std::pmr::vector<std::pmr::vector<int>> to replace the original nested vector, however the performance of the parallel logic is affected as well.

Moreover, I have tried using std::vector<std::vector<int, boost::pool_allocator<int>>>, however the resize/clear of such vector is too inefficient, and the program seems to be hung.

本文标签: cNested stdvectorltstdvectorgt brings too many memory fragmentation and pollutes the cacheStack Overflow