0

In a basic MIPS five stage pipeline, if the performance of the ALU is improved by 50%, what will be the impact on the overall performance of the CPU?

1 Answers1

1

It depends on two factors: The time each of the other stages take and the clock-frequency. If any of the other stages take longer than the ALU, that will be the limiting factor. The maximum clock-frequency (fMax) is limited to the slowest stage in the pipeline. So if your ALU can produce a result in 1ns (fMax=1ghz) if any of the other stages is slower, the maximum frequency could only be that of that stage.

Mux
  • 11
  • 1