GitXplorerGitXplorer
g

perf

public
383 stars
53 forks
2 issues

Commits

List of commits on branch master.
Unverified
f1a715d501dd57977f874aa1fdf7a49f40249e7a

benchseries: remove unnecessary symbol in comment

ccuishuang committed 4 months ago
Unverified
ce4811554b022ac27d024d355ad160e95079bec1

go.mod: update golang.org/x dependencies

ggopherbot committed 4 months ago
Unverified
3f62151e343cbb54ce6f792b9e1661c4e4845651

go.mod: update golang.org/x dependencies

ggopherbot committed 5 months ago
Unverified
783bcb78a1856a371a0adae88a45261bdaaa4e3f

LICENSE: update per Google Legal

rrsc committed 6 months ago
Unverified
dc66afd55b77cd4e555203ff2c0d3e4d219a1410

go.mod: update golang.org/x dependencies

ggopherbot committed 6 months ago
Unverified
3b48cf0e01640b30e676c2d0ffe23b85992be961

go.mod: update golang.org/x dependencies

ggopherbot committed 7 months ago

README

The README file for this repository.

Go benchmark analysis tools

Go Reference

This subrepository holds tools and packages for analyzing Go benchmark results, such as the output of testing package benchmarks.

Tools

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.

Packages

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.

Deprecated packages

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.

Report Issues / Send Patches

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.