What takes most time during the average work of a computer?
Is it actual calculation or maybe accessing memory, and the processor mostly is just waiting for data to come?
|
What takes most time during the average work of a computer? Is it actual calculation or maybe accessing memory, and the processor mostly is just waiting for data to come? | |||||
feedback
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.
|
It's waiting to access data in memory. Accessing system memory is terribly time consuming. It's not uncommon for performance junkies to cram all their data into something that will fit in the CPU's cache. | |||
|
feedback
|
|
IO is almost always the bottleneck. Memory is several order of magnitude slower than CPU cache, and disk is another couple of orders of magnitude slower than memory. The reason an SSD makes such a massive difference is how much time your CPU spends waiting for the disk. | |||||
|
feedback
|