cmse822 / project-1-team1

project-1-team1 created by GitHub Classroom
1 stars 0 forks source link

Loop orders #4

Open bdalfavero opened 10 months ago

bdalfavero commented 10 months ago

Based on the discussion of swapping loops today, let's look at the order of iterations in our multiplication. The matrix is stored row-major, so should we iterate over the rows or columns first?

bdalfavero commented 10 months ago

No need to totally rewrite the function either. Maybe make it an (optional) argument to the multiplication function.