Qualcomm interview question

Pipelining Hazards?

Interview Answer

Anonymous

19 Feb 2015

Hazards are problems with the instruction pipeline in CPU micro-architectures, when the next instruction cannot execute in the following clock cycle and can potentially lead to incorrect computation results. There are typically three types of hazards data hazards structural hazards control hazards (branching hazards) There are several methods used to deal with hazards, including pipeline stalls/pipeline bubbling, operand forwarding, and in the case of out-of-order execution, the scoreboarding method and the Tomasulo algorithm. Source:Wiki

1