commit | 6646f2032b55bf51af25b8b10640d42cee08424e | [log] [tgz] |
---|---|---|
author | cui fliter <imcusg@gmail.com> | Thu Sep 15 08:05:12 2022 +0000 |
committer | Gopher Robot <gobot@golang.org> | Thu Sep 15 21:05:22 2022 +0000 |
tree | f7e398fc1f1cf445eb4ce881e85fa2c8de38d2dd | |
parent | 7c6e287988f39862231fb22c21affeb0c0f67a0a [diff] |
all: replace io/ioutil with io and os package For #45557 Change-Id: I12784eeadcbb467819307a6ec8008f940f215065 GitHub-Last-Rev: 4cc337ea4a4a7c59d5d9226911ecf0d4a71aa44c GitHub-Pull-Request: golang/perf#5 Reviewed-on: https://go-review.googlesource.com/c/perf/+/430796 Run-TryBot: Jenny Rakoczy <jenny@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Auto-Submit: Jenny Rakoczy <jenny@golang.org> Reviewed-by: Jenny Rakoczy <jenny@golang.org> Run-TryBot: Meng Zhuo <mzh@golangcn.org> Reviewed-by: Ian Lance Taylor <iant@google.com> Reviewed-by: Meng Zhuo <mzh@golangcn.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@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/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://golang.org/doc/contribute.html.
The main issue tracker for the perf repository is located at https://github.com/golang/go/issues. Prefix your issue with “x/perf:” in the subject line, so it is easy to find.