Question: For an 8-wide SIMD machine (i.e., 8 parallel SIMD functional units), write an assembly program in using your own SIMD extensions to MIPS to execute
For an 8-wide SIMD machine (i.e., 8 parallel SIMD functional units), write an assembly program in using your own SIMD extensions to MIPS to execute the loop. Compare the number of instructions executed on the SIMD machine to the MIMD machine.
We would like to execute the loop below as efficiently as possible. We have two different machines, a MIMD machine and a SIMD machine.![for (i=0; i < 2000; i++) for (j=0; j <3000; j++) X_array[i][j] = Y_array[j][i] + 200;](https://dsd5zvtm8ll6.cloudfront.net/images/question_images/1698/3/9/4/330653b70dacb3f71698394330364.jpg)
for (i=0; i < 2000; i++) for (j=0; j
Step by Step Solution
3.42 Rating (155 Votes )
There are 3 Steps involved in it
To execute the given loop efficiently on both MIMD Multiple Instruction Multiple Data and SIMD Single Instruction Multiple Data architectures well des... View full answer
Get step-by-step solutions from verified subject matter experts
