profiler_enable Subroutine

public subroutine profiler_enable()

Enable profiling (if it was disabled)

Arguments

None

Source Code

   subroutine profiler_enable()
      !! Enable profiling (if it was disabled)
#ifdef PIC_DISABLE_PROFILER
      return
#endif
      state%enabled = .true.
   end subroutine profiler_enable