I am looking for a hash table implementation that I can use for CUDA coding. are there any good one's out there. Something like the Python dictionary . I will use strings as my keys

link|improve this question

64% accept rate
I tested an implementation of the md5 hash algorithm on the GPU the other day. You could use it to compute hashes for your data and then store them in map. – karlphillip Sep 19 '11 at 16:42
@karlphilip: is there a map implementation on GPU – Programmer Sep 19 '11 at 17:37
What? You want to store data on the GPU? No, no.. use it only for processing! The map itself (the one connects the hashes with the original data) should be stored on the RAM. So if you are programming in C++ you can use something like std::map<std::string, SomePointerToTheData>, where std::string is the hash computed by the GPU and pointerToTheOriginalData is... exactly that. – karlphillip Sep 19 '11 at 17:56
@karlphillip Sometimes the processing means to use the hash map, e.g. currently I am working on LZ77 on GPU. There are more operations that can be done on GPU than matrix multiplication and raycasting. – Flavius Oct 2 '11 at 19:52
feedback

3 Answers

Alcantara et al have demonstrated a data-parallel algorithm for building hash tables on the GPU. I believe the implementation was made available as part of CUDPP.

That said, you may want to reconsider your original choice of a hash table. Sorting your data by key and then performing lots of queries en masse should yield much better performance in a massively parallel setting. What problem are you trying to solve?

link|improve this answer
What does "performing lots of queries en masse mean?". I am trying to store an inverted index in the hash table where the key will be strings and the value will be a list of ints. Given a query term, i will find it in the hash table and retrieve te list – Programmer Sep 20 '11 at 4:02
do you have a small code snippet where you have used the cudpp hash table. will be very helpful – Programmer Sep 20 '11 at 4:06
Moreover, why dont you suggest cudpp – Programmer Sep 21 '11 at 5:04
feedback

This blog post talks briefly about a project that implemented the md5 hashing algorithm on the GPU.

I wrote a patch to compile it on Mac OS X that is also available on that post.

link|improve this answer
MD5 is something of a heavyweight string hashing algorithm. – Ron Warholic Sep 19 '11 at 18:45
True, it's quite heavy. – karlphillip Sep 19 '11 at 19:00
feedback

When I wrote an OpenCL kernel to create a simple hash table for strings, I used the hash algorithm from Java's String.hashCode(), and then just modded that over the number of rows in the table to get a row index.

Hashing function

uint getWordHash(__global char* str, uint len) {
  uint hash = 0, multiplier = 1;
  for(int i = len - 1; i >= 0; i--) {
    hash += str[i] * multiplier;
    int shifted = multiplier << 5;
    multiplier = shifted - multiplier;
  }
  return hash;
}

Indexing

uint hash = getWordHash(word, len);
uint row = hash % nRows;

I handled collisions manually of course, and this approach worked well when I knew the number of strings ahead of time.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.