What is the difference between a CPU and a GPU oriented code?
问题 Let us suppose a game developer develops an application. So, while writing the application will the developer write some code segment which should goto CPU and some which should goto GPU or is decided by scheduler at run time? 回答1: CPUs and GPUs are different, optimised to do different things. GPUs are less clever, but massively more parallel and carry out a huge amount of specialised processing, as opposed to the traditional CPUs more general processing. GPUs have to be tasked by the CPU. No