Viewing a single comment thread. View all comments

pinkfootthegoose t1_j48l7bz wrote

most processing can be run in run in parallel meaning that most problems can be split up and solved on several processors at once. Some problems can only done in series meaning they have to solved one math problem at a time in a sequence. You use the faster processor for the problems that have to run in sequence and the rest can be sent to the slower ones to be run in parallel. (simplified explaination)

1