From d38b99aba596b1a4edbc7e296f826d5ad936d357 Mon Sep 17 00:00:00 2001 From: KunoiSayami Date: Thu, 18 May 2023 03:40:26 +0800 Subject: fix(exp): Add missing function in expt_0516_2 Signed-off-by: KunoiSayami --- expt_0516.cu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'expt_0516.cu') 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(); -- cgit v1.3.1