- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hey,
As you can probably tell by my recent posts, today is international parallel data structure selection day!
I'm off to my next questions... how parallel operations are supported in concurrent_hash_map. Specifically, what complexity guarantees are there in place for the various operations. Also, whether or not these complexities vary with the number of processors.
A lot of the container documentation mentions concurrent access, but I find the docs a bit lacking with regards to how this concurrency is implemented. I'm evaluating the overall complexity of some of my algorithms, and this information would be invaluable to design at this point.
Basically I am looking for something where I can find the smallest element in short order, insert data in parallel (as in without mutexes)... and basically have as many aspects of the thing operating in parallel... of course this might only be required if the size of the container exceeds a certain boundary.
I just printed a paper on parallel priority queues which I'll be looking at, as they compare to serial implementations.
Thanks for your help everyone.
AJ
As you can probably tell by my recent posts, today is international parallel data structure selection day!
I'm off to my next questions... how parallel operations are supported in concurrent_hash_map. Specifically, what complexity guarantees are there in place for the various operations. Also, whether or not these complexities vary with the number of processors.
A lot of the container documentation mentions concurrent access, but I find the docs a bit lacking with regards to how this concurrency is implemented. I'm evaluating the overall complexity of some of my algorithms, and this information would be invaluable to design at this point.
Basically I am looking for something where I can find the smallest element in short order, insert data in parallel (as in without mutexes)... and basically have as many aspects of the thing operating in parallel... of course this might only be required if the size of the container exceeds a certain boundary.
I just printed a paper on parallel priority queues which I'll be looking at, as they compare to serial implementations.
Thanks for your help everyone.
AJ
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Ok, if you are interested in details of concurrent_hash_map design, I can shed some light.
The container has three levels of data structures. The first level is an array of fixed number (64) of segments, each of which contains the mutex and pointer to an array of chains. The array of chains grows by power of two as necessary. A chain is a structure with mutex and pointer to data items that form a linked list. Each item contains personal mutex along with user's data.
For each operation, hash value is calculated for a key. The lowest bits represent segment number and the following bits are used to select a chain. Then the list is scanned until the key is matched, and a good hash function should prevents these lists from getting too long.
This structure is efficient only for big number of stored keys (about few thousand) and with good hash function provided by user.
The container has three levels of data structures. The first level is an array of fixed number (64) of segments, each of which contains the mutex and pointer to an array of chains. The array of chains grows by power of two as necessary. A chain is a structure with mutex and pointer to data items that form a linked list. Each item contains personal mutex along with user's data.
For each operation, hash value is calculated for a key. The lowest bits represent segment number and the following bits are used to select a chain. Then the list is scanned until the key is matched, and a good hash function should prevents these lists from getting too long.
This structure is efficient only for big number of stored keys (about few thousand) and with good hash function provided by user.

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page