├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bench.c ├── header.csv ├── machines └── .NOTEMPTY ├── post.R ├── results.sample.png └── runner.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ongardie/diskbenchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ongardie/diskbenchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ongardie/diskbenchmark/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ongardie/diskbenchmark/HEAD/README.md -------------------------------------------------------------------------------- /bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ongardie/diskbenchmark/HEAD/bench.c -------------------------------------------------------------------------------- /header.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ongardie/diskbenchmark/HEAD/header.csv -------------------------------------------------------------------------------- /machines/.NOTEMPTY: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /post.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ongardie/diskbenchmark/HEAD/post.R -------------------------------------------------------------------------------- /results.sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ongardie/diskbenchmark/HEAD/results.sample.png -------------------------------------------------------------------------------- /runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ongardie/diskbenchmark/HEAD/runner.sh --------------------------------------------------------------------------------