this post was submitted on 13 Jul 2023
11 points (92.3% liked)
Technology
18 readers
1 users here now
Talk about anything tech related!
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Parallel computing is something where you break a big task into a bunch of little tasks that can be completed in parallel by a bunch of different computers. It's something you do on specific problems, rather than something you'd use to speed up video games. Typically, you'd parallelize something like doing a big physical simulation that could take weeks to complete, not something that needs to complete all the math for a frame in 1/60th of a second.
^ This.
Even simple stuff like SLI (having multiple GPUs for rendering games) can be complicated and not widely supported anymore. Parallel computing is basically reserved for servers at this point (which makes sense, if you're running something intensive like an AI service, you don't want to put it all on one server.)