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
|
feedback
|
|
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? | |||||||
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. | |||||
|
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
Indexing
I handled collisions manually of course, and this approach worked well when I knew the number of strings ahead of time. | |||
|
feedback
|
std::map<std::string, SomePointerToTheData>, wherestd::stringis the hash computed by the GPU andpointerToTheOriginalDatais... exactly that. – karlphillip Sep 19 '11 at 17:56