How are certain processors optimized to perform certain tasks? Aren’t the operations all the same? Ex: CPU/GPU, enabled Ray Tracing, etc

498 views

How are certain processors optimized to perform certain tasks? Aren’t the operations all the same? Ex: CPU/GPU, enabled Ray Tracing, etc

In: Engineering

2 Answers

Anonymous 0 Comments

With addition and subtraction, you can do every other mathematical function. 5*100 is just adding 5, 100 times. But it’s faster if you add two zeroes after 5. Doing that sort of thing takes specialized “optimized” hardware which changes a processor.

GPUs have more physical hardware for matrix math operations like rotating and translating matrices, which is what we use to describe 3D points in space, which are used to display graphics.

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