CSCI2500-Homework 3 Matrix Multiplication in MIPS Solved
, you will again implement matrix multiplication, this time using MIPS.
The first matrix is an n×k matrix, while the second matrix is a k×m matrix. Therefore, the result will be an n×m matrix. Use the read_int system call (syscall) to read in n, k, and m, as well as each unsigned integer matrix value.
One approach you could take is to store these important values in your .data section as follows (with sample hard-coded values shown):
.data
n: .word 4 k: .word 3 m: .word 4
Once you have your matrix sizes defined, dynamically allocate memory to store the actual matrices. This would be equivalent to calling malloc() or calloc() in C to allocate memory on the heap. And remember that each integer is one word (or four bytes) in size.
Example Program Execution On the next page is an example MIPS program execution that you can use to better understand how your program should work, how you can test your code, and what output formatting to use for Submitty. Also use test cases from Homework 1 to test your MIPS code.
Note that you must input each value on a separate line in MIPS. And you can assume that the input given to your program is valid.
When displaying a matrix, each line must start with ‘[’ and end with ‘]’ (as with Homework 1), but in this assignment, left justify the columns by using TAB (‘\t’) characters as follows:
(spim) 9200 ] Error Checking Given the complexity of this assignment, you can assume that all input values are valid unsigned integers. You can also assume that the correct number of values is given for each matrix. In other words, you do not need to validate the user input.