mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
17 lines
301 B
Fortran
17 lines
301 B
Fortran
! @@name: SIMD.4
|
|
! @@type: F-free
|
|
! @@compilable: yes
|
|
! @@linkable: no
|
|
! @@expect: success
|
|
! @@version: omp_4.0
|
|
subroutine work( b, n, m )
|
|
implicit none
|
|
real :: b(n)
|
|
integer :: i,n,m
|
|
|
|
!$omp simd safelen(16)
|
|
do i = m+1, n
|
|
b(i) = b(i-m) - 1.0
|
|
end do
|
|
end subroutine work
|