From: Phillip Wood <phillip.wood123@gmail.com>
To: Jeff King <peff@peff.net>,
Derrick Stolee via GitGitGadget <gitgitgadget@gmail.com>
Cc: Junio C Hamano <gitster@pobox.com>,
git@vger.kernel.org, vdye@github.com, me@ttaylorr.com,
mjcheetham@outlook.com, Derrick Stolee <derrickstolee@github.com>
Subject: Re: [PATCH 2/2] for-each-ref: add --count-matches option
Date: Tue, 27 Jun 2023 11:05:29 +0100 [thread overview]
Message-ID: <f6fd39bc-65d4-76e3-94b4-9163194c89dd@gmail.com> (raw)
In-Reply-To: <20230627073007.GD1226768@coredump.intra.peff.net>
On 27/06/2023 08:30, Jeff King wrote:
> On Mon, Jun 26, 2023 at 03:09:57PM +0000, Derrick Stolee via GitGitGadget wrote:
>
>> +for pattern in "refs/heads/" "refs/tags/" "refs/remotes"
>> +do
>> + test_perf "count $pattern: git for-each-ref | wc -l" "
>> + git for-each-ref $pattern | wc -l
>> + "
>> +
>> + test_perf "count $pattern: git for-each-ref --count-match" "
>> + git for-each-ref --count-matches $pattern
>> + "
>> +done
>
> I don't think this is a very realistic perf test, because for-each-ref
> is doing a bunch of work to generate its default format, only to have
> "wc" throw most of it away. Doing:
>
> git for-each-ref --format='%(refname)' | wc -l
That's a good point. I wondered if using a short fixed format string was
even better so I tried
git init test
cd test
git commit --allow-empty -m initial
seq 0 100000 | sed "s:\(.*\):create refs/heads/some-prefix/\1 $(git
rev-parse HEAD):" | git update-ref --stdin
git pack-refs --all
hyperfine -L fmt "","--format=%\(refname\)","--format=x" 'git
for-each-ref {fmt} refs/heads/ | wc -l'
Which gives
Benchmark 1: git for-each-ref refs/heads/ | wc -l
Time (mean ± σ): 1.150 s ± 0.010 s [User: 0.494 s, System:
0.637 s]
Range (min … max): 1.140 s … 1.170 s 10 runs
Benchmark 2: git for-each-ref --format=%\(refname\) refs/heads/ | wc -l
Time (mean ± σ): 66.0 ms ± 0.3 ms [User: 58.9 ms, System:
9.5 ms]
Range (min … max): 65.2 ms … 67.1 ms 43 runs
Benchmark 3: git for-each-ref --format=x refs/heads/ | wc -l
Time (mean ± σ): 63.0 ms ± 0.5 ms [User: 54.3 ms, System:
9.6 ms]
Range (min … max): 62.3 ms … 65.4 ms 44 runs
Summary
git for-each-ref --format=x refs/heads/ | wc -l ran
1.05 ± 0.01 times faster than git for-each-ref
--format=%\(refname\) refs/heads/ | wc -l
18.25 ± 0.20 times faster than git for-each-ref refs/heads/ | wc -l
So on my somewhat slower machine the default format is over an order of
magnitude slower than using either --format=%(refname) or --format=x and
the short fixed format is marginally faster. I haven't applied stolee's
patch but the 3 or 4 times improvement mentioned in the commit message
seems likely to be from not processing the default format. One thing to
note is that we're not comparing like-with-like when more than one
pattern is given as --count-matches gives a separate count for each pattern.
I'm a bit suspicious of the massive speed up I'm seeing by avoiding the
default format but it appears to be repeatable.
Best Wishes
Phillip
> is much better (obviously you have to remember to do that if you care
> about optimizing your command, but that's true of --count-matches, too).
>
> Running hyperfine with three variants shows that the command above is
> competitive with --count-matches, though slightly slower (hyperfine
> complains about short commands and outliers because these runtimes are
> so tiny in the first place; I omitted those warnings from the output
> below for readability):
>
> Benchmark 1: ./git-for-each-ref refs/remotes/ | wc -l
> Time (mean ± σ): 6.1 ms ± 0.2 ms [User: 3.0 ms, System: 3.6 ms]
> Range (min … max): 5.6 ms … 7.1 ms 397 runs
>
> Benchmark 2: ./git-for-each-ref --format="%(refname)" refs/remotes/ | wc -l
> Time (mean ± σ): 3.3 ms ± 0.2 ms [User: 2.2 ms, System: 1.5 ms]
> Range (min … max): 3.0 ms … 4.0 ms 774 runs
>
> Benchmark 3: ./git-for-each-ref --count-matches refs/remotes/
> Time (mean ± σ): 2.4 ms ± 0.1 ms [User: 1.5 ms, System: 0.9 ms]
> Range (min … max): 2.2 ms … 3.4 ms 1018 runs
>
> Summary
> './git-for-each-ref --count-matches refs/remotes/' ran
> 1.33 ± 0.10 times faster than './git-for-each-ref --format="%(refname)" refs/remotes/ | wc -l'
> 2.48 ± 0.17 times faster than './git-for-each-ref refs/remotes/ | wc -l'
>
> I will note this is an unloaded multi-core system, which gives the piped
> version a slight edge. Total CPU is probably more interesting than
> wall-clock time, but all of these are so short that I think the results
> should be taken with a pretty big grain of salt (I had to switch from
> the "powersave" to "performance" CPU governor just to get more
> consistent results).
>
> -Peff
next prev parent reply other threads:[~2023-06-27 10:08 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-26 15:09 [PATCH 0/2] [RFC] for-each-ref: add --count-matches mode Derrick Stolee via GitGitGadget
2023-06-26 15:09 ` [PATCH 1/2] for-each-ref: extract ref output loop Derrick Stolee via GitGitGadget
2023-06-26 15:09 ` [PATCH 2/2] for-each-ref: add --count-matches option Derrick Stolee via GitGitGadget
2023-06-26 16:14 ` Junio C Hamano
2023-06-27 7:30 ` Jeff King
2023-06-27 10:05 ` Phillip Wood [this message]
2023-06-27 18:22 ` Junio C Hamano
2023-06-27 19:59 ` Jeff King
2023-06-28 13:12 ` Phillip Wood
2023-06-28 17:08 ` Junio C Hamano
2023-07-11 14:48 ` René Scharfe
2023-07-10 16:51 ` Derrick Stolee
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=f6fd39bc-65d4-76e3-94b4-9163194c89dd@gmail.com \
--to=phillip.wood123@gmail.com \
--cc=derrickstolee@github.com \
--cc=git@vger.kernel.org \
--cc=gitgitgadget@gmail.com \
--cc=gitster@pobox.com \
--cc=me@ttaylorr.com \
--cc=mjcheetham@outlook.com \
--cc=peff@peff.net \
--cc=phillip.wood@dunelm.org.uk \
--cc=vdye@github.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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 NNTP newsgroup(s).