The way I understand it is:
f is fraction of instructions that are executed in parallel
M = total # of instr.
s = # of instr. that are executed sequentially
M - s = # of instr. that are executed in parallel
f = (M-s)/M
In class we saw that initial filling and final draining together cause 1
sequential instructions (by applying Amdahl's law).
Also in class we saw that each N-1 cycle stall causes 1 additional
sequential instruction (by Amdahl's law).
9 sequential instr. for 9 stalls and 1 for initial filling and final
draining.
So s = 9+1 = 10
and f = (M-9-1)/M
- Tatiana