Pipeline and Intro to Quantum Computing Flashcards
1
Q
What are the steps in the Instruction Cycle?
A
- Instruction fetch (IF)
- Instruction decode and register operand fetch (ID/RF)
- Execute/Evaluate memory address (EX/AG)
- Memory operand fetch (MEM)
- Store/writeback result (WB)
2
Q
What is meant by an ideal pipeline?
A
- Increase throughput with little increase in cost
- Repetition of indentical/independent operations
3
Q
What are 3 types of data dependences?
A
- Flow dependence
- Output dependence
- Anti dependence
4
Q
What are 5 fundamental ways of handling flow dependencies?
A
- Detect and wait until value is available in register file
- Detect and forward/bypass data to dependent instruction
- Detect and eliminate the dependence at the software level
- Predict the needed value(s)
- Fine-grained multithreading
5
Q
What is data forwarding/data bypassing?
A
Forward the result value to the dependent instruction as soon as the value is available