benchmark.js
benchmark.js copied to clipboard
What is the "x runs sampled" in the output results?
At first, I thought it was the number of executions of suite, but it was not.
I didn't find the detailed concept of sample on the Internet, benchmark The js source code is not understood.
The approximate guess is:
- The
samplemeans how many samples have been executed. - Each sample contains N executions of suite.
- Each sample has a fixed execution time
I don't know if the above conjecture is correct. Please give me some advice. Thank you!