(Solved): Unroll the loop shown below three times and statically schedule to reduce the number of stalls and c ...
Unroll the loop shown below three times and statically schedule to reduce the number of stalls and control overhead. You can assume that the loop executes a multiple of three times. Use registers F12....F30, if needed while unrolling. How many minimum stalls are required to execute this How many number of cycles required for each iteration after scheduling? 12 Now ABCHISO loop? Instruction Producing result FP ALU Op FP ALU Op Load Double Load Double Instruction using result FP ALU Op Store Double 293/4-2023/05/2 FP ALU Op Store Double Loop: L.D F8, 0(R1) L.D F4, 64(R1) SUB.D F4, F4, F8 DADDORD) DADDIU R1, R1, #8 15/24-2 BNE R1, R3 LOOP Latency in clock cycles 2 2 1 0 15-82934-2023/05/2221130015-82934-2023/05/21 [6M] 180015-82934-2023/0 87934-2023/05/21-2022h180015-82934-2023/05/
Unroll the loop shown below three times and staticatly schedule to reduce the number of stalls and control overhoad You can assume that the loop executes a multiple of three bimes. Use registers F12. F30, if needed while unrolling. How many minimum stalis are required to execute this loop? How many number of cycles required for each iteration atter scheduling? Loop: LD F8, O(R1) L. D F4, 64(R1) SUBDF4, F4, F8 S. D 4,0(R1) DADDIUR1, R1, =8 BNE R1, R3 LOOP [6M]
To unroll the loop shown three times, we need to duplicate the loop body and adjust the loop counter accordingly. Additionally, we need to statically schedule the instructions to minimize stalls and control overhead. Based on the given information, let's unroll and schedule the loop:
Original loop: