Hello,
I have been working with ifort11 and just recently have changed to ifort12. However, to compile the same code, ifort12 takes a couple of minutes to compile some modules that ifort11 used to compile in a couple of seconds. The particular modules that show the problem have an allocatable module array declaration, like the one below.
I would like to know what is going on.
Luis
module this_module
use other modules , only: functions, subroutines
public :: subroutine_A
private
Real*8 , allocatable :: matrix(:,:,:)
contains
!
!
subroutine_A ....


