Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Consider this M PS code: loop:lw $4, 0 ($16) lw $7, 4 ($16) add $4, $7, $4 sw $4, 0 ($23) addi $16, $16, 8
Consider this M PS code: loop:lw $4, 0 ($16) lw $7, 4 ($16) add $4, $7, $4 sw $4, 0 ($23) addi $16, $16, 8 addi $23, $23, 4 bne $16, S2, loop Unroll 3 times the MIPS code (ie., one unrolled iteration does the work of four original iterations). Make it as efficient as you can. Show timing in the 5-stage MIPS pipeline for one unrolled iteration of the loop. Assume that the number of iterations is always a multiple of four. Consider this M PS code: loop:lw $4, 0 ($16) lw $7, 4 ($16) add $4, $7, $4 sw $4, 0 ($23) addi $16, $16, 8 addi $23, $23, 4 bne $16, S2, loop Unroll 3 times the MIPS code (ie., one unrolled iteration does the work of four original iterations). Make it as efficient as you can. Show timing in the 5-stage MIPS pipeline for one unrolled iteration of the loop. Assume that the number of iterations is always a multiple of four
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started