• Home
Name Date Size #Lines LOC

..--

MakefileD12-May-2024161 86

README.mdD12-May-2024593 2414

axis.shD12-May-2024427 141

create-alljobs.shD12-May-2024965 297

missing.shD12-May-20241.3 KiB3914

README.md

1# Job Analysis
2
3A set of scripts that analyzes `jobs.json` to look for possible holes in our
4testing.
5
6## Requirements
7
8To run the scripts you need to have both `jq` and `mlr` installed on your
9machine.
10
11    $ sudo apt install jq miller
12
13## Running
14
15The Makefile contains common queries that can be run against the data.
16
17For example, to find all cpu_or_gpu_values that we currently don't run Perf
18tests on you would run:
19
20    $ make missing_perf_jobs
21
22See https://miller.readthedocs.io/en/latest/reference-dsl.html more details on
23the the kinds of queries that can be done against CSV files.
24