Benchmark tool #53
Replies: 16 comments 64 replies
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
-
|
I was looking at other benchmarking tools surrounding luau and I like how bench has some way to look at stability and outliers. I think that we need to account for both and store values that can be used in tools to either generate the values or outright add them to the format. I saw mad, cv, and mild outliers. I also saw a confidence interval used interally, but it just requires the count, which is used to calculate the standard error and t-critical, then the margin for the interval. I propose we add |
Beta Was this translation helpful? Give feedback.
-
|
Remove hist. The information it holds can be inferred by stdev and mad. Knowing how many are in some set range is useful for visualizations, but storing the entire dataset would allow for more precise visualizations. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
The parallelbench tool in #33 is not ideal. Parallel benchmark results are wildly inaccurate.
When benchmarking, what do we need to be able to do?
The JSON format the output uses is as follows:
Assumptions:
{ time: { number }, space: { number }, metadata: { [string]: any }? }Beta Was this translation helpful? Give feedback.
All reactions