diff options
| author | KunoiSayami <[email protected]> | 2023-05-18 03:40:26 +0800 |
|---|---|---|
| committer | KunoiSayami <[email protected]> | 2023-05-18 03:40:26 +0800 |
| commit | d38b99aba596b1a4edbc7e296f826d5ad936d357 (patch) | |
| tree | d74a7d00c223f11b25adeed4db05e7f8345839e6 /expt_0516.cu | |
| parent | 1ad1e0ebf58da30ee7f65a3a1f2a8f62900c47d5 (diff) | |
fix(exp): Add missing function in expt_0516_2
Signed-off-by: KunoiSayami <[email protected]>
Diffstat (limited to 'expt_0516.cu')
| -rw-r--r-- | expt_0516.cu | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/expt_0516.cu b/expt_0516.cu index f141027..82755ac 100644 --- a/expt_0516.cu +++ b/expt_0516.cu @@ -260,12 +260,12 @@ int main(int argc, char const *argv[]) { // custom_sort.testCalculation(); P_ERR("\rApply custom length and test calculation"); applyCudaSampleLength<<<1, 1>>>(sample_length); - testCustomCalculation<<<1, 1>>>(sample_length, sizeof(key_type) * 8); + // testCustomCalculation<<<1, 1>>>(sample_length); cudaDeviceSynchronize(); P_ERR("\rApply custom length and test calculation completed"); // Can remove this function if pass - CustomSort::testSelf(sample_length, sizeof(key_type) * 8); + // CustomSort::testSelf(sample_length); initSample<<<1, 1>>>(cudaSample, cudaPopulation); cudaDeviceSynchronize(); |
