Fix a pasto - loop simd construct in Fortran is do simd rather than

for simd.
This commit is contained in:
Jakub Jelinek 2015-07-10 14:06:40 +02:00
parent b18b69504b
commit 4b655aa21a

View File

@ -8,7 +8,7 @@ subroutine work( a, b, c, n )
integer :: i,j,n
double precision :: a(n,n), b(n,n), c(n,n), tmp
!$omp for simd collapse(2) private(tmp)
!$omp do simd collapse(2) private(tmp)
do j = 1,n
do i = 1,n
tmp = a(i,j) + b(i,j)