You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 9, 2020. It is now read-only.
A common situation when profiling is that a piece of code has a high first-call cost (e.g. the first call will do some expensive initialization), but future calls to the piece of code will be fast because they can reuse that initialization. It'd be awesome if there were a way to pass an argument to LineProfiler to skip the first run of a given function for the purposes of the statistics. E.g. syntax like this:
A common situation when profiling is that a piece of code has a high first-call cost (e.g. the first call will do some expensive initialization), but future calls to the piece of code will be fast because they can reuse that initialization. It'd be awesome if there were a way to pass an argument to
LineProfiler
to skip the first run of a given function for the purposes of the statistics. E.g. syntax like this:The text was updated successfully, but these errors were encountered: