You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue appears in 800.pot3d_s with -fdo-concurrent-to-openmp=host:
flang -c -o pot3d.fppized.o -O1 -fopenmp -fdo-concurrent-to-openmp=host pot3d.fppized.f90
warning: Mapping `do concurrent` to OpenMP is still experimental.
error: loc("pot3d.fppized.f90":6723:7): redefinition of symbol named 'add_reduction_f64.omp'
error: verification of lowering to FIR failed
Simple reprorucer:
subroutine test1(x,s,N)
real :: x(N), s
integer :: N
do concurrent(i=1:N) reduce(+:s)
s=s+x(i)
end do
end subroutine test1
subroutine test2(x,s,N)
real :: x(N), s
integer :: N
do concurrent(i=1:N) reduce(+:s)
s=s+x(i)
end do
end subroutine test2