程序代写代做 graph C algorithm P2: MIPS benchmark generation for final project

P2: MIPS benchmark generation for final project
Submit Assignment
Due Monday by 11:59pm Points 10 Submitting a file upload File Types asm Available after Apr 13 at 11:59pm
As part of your preparation for the final project, you will be constructing your own version of one of the two benchmarks that will run on your final project implementation (post-due-date correct standardized versions will be released for both benchmarks).
Writing these benchmarks yourself in MIPS will help you understand their behavior on the final project processor and ease debugging.
Benchmark 1 (10 points):
Naive matrix multiplication.
You will write a function, NMM, that takes 3 pointers A, B, C and 1 size parameter N and performs naive (i.e. O(N3) ) matrix multiplication on the NxN matrices, stored in row-major order, specified by starting locations A and B ,and stores the result into the location specified by C. All matrix elements will be 32-bit unsigned integers.
Direct C implementation operating on pointers to row-major projected 2D arrays (for clarity)
NMM(unsigned int * A, unsigned int *B, unsigned int * C, unsigned int N){
unsigned int i, j, k;
for (i=0; i