This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] format benchtest outputs.


On 6 September 2013 08:58, OndÅej BÃlka <neleai@seznam.cz> wrote:
> Hi,
>
> This changes format specifier in benchtest to have fixed decimal point
> which makes results easier to read.
>
> OK to commit?
>
>         * benchtests/bench-timing.h: Format outputs.
> diff --git a/benchtests/bench-timing.h b/benchtests/bench-timing.h
> index 009813b..a6963ea 100644
> --- a/benchtests/bench-timing.h
> +++ b/benchtests/bench-timing.h
> @@ -72,4 +72,4 @@ typedef uint64_t timing_t;
>  #endif
>
>  #define TIMING_PRINT_MEAN(d_total_s, d_iters) \
> -  printf ("\t%g", (d_total_s) / (d_iters))
> +  printf (" %10.2f", (d_total_s) / (d_iters))

Looks good to me.

-- 
Will Newton
Toolchain Working Group, Linaro


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]