On Wed, Nov 01, 2017 at 04:23:11PM +0000, Szabolcs Nagy wrote: > is there a way to get vectorized math functions in fortran? > > in c code there is attribute simd declarations or openmp > declare simd pragma to tell the compiler which functions > have simd variant, but i see no such thing in fortran.
!$omp declare simd should work fine in fortran (with -fopenmp or -fopenmp-simd). Jakub