Description
Three technotes that describe Parallel Hash Tables implementations.
These implementations use locks to handle race conditions so they should
be portable beyond the MuPC version of UPC.
- Linear Probing is an implementation
that uses conventional linear probing to resolve collisions.
- Arrays is an implementation
that uses separate chaining and arrays to help avoid race conditions.
- Arrays is an implementation
that uses separate chaining and linked lists within a thread
to help avoid race conditions.
Last modified 12/8/4
{ Insert a counter here }