TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

World's fastest radix sort? 1B 32bit keys a second using a stock GTX 480

74 pointsby junkbitalmost 15 years ago

5 comments

jacquesmalmost 15 years ago
GPUs are scary fast if you have the 'right' problem.
评论 #1644122 未加载
评论 #1644134 未加载
whakojackoalmost 15 years ago
As with lots of GPU-accelerated benchmarks unfortunately, they ignore the time to transfer the 1B keys from main memory to the GPU and back.
评论 #1644216 未加载
评论 #1644272 未加载
评论 #1644558 未加载
评论 #1644388 未加载
评论 #1644103 未加载
patrickgzillalmost 15 years ago
I have often wondered if you couldn't put the needed database indexes and other associated data onto a GPU , and have the GPU handle the optimization for the query, run the query, and then just return to the database server which blocks to go to to get the data; the indexes could be synced to disk of course but they would be run from the GPU.
评论 #1644965 未加载
sgtalmost 15 years ago
Radix sort is my favorite sort algorithm. Here, I made a little Radix sort video with sound: <a href="http://rasterburn.org/~sgt/stuff3/radixsort.avi" rel="nofollow">http://rasterburn.org/~sgt/stuff3/radixsort.avi</a>
profquailalmost 15 years ago
There's an ongoing thread in the CUDA forums about it: <a href="http://forums.nvidia.com/index.php?showtopic=175238" rel="nofollow">http://forums.nvidia.com/index.php?showtopic=175238</a>