我有一个串行运行的算法,我将它并行化。现在,该算法在C ++ 11中使用unordered_map
。我可以用concurrent_unordered_map
直接替换它吗?
我只想指出我已经尝试过这样做,但它似乎产生了难以理解的错误。像这样:
(.text._ZN3tbb13tbb_allocatorINS_10interface58internal18split_ordered_listISt4pairIKSsSt6vectorIjSaIjEEENS0_IS9_EEE4nodeEE8allocateEjPKv[tbb::tbb_allocator<tbb::interface5::internal::split_ordered_list<std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::vector<unsigned int, std::allocator<unsigned int> > >, tbb::tbb_allocator<std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::vector<unsigned int, std::allocator<unsigned int> > > > >::node>::allocate(unsigned int, void const*)]+0x16): undefined reference to `tbb::internal::allocate_via_handler_v3(unsigned int)'
答案 0 :(得分:1)
concurrent_unordered_map允许并发插入和并发读取,但不允许并发删除。所以只要你在添加/迭代时没有删除就应该没问题。