source: CIVL/examples/fortran/nek5000/verification/mxm_unroll4.f

main
Last change on this file was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago

Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5704 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100755
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.