Tagged Questions
6
votes
2answers
138 views
When profiling a function for time use, what information is desirable?
I'm writing a program similar to Python's timeit module. The idea is to time a function by executing it anywhere from 10 to 100,000 times depending on how long it takes and then report results.
I've ...