summaryrefslogtreecommitdiff
path: root/expt_0525.cu
diff options
context:
space:
mode:
authorKunoiSayami <[email protected]>2023-07-02 21:53:47 +0800
committerKunoiSayami <[email protected]>2023-07-02 21:53:47 +0800
commitc71e687de86691c0149804ef10721ac9c230ab9e (patch)
treec5edef26ed08eeea4c4479016faea2dbcca7430c /expt_0525.cu
parent0b09bc40d295e7b383f2e5c8ddba255f0ac680ca (diff)
refactor: Change basic function name
Signed-off-by: KunoiSayami <[email protected]>
Diffstat (limited to 'expt_0525.cu')
-rw-r--r--expt_0525.cu2
1 files changed, 1 insertions, 1 deletions
diff --git a/expt_0525.cu b/expt_0525.cu
index 6450282..7b8453e 100644
--- a/expt_0525.cu
+++ b/expt_0525.cu
@@ -265,7 +265,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;