hash_functions.cu 1.21 KB
Newer Older
traveller59's avatar
traveller59 committed
1
#include <cuhash/hash_table.h>
traveller59's avatar
bug fix  
traveller59 committed
2
#include <cuhash/hash_functions.h>
traveller59's avatar
traveller59 committed
3
4
#include <cuhash/debugging.h>
#include <cassert>
5

traveller59's avatar
traveller59 committed
6
7
namespace cuhash {
  
8
9
10
11
12
13
14
15
16
17
18
19
void GenerateFunctions(const unsigned  N,
                       const unsigned  num_keys,
                       const unsigned *d_keys,
                       const unsigned  table_size,
                             uint2    *constants) {
  bool regenerate = true;

  while (regenerate) {
    regenerate = false;

    // Generate a set of hash function constants for this build attempt.
    for (unsigned i = 0 ; i < N; ++i) {
traveller59's avatar
traveller59 committed
20
21
22
      // uint_distribution(random_engine) % kPrimeDivisor;
      // genrand_int32() % kPrimeDivisor;
      unsigned new_a = generate_random_uint32() % kPrimeDivisor;
23
      constants[i].x = (1 > new_a ? 1 : new_a);
traveller59's avatar
traveller59 committed
24
      constants[i].y = generate_random_uint32() % kPrimeDivisor;
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
    }

#ifdef FORCEFULLY_GENERATE_NO_CYCLES
    // Ensure that every key gets N different slots.
    regenerate = CheckAssignedSameSlot(N, num_keys, d_keys, table_size, constants);
#endif
  }


#ifdef TAKE_HASH_FUNCTION_STATISTICS
  // Examine how well distributed the items are.
  TakeHashFunctionStatistics(num_keys, d_keys, table_size, constants, N);
#endif
}

}; // namespace CuckooHashing