source:
CIVL/examples/fortran/nek5000/verification/mxm_unroll4.f@
c201f5a
| Last change on this file since c201f5a was e3f356c, checked in by , 5 years ago | |
|---|---|
|
|
| File size: 298 bytes | |
| Line | |
|---|---|
| 1 | subroutine mxm(a,n1,b,n2,c,n3) |
| 2 | real a(n1,4),b(4,n3),c(n1,n3) |
| 3 | do j=1,n3 |
| 4 | do i=1,n1 |
| 5 | c(i,j) = a(i,1)*b(1,j) |
| 6 | $ + a(i,2)*b(2,j) |
| 7 | $ + a(i,3)*b(3,j) |
| 8 | $ + a(i,4)*b(4,j) |
| 9 | enddo |
| 10 | enddo |
| 11 | return |
| 12 | end |
Note:
See TracBrowser
for help on using the repository browser.
