mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
19 lines
360 B
Fortran
19 lines
360 B
Fortran
! @@name: SIMD.1f
|
|
! @@type: F-free
|
|
! @@compilable: yes
|
|
! @@linkable: no
|
|
! @@expect: success
|
|
! @@version: omp_4.0
|
|
subroutine star(a,b,c,n,ioff_ptr)
|
|
implicit none
|
|
double precision :: a(*),b(*),c(*)
|
|
integer :: n, i
|
|
integer, pointer :: ioff_ptr
|
|
|
|
!$omp simd
|
|
do i = 1,n
|
|
a(i) = a(i) * b(i) * c(i+ioff_ptr)
|
|
end do
|
|
|
|
end subroutine
|