About 2,060 results
Open links in new tab
  1. Fastest sorting algorithm on GPU currently - CUDA Programming …

    Jul 22, 2016 · Hello community, I understand that sorting is a primitive algorithm on GPU. There are many different implementations, e.g., radix sorting, merge sorting, etc. With many different …

  2. Fastest sorting algorithm on GPU currently - NVIDIA Developer …

    May 2, 2021 · Hello community, I understand that sorting is a primitive algorithm on GPU. There are many different implementations, e.g., radix sorting, merge sorting, etc. With many different …

  3. Fastest Sorting on CUDA? - NVIDIA Developer Forums

    Feb 19, 2009 · I have tried several sorting algorithm on CUDA, but the result is not that good I expected. I sort 16M numbers on a 9800GT GPU and Q6600 Intel CPU Radix Sorting from …

  4. sorting best sorting algoritm for GT470 - NVIDIA Developer Forums

    Oct 29, 2011 · Which is the fastest sorting algorithm for GPUs? Please mention the link for the code, if it is available. I have written an algorithm for parallel sorting. It takes 0.274 seconds to …

  5. How do I sort using CUDA? - NVIDIA Developer Forums

    Jul 9, 2019 · (fast, efficient) sorting can be a challenging task in a thread-parallel architecture like CUDA. So although simple algorithms like bubble sort and merge sort are easy to understand …

  6. fastest parallel sorting algorithm - NVIDIA Developer Forums

    Jan 26, 2009 · Hey, can any one tell me which is the best available parallel sorting algorithm in terms of speed? Regards, sagar

  7. Best sorting algorithm using CUDA Sorting networks, merge or …

    Feb 1, 2008 · The best sorting algorithm depends somewhat on your application - whether you need to sort key/value pairs or just keys, the type of your data, whether you can sort …

  8. SRTS Radix Sort: High Performance and Scalable GPU Radix Sorting

    Jul 26, 2010 · The radix sorting method currently seems to be the most amenable for parallelization on high-bandwith architectures, and the fastest sorting implementations for …

  9. A question about Radix Sort - NVIDIA Developer Forums

    Dec 7, 2008 · It seems that the fastest sorting algorithm in CUDA is the radix sort. However, after break down the runtime of different components in Radix Sort, I found, the …

  10. Code: efficient sorting with CUDA - NVIDIA Developer Forums

    Jun 8, 2009 · Chhugani’s CPU sorting algorithm sorts about 50M/sec on one core, about 110M/sec on four cores of a 3.2Ghz Q9550 Core 2. That’s a good paper although I cannot find …