Skip to content
Snippets Groups Projects
Commit 98efdcff authored by Xuan Thang Nguyen's avatar Xuan Thang Nguyen
Browse files

bitonic interface change

parent f7ba48a7
No related branches found
No related tags found
No related merge requests found
......@@ -216,7 +216,7 @@ __device__ void cudaQuickSort_block(CudaArrayView arr, const Function & Cmp,
int size = end - begin;
if(size<= blockDim.x*2)
{
bitonicSort_Block(arr.getView(begin, end), bitonicMem, Cmp);
bitonicSort_Block(arr.getView(begin, end), arr.getView(begin, end), bitonicMem, Cmp);
continue;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment