GithubHelp home page GithubHelp logo

Comments (4)

HatakeKakaxi avatar HatakeKakaxi commented on September 21, 2024

When I try to use phmap::parallel_node_hash_map<uint32_t, std::vector<uint32_t>>, I got nearly the same error.

from parallel-hashmap.

greg7mdp avatar greg7mdp commented on September 21, 2024

Hi @HatakeKakaxi , when using a parallel_node_hash_map from multiple threads, it is not safe to use iterators, or references returned by operator[](). If you provide a full example of what you are doing, I can suggest how to use extended APIs to solve your issue.

from parallel-hashmap.

HatakeKakaxi avatar HatakeKakaxi commented on September 21, 2024

Hi @HatakeKakaxi , when using a parallel_node_hash_map from multiple threads, it is not safe to use iterators, or references returned by operator[](). If you provide a full example of what you are doing, I can suggest how to use extended APIs to solve your issue.

Thank you, @greg7mdp. Here is my example. I defined a phmap::parallel_node_hash_map<uint32_t, std::vector<uint32_t>> seed_index_pos in the main thread, and modify this parallel_node_hash_map in other threads. I use a boost::thread_pool with 8 threads to modify this hash map. The modication is just like this:
seed_index_pos[index].emplace_back(1);
Did you mean that it's not safe to use the operator[]() ? Which APIs should I use ?

from parallel-hashmap.

greg7mdp avatar greg7mdp commented on September 21, 2024

Did you mean that it's not safe to use the operator[]() ?

This is correct, it is not safe in a multithreaded context.

Which APIs should I use ?

You should most likely use lazy_emplace_l. Please see mt_word_counter.cc example in the examples directory.

from parallel-hashmap.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.