git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* Consider dropping the decimal places for KiB/s 52.00 KiB/s
@ 2023-11-30 18:11 Jonny Grant
  2023-11-30 19:07 ` Taylor Blau
  0 siblings, 1 reply; 4+ messages in thread
From: Jonny Grant @ 2023-11-30 18:11 UTC (permalink / raw
  To: git

Hello

May I suggest taking off the .00 KiB/s suffix, has that been considered? As the decimal places don't appear to change, they're stuck on .00.

I noticed the KiB/s is neatly rounded to the kibibyte.

Apologies I'm not using latest release. 
git version 2.40.1


$ git clone git://gcc.gnu.org/git/gcc.git git_1
Cloning into 'git_1'...
remote: Enumerating objects: 2949348, done.
remote: Counting objects: 100% (209238/209238), done.
remote: Compressing objects: 100% (14579/14579), done.
Receiving objects:   7% (210878/2949348), 76.33 MiB | 52.00 KiB/s


Meanwhile I'll keep waiting for this slow server.

Kind regards, Jonny


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Consider dropping the decimal places for KiB/s 52.00 KiB/s
  2023-11-30 18:11 Consider dropping the decimal places for KiB/s 52.00 KiB/s Jonny Grant
@ 2023-11-30 19:07 ` Taylor Blau
  2023-11-30 19:28   ` Dragan Simic
  2023-11-30 20:19   ` Jonny Grant
  0 siblings, 2 replies; 4+ messages in thread
From: Taylor Blau @ 2023-11-30 19:07 UTC (permalink / raw
  To: Jonny Grant; +Cc: git

On Thu, Nov 30, 2023 at 06:11:57PM +0000, Jonny Grant wrote:
> Hello
>
> May I suggest taking off the .00 KiB/s suffix, has that been
> considered? As the decimal places don't appear to change, they're
> stuck on .00.

I wonder if you have a throttled connection that is locked to 52KiB/s
exactly. The progress code that generates the throughput is in
progress.c::display_throughput(), which computes the rate. It's computed
in bytes/misec, and then passed to throughput_string() (really,
`strbuf_humanise_rate()`), which formats it appropriately.

If you're in the KiB range, it will print the decimal component, which
is:

    ((bytes & ((1<<10)-1)) * 100) >> 10

> $ git clone git://gcc.gnu.org/git/gcc.git git_1
> Cloning into 'git_1'...
> remote: Enumerating objects: 2949348, done.
> remote: Counting objects: 100% (209238/209238), done.
> remote: Compressing objects: 100% (14579/14579), done.
> Receiving objects:   7% (210878/2949348), 76.33 MiB | 52.00 KiB/s

On my machine:

    $ git.compile clone git://gcc.gnu.org/git/gcc.git
    [...]
    Receiving objects:  11% (342176/2949348), 108.09 MiB | 24.01 MiB/s

I suppose we could consider dropping the decimal component if it's a
round number, but I think that it may produce awkward flickering if the
rate oscillates between a round number and a non-round number.

Thanks,
Taylor


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Consider dropping the decimal places for KiB/s 52.00 KiB/s
  2023-11-30 19:07 ` Taylor Blau
@ 2023-11-30 19:28   ` Dragan Simic
  2023-11-30 20:19   ` Jonny Grant
  1 sibling, 0 replies; 4+ messages in thread
From: Dragan Simic @ 2023-11-30 19:28 UTC (permalink / raw
  To: Taylor Blau; +Cc: Jonny Grant, git

On 2023-11-30 20:07, Taylor Blau wrote:
> On Thu, Nov 30, 2023 at 06:11:57PM +0000, Jonny Grant wrote:
>> $ git clone git://gcc.gnu.org/git/gcc.git git_1
>> Cloning into 'git_1'...
>> remote: Enumerating objects: 2949348, done.
>> remote: Counting objects: 100% (209238/209238), done.
>> remote: Compressing objects: 100% (14579/14579), done.
>> Receiving objects:   7% (210878/2949348), 76.33 MiB | 52.00 KiB/s
> 
> On my machine:
> 
>     $ git.compile clone git://gcc.gnu.org/git/gcc.git
>     [...]
>     Receiving objects:  11% (342176/2949348), 108.09 MiB | 24.01 MiB/s
> 
> I suppose we could consider dropping the decimal component if it's a
> round number, but I think that it may produce awkward flickering if the
> rate oscillates between a round number and a non-round number.

You're right, the resulting flickering would look really annoying.  In 
fact, I already modified the reported download speed in another project 
to avoid pretty much the same kind of flickering, and it looked much 
better without it.


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Consider dropping the decimal places for KiB/s 52.00 KiB/s
  2023-11-30 19:07 ` Taylor Blau
  2023-11-30 19:28   ` Dragan Simic
@ 2023-11-30 20:19   ` Jonny Grant
  1 sibling, 0 replies; 4+ messages in thread
From: Jonny Grant @ 2023-11-30 20:19 UTC (permalink / raw
  To: Taylor Blau; +Cc: git



On 30/11/2023 19:07, Taylor Blau wrote:
> On Thu, Nov 30, 2023 at 06:11:57PM +0000, Jonny Grant wrote:
>> Hello
>>
>> May I suggest taking off the .00 KiB/s suffix, has that been
>> considered? As the decimal places don't appear to change, they're
>> stuck on .00.
> 
> I wonder if you have a throttled connection that is locked to 52KiB/s
> exactly.

You're right - I changed to https and it went to 6 MiB/s. Seems throttled on git://
I should have checked that first.

>  The progress code that generates the throughput is in
> progress.c::display_throughput(), which computes the rate. It's computed
> in bytes/misec, and then passed to throughput_string() (really,
> `strbuf_humanise_rate()`), which formats it appropriately.
> 
> If you're in the KiB range, it will print the decimal component, which
> is:
> 
>     ((bytes & ((1<<10)-1)) * 100) >> 10
> 
>> $ git clone git://gcc.gnu.org/git/gcc.git git_1
>> Cloning into 'git_1'...
>> remote: Enumerating objects: 2949348, done.
>> remote: Counting objects: 100% (209238/209238), done.
>> remote: Compressing objects: 100% (14579/14579), done.
>> Receiving objects:   7% (210878/2949348), 76.33 MiB | 52.00 KiB/s
> 
> On my machine:
> 
>     $ git.compile clone git://gcc.gnu.org/git/gcc.git
>     [...]
>     Receiving objects:  11% (342176/2949348), 108.09 MiB | 24.01 MiB/s
> 
> I suppose we could consider dropping the decimal component if it's a
> round number, but I think that it may produce awkward flickering if the
> rate oscillates between a round number and a non-round number.

Now I can see the advantage of it as it is. wget is similar.
Kind regards, Jonny




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-11-30 20:19 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-30 18:11 Consider dropping the decimal places for KiB/s 52.00 KiB/s Jonny Grant
2023-11-30 19:07 ` Taylor Blau
2023-11-30 19:28   ` Dragan Simic
2023-11-30 20:19   ` Jonny Grant

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).