How many iterations are done by default in benchmarking? I ask this because adding @bench(...) to one of my tests has increased its total duration from about 1.34s to about 120s, but the mean running time was only 3.6us...
Is it possible to add a command-line argument, or a decorator argument, that will control the number of iterations done for benchmarking?
How many iterations are done by default in benchmarking? I ask this because adding
@bench(...)to one of my tests has increased its total duration from about 1.34s to about 120s, but the mean running time was only 3.6us...Is it possible to add a command-line argument, or a decorator argument, that will control the number of iterations done for benchmarking?