commit | 2f7363a06fe1e84314f47158b693ef982b0c2255 | [log] [tgz] |
---|---|---|
author | Gopher Robot <gobot@golang.org> | Wed Aug 13 14:22:06 2025 +0000 |
committer | Gopher Robot <gobot@golang.org> | Wed Aug 13 07:54:18 2025 -0700 |
tree | 3a7ff262fe3aa3c5d84e5e75fd304ef8c6afa9d2 | |
parent | c4b8702907f0bd0e325f0be4c5fd43259f3036c1 [diff] |
all: upgrade go directive to at least 1.24.0 [generated] By now Go 1.25.0 has been released, and Go 1.23 is no longer supported per the Go Release Policy (see https://go.dev/doc/devel/release#policy). For golang/go#69095. [git-generate] (cd . && go get go@1.24.0 && go mod tidy && go fix ./... && go mod edit -toolchain=none) Change-Id: I14e0858442ea452af765d2d03c174b114a2c5af7 Reviewed-on: https://go-review.googlesource.com/c/perf/+/695618 Auto-Submit: Gopher Robot <gobot@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: David Chase <drchase@google.com>
This subrepository holds tools and packages for analyzing Go benchmark results, such as the output of testing package benchmarks.
This subrepository contains command-line tools for analyzing benchmark result data.
cmd/benchstat computes statistical summaries and A/B comparisons of Go benchmarks.
cmd/benchfilter filters the contents of benchmark result files.
cmd/benchsave publishes benchmark results to perf.golang.org.
To install all of these commands, run go install golang.org/x/perf/cmd/...@latest
. You can also git clone https://go.googlesource.com/perf
and run go install ./cmd/...
in the checkout.
Underlying the above tools are several packages for working with benchmark data. These are designed to work together, but can also be used independently.
benchfmt reads and writes the Go benchmark format.
benchunit manipulates benchmark units and formats numbers in those units.
benchproc provides tools for filtering, grouping, and sorting benchmark results.
benchmath provides tools for computing statistics over distributions of benchmark measurements.
The following packages are deprecated and no longer supported:
storage contains a deprecated version of the https://perfdata.golang.org/ benchmark result storage system. These packages have moved to https://golang.org/x/build.
analysis contains a deprecated version of the https://perf.golang.org/ benchmark result analysis system. These packages have moved to https://golang.org/x/build.
This repository uses Gerrit for code changes. To learn how to submit changes to this repository, see https://go.dev/doc/contribute.
The git repository is https://go.googlesource.com/perf.
The main issue tracker for the perf repository is located at https://go.dev/issues. Prefix your issue with “x/perf:” in the subject line, so it is easy to find.