The loop is threaded and auto-vectorized; however, the trip count is not a multiple of vector length. To fix: Do all of the following:
- Use the !$omp parallel do simd directive to parallelize the loop with both threads and SIMD instructions. Specifically, this directive divides loop iterations into chunks (subsets) and distributes the chunks among threads, then chunk iterations execute concurrently using SIMD instructions.
- Add the schedule(simd: [kind]) modifier to the directive to guarantee the chunk size (number of iterations per chunk) is a multiple of vector length.
!$omp parallel do schedule(static)
do i = 1,1000
c(i) = a(i)*b(i)
end do
!$omp end parallel do!$omp parallel do simd schedule(simd: static)
do i = 1,1000
c(i) = a(i)*b(i)
end do
!$omp end parallel do simd