I am using gprof to profile my code and it says that 96.4% of the time is spent in _fini
. I have no subroutine named this and the underscore makes me think it is something which I am not officially writing. What is _fini
and how do I go about optimizing this section of the code or the way the compiler uses _fini
?
If it matters I am writing in Fortan90 and using gfortran to compile. Thanks.