You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
450 B
27 lines
450 B
! RUN: %S/test_errors.sh %s %t %f18 -fopenmp
|
|
! OpenMP Version 4.5
|
|
! 2.15.4.1 copyin Clause
|
|
! A list item that appears in a copyin clause must be threadprivate
|
|
|
|
program omp_copyin
|
|
|
|
integer :: i
|
|
integer, save :: j, k
|
|
integer :: a(10), b(10)
|
|
|
|
!$omp threadprivate(j, k)
|
|
|
|
j = 20
|
|
k = 10
|
|
|
|
!$omp parallel do copyin(j, k)
|
|
do i = 1, 10
|
|
a(i) = k + i
|
|
b(i) = j + i
|
|
end do
|
|
!$omp end parallel do
|
|
|
|
print *, a, b
|
|
|
|
end program omp_copyin
|