Automatic arrays and intrinsic array operations: to use or not to use?

Try the heap-arrays flag to compile:

ifort -heap-arrays test_matmul.f90 && ./a.out

OR gfortran without it:

gfortran test_matmul.f90 && ./a.out
2 Likes