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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: Ryzen or i7 for computations in R/Python

4 点作者 ignawin大约 8 年前
Hi,<p>has anyone here experience with Amd Ryzen build on a purely computational PC? I am mainly interested in heavier R&#x2F;Python calculations. Thanks!

1 comment

brudgers大约 8 年前
If you can live with single precision floating point, a cheap GPU will crunch numbers about an order of magnitude faster than a CPU. That assumes the computation can be parallelized. If the computation cannot be parallelized then single threaded performance matters most. Single threaded performance differences between similar CPU&#x27;s tend to differ more modestly and small performance improvements tend to come with much higher costs.<p>Depending on data size, more RAM and faster disks and faster networks may make more of a difference. But again, GPU&#x27;s and parallelization are going to reduce computational time more than CPU choice when parallelization is an option.<p>Good luck.