Dear all,
I am trying to parallelize my Fortran code using openacc. My code contains Finalization typebound procedure, like:
module m_array
type array
data members here …
contains
method members here …
Final :: array_delete
end type
contains
subroutine array_delete(this)
type(array) this
…
end subroutine
end module
It seems that the PGI Fortran compiler doesn’t support this Finalization method. The compiler gives me the message:
error LNK2001: unresolved external symbol m_array_array_td_ft_
So I am asking whether the PGI Fortran compiler support the Finalization method or not?