We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bencher can now "smart" auto-scale most built-in Measure units: #311
However some built-in units and all custom Measure units fall back to using scientific notation for auto-scaling, ex 1e3 x units.
1e3 x units
Add a way for users to specify their own custom unit scale mappings. Using this example from @thomaseizinger, we would be auto-scaling bits/second.
bits/second
The user would just need to provide a map of ranges to new, scaled unit names. For example:
0..8
bit/second
8..8_000
bytes/second
8_000..8_000_000
kilobytes/second
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bencher can now "smart" auto-scale most built-in Measure units: #311
However some built-in units and all custom Measure units fall back to using scientific notation for auto-scaling, ex
1e3 x units
.Add a way for users to specify their own custom unit scale mappings. Using this example from @thomaseizinger, we would be auto-scaling
bits/second
.The user would just need to provide a map of ranges to new, scaled unit names. For example:
0..8
=>bit/second
8..8_000
=>bytes/second
8_000..8_000_000
=>kilobytes/second
The text was updated successfully, but these errors were encountered: