TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

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

74 点作者 junkbit超过 14 年前

5 条评论

jacquesm超过 14 年前
GPUs are scary fast if you have the 'right' problem.
评论 #1644122 未加载
评论 #1644134 未加载
whakojacko超过 14 年前
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 未加载
patrickgzill超过 14 年前
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 未加载
sgt超过 14 年前
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>
profquail超过 14 年前
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>