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?

1.39K views

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?

In: 219

41 Answers

Anonymous 0 Comments

CPU cores each run a different program.

GPU cores all run the *same* program at the same time, but each core operates on different data. They are much slower and more basic than a CPU core, but also much smaller (because they don’t need all of the same parts) so you can have thousands of them. Because of that, you can use them to crunch a large amount of repeated calculations very quickly. This is used for mostly for the per-pixel calculations for your display, but they can be also used for other things too like AI training (or Bitcoin mining if you hate the environment.)

You are viewing 1 out of 41 answers, click here to view all answers.