what is the fundamental difference between CPU and GPU when both of them do some calculations ?

372 views

what is the fundamental difference between CPU and GPU when both of them do some calculations ?

In: 2

8 Answers

Anonymous 0 Comments

On the hardware end,

CPUs can handle complex instructions but have only few cores, around 16 or so.

GPUs can handle simple instructions but thousands of cores.

Each core can handle one “calculation” at a time (ignoring pipelining). Having more cores means more parallel computing.

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