mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
20 lines
376 B
Fortran
20 lines
376 B
Fortran
! @@name: SIMD.3f
|
|
! @@type: F-free
|
|
! @@compilable: yes
|
|
! @@linkable: no
|
|
! @@expect: success
|
|
! @@version: omp_4.0
|
|
subroutine work( a, b, n, sum )
|
|
implicit none
|
|
integer :: i, n
|
|
double precision :: a(n), b(n), sum, tmp
|
|
|
|
sum = 0.0d0
|
|
!$omp simd private(tmp) reduction(+:sum)
|
|
do i = 1,n
|
|
tmp = a(i) + b(i)
|
|
sum = sum + tmp
|
|
end do
|
|
|
|
end subroutine work
|