Hides all of the CUDA calls from the actual CPP file.
More...
#include "cuda_util.h"
#include "debugging.h"
#include "definitions.h"
#include "hash_table.cuh"
#include <cuda.h>
|
| CudaHT |
| Encapsulates the hash table library.
|
|
|
void | CudaHT::CuckooHashing::CUDAWrapper::ClearTable (const unsigned slots_in_table, const Entry fill_value, Entry *d_array) |
| Fills a 64-bit array with a particular value.
|
|
void | CudaHT::CuckooHashing::CUDAWrapper::CallCuckooHash (const unsigned n_entries, const unsigned num_hash_functions, const unsigned *d_keys, const unsigned *d_values, const unsigned table_size, const Functions< 2 > constants_2, const Functions< 3 > constants_3, const Functions< 4 > constants_4, const Functions< 5 > constants_5, const unsigned max_iteration_attempts, Entry *d_contents, uint2 stash_constants, unsigned *d_stash_count, unsigned *d_failures, unsigned *d_iterations_taken) |
| Calls the Cuckoo Hash construction kernel.
|
|
void | CudaHT::CuckooHashing::CUDAWrapper::CallHashRetrieve (const unsigned n_queries, const unsigned num_hash_functions, const unsigned *keys_in, const unsigned table_size, const Entry *table, const Functions< 2 > constants_2, const Functions< 3 > constants_3, const Functions< 4 > constants_4, const Functions< 5 > constants_5, const uint2 stash_constants, const unsigned stash_count, unsigned *values_out) |
| Calls the kernel that performs retrievals.
|
|
Hides all of the CUDA calls from the actual CPP file.