summaryrefslogtreecommitdiff
path: root/expt_0529.cu
diff options
context:
space:
mode:
Diffstat (limited to 'expt_0529.cu')
-rw-r--r--expt_0529.cu2
1 files changed, 1 insertions, 1 deletions
diff --git a/expt_0529.cu b/expt_0529.cu
index 3448469..88f6a64 100644
--- a/expt_0529.cu
+++ b/expt_0529.cu
@@ -58,7 +58,7 @@ int main(int argc, char const *argv[]) {
auto sort = CustomSort(sample_length, sizeof(key_type) * 8);
for (auto element : readHelper.population_vector) {
- auto ret = sort.sample_cdf_custom_version(sample.data(), element);
+ auto ret = sort.cdf(sample.data(), element);
auto cdf_index = ret / scale_size;
auto index = trailing_zeroes((size_t)cdf_index);
result[index]++;