-3

If the speed of the CPU is doubled, would the system be able to handle twice as many processes? Assuming you ignore context switches that is.

  • I don't think speeding it up could handle more processes because your still limited by how much memory you have for them. But they would execute faster and threading would be faster for the processes you have memory for. – kbzombie Mar 31 '15 at 03:21

1 Answers1

0

No. CPU speed is rarely the bottleneck anymore. Also, doubling the clock speed would require changers in both your OS's scheduler and your compiler (both of which make assumptions about the speed of a CPU relative to the data buses).

It would make things better, but it's not a linear improvement.

Bandrami
  • 4,242
  • 1
  • 13
  • 12