diff options
| author | KunoiSayami <[email protected]> | 2023-07-02 21:53:47 +0800 |
|---|---|---|
| committer | KunoiSayami <[email protected]> | 2023-07-02 21:53:47 +0800 |
| commit | c71e687de86691c0149804ef10721ac9c230ab9e (patch) | |
| tree | c5edef26ed08eeea4c4479016faea2dbcca7430c /expt_0618_3.cu | |
| parent | 0b09bc40d295e7b383f2e5c8ddba255f0ac680ca (diff) | |
refactor: Change basic function name
Signed-off-by: KunoiSayami <[email protected]>
Diffstat (limited to 'expt_0618_3.cu')
| -rw-r--r-- | expt_0618_3.cu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/expt_0618_3.cu b/expt_0618_3.cu index 15af8f1..0804b61 100644 --- a/expt_0618_3.cu +++ b/expt_0618_3.cu @@ -98,7 +98,7 @@ int main(int argc, char const *argv[]) { auto sort = CustomSort(sample_length, sizeof(key_type) * 8); for (auto element : population) { - 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]++; |
