Skip to content
Snippets Groups Projects
Commit b73278e5 authored by Nicholas Rianto Putra's avatar Nicholas Rianto Putra
Browse files

remove global count sort

parent 4225c481
No related merge requests found
......@@ -99,7 +99,7 @@ void count_sort(int* d_arr, int n, int idx) {
void radix_sort(int* d_arr, int n) {
for (int idx = 1; idx < 32; idx++) {
count_sort<<<grid_dim, block_dim>>>(d_arr, n, idx);
count_sort(d_arr, n, idx);
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment