-
-
Notifications
You must be signed in to change notification settings - Fork 358
New issue
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
Compact output format, finer control over the output #70
Comments
Thank you for the feedback!
I agree, we could save up some vertical space here. What do you think of the following compromise: skip all blank lines, except between two benchmarks:
Sounds good to me!
If we would strip some blank lines by default, as suggested above, do you think we would still need a |
I am fine with making the semi compact output that you defined the default. My suggestion for the "compact" keyword was only for backwards compatibility. |
Ok, so let's:
|
Working on this... |
PR submitted. |
Released in v1.3.0. |
I am running hyperfine with many different commands at once. In order to not only see the factor between the different commands at the end but also (some) of the means I suggest one, some or all of these changes to the output (switchable by a command line option):
hyperfine ... | sed '/^ *$/d'
.hyperfine ... | sed '/^ *$/d'
is without color and when I runhyperfine -s full ... | sed '/^ *$/d'
instead I also get the interactive graph which doesn't play nicely with the pipe and sometimes messes up a line. So why not add acolor
style to-s
which has color but is not interactive?-s
and-s
could be a comma separated list so that things like this would make sense:hyperfine -s compact,color
,hyperfine -s interactive,compact,nocolor
,hyperfine -s full,compact
,hyperfne -s basic,compact
...The text was updated successfully, but these errors were encountered: