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

In a computer with a GPU, the CPU is sending instructions and memory addresses to the GPU. It does things like, here are the points of a triangle, go to this location and use that picture for the triangle. After sending a punch of triangles and image locations the CPU can go back to doing things like applying gravity and camera movement. The GPU loads in the pictures it doesn’t already have and takes all those triangles and turns them into a picture on your screen. The GPU was made to do this step very well. It handles hundreds of triangles at the same time. CPUs are designed to handle math where there are lots of steps that depend on each other. GPUs are designed to handle doing the same step to lots of times to thing that are mostly independent.

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