FenderMoon
FenderMoon t1_j2dj4u7 wrote
Reply to comment by DMRexy in ELI5 Why aren't we curing more degenerative diseases with stem cell research? by KaishiXYZ
Makes me wish we could have that sense of urgency about things more often. Usually we get so wound up with red tape that we drag things out for years before they ever even see the light of day.
FenderMoon t1_j6lg2w0 wrote
Reply to comment by WeirdGamerAidan in ELI5: Why do computers need GPUs (integrated or external)? What information is the CPU sending to the GPU that it can't just send to a display? by WeirdGamerAidan
Yea, the CPU is basically giving the GPU commands, but the GPU can take those and execute them far faster than the CPU can.
GPUs are very good at things that involve tons of parallel processing calculations. E.g. "Take this texture and apply it over this region, and shade it with this shader." CPUs would sit there and just calculate all of that out one pixel at a time, whereas the GPU has the hardware to look at the entire texture, load it up, and do tons of pixels in parallel.
It's not that the CPU couldn't do these same calculations, but it'd be way slower at it. GPUs are specifically designed to do this sort of thing.