diff options
Diffstat (limited to 'skiplistcustom.cuh')
| -rw-r--r-- | skiplistcustom.cuh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/skiplistcustom.cuh b/skiplistcustom.cuh index 80ecc19..9bba6f1 100644 --- a/skiplistcustom.cuh +++ b/skiplistcustom.cuh @@ -156,8 +156,7 @@ public: __device__ size_t calcLevel(key_type k) const { // printf("Samples\n"); - auto index = - this->searcher.sample_cdf_custom_version(this->samples, k) / slice_size; + auto index = this->searcher.cdf(this->samples, k) / slice_size; // printf("Samples finish\n"); auto level = trailing_zeroes(index); return level; |
