summaryrefslogtreecommitdiff
path: root/expt_0618.cu
diff options
context:
space:
mode:
Diffstat (limited to 'expt_0618.cu')
-rw-r--r--expt_0618.cu2
1 files changed, 1 insertions, 1 deletions
diff --git a/expt_0618.cu b/expt_0618.cu
index 37d2a05..c531128 100644
--- a/expt_0618.cu
+++ b/expt_0618.cu
@@ -271,7 +271,7 @@ public:
}
__device__ unsigned calcIndex(key_type key) {
- auto result = customSort.sample_cdf_custom_version(this->sample, key);
+ auto result = customSort.cdf(this->sample, key);
auto cdf_index = result / scaleSize;
auto index = trailing_zeroes((size_t)cdf_index);
return index;