From 4177272a7487b8b327205252e24671c25ff9f283 Mon Sep 17 00:00:00 2001 From: Yora <13516067@std.stei.itb.ac.id> Date: Thu, 11 Apr 2019 20:06:52 +0700 Subject: [PATCH] add radix --- src/radix_sort_par3.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/radix_sort_par3.cu b/src/radix_sort_par3.cu index 22ef443..3228e5d 100644 --- a/src/radix_sort_par3.cu +++ b/src/radix_sort_par3.cu @@ -55,7 +55,7 @@ void countSort(int arr[], int n, int exp) arr[i] = output[i]; cudaFree(d_arr); - cudaFree(count); + cudaFree(d_count); } // The main function to that sorts arr[] of size n using -- GitLab