aboutsummaryrefslogtreecommitdiffstats
path: root/tools/syz-testbed/table.go
Commit message (Collapse)AuthorAgeFilesLines
* all: use any instead of interface{}Dmitry Vyukov2025-12-221-1/+1
| | | | Any is the preferred over interface{} now in Go.
* pkg/stat: rename package name to singular formDmitry Vyukov2024-07-241-1/+1
| | | | | | | | Go package names should generally be singular form: https://go.dev/blog/package-names https://rakyll.org/style-packages https://groups.google.com/g/golang-nuts/c/buBwLar1gNw
* pkg/stats: split out pkg/stats/sampleAleksandr Nogikh2024-06-141-4/+4
| | | | | This will reduce the number of dependencies needed for the main syzkaller tools.
* tools/syz-testbed: fix relative value change computationAleksandr Nogikh2024-03-211-1/+1
| | | | | It's perfectly normal for a column value not to be present -- e.g. when we compare syzkaller branches that don't use the same statistics.
* tools/syz-testbed: add table footersAleksandr Nogikh2022-02-251-1/+61
|
* tools/syz-testbed: introduce BoolCell cell typeAleksandr Nogikh2022-02-251-0/+17
|
* tools/syz-testbed: add a special cell type for ratiosAleksandr Nogikh2022-02-251-0/+13
|
* tools/syz-testbed: show diffs and p-valuesAleksandr Nogikh2021-12-061-4/+41
| | | | | | | | | | Enable the user to specify the pivot column for the stats table. If such a column is set, calculate and print the relative difference between checkouts and p-values for the estimation of statistical significance of the experimental data. For the p-value calculation use the existing implementation from the go-benchstat tool.
* tools/syz-testbed: introduce a special type for tableAleksandr Nogikh2021-12-061-0/+121
This simplifies table generation and will let us more easily implement relative difference and p-value calculation and printing.