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.

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

4 pointsby ignawinabout 8 years ago
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

brudgersabout 8 years ago
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.