this post was submitted on 13 Jul 2023
11 points (92.3% liked)

Technology

3 readers
10 users here now

Talk about anything tech related!

founded 1 year ago
MODERATORS
 

My dad told me to look into something called "parallel computing" but I don't really understand what it is or how to put it into practice.

I have a raspberry pi 4, and two windows computers.

I can wipe the raspberry pi and one windows computer, but I am looking to run games (that can't currently run with just the one computer) on the other windows computer.

I apologize if I'm being dumb, I don't know as much about computers as I'd like.

you are viewing a single comment's thread
view the rest of the comments
[โ€“] SJ_Zero@lemmy.fbxl.net 22 points 1 year ago (1 children)

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.

[โ€“] nullishcat@lemmy.fmhy.ml 9 points 1 year ago

^ 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.)