From 9a67297b4eb208ef017929741956f7c9326b0541 Mon Sep 17 00:00:00 2001
From: Yora <13516067@std.stei.itb.ac.id>
Date: Thu, 11 Apr 2019 20:08:51 +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 ea5d604..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(d_count);
+    cudaFree(d_count);
 } 
   
 // The main function to that sorts arr[] of size n using  
-- 
GitLab