You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Anyway let me give a quick answer.
Let just think about 2 (12) * (22) and 1 (14) * (42) matrix multiplication (i.e. splitting the operation in 2 matrices)
So you can see that this would be a sum of matrices in that side. This is done in the AIE using the accumulator in the columns.
Now if you add more columns to the second matrices what happens? Do the expression on paper you will see that the columns are independent, so you can just store the matrix multiplication result side by side.
Or do the testing in matlab or python
Maybe my algebra is not good enough. Would like to know more on how to breakdown (1 * 16) * (16* 16) matrix into multiple of (1 * 2) * (2 * 4)
Thanks
The text was updated successfully, but these errors were encountered: