├── .gitattributes
├── .gitignore
├── .travis.yml
├── Cargo.toml
├── LICENSE
├── README.md
├── benches
└── rksuid_criterion.rs
├── docs
├── _config.yml
├── criterion
│ ├── deserialize
│ │ └── deserialize
│ │ │ ├── base
│ │ │ ├── benchmark.json
│ │ │ ├── estimates.json
│ │ │ ├── raw.csv
│ │ │ ├── sample.json
│ │ │ └── tukey.json
│ │ │ ├── new
│ │ │ ├── benchmark.json
│ │ │ ├── estimates.json
│ │ │ ├── raw.csv
│ │ │ ├── sample.json
│ │ │ └── tukey.json
│ │ │ └── report
│ │ │ ├── MAD.svg
│ │ │ ├── SD.svg
│ │ │ ├── index.html
│ │ │ ├── mean.svg
│ │ │ ├── median.svg
│ │ │ ├── pdf.svg
│ │ │ ├── pdf_small.svg
│ │ │ ├── regression.svg
│ │ │ ├── regression_small.svg
│ │ │ └── slope.svg
│ ├── gen_payloads
│ │ ├── report
│ │ │ ├── index.html
│ │ │ └── violin.svg
│ │ └── rng
│ │ │ ├── chacha12
│ │ │ ├── base
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ ├── new
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ └── report
│ │ │ │ ├── MAD.svg
│ │ │ │ ├── SD.svg
│ │ │ │ ├── index.html
│ │ │ │ ├── mean.svg
│ │ │ │ ├── median.svg
│ │ │ │ ├── pdf.svg
│ │ │ │ ├── pdf_small.svg
│ │ │ │ ├── regression.svg
│ │ │ │ ├── regression_small.svg
│ │ │ │ └── slope.svg
│ │ │ ├── chacha8
│ │ │ ├── base
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ ├── new
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ └── report
│ │ │ │ ├── MAD.svg
│ │ │ │ ├── SD.svg
│ │ │ │ ├── index.html
│ │ │ │ ├── mean.svg
│ │ │ │ ├── median.svg
│ │ │ │ ├── pdf.svg
│ │ │ │ ├── pdf_small.svg
│ │ │ │ ├── regression.svg
│ │ │ │ ├── regression_small.svg
│ │ │ │ └── slope.svg
│ │ │ ├── core
│ │ │ ├── base
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ ├── new
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ └── report
│ │ │ │ ├── MAD.svg
│ │ │ │ ├── SD.svg
│ │ │ │ ├── index.html
│ │ │ │ ├── mean.svg
│ │ │ │ ├── median.svg
│ │ │ │ ├── pdf.svg
│ │ │ │ ├── pdf_small.svg
│ │ │ │ ├── regression.svg
│ │ │ │ ├── regression_small.svg
│ │ │ │ └── slope.svg
│ │ │ ├── hc128
│ │ │ ├── base
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ ├── new
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ └── report
│ │ │ │ ├── MAD.svg
│ │ │ │ ├── SD.svg
│ │ │ │ ├── index.html
│ │ │ │ ├── mean.svg
│ │ │ │ ├── median.svg
│ │ │ │ ├── pdf.svg
│ │ │ │ ├── pdf_small.svg
│ │ │ │ ├── regression.svg
│ │ │ │ ├── regression_small.svg
│ │ │ │ └── slope.svg
│ │ │ ├── hyperthread
│ │ │ ├── base
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ ├── new
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ └── report
│ │ │ │ ├── MAD.svg
│ │ │ │ ├── SD.svg
│ │ │ │ ├── index.html
│ │ │ │ ├── mean.svg
│ │ │ │ ├── median.svg
│ │ │ │ ├── pdf.svg
│ │ │ │ ├── pdf_small.svg
│ │ │ │ ├── regression.svg
│ │ │ │ ├── regression_small.svg
│ │ │ │ └── slope.svg
│ │ │ ├── pcg64fast
│ │ │ ├── base
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ ├── new
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ └── report
│ │ │ │ ├── MAD.svg
│ │ │ │ ├── SD.svg
│ │ │ │ ├── index.html
│ │ │ │ ├── mean.svg
│ │ │ │ ├── median.svg
│ │ │ │ ├── pdf.svg
│ │ │ │ ├── pdf_small.svg
│ │ │ │ ├── regression.svg
│ │ │ │ ├── regression_small.svg
│ │ │ │ └── slope.svg
│ │ │ ├── report
│ │ │ ├── index.html
│ │ │ └── violin.svg
│ │ │ ├── sfmt
│ │ │ ├── base
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ ├── new
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ └── report
│ │ │ │ ├── MAD.svg
│ │ │ │ ├── SD.svg
│ │ │ │ ├── index.html
│ │ │ │ ├── mean.svg
│ │ │ │ ├── median.svg
│ │ │ │ ├── pdf.svg
│ │ │ │ ├── pdf_small.svg
│ │ │ │ ├── regression.svg
│ │ │ │ ├── regression_small.svg
│ │ │ │ └── slope.svg
│ │ │ ├── wyrng
│ │ │ ├── base
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ ├── new
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ └── report
│ │ │ │ ├── MAD.svg
│ │ │ │ ├── SD.svg
│ │ │ │ ├── index.html
│ │ │ │ ├── mean.svg
│ │ │ │ ├── median.svg
│ │ │ │ ├── pdf.svg
│ │ │ │ ├── pdf_small.svg
│ │ │ │ ├── regression.svg
│ │ │ │ ├── regression_small.svg
│ │ │ │ └── slope.svg
│ │ │ ├── xorshift
│ │ │ ├── base
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ ├── new
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ └── report
│ │ │ │ ├── MAD.svg
│ │ │ │ ├── SD.svg
│ │ │ │ ├── index.html
│ │ │ │ ├── mean.svg
│ │ │ │ ├── median.svg
│ │ │ │ ├── pdf.svg
│ │ │ │ ├── pdf_small.svg
│ │ │ │ ├── regression.svg
│ │ │ │ ├── regression_small.svg
│ │ │ │ └── slope.svg
│ │ │ ├── xoshiro256plusplus
│ │ │ ├── base
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ ├── new
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ └── report
│ │ │ │ ├── MAD.svg
│ │ │ │ ├── SD.svg
│ │ │ │ ├── index.html
│ │ │ │ ├── mean.svg
│ │ │ │ ├── median.svg
│ │ │ │ ├── pdf.svg
│ │ │ │ ├── pdf_small.svg
│ │ │ │ ├── regression.svg
│ │ │ │ ├── regression_small.svg
│ │ │ │ └── slope.svg
│ │ │ └── xoshiro256starstar
│ │ │ ├── base
│ │ │ ├── benchmark.json
│ │ │ ├── estimates.json
│ │ │ ├── raw.csv
│ │ │ ├── sample.json
│ │ │ └── tukey.json
│ │ │ ├── new
│ │ │ ├── benchmark.json
│ │ │ ├── estimates.json
│ │ │ ├── raw.csv
│ │ │ ├── sample.json
│ │ │ └── tukey.json
│ │ │ └── report
│ │ │ ├── MAD.svg
│ │ │ ├── SD.svg
│ │ │ ├── index.html
│ │ │ ├── mean.svg
│ │ │ ├── median.svg
│ │ │ ├── pdf.svg
│ │ │ ├── pdf_small.svg
│ │ │ ├── regression.svg
│ │ │ ├── regression_small.svg
│ │ │ └── slope.svg
│ ├── new
│ │ ├── new-with-payload
│ │ │ ├── base
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ ├── change
│ │ │ │ └── estimates.json
│ │ │ ├── new
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ └── report
│ │ │ │ ├── MAD.svg
│ │ │ │ ├── SD.svg
│ │ │ │ ├── both
│ │ │ │ ├── pdf.svg
│ │ │ │ └── regression.svg
│ │ │ │ ├── change
│ │ │ │ ├── mean.svg
│ │ │ │ ├── median.svg
│ │ │ │ └── t-test.svg
│ │ │ │ ├── index.html
│ │ │ │ ├── mean.svg
│ │ │ │ ├── median.svg
│ │ │ │ ├── pdf.svg
│ │ │ │ ├── pdf_small.svg
│ │ │ │ ├── regression.svg
│ │ │ │ ├── regression_small.svg
│ │ │ │ ├── relative_pdf_small.svg
│ │ │ │ ├── relative_regression_small.svg
│ │ │ │ └── slope.svg
│ │ ├── new-with-timestamp
│ │ │ ├── base
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ ├── change
│ │ │ │ └── estimates.json
│ │ │ ├── new
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ └── report
│ │ │ │ ├── MAD.svg
│ │ │ │ ├── SD.svg
│ │ │ │ ├── both
│ │ │ │ ├── pdf.svg
│ │ │ │ └── regression.svg
│ │ │ │ ├── change
│ │ │ │ ├── mean.svg
│ │ │ │ ├── median.svg
│ │ │ │ └── t-test.svg
│ │ │ │ ├── index.html
│ │ │ │ ├── mean.svg
│ │ │ │ ├── median.svg
│ │ │ │ ├── pdf.svg
│ │ │ │ ├── pdf_small.svg
│ │ │ │ ├── regression.svg
│ │ │ │ ├── regression_small.svg
│ │ │ │ ├── relative_pdf_small.svg
│ │ │ │ ├── relative_regression_small.svg
│ │ │ │ └── slope.svg
│ │ ├── new
│ │ │ ├── base
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ ├── change
│ │ │ │ └── estimates.json
│ │ │ ├── new
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ └── report
│ │ │ │ ├── MAD.svg
│ │ │ │ ├── SD.svg
│ │ │ │ ├── both
│ │ │ │ ├── pdf.svg
│ │ │ │ └── regression.svg
│ │ │ │ ├── change
│ │ │ │ ├── mean.svg
│ │ │ │ ├── median.svg
│ │ │ │ └── t-test.svg
│ │ │ │ ├── index.html
│ │ │ │ ├── mean.svg
│ │ │ │ ├── median.svg
│ │ │ │ ├── pdf.svg
│ │ │ │ ├── pdf_small.svg
│ │ │ │ ├── regression.svg
│ │ │ │ ├── regression_small.svg
│ │ │ │ ├── relative_pdf_small.svg
│ │ │ │ ├── relative_regression_small.svg
│ │ │ │ └── slope.svg
│ │ └── report
│ │ │ ├── index.html
│ │ │ └── violin.svg
│ ├── report
│ │ └── index.html
│ ├── serialize
│ │ └── serialize
│ │ │ ├── base
│ │ │ ├── benchmark.json
│ │ │ ├── estimates.json
│ │ │ ├── raw.csv
│ │ │ ├── sample.json
│ │ │ └── tukey.json
│ │ │ ├── new
│ │ │ ├── benchmark.json
│ │ │ ├── estimates.json
│ │ │ ├── raw.csv
│ │ │ ├── sample.json
│ │ │ └── tukey.json
│ │ │ └── report
│ │ │ ├── MAD.svg
│ │ │ ├── SD.svg
│ │ │ ├── index.html
│ │ │ ├── mean.svg
│ │ │ ├── median.svg
│ │ │ ├── pdf.svg
│ │ │ ├── pdf_small.svg
│ │ │ ├── regression.svg
│ │ │ ├── regression_small.svg
│ │ │ └── slope.svg
│ └── sort
│ │ ├── 5
│ │ └── report
│ │ │ ├── index.html
│ │ │ └── violin.svg
│ │ ├── 10
│ │ └── report
│ │ │ ├── index.html
│ │ │ └── violin.svg
│ │ ├── 100
│ │ └── report
│ │ │ ├── index.html
│ │ │ └── violin.svg
│ │ ├── 1000
│ │ └── report
│ │ │ ├── index.html
│ │ │ └── violin.svg
│ │ ├── 5000
│ │ └── report
│ │ │ ├── index.html
│ │ │ └── violin.svg
│ │ ├── 10000
│ │ └── report
│ │ │ ├── index.html
│ │ │ └── violin.svg
│ │ ├── 50000
│ │ └── report
│ │ │ ├── index.html
│ │ │ └── violin.svg
│ │ ├── 100000
│ │ └── report
│ │ │ ├── index.html
│ │ │ └── violin.svg
│ │ ├── report
│ │ ├── index.html
│ │ ├── lines.svg
│ │ └── violin.svg
│ │ ├── sort
│ │ ├── 5
│ │ │ ├── base
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ ├── new
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ └── report
│ │ │ │ ├── MAD.svg
│ │ │ │ ├── SD.svg
│ │ │ │ ├── index.html
│ │ │ │ ├── mean.svg
│ │ │ │ ├── median.svg
│ │ │ │ ├── pdf.svg
│ │ │ │ ├── pdf_small.svg
│ │ │ │ ├── regression.svg
│ │ │ │ ├── regression_small.svg
│ │ │ │ └── slope.svg
│ │ ├── 10
│ │ │ ├── base
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ ├── new
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ └── report
│ │ │ │ ├── MAD.svg
│ │ │ │ ├── SD.svg
│ │ │ │ ├── index.html
│ │ │ │ ├── mean.svg
│ │ │ │ ├── median.svg
│ │ │ │ ├── pdf.svg
│ │ │ │ ├── pdf_small.svg
│ │ │ │ ├── regression.svg
│ │ │ │ ├── regression_small.svg
│ │ │ │ └── slope.svg
│ │ ├── 100
│ │ │ ├── base
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ ├── new
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ └── report
│ │ │ │ ├── MAD.svg
│ │ │ │ ├── SD.svg
│ │ │ │ ├── index.html
│ │ │ │ ├── mean.svg
│ │ │ │ ├── median.svg
│ │ │ │ ├── pdf.svg
│ │ │ │ ├── pdf_small.svg
│ │ │ │ ├── regression.svg
│ │ │ │ ├── regression_small.svg
│ │ │ │ └── slope.svg
│ │ ├── 1000
│ │ │ ├── base
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ ├── new
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ └── report
│ │ │ │ ├── MAD.svg
│ │ │ │ ├── SD.svg
│ │ │ │ ├── index.html
│ │ │ │ ├── mean.svg
│ │ │ │ ├── median.svg
│ │ │ │ ├── pdf.svg
│ │ │ │ ├── pdf_small.svg
│ │ │ │ ├── regression.svg
│ │ │ │ ├── regression_small.svg
│ │ │ │ └── slope.svg
│ │ ├── 5000
│ │ │ ├── base
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ ├── new
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ └── report
│ │ │ │ ├── MAD.svg
│ │ │ │ ├── SD.svg
│ │ │ │ ├── index.html
│ │ │ │ ├── mean.svg
│ │ │ │ ├── median.svg
│ │ │ │ ├── pdf.svg
│ │ │ │ ├── pdf_small.svg
│ │ │ │ ├── regression.svg
│ │ │ │ ├── regression_small.svg
│ │ │ │ └── slope.svg
│ │ ├── 10000
│ │ │ ├── base
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ ├── new
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ └── report
│ │ │ │ ├── MAD.svg
│ │ │ │ ├── SD.svg
│ │ │ │ ├── index.html
│ │ │ │ ├── mean.svg
│ │ │ │ ├── median.svg
│ │ │ │ ├── pdf.svg
│ │ │ │ ├── pdf_small.svg
│ │ │ │ ├── regression.svg
│ │ │ │ ├── regression_small.svg
│ │ │ │ └── slope.svg
│ │ ├── 50000
│ │ │ ├── base
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ ├── new
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ └── report
│ │ │ │ ├── MAD.svg
│ │ │ │ ├── SD.svg
│ │ │ │ ├── index.html
│ │ │ │ ├── mean.svg
│ │ │ │ ├── median.svg
│ │ │ │ ├── pdf.svg
│ │ │ │ ├── pdf_small.svg
│ │ │ │ ├── regression.svg
│ │ │ │ ├── regression_small.svg
│ │ │ │ └── slope.svg
│ │ ├── 100000
│ │ │ ├── base
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ ├── new
│ │ │ │ ├── benchmark.json
│ │ │ │ ├── estimates.json
│ │ │ │ ├── raw.csv
│ │ │ │ ├── sample.json
│ │ │ │ └── tukey.json
│ │ │ └── report
│ │ │ │ ├── MAD.svg
│ │ │ │ ├── SD.svg
│ │ │ │ ├── index.html
│ │ │ │ ├── mean.svg
│ │ │ │ ├── median.svg
│ │ │ │ ├── pdf.svg
│ │ │ │ ├── pdf_small.svg
│ │ │ │ ├── regression.svg
│ │ │ │ ├── regression_small.svg
│ │ │ │ └── slope.svg
│ │ └── report
│ │ │ ├── index.html
│ │ │ ├── lines.svg
│ │ │ └── violin.svg
│ │ └── unstable
│ │ ├── 5
│ │ ├── base
│ │ │ ├── benchmark.json
│ │ │ ├── estimates.json
│ │ │ ├── raw.csv
│ │ │ ├── sample.json
│ │ │ └── tukey.json
│ │ ├── new
│ │ │ ├── benchmark.json
│ │ │ ├── estimates.json
│ │ │ ├── raw.csv
│ │ │ ├── sample.json
│ │ │ └── tukey.json
│ │ └── report
│ │ │ ├── MAD.svg
│ │ │ ├── SD.svg
│ │ │ ├── index.html
│ │ │ ├── mean.svg
│ │ │ ├── median.svg
│ │ │ ├── pdf.svg
│ │ │ ├── pdf_small.svg
│ │ │ ├── regression.svg
│ │ │ ├── regression_small.svg
│ │ │ └── slope.svg
│ │ ├── 10
│ │ ├── base
│ │ │ ├── benchmark.json
│ │ │ ├── estimates.json
│ │ │ ├── raw.csv
│ │ │ ├── sample.json
│ │ │ └── tukey.json
│ │ ├── new
│ │ │ ├── benchmark.json
│ │ │ ├── estimates.json
│ │ │ ├── raw.csv
│ │ │ ├── sample.json
│ │ │ └── tukey.json
│ │ └── report
│ │ │ ├── MAD.svg
│ │ │ ├── SD.svg
│ │ │ ├── index.html
│ │ │ ├── mean.svg
│ │ │ ├── median.svg
│ │ │ ├── pdf.svg
│ │ │ ├── pdf_small.svg
│ │ │ ├── regression.svg
│ │ │ ├── regression_small.svg
│ │ │ └── slope.svg
│ │ ├── 100
│ │ ├── base
│ │ │ ├── benchmark.json
│ │ │ ├── estimates.json
│ │ │ ├── raw.csv
│ │ │ ├── sample.json
│ │ │ └── tukey.json
│ │ ├── new
│ │ │ ├── benchmark.json
│ │ │ ├── estimates.json
│ │ │ ├── raw.csv
│ │ │ ├── sample.json
│ │ │ └── tukey.json
│ │ └── report
│ │ │ ├── MAD.svg
│ │ │ ├── SD.svg
│ │ │ ├── index.html
│ │ │ ├── mean.svg
│ │ │ ├── median.svg
│ │ │ ├── pdf.svg
│ │ │ ├── pdf_small.svg
│ │ │ ├── regression.svg
│ │ │ ├── regression_small.svg
│ │ │ └── slope.svg
│ │ ├── 1000
│ │ ├── base
│ │ │ ├── benchmark.json
│ │ │ ├── estimates.json
│ │ │ ├── raw.csv
│ │ │ ├── sample.json
│ │ │ └── tukey.json
│ │ ├── new
│ │ │ ├── benchmark.json
│ │ │ ├── estimates.json
│ │ │ ├── raw.csv
│ │ │ ├── sample.json
│ │ │ └── tukey.json
│ │ └── report
│ │ │ ├── MAD.svg
│ │ │ ├── SD.svg
│ │ │ ├── index.html
│ │ │ ├── mean.svg
│ │ │ ├── median.svg
│ │ │ ├── pdf.svg
│ │ │ ├── pdf_small.svg
│ │ │ ├── regression.svg
│ │ │ ├── regression_small.svg
│ │ │ └── slope.svg
│ │ ├── 5000
│ │ ├── base
│ │ │ ├── benchmark.json
│ │ │ ├── estimates.json
│ │ │ ├── raw.csv
│ │ │ ├── sample.json
│ │ │ └── tukey.json
│ │ ├── new
│ │ │ ├── benchmark.json
│ │ │ ├── estimates.json
│ │ │ ├── raw.csv
│ │ │ ├── sample.json
│ │ │ └── tukey.json
│ │ └── report
│ │ │ ├── MAD.svg
│ │ │ ├── SD.svg
│ │ │ ├── index.html
│ │ │ ├── mean.svg
│ │ │ ├── median.svg
│ │ │ ├── pdf.svg
│ │ │ ├── pdf_small.svg
│ │ │ ├── regression.svg
│ │ │ ├── regression_small.svg
│ │ │ └── slope.svg
│ │ ├── 10000
│ │ ├── base
│ │ │ ├── benchmark.json
│ │ │ ├── estimates.json
│ │ │ ├── raw.csv
│ │ │ ├── sample.json
│ │ │ └── tukey.json
│ │ ├── new
│ │ │ ├── benchmark.json
│ │ │ ├── estimates.json
│ │ │ ├── raw.csv
│ │ │ ├── sample.json
│ │ │ └── tukey.json
│ │ └── report
│ │ │ ├── MAD.svg
│ │ │ ├── SD.svg
│ │ │ ├── index.html
│ │ │ ├── mean.svg
│ │ │ ├── median.svg
│ │ │ ├── pdf.svg
│ │ │ ├── pdf_small.svg
│ │ │ ├── regression.svg
│ │ │ ├── regression_small.svg
│ │ │ └── slope.svg
│ │ ├── 50000
│ │ ├── base
│ │ │ ├── benchmark.json
│ │ │ ├── estimates.json
│ │ │ ├── raw.csv
│ │ │ ├── sample.json
│ │ │ └── tukey.json
│ │ ├── new
│ │ │ ├── benchmark.json
│ │ │ ├── estimates.json
│ │ │ ├── raw.csv
│ │ │ ├── sample.json
│ │ │ └── tukey.json
│ │ └── report
│ │ │ ├── MAD.svg
│ │ │ ├── SD.svg
│ │ │ ├── index.html
│ │ │ ├── mean.svg
│ │ │ ├── median.svg
│ │ │ ├── pdf.svg
│ │ │ ├── pdf_small.svg
│ │ │ ├── regression.svg
│ │ │ ├── regression_small.svg
│ │ │ └── slope.svg
│ │ ├── 100000
│ │ ├── base
│ │ │ ├── benchmark.json
│ │ │ ├── estimates.json
│ │ │ ├── raw.csv
│ │ │ ├── sample.json
│ │ │ └── tukey.json
│ │ ├── new
│ │ │ ├── benchmark.json
│ │ │ ├── estimates.json
│ │ │ ├── raw.csv
│ │ │ ├── sample.json
│ │ │ └── tukey.json
│ │ └── report
│ │ │ ├── MAD.svg
│ │ │ ├── SD.svg
│ │ │ ├── index.html
│ │ │ ├── mean.svg
│ │ │ ├── median.svg
│ │ │ ├── pdf.svg
│ │ │ ├── pdf_small.svg
│ │ │ ├── regression.svg
│ │ │ ├── regression_small.svg
│ │ │ └── slope.svg
│ │ └── report
│ │ ├── index.html
│ │ ├── lines.svg
│ │ └── violin.svg
└── index.html
├── src
└── lib.rs
└── tests
├── compat.rs
├── new.rs
├── props.rs
├── serialize.rs
└── sorting.rs
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Generated by Cargo
2 | # will have compiled files and executables
3 | /target/
4 |
5 | # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
6 | # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
7 | Cargo.lock
8 |
9 | # These are backup files generated by rustfmt
10 | **/*.rs.bk
11 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: rust
2 | cache: cargo
3 | rust:
4 | - stable
5 | - nightly
6 | script:
7 | - cargo test
8 |
9 | before_install:
10 | - curl -L https://github.com/mozilla/grcov/releases/latest/download/grcov-linux-x86_64.tar.bz2 | tar jxf -
11 |
12 | jobs:
13 | include:
14 | - stage: Benchmarking
15 | script: cargo bench
16 | rust: nightly
17 | - stage: Coverage
18 | script:
19 | - export CARGO_INCREMENTAL=0
20 | - export RUSTFLAGS="-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Zno-landing-pads"
21 | - cargo build $CARGO_OPTIONS
22 | - cargo test --verbose $CARGO_OPTIONS
23 | - |
24 | zip -0 ccov.zip `find . \( -name "rksuid*.gc*" \) -print`;
25 | ./grcov ccov.zip -s . -t lcov --llvm --branch --ignore-not-existing --ignore "/*" -o lcov.info;
26 | bash <(curl -s https://codecov.io/bash) -f lcov.info;
27 | rust: nightly
28 |
29 | matrix:
30 | allow_failures:
31 | - rust: nightly
32 | fast_finish: true
33 |
--------------------------------------------------------------------------------
/Cargo.toml:
--------------------------------------------------------------------------------
1 | [package]
2 | name = "rksuid"
3 | version = "0.4.0"
4 | authors = ["nharring@gmail.com"]
5 | edition = "2018"
6 | description="Rust implementation of the Segment.io KSUID format"
7 | repository="https://github.com/nharring/rksuid"
8 | readme="README.md"
9 | license="MIT"
10 | keywords=["ksuid", "uuid"]
11 |
12 |
13 | [badges]
14 | travis-ci = {repository="nharring/rksuid", branch="master"}
15 | codecov = { repository = "nharring/rksuid", branch = "master", service = "github" }
16 | maintenance = {status="actively-developed"}
17 |
18 | [dependencies]
19 | base-encode = "0.3.0"
20 | rand = "0.7"
21 | rand_core = "0.5.1"
22 | chrono = "0.4"
23 | time = "0.1"
24 | arrayref = "0.3.5"
25 | rand_pcg = "0.2.0"
26 | strum = "0.16.0"
27 | strum_macros = "0.16.0"
28 |
29 | [dev-dependencies]
30 | criterion = "0.3"
31 | ksuid = "0.2.0"
32 |
33 | [[bench]]
34 | name = "rksuid_criterion"
35 | harness = false
36 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2019 Nicholas Harring
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # rksuid
2 | Rust implementation of Segment.io's ksuid
3 |
4 | I have no association with Segment, just a fan of the format.
5 |
6 | # Inspiration
7 | Segment [published](https://segment.com/blog/a-brief-history-of-the-uuid/) a nifty UUID format and I thought it'd be fun to implement a compatible version in pure Rust as a way to learn the language more thoroughly and keep myself sharp while looking for a new coding gig.
8 |
9 | # Documentation
10 | https://docs.rs/rksuid/
11 |
12 | # Benchmarks
13 | https://nharring.github.io/rksuid/criterion/report/index.html
14 | https://nharring.github.io/rksuid/criterion/gen_payloads/rng_/report/index.html
15 |
--------------------------------------------------------------------------------
/docs/_config.yml:
--------------------------------------------------------------------------------
1 | theme: jekyll-theme-minimal
--------------------------------------------------------------------------------
/docs/criterion/deserialize/deserialize/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"deserialize","function_id":"deserialize ","value_str":null,"throughput":{"Bytes":24},"full_id":"deserialize/deserialize ","directory_name":"deserialize/deserialize","title":"deserialize/deserialize "}
--------------------------------------------------------------------------------
/docs/criterion/deserialize/deserialize/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1479.7604032232962,"upper_bound":1495.3153991064164},"point_estimate":1486.3255948501092,"standard_error":4.037238392303347},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1476.3422212587616,"upper_bound":1484.711684370258},"point_estimate":1479.4162599625422,"standard_error":1.9105163491667139},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":11.957880874751694,"upper_bound":17.910899914210297},"point_estimate":16.167118853361004,"standard_error":1.445826841133602},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1477.3402539797137,"upper_bound":1483.3686212398027},"point_estimate":1480.3089195020107,"standard_error":1.5347168944046587},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":12.343601809664074,"upper_bound":62.13207553589865},"point_estimate":40.338950230267564,"standard_error":13.541500767249326}}
--------------------------------------------------------------------------------
/docs/criterion/deserialize/deserialize/base/sample.json:
--------------------------------------------------------------------------------
1 | [[659.0,1318.0,1977.0,2636.0,3295.0,3954.0,4613.0,5272.0,5931.0,6590.0,7249.0,7908.0,8567.0,9226.0,9885.0,10544.0,11203.0,11862.0,12521.0,13180.0,13839.0,14498.0,15157.0,15816.0,16475.0,17134.0,17793.0,18452.0,19111.0,19770.0,20429.0,21088.0,21747.0,22406.0,23065.0,23724.0,24383.0,25042.0,25701.0,26360.0,27019.0,27678.0,28337.0,28996.0,29655.0,30314.0,30973.0,31632.0,32291.0,32950.0,33609.0,34268.0,34927.0,35586.0,36245.0,36904.0,37563.0,38222.0,38881.0,39540.0,40199.0,40858.0,41517.0,42176.0,42835.0,43494.0,44153.0,44812.0,45471.0,46130.0,46789.0,47448.0,48107.0,48766.0,49425.0,50084.0,50743.0,51402.0,52061.0,52720.0,53379.0,54038.0,54697.0,55356.0,56015.0,56674.0,57333.0,57992.0,58651.0,59310.0,59969.0,60628.0,61287.0,61946.0,62605.0,63264.0,63923.0,64582.0,65241.0,65900.0],[1173000.0,2266700.0,2950000.0,3928800.0,4915900.0,5902800.0,6901700.0,7870300.0,8848800.0,9822700.0,10815300.0,11787500.0,12781300.0,13748600.0,14739400.0,15733300.0,16701200.0,17795500.0,18345300.0,19351200.0,20431100.0,21315100.0,22291800.0,23142400.0,24310100.0,25157600.0,26206500.0,27320500.0,28753000.0,28888100.0,30203800.0,31163600.0,31813700.0,32849800.0,33984300.0,34902200.0,36088800.0,36912200.0,38696100.0,39444800.0,40290000.0,40975800.0,41997500.0,42654500.0,44034200.0,44597000.0,45324900.0,46501300.0,47305100.0,48357800.0,49469900.0,50338500.0,51088500.0,52611200.0,53310500.0,56200600.0,55946600.0,57050900.0,56953400.0,58036000.0,58817900.0,59711200.0,61008700.0,61826700.0,62968000.0,66478000.0,66331500.0,66302700.0,67654800.0,69107300.0,70213200.0,70188800.0,71849400.0,72149800.0,73115500.0,75437500.0,75612600.0,76474700.0,77001600.0,77685100.0,78209500.0,79420500.0,80497000.0,82242300.0,82337600.0,83032400.0,85514700.0,86065600.0,87175800.0,87909400.0,89007700.0,88750400.0,90216400.0,91001500.0,92554800.0,94358700.0,94484600.0,96027100.0,96511600.0,97842500.0]]
--------------------------------------------------------------------------------
/docs/criterion/deserialize/deserialize/base/tukey.json:
--------------------------------------------------------------------------------
1 | [1406.4579399432594,1438.2573674561634,1523.0558408239074,1554.8552683368114]
--------------------------------------------------------------------------------
/docs/criterion/deserialize/deserialize/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"deserialize","function_id":"deserialize ","value_str":null,"throughput":{"Bytes":24},"full_id":"deserialize/deserialize ","directory_name":"deserialize/deserialize","title":"deserialize/deserialize "}
--------------------------------------------------------------------------------
/docs/criterion/deserialize/deserialize/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1479.7604032232962,"upper_bound":1495.3153991064164},"point_estimate":1486.3255948501092,"standard_error":4.037238392303347},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1476.3422212587616,"upper_bound":1484.711684370258},"point_estimate":1479.4162599625422,"standard_error":1.9105163491667139},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":11.957880874751694,"upper_bound":17.910899914210297},"point_estimate":16.167118853361004,"standard_error":1.445826841133602},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1477.3402539797137,"upper_bound":1483.3686212398027},"point_estimate":1480.3089195020107,"standard_error":1.5347168944046587},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":12.343601809664074,"upper_bound":62.13207553589865},"point_estimate":40.338950230267564,"standard_error":13.541500767249326}}
--------------------------------------------------------------------------------
/docs/criterion/deserialize/deserialize/new/sample.json:
--------------------------------------------------------------------------------
1 | [[659.0,1318.0,1977.0,2636.0,3295.0,3954.0,4613.0,5272.0,5931.0,6590.0,7249.0,7908.0,8567.0,9226.0,9885.0,10544.0,11203.0,11862.0,12521.0,13180.0,13839.0,14498.0,15157.0,15816.0,16475.0,17134.0,17793.0,18452.0,19111.0,19770.0,20429.0,21088.0,21747.0,22406.0,23065.0,23724.0,24383.0,25042.0,25701.0,26360.0,27019.0,27678.0,28337.0,28996.0,29655.0,30314.0,30973.0,31632.0,32291.0,32950.0,33609.0,34268.0,34927.0,35586.0,36245.0,36904.0,37563.0,38222.0,38881.0,39540.0,40199.0,40858.0,41517.0,42176.0,42835.0,43494.0,44153.0,44812.0,45471.0,46130.0,46789.0,47448.0,48107.0,48766.0,49425.0,50084.0,50743.0,51402.0,52061.0,52720.0,53379.0,54038.0,54697.0,55356.0,56015.0,56674.0,57333.0,57992.0,58651.0,59310.0,59969.0,60628.0,61287.0,61946.0,62605.0,63264.0,63923.0,64582.0,65241.0,65900.0],[1173000.0,2266700.0,2950000.0,3928800.0,4915900.0,5902800.0,6901700.0,7870300.0,8848800.0,9822700.0,10815300.0,11787500.0,12781300.0,13748600.0,14739400.0,15733300.0,16701200.0,17795500.0,18345300.0,19351200.0,20431100.0,21315100.0,22291800.0,23142400.0,24310100.0,25157600.0,26206500.0,27320500.0,28753000.0,28888100.0,30203800.0,31163600.0,31813700.0,32849800.0,33984300.0,34902200.0,36088800.0,36912200.0,38696100.0,39444800.0,40290000.0,40975800.0,41997500.0,42654500.0,44034200.0,44597000.0,45324900.0,46501300.0,47305100.0,48357800.0,49469900.0,50338500.0,51088500.0,52611200.0,53310500.0,56200600.0,55946600.0,57050900.0,56953400.0,58036000.0,58817900.0,59711200.0,61008700.0,61826700.0,62968000.0,66478000.0,66331500.0,66302700.0,67654800.0,69107300.0,70213200.0,70188800.0,71849400.0,72149800.0,73115500.0,75437500.0,75612600.0,76474700.0,77001600.0,77685100.0,78209500.0,79420500.0,80497000.0,82242300.0,82337600.0,83032400.0,85514700.0,86065600.0,87175800.0,87909400.0,89007700.0,88750400.0,90216400.0,91001500.0,92554800.0,94358700.0,94484600.0,96027100.0,96511600.0,97842500.0]]
--------------------------------------------------------------------------------
/docs/criterion/deserialize/deserialize/new/tukey.json:
--------------------------------------------------------------------------------
1 | [1406.4579399432594,1438.2573674561634,1523.0558408239074,1554.8552683368114]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/chacha12/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"gen_payloads","function_id":"Rng","value_str":"CHACHA12","throughput":{"Elements":1},"full_id":"gen_payloads/Rng/CHACHA12","directory_name":"gen_payloads/rng/chacha12","title":"gen_payloads/Rng/CHACHA12"}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/chacha12/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":159.69462034777027,"upper_bound":160.3004989585089},"point_estimate":159.99338987547944,"standard_error":0.15493993020324082},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":158.85899861653647,"upper_bound":160.8700706845238},"point_estimate":159.89414431014148,"standard_error":0.6440521548655685},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1.0035793523305783,"upper_bound":2.531032323118298},"point_estimate":1.9250010598508158,"standard_error":0.38181468566089505},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":159.04405101279832,"upper_bound":159.6572217756123},"point_estimate":159.32880884870204,"standard_error":0.15639583222812878},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1.375283202431333,"upper_bound":1.7327086649802101},"point_estimate":1.559957081344827,"standard_error":0.09145962760307298}}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/chacha12/base/sample.json:
--------------------------------------------------------------------------------
1 | [[6144.0,12288.0,18432.0,24576.0,30720.0,36864.0,43008.0,49152.0,55296.0,61440.0,67584.0,73728.0,79872.0,86016.0,92160.0,98304.0,104448.0,110592.0,116736.0,122880.0,129024.0,135168.0,141312.0,147456.0,153600.0,159744.0,165888.0,172032.0,178176.0,184320.0,190464.0,196608.0,202752.0,208896.0,215040.0,221184.0,227328.0,233472.0,239616.0,245760.0,251904.0,258048.0,264192.0,270336.0,276480.0,282624.0,288768.0,294912.0,301056.0,307200.0,313344.0,319488.0,325632.0,331776.0,337920.0,344064.0,350208.0,356352.0,362496.0,368640.0,374784.0,380928.0,387072.0,393216.0,399360.0,405504.0,411648.0,417792.0,423936.0,430080.0,436224.0,442368.0,448512.0,454656.0,460800.0,466944.0,473088.0,479232.0,485376.0,491520.0,497664.0,503808.0,509952.0,516096.0,522240.0,528384.0,534528.0,540672.0,546816.0,552960.0,559104.0,565248.0,571392.0,577536.0,583680.0,589824.0,595968.0,602112.0,608256.0,614400.0],[1001200.0,1986000.0,2978200.0,3972300.0,4980100.0,5945700.0,6917300.0,7923300.0,8905800.0,9900400.0,10882200.0,11873400.0,12863900.0,13864500.0,14839500.0,15826500.0,16814800.0,17797600.0,18777400.0,19769000.0,20756100.0,21737600.0,22552300.0,23496100.0,24419700.0,25358500.0,26346800.0,27263600.0,28123200.0,29214500.0,30131900.0,31277300.0,32051700.0,33104200.0,34016100.0,35014000.0,37324100.0,38226300.0,39266100.0,39658600.0,40624500.0,41610400.0,42591800.0,43929300.0,44972700.0,46106200.0,46577700.0,47583200.0,48520600.0,49477900.0,49918800.0,50751900.0,52087300.0,53345700.0,54476800.0,55162500.0,56139100.0,57201600.0,58521600.0,59464700.0,60307500.0,60628700.0,61416300.0,62465900.0,63359900.0,64228700.0,65349700.0,66297200.0,67046200.0,68240800.0,69110000.0,69994100.0,70920300.0,72281600.0,72902600.0,73889600.0,75109800.0,75897200.0,76739500.0,78032600.0,78901300.0,79948900.0,81506000.0,82851700.0,84202500.0,85257800.0,86212500.0,87115800.0,86918300.0,87740400.0,88569800.0,89503000.0,90313500.0,91729700.0,92453200.0,93565000.0,94375700.0,95502800.0,96269100.0,97253200.0]]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/chacha12/base/tukey.json:
--------------------------------------------------------------------------------
1 | [150.81585875844593,154.70572449432726,165.0786997900108,168.96856552589213]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/chacha12/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"gen_payloads","function_id":"Rng","value_str":"CHACHA12","throughput":{"Elements":1},"full_id":"gen_payloads/Rng/CHACHA12","directory_name":"gen_payloads/rng/chacha12","title":"gen_payloads/Rng/CHACHA12"}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/chacha12/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":159.69462034777027,"upper_bound":160.3004989585089},"point_estimate":159.99338987547944,"standard_error":0.15493993020324082},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":158.85899861653647,"upper_bound":160.8700706845238},"point_estimate":159.89414431014148,"standard_error":0.6440521548655685},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1.0035793523305783,"upper_bound":2.531032323118298},"point_estimate":1.9250010598508158,"standard_error":0.38181468566089505},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":159.04405101279832,"upper_bound":159.6572217756123},"point_estimate":159.32880884870204,"standard_error":0.15639583222812878},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1.375283202431333,"upper_bound":1.7327086649802101},"point_estimate":1.559957081344827,"standard_error":0.09145962760307298}}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/chacha12/new/sample.json:
--------------------------------------------------------------------------------
1 | [[6144.0,12288.0,18432.0,24576.0,30720.0,36864.0,43008.0,49152.0,55296.0,61440.0,67584.0,73728.0,79872.0,86016.0,92160.0,98304.0,104448.0,110592.0,116736.0,122880.0,129024.0,135168.0,141312.0,147456.0,153600.0,159744.0,165888.0,172032.0,178176.0,184320.0,190464.0,196608.0,202752.0,208896.0,215040.0,221184.0,227328.0,233472.0,239616.0,245760.0,251904.0,258048.0,264192.0,270336.0,276480.0,282624.0,288768.0,294912.0,301056.0,307200.0,313344.0,319488.0,325632.0,331776.0,337920.0,344064.0,350208.0,356352.0,362496.0,368640.0,374784.0,380928.0,387072.0,393216.0,399360.0,405504.0,411648.0,417792.0,423936.0,430080.0,436224.0,442368.0,448512.0,454656.0,460800.0,466944.0,473088.0,479232.0,485376.0,491520.0,497664.0,503808.0,509952.0,516096.0,522240.0,528384.0,534528.0,540672.0,546816.0,552960.0,559104.0,565248.0,571392.0,577536.0,583680.0,589824.0,595968.0,602112.0,608256.0,614400.0],[1001200.0,1986000.0,2978200.0,3972300.0,4980100.0,5945700.0,6917300.0,7923300.0,8905800.0,9900400.0,10882200.0,11873400.0,12863900.0,13864500.0,14839500.0,15826500.0,16814800.0,17797600.0,18777400.0,19769000.0,20756100.0,21737600.0,22552300.0,23496100.0,24419700.0,25358500.0,26346800.0,27263600.0,28123200.0,29214500.0,30131900.0,31277300.0,32051700.0,33104200.0,34016100.0,35014000.0,37324100.0,38226300.0,39266100.0,39658600.0,40624500.0,41610400.0,42591800.0,43929300.0,44972700.0,46106200.0,46577700.0,47583200.0,48520600.0,49477900.0,49918800.0,50751900.0,52087300.0,53345700.0,54476800.0,55162500.0,56139100.0,57201600.0,58521600.0,59464700.0,60307500.0,60628700.0,61416300.0,62465900.0,63359900.0,64228700.0,65349700.0,66297200.0,67046200.0,68240800.0,69110000.0,69994100.0,70920300.0,72281600.0,72902600.0,73889600.0,75109800.0,75897200.0,76739500.0,78032600.0,78901300.0,79948900.0,81506000.0,82851700.0,84202500.0,85257800.0,86212500.0,87115800.0,86918300.0,87740400.0,88569800.0,89503000.0,90313500.0,91729700.0,92453200.0,93565000.0,94375700.0,95502800.0,96269100.0,97253200.0]]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/chacha12/new/tukey.json:
--------------------------------------------------------------------------------
1 | [150.81585875844593,154.70572449432726,165.0786997900108,168.96856552589213]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/chacha8/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"gen_payloads","function_id":"Rng","value_str":"CHACHA8","throughput":{"Elements":1},"full_id":"gen_payloads/Rng/CHACHA8","directory_name":"gen_payloads/rng/chacha8","title":"gen_payloads/Rng/CHACHA8"}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/chacha8/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":141.94122873095807,"upper_bound":142.37800833845347},"point_estimate":142.15835618122287,"standard_error":0.11099435980915981},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":141.49336266517997,"upper_bound":142.3122888251675},"point_estimate":141.6994655464182,"standard_error":0.2091909841813733},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.7525461290292726,"upper_bound":1.7500101255006533},"point_estimate":1.1919541379659435,"standard_error":0.2601372845473621},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":141.64995080283236,"upper_bound":142.17996330149862},"point_estimate":141.9149297349158,"standard_error":0.1356711069821657},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1.0216348949543035,"upper_bound":1.1977528872880832},"point_estimate":1.1168993768948994,"standard_error":0.04476366956350042}}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/chacha8/base/sample.json:
--------------------------------------------------------------------------------
1 | [[6986.0,13972.0,20958.0,27944.0,34930.0,41916.0,48902.0,55888.0,62874.0,69860.0,76846.0,83832.0,90818.0,97804.0,104790.0,111776.0,118762.0,125748.0,132734.0,139720.0,146706.0,153692.0,160678.0,167664.0,174650.0,181636.0,188622.0,195608.0,202594.0,209580.0,216566.0,223552.0,230538.0,237524.0,244510.0,251496.0,258482.0,265468.0,272454.0,279440.0,286426.0,293412.0,300398.0,307384.0,314370.0,321356.0,328342.0,335328.0,342314.0,349300.0,356286.0,363272.0,370258.0,377244.0,384230.0,391216.0,398202.0,405188.0,412174.0,419160.0,426146.0,433132.0,440118.0,447104.0,454090.0,461076.0,468062.0,475048.0,482034.0,489020.0,496006.0,502992.0,509978.0,516964.0,523950.0,530936.0,537922.0,544908.0,551894.0,558880.0,565866.0,572852.0,579838.0,586824.0,593810.0,600796.0,607782.0,614768.0,621754.0,628740.0,635726.0,642712.0,649698.0,656684.0,663670.0,670656.0,677642.0,684628.0,691614.0,698600.0],[1009500.0,2012700.0,3007800.0,4004200.0,5019700.0,6008300.0,7013000.0,8013900.0,9014000.0,10012200.0,11015700.0,12026300.0,13018200.0,14042800.0,15025300.0,16053400.0,17185300.0,18034400.0,19027700.0,20039400.0,21040700.0,22027600.0,23048100.0,24044100.0,25044000.0,26030600.0,27041500.0,28050800.0,28571400.0,29639400.0,30471600.0,31711500.0,32515200.0,33616200.0,34778700.0,35608000.0,36426000.0,37298700.0,38638100.0,39536100.0,40299500.0,41571300.0,42388300.0,43713700.0,44557800.0,45196700.0,46409400.0,47350900.0,48221500.0,49199400.0,50258000.0,51336700.0,52471700.0,53342100.0,54207600.0,55263300.0,56514500.0,57232600.0,58196900.0,59317800.0,60445600.0,61252500.0,62348800.0,63106800.0,64166500.0,64915500.0,65928700.0,66984600.0,68080700.0,69071900.0,70083900.0,70749600.0,72080400.0,72851500.0,74229500.0,75026500.0,75747700.0,76722900.0,78764300.0,80109400.0,80105900.0,81273000.0,82096200.0,83789400.0,84566000.0,86186600.0,87242800.0,88287100.0,89167700.0,89349800.0,89733800.0,90597000.0,91712400.0,92894900.0,93904900.0,95894100.0,97205800.0,98256100.0,99214800.0,98976800.0]]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/chacha8/base/tukey.json:
--------------------------------------------------------------------------------
1 | [134.80425395304056,138.0167046696913,146.58323991409327,149.795690630744]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/chacha8/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"gen_payloads","function_id":"Rng","value_str":"CHACHA8","throughput":{"Elements":1},"full_id":"gen_payloads/Rng/CHACHA8","directory_name":"gen_payloads/rng/chacha8","title":"gen_payloads/Rng/CHACHA8"}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/chacha8/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":141.94122873095807,"upper_bound":142.37800833845347},"point_estimate":142.15835618122287,"standard_error":0.11099435980915981},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":141.49336266517997,"upper_bound":142.3122888251675},"point_estimate":141.6994655464182,"standard_error":0.2091909841813733},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.7525461290292726,"upper_bound":1.7500101255006533},"point_estimate":1.1919541379659435,"standard_error":0.2601372845473621},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":141.64995080283236,"upper_bound":142.17996330149862},"point_estimate":141.9149297349158,"standard_error":0.1356711069821657},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1.0216348949543035,"upper_bound":1.1977528872880832},"point_estimate":1.1168993768948994,"standard_error":0.04476366956350042}}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/chacha8/new/sample.json:
--------------------------------------------------------------------------------
1 | [[6986.0,13972.0,20958.0,27944.0,34930.0,41916.0,48902.0,55888.0,62874.0,69860.0,76846.0,83832.0,90818.0,97804.0,104790.0,111776.0,118762.0,125748.0,132734.0,139720.0,146706.0,153692.0,160678.0,167664.0,174650.0,181636.0,188622.0,195608.0,202594.0,209580.0,216566.0,223552.0,230538.0,237524.0,244510.0,251496.0,258482.0,265468.0,272454.0,279440.0,286426.0,293412.0,300398.0,307384.0,314370.0,321356.0,328342.0,335328.0,342314.0,349300.0,356286.0,363272.0,370258.0,377244.0,384230.0,391216.0,398202.0,405188.0,412174.0,419160.0,426146.0,433132.0,440118.0,447104.0,454090.0,461076.0,468062.0,475048.0,482034.0,489020.0,496006.0,502992.0,509978.0,516964.0,523950.0,530936.0,537922.0,544908.0,551894.0,558880.0,565866.0,572852.0,579838.0,586824.0,593810.0,600796.0,607782.0,614768.0,621754.0,628740.0,635726.0,642712.0,649698.0,656684.0,663670.0,670656.0,677642.0,684628.0,691614.0,698600.0],[1009500.0,2012700.0,3007800.0,4004200.0,5019700.0,6008300.0,7013000.0,8013900.0,9014000.0,10012200.0,11015700.0,12026300.0,13018200.0,14042800.0,15025300.0,16053400.0,17185300.0,18034400.0,19027700.0,20039400.0,21040700.0,22027600.0,23048100.0,24044100.0,25044000.0,26030600.0,27041500.0,28050800.0,28571400.0,29639400.0,30471600.0,31711500.0,32515200.0,33616200.0,34778700.0,35608000.0,36426000.0,37298700.0,38638100.0,39536100.0,40299500.0,41571300.0,42388300.0,43713700.0,44557800.0,45196700.0,46409400.0,47350900.0,48221500.0,49199400.0,50258000.0,51336700.0,52471700.0,53342100.0,54207600.0,55263300.0,56514500.0,57232600.0,58196900.0,59317800.0,60445600.0,61252500.0,62348800.0,63106800.0,64166500.0,64915500.0,65928700.0,66984600.0,68080700.0,69071900.0,70083900.0,70749600.0,72080400.0,72851500.0,74229500.0,75026500.0,75747700.0,76722900.0,78764300.0,80109400.0,80105900.0,81273000.0,82096200.0,83789400.0,84566000.0,86186600.0,87242800.0,88287100.0,89167700.0,89349800.0,89733800.0,90597000.0,91712400.0,92894900.0,93904900.0,95894100.0,97205800.0,98256100.0,99214800.0,98976800.0]]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/chacha8/new/tukey.json:
--------------------------------------------------------------------------------
1 | [134.80425395304056,138.0167046696913,146.58323991409327,149.795690630744]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/core/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"gen_payloads","function_id":"Rng","value_str":"CORE","throughput":{"Elements":1},"full_id":"gen_payloads/Rng/CORE","directory_name":"gen_payloads/rng/core","title":"gen_payloads/Rng/CORE"}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/core/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":198.29150882278353,"upper_bound":198.88452043370017},"point_estimate":198.5813547520897,"standard_error":0.1512044197074102},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":197.7139326536917,"upper_bound":198.64879809091437},"point_estimate":198.0841527027651,"standard_error":0.2603281504121477},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.9553807578501927,"upper_bound":1.9786318550370117},"point_estimate":1.4063653026526668,"standard_error":0.2919217753727605},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":198.2750228101074,"upper_bound":198.9314990598527},"point_estimate":198.59985495402626,"standard_error":0.16762015213519935},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1.2981201378038028,"upper_bound":1.7411908956381161},"point_estimate":1.5209603239827623,"standard_error":0.11382393101546188}}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/core/base/sample.json:
--------------------------------------------------------------------------------
1 | [[4980.0,9960.0,14940.0,19920.0,24900.0,29880.0,34860.0,39840.0,44820.0,49800.0,54780.0,59760.0,64740.0,69720.0,74700.0,79680.0,84660.0,89640.0,94620.0,99600.0,104580.0,109560.0,114540.0,119520.0,124500.0,129480.0,134460.0,139440.0,144420.0,149400.0,154380.0,159360.0,164340.0,169320.0,174300.0,179280.0,184260.0,189240.0,194220.0,199200.0,204180.0,209160.0,214140.0,219120.0,224100.0,229080.0,234060.0,239040.0,244020.0,249000.0,253980.0,258960.0,263940.0,268920.0,273900.0,278880.0,283860.0,288840.0,293820.0,298800.0,303780.0,308760.0,313740.0,318720.0,323700.0,328680.0,333660.0,338640.0,343620.0,348600.0,353580.0,358560.0,363540.0,368520.0,373500.0,378480.0,383460.0,388440.0,393420.0,398400.0,403380.0,408360.0,413340.0,418320.0,423300.0,428280.0,433260.0,438240.0,443220.0,448200.0,453180.0,458160.0,463140.0,468120.0,473100.0,478080.0,483060.0,488040.0,493020.0,498000.0],[988300.0,1965700.0,2947700.0,3929300.0,4963900.0,5937100.0,6876300.0,7984800.0,8867100.0,9841100.0,10758800.0,11782100.0,12750300.0,13934300.0,14675000.0,16245300.0,16980600.0,18190200.0,18984100.0,19990500.0,20995200.0,21983700.0,22863500.0,23512800.0,24527800.0,25611600.0,26511900.0,27447800.0,28601100.0,29380200.0,30854000.0,31524600.0,32472400.0,33865900.0,34974400.0,36011500.0,36557600.0,37240500.0,38405500.0,39289100.0,40214500.0,41315300.0,42515500.0,43136800.0,44983900.0,45436000.0,46959300.0,47970200.0,48287500.0,49039100.0,50144600.0,51418700.0,52462300.0,53086000.0,54092100.0,55159000.0,56754200.0,57495600.0,58974000.0,59200400.0,60494800.0,61730800.0,62729100.0,63961600.0,64000000.0,64984100.0,65761000.0,66761000.0,68259700.0,68826600.0,69770500.0,70788700.0,71684500.0,72686900.0,73793000.0,74993000.0,76221400.0,77046300.0,77585900.0,78760500.0,80499400.0,81547700.0,82924600.0,82822600.0,84507200.0,85356000.0,86699800.0,86354600.0,88879600.0,89876200.0,89680400.0,90570500.0,93050800.0,93000600.0,93417100.0,94510000.0,95207100.0,96799000.0,98131500.0,99735200.0]]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/core/base/tukey.json:
--------------------------------------------------------------------------------
1 | [189.7687708385304,193.55991500238642,203.66963277266913,207.46077693652515]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/core/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"gen_payloads","function_id":"Rng","value_str":"CORE","throughput":{"Elements":1},"full_id":"gen_payloads/Rng/CORE","directory_name":"gen_payloads/rng/core","title":"gen_payloads/Rng/CORE"}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/core/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":198.29150882278353,"upper_bound":198.88452043370017},"point_estimate":198.5813547520897,"standard_error":0.1512044197074102},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":197.7139326536917,"upper_bound":198.64879809091437},"point_estimate":198.0841527027651,"standard_error":0.2603281504121477},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.9553807578501927,"upper_bound":1.9786318550370117},"point_estimate":1.4063653026526668,"standard_error":0.2919217753727605},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":198.2750228101074,"upper_bound":198.9314990598527},"point_estimate":198.59985495402626,"standard_error":0.16762015213519935},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1.2981201378038028,"upper_bound":1.7411908956381161},"point_estimate":1.5209603239827623,"standard_error":0.11382393101546188}}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/core/new/sample.json:
--------------------------------------------------------------------------------
1 | [[4980.0,9960.0,14940.0,19920.0,24900.0,29880.0,34860.0,39840.0,44820.0,49800.0,54780.0,59760.0,64740.0,69720.0,74700.0,79680.0,84660.0,89640.0,94620.0,99600.0,104580.0,109560.0,114540.0,119520.0,124500.0,129480.0,134460.0,139440.0,144420.0,149400.0,154380.0,159360.0,164340.0,169320.0,174300.0,179280.0,184260.0,189240.0,194220.0,199200.0,204180.0,209160.0,214140.0,219120.0,224100.0,229080.0,234060.0,239040.0,244020.0,249000.0,253980.0,258960.0,263940.0,268920.0,273900.0,278880.0,283860.0,288840.0,293820.0,298800.0,303780.0,308760.0,313740.0,318720.0,323700.0,328680.0,333660.0,338640.0,343620.0,348600.0,353580.0,358560.0,363540.0,368520.0,373500.0,378480.0,383460.0,388440.0,393420.0,398400.0,403380.0,408360.0,413340.0,418320.0,423300.0,428280.0,433260.0,438240.0,443220.0,448200.0,453180.0,458160.0,463140.0,468120.0,473100.0,478080.0,483060.0,488040.0,493020.0,498000.0],[988300.0,1965700.0,2947700.0,3929300.0,4963900.0,5937100.0,6876300.0,7984800.0,8867100.0,9841100.0,10758800.0,11782100.0,12750300.0,13934300.0,14675000.0,16245300.0,16980600.0,18190200.0,18984100.0,19990500.0,20995200.0,21983700.0,22863500.0,23512800.0,24527800.0,25611600.0,26511900.0,27447800.0,28601100.0,29380200.0,30854000.0,31524600.0,32472400.0,33865900.0,34974400.0,36011500.0,36557600.0,37240500.0,38405500.0,39289100.0,40214500.0,41315300.0,42515500.0,43136800.0,44983900.0,45436000.0,46959300.0,47970200.0,48287500.0,49039100.0,50144600.0,51418700.0,52462300.0,53086000.0,54092100.0,55159000.0,56754200.0,57495600.0,58974000.0,59200400.0,60494800.0,61730800.0,62729100.0,63961600.0,64000000.0,64984100.0,65761000.0,66761000.0,68259700.0,68826600.0,69770500.0,70788700.0,71684500.0,72686900.0,73793000.0,74993000.0,76221400.0,77046300.0,77585900.0,78760500.0,80499400.0,81547700.0,82924600.0,82822600.0,84507200.0,85356000.0,86699800.0,86354600.0,88879600.0,89876200.0,89680400.0,90570500.0,93050800.0,93000600.0,93417100.0,94510000.0,95207100.0,96799000.0,98131500.0,99735200.0]]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/core/new/tukey.json:
--------------------------------------------------------------------------------
1 | [189.7687708385304,193.55991500238642,203.66963277266913,207.46077693652515]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/hc128/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"gen_payloads","function_id":"Rng","value_str":"HC128","throughput":{"Elements":1},"full_id":"gen_payloads/Rng/HC128","directory_name":"gen_payloads/rng/hc128","title":"gen_payloads/Rng/HC128"}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/hc128/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3489.7729953364133,"upper_bound":3497.6413874687446},"point_estimate":3493.372798412689,"standard_error":2.017104175140771},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3486.2788346659318,"upper_bound":3491.446725317693},"point_estimate":3489.147317022492,"standard_error":1.4901738278708043},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7.224840623706668,"upper_bound":12.34585130965243},"point_estimate":10.061663019427261,"standard_error":1.2782681446141706},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3488.4940631505074,"upper_bound":3493.6070528617593},"point_estimate":3490.876761725282,"standard_error":1.3004970474095459},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":12.398370413781949,"upper_bound":28.112718598809472},"point_estimate":20.254981910898707,"standard_error":4.148354781587482}}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/hc128/base/sample.json:
--------------------------------------------------------------------------------
1 | [[279.0,558.0,837.0,1116.0,1395.0,1674.0,1953.0,2232.0,2511.0,2790.0,3069.0,3348.0,3627.0,3906.0,4185.0,4464.0,4743.0,5022.0,5301.0,5580.0,5859.0,6138.0,6417.0,6696.0,6975.0,7254.0,7533.0,7812.0,8091.0,8370.0,8649.0,8928.0,9207.0,9486.0,9765.0,10044.0,10323.0,10602.0,10881.0,11160.0,11439.0,11718.0,11997.0,12276.0,12555.0,12834.0,13113.0,13392.0,13671.0,13950.0,14229.0,14508.0,14787.0,15066.0,15345.0,15624.0,15903.0,16182.0,16461.0,16740.0,17019.0,17298.0,17577.0,17856.0,18135.0,18414.0,18693.0,18972.0,19251.0,19530.0,19809.0,20088.0,20367.0,20646.0,20925.0,21204.0,21483.0,21762.0,22041.0,22320.0,22599.0,22878.0,23157.0,23436.0,23715.0,23994.0,24273.0,24552.0,24831.0,25110.0,25389.0,25668.0,25947.0,26226.0,26505.0,26784.0,27063.0,27342.0,27621.0,27900.0],[976000.0,1973900.0,3029500.0,3880900.0,4837800.0,5842800.0,6801100.0,7820000.0,8744400.0,9766200.0,10702800.0,11673500.0,12625600.0,13609000.0,14572500.0,15517800.0,16567700.0,17549000.0,18471400.0,19604700.0,20297100.0,21430500.0,22498700.0,23300000.0,24296700.0,25227700.0,26197700.0,27119800.0,28320600.0,29343200.0,30127800.0,31109800.0,32241300.0,33124100.0,34083700.0,35044200.0,35935300.0,36907300.0,37991900.0,38922600.0,40092700.0,40765700.0,41877800.0,43474600.0,44471000.0,44916800.0,45775300.0,46668900.0,47485700.0,49686600.0,49740100.0,50997700.0,52386400.0,53127700.0,53479800.0,54459500.0,55486300.0,56373300.0,57541900.0,58460800.0,59574900.0,60473100.0,61116700.0,62539300.0,63297000.0,64241400.0,65370300.0,66367500.0,67171100.0,67899200.0,69225400.0,70038000.0,71206500.0,71893900.0,73197400.0,74099800.0,74980900.0,75862300.0,76811400.0,78015900.0,78686000.0,80153300.0,80718700.0,81942800.0,82682700.0,83823400.0,84408300.0,85574600.0,86763000.0,87440100.0,88462500.0,89379100.0,90476200.0,91330900.0,92527600.0,93315900.0,94365500.0,95085800.0,96565200.0,97390900.0]]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/hc128/base/tukey.json:
--------------------------------------------------------------------------------
1 | [3443.891879096529,3463.5224931038347,3515.870797123317,3535.501411130623]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/hc128/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"gen_payloads","function_id":"Rng","value_str":"HC128","throughput":{"Elements":1},"full_id":"gen_payloads/Rng/HC128","directory_name":"gen_payloads/rng/hc128","title":"gen_payloads/Rng/HC128"}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/hc128/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3489.7729953364133,"upper_bound":3497.6413874687446},"point_estimate":3493.372798412689,"standard_error":2.017104175140771},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3486.2788346659318,"upper_bound":3491.446725317693},"point_estimate":3489.147317022492,"standard_error":1.4901738278708043},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7.224840623706668,"upper_bound":12.34585130965243},"point_estimate":10.061663019427261,"standard_error":1.2782681446141706},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3488.4940631505074,"upper_bound":3493.6070528617593},"point_estimate":3490.876761725282,"standard_error":1.3004970474095459},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":12.398370413781949,"upper_bound":28.112718598809472},"point_estimate":20.254981910898707,"standard_error":4.148354781587482}}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/hc128/new/sample.json:
--------------------------------------------------------------------------------
1 | [[279.0,558.0,837.0,1116.0,1395.0,1674.0,1953.0,2232.0,2511.0,2790.0,3069.0,3348.0,3627.0,3906.0,4185.0,4464.0,4743.0,5022.0,5301.0,5580.0,5859.0,6138.0,6417.0,6696.0,6975.0,7254.0,7533.0,7812.0,8091.0,8370.0,8649.0,8928.0,9207.0,9486.0,9765.0,10044.0,10323.0,10602.0,10881.0,11160.0,11439.0,11718.0,11997.0,12276.0,12555.0,12834.0,13113.0,13392.0,13671.0,13950.0,14229.0,14508.0,14787.0,15066.0,15345.0,15624.0,15903.0,16182.0,16461.0,16740.0,17019.0,17298.0,17577.0,17856.0,18135.0,18414.0,18693.0,18972.0,19251.0,19530.0,19809.0,20088.0,20367.0,20646.0,20925.0,21204.0,21483.0,21762.0,22041.0,22320.0,22599.0,22878.0,23157.0,23436.0,23715.0,23994.0,24273.0,24552.0,24831.0,25110.0,25389.0,25668.0,25947.0,26226.0,26505.0,26784.0,27063.0,27342.0,27621.0,27900.0],[976000.0,1973900.0,3029500.0,3880900.0,4837800.0,5842800.0,6801100.0,7820000.0,8744400.0,9766200.0,10702800.0,11673500.0,12625600.0,13609000.0,14572500.0,15517800.0,16567700.0,17549000.0,18471400.0,19604700.0,20297100.0,21430500.0,22498700.0,23300000.0,24296700.0,25227700.0,26197700.0,27119800.0,28320600.0,29343200.0,30127800.0,31109800.0,32241300.0,33124100.0,34083700.0,35044200.0,35935300.0,36907300.0,37991900.0,38922600.0,40092700.0,40765700.0,41877800.0,43474600.0,44471000.0,44916800.0,45775300.0,46668900.0,47485700.0,49686600.0,49740100.0,50997700.0,52386400.0,53127700.0,53479800.0,54459500.0,55486300.0,56373300.0,57541900.0,58460800.0,59574900.0,60473100.0,61116700.0,62539300.0,63297000.0,64241400.0,65370300.0,66367500.0,67171100.0,67899200.0,69225400.0,70038000.0,71206500.0,71893900.0,73197400.0,74099800.0,74980900.0,75862300.0,76811400.0,78015900.0,78686000.0,80153300.0,80718700.0,81942800.0,82682700.0,83823400.0,84408300.0,85574600.0,86763000.0,87440100.0,88462500.0,89379100.0,90476200.0,91330900.0,92527600.0,93315900.0,94365500.0,95085800.0,96565200.0,97390900.0]]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/hc128/new/tukey.json:
--------------------------------------------------------------------------------
1 | [3443.891879096529,3463.5224931038347,3515.870797123317,3535.501411130623]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/hyperthread/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"gen_payloads","function_id":"Rng","value_str":"HYPERTHREAD","throughput":{"Elements":1},"full_id":"gen_payloads/Rng/HYPERTHREAD","directory_name":"gen_payloads/rng/hyperthread","title":"gen_payloads/Rng/HYPERTHREAD"}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/hyperthread/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":179.1073756150668,"upper_bound":182.12066461256214},"point_estimate":180.35668388316827,"standard_error":0.7865462389429231},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":179.04268183446794,"upper_bound":179.38383678306644},"point_estimate":179.1555368089684,"standard_error":0.08425677189382694},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.6130324188667212,"upper_bound":2.77908156021317},"point_estimate":1.4762904314111318,"standard_error":0.6643785869965038},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":177.80640417031617,"upper_bound":180.5202923958751},"point_estimate":178.90912746680905,"standard_error":0.700644734023711},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2.308039932488858,"upper_bound":12.6615610965879},"point_estimate":7.94652255884594,"standard_error":2.9361176659449946}}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/hyperthread/base/sample.json:
--------------------------------------------------------------------------------
1 | [[5582.0,11164.0,16746.0,22328.0,27910.0,33492.0,39074.0,44656.0,50238.0,55820.0,61402.0,66984.0,72566.0,78148.0,83730.0,89312.0,94894.0,100476.0,106058.0,111640.0,117222.0,122804.0,128386.0,133968.0,139550.0,145132.0,150714.0,156296.0,161878.0,167460.0,173042.0,178624.0,184206.0,189788.0,195370.0,200952.0,206534.0,212116.0,217698.0,223280.0,228862.0,234444.0,240026.0,245608.0,251190.0,256772.0,262354.0,267936.0,273518.0,279100.0,284682.0,290264.0,295846.0,301428.0,307010.0,312592.0,318174.0,323756.0,329338.0,334920.0,340502.0,346084.0,351666.0,357248.0,362830.0,368412.0,373994.0,379576.0,385158.0,390740.0,396322.0,401904.0,407486.0,413068.0,418650.0,424232.0,429814.0,435396.0,440978.0,446560.0,452142.0,457724.0,463306.0,468888.0,474470.0,480052.0,485634.0,491216.0,496798.0,502380.0,507962.0,513544.0,519126.0,524708.0,530290.0,535872.0,541454.0,547036.0,552618.0,558200.0],[1003600.0,2009300.0,3006300.0,4005000.0,4990700.0,5999700.0,6997100.0,7990300.0,9004200.0,10234300.0,11483600.0,12362700.0,14072300.0,14196600.0,15036100.0,16452400.0,17042600.0,18729700.0,18995500.0,20002700.0,20982500.0,22033900.0,23085300.0,24001000.0,25018500.0,26043800.0,26985500.0,27967300.0,28970700.0,29962700.0,30969400.0,31962300.0,32970400.0,33734500.0,34430700.0,35429900.0,37739300.0,38334000.0,39048600.0,40055800.0,41007000.0,42036600.0,42994700.0,44017100.0,44973300.0,46065300.0,46977700.0,48473100.0,48732300.0,68787600.0,51158000.0,52418100.0,53941000.0,54695200.0,55557000.0,56089400.0,57091700.0,59234000.0,60926800.0,71290800.0,61963900.0,62843400.0,64440000.0,64157500.0,65596700.0,66192200.0,67003400.0,68161500.0,69178600.0,70063900.0,70856800.0,71053700.0,72971800.0,73588500.0,74667400.0,75121500.0,76370500.0,78752000.0,78989600.0,79953300.0,79799800.0,80889800.0,81952000.0,82872700.0,84070300.0,84613900.0,85859100.0,86655500.0,87380800.0,88489200.0,90144200.0,90354900.0,91349800.0,92446200.0,93232800.0,94295700.0,95486900.0,96455000.0,97378100.0,98252100.0]]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/hyperthread/base/tukey.json:
--------------------------------------------------------------------------------
1 | [171.53648925068248,174.63420227350588,182.89477033436827,185.99248335719167]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/hyperthread/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"gen_payloads","function_id":"Rng","value_str":"HYPERTHREAD","throughput":{"Elements":1},"full_id":"gen_payloads/Rng/HYPERTHREAD","directory_name":"gen_payloads/rng/hyperthread","title":"gen_payloads/Rng/HYPERTHREAD"}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/hyperthread/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":179.1073756150668,"upper_bound":182.12066461256214},"point_estimate":180.35668388316827,"standard_error":0.7865462389429231},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":179.04268183446794,"upper_bound":179.38383678306644},"point_estimate":179.1555368089684,"standard_error":0.08425677189382694},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.6130324188667212,"upper_bound":2.77908156021317},"point_estimate":1.4762904314111318,"standard_error":0.6643785869965038},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":177.80640417031617,"upper_bound":180.5202923958751},"point_estimate":178.90912746680905,"standard_error":0.700644734023711},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2.308039932488858,"upper_bound":12.6615610965879},"point_estimate":7.94652255884594,"standard_error":2.9361176659449946}}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/hyperthread/new/sample.json:
--------------------------------------------------------------------------------
1 | [[5582.0,11164.0,16746.0,22328.0,27910.0,33492.0,39074.0,44656.0,50238.0,55820.0,61402.0,66984.0,72566.0,78148.0,83730.0,89312.0,94894.0,100476.0,106058.0,111640.0,117222.0,122804.0,128386.0,133968.0,139550.0,145132.0,150714.0,156296.0,161878.0,167460.0,173042.0,178624.0,184206.0,189788.0,195370.0,200952.0,206534.0,212116.0,217698.0,223280.0,228862.0,234444.0,240026.0,245608.0,251190.0,256772.0,262354.0,267936.0,273518.0,279100.0,284682.0,290264.0,295846.0,301428.0,307010.0,312592.0,318174.0,323756.0,329338.0,334920.0,340502.0,346084.0,351666.0,357248.0,362830.0,368412.0,373994.0,379576.0,385158.0,390740.0,396322.0,401904.0,407486.0,413068.0,418650.0,424232.0,429814.0,435396.0,440978.0,446560.0,452142.0,457724.0,463306.0,468888.0,474470.0,480052.0,485634.0,491216.0,496798.0,502380.0,507962.0,513544.0,519126.0,524708.0,530290.0,535872.0,541454.0,547036.0,552618.0,558200.0],[1003600.0,2009300.0,3006300.0,4005000.0,4990700.0,5999700.0,6997100.0,7990300.0,9004200.0,10234300.0,11483600.0,12362700.0,14072300.0,14196600.0,15036100.0,16452400.0,17042600.0,18729700.0,18995500.0,20002700.0,20982500.0,22033900.0,23085300.0,24001000.0,25018500.0,26043800.0,26985500.0,27967300.0,28970700.0,29962700.0,30969400.0,31962300.0,32970400.0,33734500.0,34430700.0,35429900.0,37739300.0,38334000.0,39048600.0,40055800.0,41007000.0,42036600.0,42994700.0,44017100.0,44973300.0,46065300.0,46977700.0,48473100.0,48732300.0,68787600.0,51158000.0,52418100.0,53941000.0,54695200.0,55557000.0,56089400.0,57091700.0,59234000.0,60926800.0,71290800.0,61963900.0,62843400.0,64440000.0,64157500.0,65596700.0,66192200.0,67003400.0,68161500.0,69178600.0,70063900.0,70856800.0,71053700.0,72971800.0,73588500.0,74667400.0,75121500.0,76370500.0,78752000.0,78989600.0,79953300.0,79799800.0,80889800.0,81952000.0,82872700.0,84070300.0,84613900.0,85859100.0,86655500.0,87380800.0,88489200.0,90144200.0,90354900.0,91349800.0,92446200.0,93232800.0,94295700.0,95486900.0,96455000.0,97378100.0,98252100.0]]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/hyperthread/new/tukey.json:
--------------------------------------------------------------------------------
1 | [171.53648925068248,174.63420227350588,182.89477033436827,185.99248335719167]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/pcg64fast/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"gen_payloads","function_id":"Rng","value_str":"PCG64FAST","throughput":{"Elements":1},"full_id":"gen_payloads/Rng/PCG64FAST","directory_name":"gen_payloads/rng/pcg64fast","title":"gen_payloads/Rng/PCG64FAST"}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/pcg64fast/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":60.04159892243096,"upper_bound":60.243193996868634},"point_estimate":60.14117694502102,"standard_error":0.05145855533768773},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":59.76493213329301,"upper_bound":60.2301534065666},"point_estimate":60.079999950723774,"standard_error":0.10945061440422256},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.38833228165989764,"upper_bound":0.7788925044168248},"point_estimate":0.6025729827127257,"standard_error":0.09788661893401222},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":59.95833317043932,"upper_bound":60.168450215410886},"point_estimate":60.05755495170572,"standard_error":0.05351063977786204},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.4486178554085912,"upper_bound":0.5990219053550708},"point_estimate":0.5174661518391654,"standard_error":0.03974213296651426}}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/pcg64fast/base/sample.json:
--------------------------------------------------------------------------------
1 | [[16399.0,32798.0,49197.0,65596.0,81995.0,98394.0,114793.0,131192.0,147591.0,163990.0,180389.0,196788.0,213187.0,229586.0,245985.0,262384.0,278783.0,295182.0,311581.0,327980.0,344379.0,360778.0,377177.0,393576.0,409975.0,426374.0,442773.0,459172.0,475571.0,491970.0,508369.0,524768.0,541167.0,557566.0,573965.0,590364.0,606763.0,623162.0,639561.0,655960.0,672359.0,688758.0,705157.0,721556.0,737955.0,754354.0,770753.0,787152.0,803551.0,819950.0,836349.0,852748.0,869147.0,885546.0,901945.0,918344.0,934743.0,951142.0,967541.0,983940.0,1000339.0,1016738.0,1033137.0,1049536.0,1065935.0,1082334.0,1098733.0,1115132.0,1131531.0,1147930.0,1164329.0,1180728.0,1197127.0,1213526.0,1229925.0,1246324.0,1262723.0,1279122.0,1295521.0,1311920.0,1328319.0,1344718.0,1361117.0,1377516.0,1393915.0,1410314.0,1426713.0,1443112.0,1459511.0,1475910.0,1492309.0,1508708.0,1525107.0,1541506.0,1557905.0,1574304.0,1590703.0,1607102.0,1623501.0,1639900.0],[1019400.0,1949800.0,2925600.0,3898900.0,4938600.0,5880000.0,6914000.0,7807300.0,8865300.0,9776800.0,10883600.0,11834000.0,12731100.0,13709800.0,14774800.0,15739700.0,16638400.0,17641800.0,18534500.0,19572100.0,20566400.0,21442500.0,22515700.0,23425200.0,24656900.0,25546300.0,26600700.0,27983800.0,28891100.0,29750000.0,30886500.0,31891000.0,32876000.0,33868900.0,34875200.0,35898800.0,36881700.0,37856400.0,38845700.0,39886500.0,40803000.0,40997800.0,42714900.0,43439900.0,44475500.0,45388500.0,46844600.0,47828100.0,48850300.0,49629500.0,49816400.0,50786800.0,51842800.0,52926800.0,54191100.0,55517400.0,56799700.0,57810500.0,58774000.0,59855600.0,60753700.0,61793400.0,62741300.0,63753600.0,63599500.0,65490900.0,65994100.0,67074600.0,67999900.0,69126300.0,70031000.0,71351900.0,72735200.0,73701500.0,73525900.0,74258900.0,75353500.0,76208500.0,77399300.0,78734200.0,79287400.0,80152000.0,81330700.0,82166900.0,83207800.0,85362900.0,85227100.0,86243900.0,87104900.0,88098600.0,89020100.0,90047300.0,91031400.0,92056900.0,93012800.0,93942600.0,95013100.0,96900900.0,97847900.0,99164000.0]]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/pcg64fast/base/tukey.json:
--------------------------------------------------------------------------------
1 | [56.56870497211396,58.129180131301254,62.290447222467364,63.850922381654655]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/pcg64fast/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"gen_payloads","function_id":"Rng","value_str":"PCG64FAST","throughput":{"Elements":1},"full_id":"gen_payloads/Rng/PCG64FAST","directory_name":"gen_payloads/rng/pcg64fast","title":"gen_payloads/Rng/PCG64FAST"}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/pcg64fast/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":60.04159892243096,"upper_bound":60.243193996868634},"point_estimate":60.14117694502102,"standard_error":0.05145855533768773},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":59.76493213329301,"upper_bound":60.2301534065666},"point_estimate":60.079999950723774,"standard_error":0.10945061440422256},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.38833228165989764,"upper_bound":0.7788925044168248},"point_estimate":0.6025729827127257,"standard_error":0.09788661893401222},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":59.95833317043932,"upper_bound":60.168450215410886},"point_estimate":60.05755495170572,"standard_error":0.05351063977786204},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.4486178554085912,"upper_bound":0.5990219053550708},"point_estimate":0.5174661518391654,"standard_error":0.03974213296651426}}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/pcg64fast/new/sample.json:
--------------------------------------------------------------------------------
1 | [[16399.0,32798.0,49197.0,65596.0,81995.0,98394.0,114793.0,131192.0,147591.0,163990.0,180389.0,196788.0,213187.0,229586.0,245985.0,262384.0,278783.0,295182.0,311581.0,327980.0,344379.0,360778.0,377177.0,393576.0,409975.0,426374.0,442773.0,459172.0,475571.0,491970.0,508369.0,524768.0,541167.0,557566.0,573965.0,590364.0,606763.0,623162.0,639561.0,655960.0,672359.0,688758.0,705157.0,721556.0,737955.0,754354.0,770753.0,787152.0,803551.0,819950.0,836349.0,852748.0,869147.0,885546.0,901945.0,918344.0,934743.0,951142.0,967541.0,983940.0,1000339.0,1016738.0,1033137.0,1049536.0,1065935.0,1082334.0,1098733.0,1115132.0,1131531.0,1147930.0,1164329.0,1180728.0,1197127.0,1213526.0,1229925.0,1246324.0,1262723.0,1279122.0,1295521.0,1311920.0,1328319.0,1344718.0,1361117.0,1377516.0,1393915.0,1410314.0,1426713.0,1443112.0,1459511.0,1475910.0,1492309.0,1508708.0,1525107.0,1541506.0,1557905.0,1574304.0,1590703.0,1607102.0,1623501.0,1639900.0],[1019400.0,1949800.0,2925600.0,3898900.0,4938600.0,5880000.0,6914000.0,7807300.0,8865300.0,9776800.0,10883600.0,11834000.0,12731100.0,13709800.0,14774800.0,15739700.0,16638400.0,17641800.0,18534500.0,19572100.0,20566400.0,21442500.0,22515700.0,23425200.0,24656900.0,25546300.0,26600700.0,27983800.0,28891100.0,29750000.0,30886500.0,31891000.0,32876000.0,33868900.0,34875200.0,35898800.0,36881700.0,37856400.0,38845700.0,39886500.0,40803000.0,40997800.0,42714900.0,43439900.0,44475500.0,45388500.0,46844600.0,47828100.0,48850300.0,49629500.0,49816400.0,50786800.0,51842800.0,52926800.0,54191100.0,55517400.0,56799700.0,57810500.0,58774000.0,59855600.0,60753700.0,61793400.0,62741300.0,63753600.0,63599500.0,65490900.0,65994100.0,67074600.0,67999900.0,69126300.0,70031000.0,71351900.0,72735200.0,73701500.0,73525900.0,74258900.0,75353500.0,76208500.0,77399300.0,78734200.0,79287400.0,80152000.0,81330700.0,82166900.0,83207800.0,85362900.0,85227100.0,86243900.0,87104900.0,88098600.0,89020100.0,90047300.0,91031400.0,92056900.0,93012800.0,93942600.0,95013100.0,96900900.0,97847900.0,99164000.0]]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/pcg64fast/new/tukey.json:
--------------------------------------------------------------------------------
1 | [56.56870497211396,58.129180131301254,62.290447222467364,63.850922381654655]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/sfmt/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"gen_payloads","function_id":"Rng","value_str":"SFMT","throughput":{"Elements":1},"full_id":"gen_payloads/Rng/SFMT","directory_name":"gen_payloads/rng/sfmt","title":"gen_payloads/Rng/SFMT"}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/sfmt/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1153.812504594988,"upper_bound":1157.126269192411},"point_estimate":1155.4035170815218,"standard_error":0.8444253181227429},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1151.588979354587,"upper_bound":1152.8809731934732},"point_estimate":1152.2342247297524,"standard_error":0.3301299449484924},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2.6926227839101866,"upper_bound":5.626194538809748},"point_estimate":4.147201486489994,"standard_error":0.7701581991699913},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1151.8402744316766,"upper_bound":1154.3051554501537},"point_estimate":1152.972953896997,"standard_error":0.6306196466648791},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.6268517506726585,"upper_bound":10.234783824238685},"point_estimate":8.504310298275055,"standard_error":0.9233865168373383}}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/sfmt/base/sample.json:
--------------------------------------------------------------------------------
1 | [[858.0,1716.0,2574.0,3432.0,4290.0,5148.0,6006.0,6864.0,7722.0,8580.0,9438.0,10296.0,11154.0,12012.0,12870.0,13728.0,14586.0,15444.0,16302.0,17160.0,18018.0,18876.0,19734.0,20592.0,21450.0,22308.0,23166.0,24024.0,24882.0,25740.0,26598.0,27456.0,28314.0,29172.0,30030.0,30888.0,31746.0,32604.0,33462.0,34320.0,35178.0,36036.0,36894.0,37752.0,38610.0,39468.0,40326.0,41184.0,42042.0,42900.0,43758.0,44616.0,45474.0,46332.0,47190.0,48048.0,48906.0,49764.0,50622.0,51480.0,52338.0,53196.0,54054.0,54912.0,55770.0,56628.0,57486.0,58344.0,59202.0,60060.0,60918.0,61776.0,62634.0,63492.0,64350.0,65208.0,66066.0,66924.0,67782.0,68640.0,69498.0,70356.0,71214.0,72072.0,72930.0,73788.0,74646.0,75504.0,76362.0,77220.0,78078.0,78936.0,79794.0,80652.0,81510.0,82368.0,83226.0,84084.0,84942.0,85800.0],[988300.0,1996200.0,3066500.0,4051400.0,5013600.0,6046000.0,7041000.0,7884200.0,8958400.0,10081600.0,11059800.0,11911800.0,12859500.0,13915600.0,15049700.0,16052100.0,17045400.0,18055200.0,19053600.0,19856500.0,20682700.0,21752000.0,22742800.0,23600200.0,24712400.0,25706900.0,26730900.0,27856700.0,28699800.0,29632100.0,30552800.0,31632100.0,32473000.0,33459500.0,34525900.0,35440000.0,36587700.0,37402600.0,38390100.0,39672900.0,40385800.0,41542400.0,42411400.0,43379800.0,44641300.0,45422200.0,46318000.0,47381200.0,48495800.0,49397800.0,50373700.0,51430900.0,52576000.0,53250600.0,54303400.0,55165300.0,56584700.0,57334600.0,58310200.0,59339100.0,60255900.0,61307700.0,62156700.0,63455500.0,64399400.0,65501600.0,67095000.0,68228400.0,69208200.0,69696900.0,71340200.0,72180600.0,72010000.0,73109500.0,74454300.0,75105000.0,76219800.0,77117800.0,78070100.0,79163100.0,79970800.0,81023800.0,82012000.0,82814700.0,83746800.0,85014800.0,85938600.0,86908500.0,87892200.0,88844900.0,89704100.0,90682400.0,91758800.0,92715400.0,93983000.0,94960500.0,95618200.0,96701600.0,97815000.0,99092200.0]]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/sfmt/base/tukey.json:
--------------------------------------------------------------------------------
1 | [1129.264333740746,1139.647729904369,1167.3367863406975,1177.7201825043207]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/sfmt/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"gen_payloads","function_id":"Rng","value_str":"SFMT","throughput":{"Elements":1},"full_id":"gen_payloads/Rng/SFMT","directory_name":"gen_payloads/rng/sfmt","title":"gen_payloads/Rng/SFMT"}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/sfmt/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1153.812504594988,"upper_bound":1157.126269192411},"point_estimate":1155.4035170815218,"standard_error":0.8444253181227429},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1151.588979354587,"upper_bound":1152.8809731934732},"point_estimate":1152.2342247297524,"standard_error":0.3301299449484924},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2.6926227839101866,"upper_bound":5.626194538809748},"point_estimate":4.147201486489994,"standard_error":0.7701581991699913},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1151.8402744316766,"upper_bound":1154.3051554501537},"point_estimate":1152.972953896997,"standard_error":0.6306196466648791},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.6268517506726585,"upper_bound":10.234783824238685},"point_estimate":8.504310298275055,"standard_error":0.9233865168373383}}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/sfmt/new/sample.json:
--------------------------------------------------------------------------------
1 | [[858.0,1716.0,2574.0,3432.0,4290.0,5148.0,6006.0,6864.0,7722.0,8580.0,9438.0,10296.0,11154.0,12012.0,12870.0,13728.0,14586.0,15444.0,16302.0,17160.0,18018.0,18876.0,19734.0,20592.0,21450.0,22308.0,23166.0,24024.0,24882.0,25740.0,26598.0,27456.0,28314.0,29172.0,30030.0,30888.0,31746.0,32604.0,33462.0,34320.0,35178.0,36036.0,36894.0,37752.0,38610.0,39468.0,40326.0,41184.0,42042.0,42900.0,43758.0,44616.0,45474.0,46332.0,47190.0,48048.0,48906.0,49764.0,50622.0,51480.0,52338.0,53196.0,54054.0,54912.0,55770.0,56628.0,57486.0,58344.0,59202.0,60060.0,60918.0,61776.0,62634.0,63492.0,64350.0,65208.0,66066.0,66924.0,67782.0,68640.0,69498.0,70356.0,71214.0,72072.0,72930.0,73788.0,74646.0,75504.0,76362.0,77220.0,78078.0,78936.0,79794.0,80652.0,81510.0,82368.0,83226.0,84084.0,84942.0,85800.0],[988300.0,1996200.0,3066500.0,4051400.0,5013600.0,6046000.0,7041000.0,7884200.0,8958400.0,10081600.0,11059800.0,11911800.0,12859500.0,13915600.0,15049700.0,16052100.0,17045400.0,18055200.0,19053600.0,19856500.0,20682700.0,21752000.0,22742800.0,23600200.0,24712400.0,25706900.0,26730900.0,27856700.0,28699800.0,29632100.0,30552800.0,31632100.0,32473000.0,33459500.0,34525900.0,35440000.0,36587700.0,37402600.0,38390100.0,39672900.0,40385800.0,41542400.0,42411400.0,43379800.0,44641300.0,45422200.0,46318000.0,47381200.0,48495800.0,49397800.0,50373700.0,51430900.0,52576000.0,53250600.0,54303400.0,55165300.0,56584700.0,57334600.0,58310200.0,59339100.0,60255900.0,61307700.0,62156700.0,63455500.0,64399400.0,65501600.0,67095000.0,68228400.0,69208200.0,69696900.0,71340200.0,72180600.0,72010000.0,73109500.0,74454300.0,75105000.0,76219800.0,77117800.0,78070100.0,79163100.0,79970800.0,81023800.0,82012000.0,82814700.0,83746800.0,85014800.0,85938600.0,86908500.0,87892200.0,88844900.0,89704100.0,90682400.0,91758800.0,92715400.0,93983000.0,94960500.0,95618200.0,96701600.0,97815000.0,99092200.0]]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/sfmt/new/tukey.json:
--------------------------------------------------------------------------------
1 | [1129.264333740746,1139.647729904369,1167.3367863406975,1177.7201825043207]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/wyrng/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"gen_payloads","function_id":"Rng","value_str":"WYRNG","throughput":{"Elements":1},"full_id":"gen_payloads/Rng/WYRNG","directory_name":"gen_payloads/rng/wyrng","title":"gen_payloads/Rng/WYRNG"}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/wyrng/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":162.81903462309168,"upper_bound":173.1738068386057},"point_estimate":167.85741190310907,"standard_error":2.642451737042004},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":153.10764585677822,"upper_bound":154.7299706877506},"point_estimate":153.60029116544462,"standard_error":0.3742732459568261},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1.6056803549011929,"upper_bound":3.607098434957262},"point_estimate":2.1364268749305633,"standard_error":0.4692153610388657},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":176.7727903271115,"upper_bound":193.04605241091252},"point_estimate":185.4140700064427,"standard_error":4.1454987973117445},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":22.520968209772114,"upper_bound":29.300496674091267},"point_estimate":26.541126945220483,"standard_error":1.738483582167831}}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/wyrng/base/sample.json:
--------------------------------------------------------------------------------
1 | [[6051.0,12102.0,18153.0,24204.0,30255.0,36306.0,42357.0,48408.0,54459.0,60510.0,66561.0,72612.0,78663.0,84714.0,90765.0,96816.0,102867.0,108918.0,114969.0,121020.0,127071.0,133122.0,139173.0,145224.0,151275.0,157326.0,163377.0,169428.0,175479.0,181530.0,187581.0,193632.0,199683.0,205734.0,211785.0,217836.0,223887.0,229938.0,235989.0,242040.0,248091.0,254142.0,260193.0,266244.0,272295.0,278346.0,284397.0,290448.0,296499.0,302550.0,308601.0,314652.0,320703.0,326754.0,332805.0,338856.0,344907.0,350958.0,357009.0,363060.0,369111.0,375162.0,381213.0,387264.0,393315.0,399366.0,405417.0,411468.0,417519.0,423570.0,429621.0,435672.0,441723.0,447774.0,453825.0,459876.0,465927.0,471978.0,478029.0,484080.0,490131.0,496182.0,502233.0,508284.0,514335.0,520386.0,526437.0,532488.0,538539.0,544590.0,550641.0,556692.0,562743.0,568794.0,574845.0,580896.0,586947.0,592998.0,599049.0,605100.0],[940100.0,1876900.0,2817700.0,3750400.0,4686200.0,5623100.0,6574900.0,7497100.0,8434900.0,9372500.0,10323100.0,11248100.0,12190600.0,13083400.0,13852900.0,14870100.0,15718300.0,16707900.0,17660300.0,18355300.0,19277000.0,20260800.0,21176600.0,22107100.0,22979000.0,23981300.0,25043400.0,26111100.0,26938300.0,27758500.0,28728300.0,29453900.0,30645200.0,32029100.0,32562000.0,33608300.0,34662800.0,35578300.0,36103600.0,36759500.0,37688800.0,38646600.0,39604300.0,40527800.0,41393000.0,42932700.0,43266300.0,44289800.0,45413900.0,46153100.0,47356300.0,48008800.0,48675300.0,49636800.0,50654400.0,51983300.0,52569000.0,53389500.0,54326100.0,55242600.0,56206100.0,56913800.0,57930000.0,58959000.0,60547000.0,60685100.0,61684600.0,62757400.0,63431300.0,64518600.0,65356000.0,66678800.0,67835000.0,70357500.0,94605300.0,98397100.0,101302000.0,104057300.0,103303300.0,103688200.0,106567800.0,106137500.0,107421300.0,109139300.0,111099900.0,112978700.0,113330500.0,114989900.0,116644700.0,118423200.0,119473100.0,120161700.0,124634100.0,123379200.0,124149900.0,125546200.0,126277400.0,101683300.0,92214400.0,93290700.0]]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/wyrng/base/tukey.json:
--------------------------------------------------------------------------------
1 | [140.77314481051837,146.499484808919,161.76972480465398,167.4960648030546]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/wyrng/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"gen_payloads","function_id":"Rng","value_str":"WYRNG","throughput":{"Elements":1},"full_id":"gen_payloads/Rng/WYRNG","directory_name":"gen_payloads/rng/wyrng","title":"gen_payloads/Rng/WYRNG"}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/wyrng/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":162.81903462309168,"upper_bound":173.1738068386057},"point_estimate":167.85741190310907,"standard_error":2.642451737042004},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":153.10764585677822,"upper_bound":154.7299706877506},"point_estimate":153.60029116544462,"standard_error":0.3742732459568261},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1.6056803549011929,"upper_bound":3.607098434957262},"point_estimate":2.1364268749305633,"standard_error":0.4692153610388657},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":176.7727903271115,"upper_bound":193.04605241091252},"point_estimate":185.4140700064427,"standard_error":4.1454987973117445},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":22.520968209772114,"upper_bound":29.300496674091267},"point_estimate":26.541126945220483,"standard_error":1.738483582167831}}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/wyrng/new/sample.json:
--------------------------------------------------------------------------------
1 | [[6051.0,12102.0,18153.0,24204.0,30255.0,36306.0,42357.0,48408.0,54459.0,60510.0,66561.0,72612.0,78663.0,84714.0,90765.0,96816.0,102867.0,108918.0,114969.0,121020.0,127071.0,133122.0,139173.0,145224.0,151275.0,157326.0,163377.0,169428.0,175479.0,181530.0,187581.0,193632.0,199683.0,205734.0,211785.0,217836.0,223887.0,229938.0,235989.0,242040.0,248091.0,254142.0,260193.0,266244.0,272295.0,278346.0,284397.0,290448.0,296499.0,302550.0,308601.0,314652.0,320703.0,326754.0,332805.0,338856.0,344907.0,350958.0,357009.0,363060.0,369111.0,375162.0,381213.0,387264.0,393315.0,399366.0,405417.0,411468.0,417519.0,423570.0,429621.0,435672.0,441723.0,447774.0,453825.0,459876.0,465927.0,471978.0,478029.0,484080.0,490131.0,496182.0,502233.0,508284.0,514335.0,520386.0,526437.0,532488.0,538539.0,544590.0,550641.0,556692.0,562743.0,568794.0,574845.0,580896.0,586947.0,592998.0,599049.0,605100.0],[940100.0,1876900.0,2817700.0,3750400.0,4686200.0,5623100.0,6574900.0,7497100.0,8434900.0,9372500.0,10323100.0,11248100.0,12190600.0,13083400.0,13852900.0,14870100.0,15718300.0,16707900.0,17660300.0,18355300.0,19277000.0,20260800.0,21176600.0,22107100.0,22979000.0,23981300.0,25043400.0,26111100.0,26938300.0,27758500.0,28728300.0,29453900.0,30645200.0,32029100.0,32562000.0,33608300.0,34662800.0,35578300.0,36103600.0,36759500.0,37688800.0,38646600.0,39604300.0,40527800.0,41393000.0,42932700.0,43266300.0,44289800.0,45413900.0,46153100.0,47356300.0,48008800.0,48675300.0,49636800.0,50654400.0,51983300.0,52569000.0,53389500.0,54326100.0,55242600.0,56206100.0,56913800.0,57930000.0,58959000.0,60547000.0,60685100.0,61684600.0,62757400.0,63431300.0,64518600.0,65356000.0,66678800.0,67835000.0,70357500.0,94605300.0,98397100.0,101302000.0,104057300.0,103303300.0,103688200.0,106567800.0,106137500.0,107421300.0,109139300.0,111099900.0,112978700.0,113330500.0,114989900.0,116644700.0,118423200.0,119473100.0,120161700.0,124634100.0,123379200.0,124149900.0,125546200.0,126277400.0,101683300.0,92214400.0,93290700.0]]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/wyrng/new/tukey.json:
--------------------------------------------------------------------------------
1 | [140.77314481051837,146.499484808919,161.76972480465398,167.4960648030546]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/xorshift/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"gen_payloads","function_id":"Rng","value_str":"XORSHIFT","throughput":{"Elements":1},"full_id":"gen_payloads/Rng/XORSHIFT","directory_name":"gen_payloads/rng/xorshift","title":"gen_payloads/Rng/XORSHIFT"}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/xorshift/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":61.21761578188146,"upper_bound":61.73309549605346},"point_estimate":61.41957710161424,"standard_error":0.13710061512264055},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":61.292159490321446,"upper_bound":61.41481988534269},"point_estimate":61.37535306833115,"standard_error":0.03651952102346215},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.4715603395046933,"upper_bound":0.6626723322478638},"point_estimate":0.5619641649611051,"standard_error":0.05231514747619521},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":61.161534951148965,"upper_bound":61.32022897526744},"point_estimate":61.24389089366327,"standard_error":0.04038964708201312},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.4390309273989674,"upper_bound":2.2718974642992253},"point_estimate":1.3774693313925677,"standard_error":0.6226804587276888}}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/xorshift/base/sample.json:
--------------------------------------------------------------------------------
1 | [[16120.0,32240.0,48360.0,64480.0,80600.0,96720.0,112840.0,128960.0,145080.0,161200.0,177320.0,193440.0,209560.0,225680.0,241800.0,257920.0,274040.0,290160.0,306280.0,322400.0,338520.0,354640.0,370760.0,386880.0,403000.0,419120.0,435240.0,451360.0,467480.0,483600.0,499720.0,515840.0,531960.0,548080.0,564200.0,580320.0,596440.0,612560.0,628680.0,644800.0,660920.0,677040.0,693160.0,709280.0,725400.0,741520.0,757640.0,773760.0,789880.0,806000.0,822120.0,838240.0,854360.0,870480.0,886600.0,902720.0,918840.0,934960.0,951080.0,967200.0,983320.0,999440.0,1015560.0,1031680.0,1047800.0,1063920.0,1080040.0,1096160.0,1112280.0,1128400.0,1144520.0,1160640.0,1176760.0,1192880.0,1209000.0,1225120.0,1241240.0,1257360.0,1273480.0,1289600.0,1305720.0,1321840.0,1337960.0,1354080.0,1370200.0,1386320.0,1402440.0,1418560.0,1434680.0,1450800.0,1466920.0,1483040.0,1499160.0,1515280.0,1531400.0,1547520.0,1563640.0,1579760.0,1595880.0,1612000.0],[991200.0,1964700.0,2965500.0,3925000.0,4870000.0,5875800.0,6917800.0,9564600.0,9110300.0,10094100.0,10888900.0,12070400.0,12951900.0,13932900.0,14927300.0,15928200.0,16908300.0,17919400.0,18919900.0,19897100.0,20904800.0,21902600.0,22755600.0,23433800.0,24576100.0,25336600.0,26451900.0,27530900.0,28710200.0,30021900.0,30764900.0,31858700.0,32825800.0,33829500.0,34821100.0,35807500.0,36316600.0,37150800.0,38134700.0,39079200.0,40065900.0,41223800.0,42166100.0,43178300.0,44159800.0,45519200.0,46771900.0,47754400.0,47899700.0,48867000.0,49888900.0,51010500.0,52721800.0,53426200.0,54780100.0,55754100.0,56769000.0,57748600.0,58722800.0,59713400.0,60644800.0,60580000.0,61687500.0,63842000.0,64566100.0,65302400.0,65485100.0,66360800.0,67399100.0,68541400.0,69476200.0,70385700.0,71462100.0,72535100.0,73258300.0,74303600.0,76015900.0,77132800.0,78162600.0,78802900.0,80202400.0,81150500.0,82117500.0,83188600.0,83966400.0,85208300.0,85972300.0,87018900.0,87888000.0,89107700.0,89929500.0,90915200.0,91913000.0,93085300.0,93845800.0,95368300.0,96015100.0,96998700.0,97868900.0,98729300.0]]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/xorshift/base/tukey.json:
--------------------------------------------------------------------------------
1 | [58.246537734655554,59.54758988378751,63.01706228147273,64.3181144306047]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/xorshift/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"gen_payloads","function_id":"Rng","value_str":"XORSHIFT","throughput":{"Elements":1},"full_id":"gen_payloads/Rng/XORSHIFT","directory_name":"gen_payloads/rng/xorshift","title":"gen_payloads/Rng/XORSHIFT"}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/xorshift/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":61.21761578188146,"upper_bound":61.73309549605346},"point_estimate":61.41957710161424,"standard_error":0.13710061512264055},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":61.292159490321446,"upper_bound":61.41481988534269},"point_estimate":61.37535306833115,"standard_error":0.03651952102346215},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.4715603395046933,"upper_bound":0.6626723322478638},"point_estimate":0.5619641649611051,"standard_error":0.05231514747619521},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":61.161534951148965,"upper_bound":61.32022897526744},"point_estimate":61.24389089366327,"standard_error":0.04038964708201312},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.4390309273989674,"upper_bound":2.2718974642992253},"point_estimate":1.3774693313925677,"standard_error":0.6226804587276888}}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/xorshift/new/sample.json:
--------------------------------------------------------------------------------
1 | [[16120.0,32240.0,48360.0,64480.0,80600.0,96720.0,112840.0,128960.0,145080.0,161200.0,177320.0,193440.0,209560.0,225680.0,241800.0,257920.0,274040.0,290160.0,306280.0,322400.0,338520.0,354640.0,370760.0,386880.0,403000.0,419120.0,435240.0,451360.0,467480.0,483600.0,499720.0,515840.0,531960.0,548080.0,564200.0,580320.0,596440.0,612560.0,628680.0,644800.0,660920.0,677040.0,693160.0,709280.0,725400.0,741520.0,757640.0,773760.0,789880.0,806000.0,822120.0,838240.0,854360.0,870480.0,886600.0,902720.0,918840.0,934960.0,951080.0,967200.0,983320.0,999440.0,1015560.0,1031680.0,1047800.0,1063920.0,1080040.0,1096160.0,1112280.0,1128400.0,1144520.0,1160640.0,1176760.0,1192880.0,1209000.0,1225120.0,1241240.0,1257360.0,1273480.0,1289600.0,1305720.0,1321840.0,1337960.0,1354080.0,1370200.0,1386320.0,1402440.0,1418560.0,1434680.0,1450800.0,1466920.0,1483040.0,1499160.0,1515280.0,1531400.0,1547520.0,1563640.0,1579760.0,1595880.0,1612000.0],[991200.0,1964700.0,2965500.0,3925000.0,4870000.0,5875800.0,6917800.0,9564600.0,9110300.0,10094100.0,10888900.0,12070400.0,12951900.0,13932900.0,14927300.0,15928200.0,16908300.0,17919400.0,18919900.0,19897100.0,20904800.0,21902600.0,22755600.0,23433800.0,24576100.0,25336600.0,26451900.0,27530900.0,28710200.0,30021900.0,30764900.0,31858700.0,32825800.0,33829500.0,34821100.0,35807500.0,36316600.0,37150800.0,38134700.0,39079200.0,40065900.0,41223800.0,42166100.0,43178300.0,44159800.0,45519200.0,46771900.0,47754400.0,47899700.0,48867000.0,49888900.0,51010500.0,52721800.0,53426200.0,54780100.0,55754100.0,56769000.0,57748600.0,58722800.0,59713400.0,60644800.0,60580000.0,61687500.0,63842000.0,64566100.0,65302400.0,65485100.0,66360800.0,67399100.0,68541400.0,69476200.0,70385700.0,71462100.0,72535100.0,73258300.0,74303600.0,76015900.0,77132800.0,78162600.0,78802900.0,80202400.0,81150500.0,82117500.0,83188600.0,83966400.0,85208300.0,85972300.0,87018900.0,87888000.0,89107700.0,89929500.0,90915200.0,91913000.0,93085300.0,93845800.0,95368300.0,96015100.0,96998700.0,97868900.0,98729300.0]]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/xorshift/new/tukey.json:
--------------------------------------------------------------------------------
1 | [58.246537734655554,59.54758988378751,63.01706228147273,64.3181144306047]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/xoshiro256plusplus/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"gen_payloads","function_id":"Rng","value_str":"XOSHIRO256PLUSPLUS","throughput":{"Elements":1},"full_id":"gen_payloads/Rng/XOSHIRO256PLUSPLUS","directory_name":"gen_payloads/rng/xoshiro256plusplus","title":"gen_payloads/Rng/XOSHIRO256PLUSPLUS"}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/xoshiro256plusplus/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":81.66810860150652,"upper_bound":82.22635323100783},"point_estimate":81.92443438191557,"standard_error":0.142341437147522},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":81.33330677079184,"upper_bound":82.20387844356007},"point_estimate":81.84347157123872,"standard_error":0.2553803000663171},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.7892703842084411,"upper_bound":1.5260147385559084},"point_estimate":1.0678789602911822,"standard_error":0.192840776655957},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":81.9403772652258,"upper_bound":82.36890348495193},"point_estimate":82.14571841290373,"standard_error":0.10918828488659693},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.9062266393933835,"upper_bound":2.0200540105853744},"point_estimate":1.433261053773345,"standard_error":0.32303111196898276}}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/xoshiro256plusplus/base/sample.json:
--------------------------------------------------------------------------------
1 | [[12549.0,25098.0,37647.0,50196.0,62745.0,75294.0,87843.0,100392.0,112941.0,125490.0,138039.0,150588.0,163137.0,175686.0,188235.0,200784.0,213333.0,225882.0,238431.0,250980.0,263529.0,276078.0,288627.0,301176.0,313725.0,326274.0,338823.0,351372.0,363921.0,376470.0,389019.0,401568.0,414117.0,426666.0,439215.0,451764.0,464313.0,476862.0,489411.0,501960.0,514509.0,527058.0,539607.0,552156.0,564705.0,577254.0,589803.0,602352.0,614901.0,627450.0,639999.0,652548.0,665097.0,677646.0,690195.0,702744.0,715293.0,727842.0,740391.0,752940.0,765489.0,778038.0,790587.0,803136.0,815685.0,828234.0,840783.0,853332.0,865881.0,878430.0,890979.0,903528.0,916077.0,928626.0,941175.0,953724.0,966273.0,978822.0,991371.0,1003920.0,1016469.0,1029018.0,1041567.0,1054116.0,1066665.0,1079214.0,1091763.0,1104312.0,1116861.0,1129410.0,1141959.0,1154508.0,1167057.0,1179606.0,1192155.0,1204704.0,1217253.0,1229802.0,1242351.0,1254900.0],[1150100.0,2021000.0,3029400.0,4068000.0,5048800.0,6228600.0,7066100.0,8202900.0,9123600.0,10199700.0,11262300.0,12256000.0,13412100.0,14439400.0,15478300.0,16502900.0,17536800.0,18537400.0,19340100.0,20243200.0,21291400.0,22336300.0,23350900.0,24383000.0,25408500.0,26280800.0,27418900.0,28486500.0,29624300.0,30563200.0,31501300.0,32539600.0,33700900.0,34488700.0,35370400.0,36545900.0,37401300.0,38410700.0,39641900.0,40746400.0,41781700.0,42913500.0,43645600.0,44514400.0,45630000.0,46568500.0,47709700.0,48670200.0,49663200.0,51450700.0,51867300.0,54675000.0,55710500.0,56675200.0,58387700.0,58757200.0,60978300.0,61067300.0,61113600.0,62658200.0,63827400.0,64619600.0,65959300.0,66044300.0,67073700.0,68107900.0,69169100.0,70172000.0,71230800.0,72233200.0,72333400.0,75559700.0,75326500.0,76405500.0,77394700.0,78438400.0,79504800.0,80490700.0,81532800.0,82530800.0,83172600.0,85103000.0,88655700.0,86702000.0,87837800.0,88747900.0,88990500.0,90401100.0,91171600.0,91631700.0,92502400.0,93242800.0,95290800.0,96922400.0,98202900.0,99083800.0,100085700.0,101091900.0,101896100.0,102812500.0]]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/xoshiro256plusplus/base/tukey.json:
--------------------------------------------------------------------------------
1 | [77.1527273388262,79.06237088671269,84.15475368107666,86.06439722896314]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/xoshiro256plusplus/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"gen_payloads","function_id":"Rng","value_str":"XOSHIRO256PLUSPLUS","throughput":{"Elements":1},"full_id":"gen_payloads/Rng/XOSHIRO256PLUSPLUS","directory_name":"gen_payloads/rng/xoshiro256plusplus","title":"gen_payloads/Rng/XOSHIRO256PLUSPLUS"}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/xoshiro256plusplus/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":81.66810860150652,"upper_bound":82.22635323100783},"point_estimate":81.92443438191557,"standard_error":0.142341437147522},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":81.33330677079184,"upper_bound":82.20387844356007},"point_estimate":81.84347157123872,"standard_error":0.2553803000663171},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.7892703842084411,"upper_bound":1.5260147385559084},"point_estimate":1.0678789602911822,"standard_error":0.192840776655957},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":81.9403772652258,"upper_bound":82.36890348495193},"point_estimate":82.14571841290373,"standard_error":0.10918828488659693},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.9062266393933835,"upper_bound":2.0200540105853744},"point_estimate":1.433261053773345,"standard_error":0.32303111196898276}}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/xoshiro256plusplus/new/sample.json:
--------------------------------------------------------------------------------
1 | [[12549.0,25098.0,37647.0,50196.0,62745.0,75294.0,87843.0,100392.0,112941.0,125490.0,138039.0,150588.0,163137.0,175686.0,188235.0,200784.0,213333.0,225882.0,238431.0,250980.0,263529.0,276078.0,288627.0,301176.0,313725.0,326274.0,338823.0,351372.0,363921.0,376470.0,389019.0,401568.0,414117.0,426666.0,439215.0,451764.0,464313.0,476862.0,489411.0,501960.0,514509.0,527058.0,539607.0,552156.0,564705.0,577254.0,589803.0,602352.0,614901.0,627450.0,639999.0,652548.0,665097.0,677646.0,690195.0,702744.0,715293.0,727842.0,740391.0,752940.0,765489.0,778038.0,790587.0,803136.0,815685.0,828234.0,840783.0,853332.0,865881.0,878430.0,890979.0,903528.0,916077.0,928626.0,941175.0,953724.0,966273.0,978822.0,991371.0,1003920.0,1016469.0,1029018.0,1041567.0,1054116.0,1066665.0,1079214.0,1091763.0,1104312.0,1116861.0,1129410.0,1141959.0,1154508.0,1167057.0,1179606.0,1192155.0,1204704.0,1217253.0,1229802.0,1242351.0,1254900.0],[1150100.0,2021000.0,3029400.0,4068000.0,5048800.0,6228600.0,7066100.0,8202900.0,9123600.0,10199700.0,11262300.0,12256000.0,13412100.0,14439400.0,15478300.0,16502900.0,17536800.0,18537400.0,19340100.0,20243200.0,21291400.0,22336300.0,23350900.0,24383000.0,25408500.0,26280800.0,27418900.0,28486500.0,29624300.0,30563200.0,31501300.0,32539600.0,33700900.0,34488700.0,35370400.0,36545900.0,37401300.0,38410700.0,39641900.0,40746400.0,41781700.0,42913500.0,43645600.0,44514400.0,45630000.0,46568500.0,47709700.0,48670200.0,49663200.0,51450700.0,51867300.0,54675000.0,55710500.0,56675200.0,58387700.0,58757200.0,60978300.0,61067300.0,61113600.0,62658200.0,63827400.0,64619600.0,65959300.0,66044300.0,67073700.0,68107900.0,69169100.0,70172000.0,71230800.0,72233200.0,72333400.0,75559700.0,75326500.0,76405500.0,77394700.0,78438400.0,79504800.0,80490700.0,81532800.0,82530800.0,83172600.0,85103000.0,88655700.0,86702000.0,87837800.0,88747900.0,88990500.0,90401100.0,91171600.0,91631700.0,92502400.0,93242800.0,95290800.0,96922400.0,98202900.0,99083800.0,100085700.0,101091900.0,101896100.0,102812500.0]]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/xoshiro256plusplus/new/tukey.json:
--------------------------------------------------------------------------------
1 | [77.1527273388262,79.06237088671269,84.15475368107666,86.06439722896314]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/xoshiro256starstar/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"gen_payloads","function_id":"Rng","value_str":"XOSHIRO256STARSTAR","throughput":{"Elements":1},"full_id":"gen_payloads/Rng/XOSHIRO256STARSTAR","directory_name":"gen_payloads/rng/xoshiro256starstar","title":"gen_payloads/Rng/XOSHIRO256STARSTAR"}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/xoshiro256starstar/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":81.83522830622563,"upper_bound":82.17991375473544},"point_estimate":81.99613111015535,"standard_error":0.08785467172187557},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":81.87871191311467,"upper_bound":82.28701239042067},"point_estimate":82.24955139268283,"standard_error":0.09735855344734379},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.1294780023932804,"upper_bound":0.7513499946615074},"point_estimate":0.4284758615737004,"standard_error":0.17304631131589554},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":81.66020933740526,"upper_bound":81.97796040313031},"point_estimate":81.81352396177508,"standard_error":0.08094787597277982},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.5731543860848578,"upper_bound":1.2259625926306856},"point_estimate":0.8785629827794229,"standard_error":0.1847588734959406}}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/xoshiro256starstar/base/sample.json:
--------------------------------------------------------------------------------
1 | [[12499.0,24998.0,37497.0,49996.0,62495.0,74994.0,87493.0,99992.0,112491.0,124990.0,137489.0,149988.0,162487.0,174986.0,187485.0,199984.0,212483.0,224982.0,237481.0,249980.0,262479.0,274978.0,287477.0,299976.0,312475.0,324974.0,337473.0,349972.0,362471.0,374970.0,387469.0,399968.0,412467.0,424966.0,437465.0,449964.0,462463.0,474962.0,487461.0,499960.0,512459.0,524958.0,537457.0,549956.0,562455.0,574954.0,587453.0,599952.0,612451.0,624950.0,637449.0,649948.0,662447.0,674946.0,687445.0,699944.0,712443.0,724942.0,737441.0,749940.0,762439.0,774938.0,787437.0,799936.0,812435.0,824934.0,837433.0,849932.0,862431.0,874930.0,887429.0,899928.0,912427.0,924926.0,937425.0,949924.0,962423.0,974922.0,987421.0,999920.0,1012419.0,1024918.0,1037417.0,1049916.0,1062415.0,1074914.0,1087413.0,1099912.0,1112411.0,1124910.0,1137409.0,1149908.0,1162407.0,1174906.0,1187405.0,1199904.0,1212403.0,1224902.0,1237401.0,1249900.0],[1051700.0,2013200.0,3018500.0,4064200.0,5206200.0,6166600.0,7196100.0,8225000.0,9261000.0,10282100.0,11309500.0,12346900.0,13363600.0,14399000.0,15420900.0,16460400.0,17478000.0,18516300.0,19540200.0,20530000.0,21300600.0,22444000.0,23621500.0,24722800.0,25812800.0,26751100.0,27824000.0,28820800.0,29833900.0,30856800.0,31880200.0,32531400.0,33695400.0,34711100.0,36099800.0,37025900.0,38055000.0,39099100.0,40111100.0,40641100.0,41724700.0,42700100.0,43574600.0,44685700.0,49340800.0,48413200.0,48431800.0,49408200.0,50423000.0,51454800.0,52473100.0,53502700.0,54841000.0,55721300.0,56589800.0,57120900.0,57971300.0,59073800.0,60184500.0,61763600.0,62759700.0,63782300.0,63929200.0,64773300.0,65725800.0,66756200.0,68173600.0,69786900.0,71399200.0,72036500.0,73061500.0,74061800.0,74058500.0,74814100.0,76117700.0,76890400.0,77911200.0,78989700.0,79801200.0,81558900.0,83392600.0,84398500.0,85428200.0,85938800.0,86307400.0,87086700.0,88945700.0,90550200.0,90877800.0,92462000.0,93605300.0,93605500.0,94166800.0,95653300.0,97274200.0,98761300.0,99205500.0,99540800.0,101316800.0,102610400.0]]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/xoshiro256starstar/base/tukey.json:
--------------------------------------------------------------------------------
1 | [78.61885739570073,80.00662059066937,83.70732244391908,85.09508563888772]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/xoshiro256starstar/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"gen_payloads","function_id":"Rng","value_str":"XOSHIRO256STARSTAR","throughput":{"Elements":1},"full_id":"gen_payloads/Rng/XOSHIRO256STARSTAR","directory_name":"gen_payloads/rng/xoshiro256starstar","title":"gen_payloads/Rng/XOSHIRO256STARSTAR"}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/xoshiro256starstar/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":81.83522830622563,"upper_bound":82.17991375473544},"point_estimate":81.99613111015535,"standard_error":0.08785467172187557},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":81.87871191311467,"upper_bound":82.28701239042067},"point_estimate":82.24955139268283,"standard_error":0.09735855344734379},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.1294780023932804,"upper_bound":0.7513499946615074},"point_estimate":0.4284758615737004,"standard_error":0.17304631131589554},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":81.66020933740526,"upper_bound":81.97796040313031},"point_estimate":81.81352396177508,"standard_error":0.08094787597277982},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.5731543860848578,"upper_bound":1.2259625926306856},"point_estimate":0.8785629827794229,"standard_error":0.1847588734959406}}
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/xoshiro256starstar/new/sample.json:
--------------------------------------------------------------------------------
1 | [[12499.0,24998.0,37497.0,49996.0,62495.0,74994.0,87493.0,99992.0,112491.0,124990.0,137489.0,149988.0,162487.0,174986.0,187485.0,199984.0,212483.0,224982.0,237481.0,249980.0,262479.0,274978.0,287477.0,299976.0,312475.0,324974.0,337473.0,349972.0,362471.0,374970.0,387469.0,399968.0,412467.0,424966.0,437465.0,449964.0,462463.0,474962.0,487461.0,499960.0,512459.0,524958.0,537457.0,549956.0,562455.0,574954.0,587453.0,599952.0,612451.0,624950.0,637449.0,649948.0,662447.0,674946.0,687445.0,699944.0,712443.0,724942.0,737441.0,749940.0,762439.0,774938.0,787437.0,799936.0,812435.0,824934.0,837433.0,849932.0,862431.0,874930.0,887429.0,899928.0,912427.0,924926.0,937425.0,949924.0,962423.0,974922.0,987421.0,999920.0,1012419.0,1024918.0,1037417.0,1049916.0,1062415.0,1074914.0,1087413.0,1099912.0,1112411.0,1124910.0,1137409.0,1149908.0,1162407.0,1174906.0,1187405.0,1199904.0,1212403.0,1224902.0,1237401.0,1249900.0],[1051700.0,2013200.0,3018500.0,4064200.0,5206200.0,6166600.0,7196100.0,8225000.0,9261000.0,10282100.0,11309500.0,12346900.0,13363600.0,14399000.0,15420900.0,16460400.0,17478000.0,18516300.0,19540200.0,20530000.0,21300600.0,22444000.0,23621500.0,24722800.0,25812800.0,26751100.0,27824000.0,28820800.0,29833900.0,30856800.0,31880200.0,32531400.0,33695400.0,34711100.0,36099800.0,37025900.0,38055000.0,39099100.0,40111100.0,40641100.0,41724700.0,42700100.0,43574600.0,44685700.0,49340800.0,48413200.0,48431800.0,49408200.0,50423000.0,51454800.0,52473100.0,53502700.0,54841000.0,55721300.0,56589800.0,57120900.0,57971300.0,59073800.0,60184500.0,61763600.0,62759700.0,63782300.0,63929200.0,64773300.0,65725800.0,66756200.0,68173600.0,69786900.0,71399200.0,72036500.0,73061500.0,74061800.0,74058500.0,74814100.0,76117700.0,76890400.0,77911200.0,78989700.0,79801200.0,81558900.0,83392600.0,84398500.0,85428200.0,85938800.0,86307400.0,87086700.0,88945700.0,90550200.0,90877800.0,92462000.0,93605300.0,93605500.0,94166800.0,95653300.0,97274200.0,98761300.0,99205500.0,99540800.0,101316800.0,102610400.0]]
--------------------------------------------------------------------------------
/docs/criterion/gen_payloads/rng/xoshiro256starstar/new/tukey.json:
--------------------------------------------------------------------------------
1 | [78.61885739570073,80.00662059066937,83.70732244391908,85.09508563888772]
--------------------------------------------------------------------------------
/docs/criterion/new/new-with-payload/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"new","function_id":"new-with-payload","value_str":null,"throughput":{"Elements":1},"full_id":"new/new-with-payload","directory_name":"new/new-with-payload","title":"new/new-with-payload"}
--------------------------------------------------------------------------------
/docs/criterion/new/new-with-payload/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":33.35196281431889,"upper_bound":33.603026058713475},"point_estimate":33.45642656164267,"standard_error":0.06552393035219022},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":33.25502018158243,"upper_bound":33.31951533555974},"point_estimate":33.28181285142325,"standard_error":0.018219523372976082},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.09048568269875805,"upper_bound":0.17764907536230243},"point_estimate":0.12838474543936107,"standard_error":0.023465062720696074},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":33.40175398338649,"upper_bound":33.74204053415419},"point_estimate":33.54280467349426,"standard_error":0.08839844547973508},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.24740279797383577,"upper_bound":1.0384949069974496},"point_estimate":0.6567347142813312,"standard_error":0.2405022166937093}}
--------------------------------------------------------------------------------
/docs/criterion/new/new-with-payload/base/tukey.json:
--------------------------------------------------------------------------------
1 | [32.57857067065032,32.89658437346858,33.74462091431726,34.062634617135515]
--------------------------------------------------------------------------------
/docs/criterion/new/new-with-payload/change/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.006462495890471281,"upper_bound":0.004622521387451033},"point_estimate":-0.001167012019415825,"standard_error":0.0028359953008733063},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.0077732459117973995,"upper_bound":-0.001329401466960367},"point_estimate":-0.006932688847777757,"standard_error":0.0019240147710185966}}
--------------------------------------------------------------------------------
/docs/criterion/new/new-with-payload/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"new","function_id":"new-with-payload","value_str":null,"throughput":{"Elements":1},"full_id":"new/new-with-payload","directory_name":"new/new-with-payload","title":"new/new-with-payload"}
--------------------------------------------------------------------------------
/docs/criterion/new/new-with-payload/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":33.35196281431889,"upper_bound":33.603026058713475},"point_estimate":33.45642656164267,"standard_error":0.06552393035219022},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":33.25502018158243,"upper_bound":33.31951533555974},"point_estimate":33.28181285142325,"standard_error":0.018219523372976082},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.09048568269875805,"upper_bound":0.17764907536230243},"point_estimate":0.12838474543936107,"standard_error":0.023465062720696074},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":33.40175398338649,"upper_bound":33.74204053415419},"point_estimate":33.54280467349426,"standard_error":0.08839844547973508},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.24740279797383577,"upper_bound":1.0384949069974496},"point_estimate":0.6567347142813312,"standard_error":0.2405022166937093}}
--------------------------------------------------------------------------------
/docs/criterion/new/new-with-payload/new/tukey.json:
--------------------------------------------------------------------------------
1 | [32.57857067065032,32.89658437346858,33.74462091431726,34.062634617135515]
--------------------------------------------------------------------------------
/docs/criterion/new/new-with-timestamp/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"new","function_id":"new-with-timestamp","value_str":null,"throughput":{"Elements":1},"full_id":"new/new-with-timestamp","directory_name":"new/new-with-timestamp","title":"new/new-with-timestamp"}
--------------------------------------------------------------------------------
/docs/criterion/new/new-with-timestamp/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":58.99143461562253,"upper_bound":59.147159297272},"point_estimate":59.06603753741522,"standard_error":0.03977072282676487},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":58.85810304568897,"upper_bound":58.941736857888706},"point_estimate":58.90110348941246,"standard_error":0.02094432005693003},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.13422143833116526,"upper_bound":0.26078860438063983},"point_estimate":0.1890936491165726,"standard_error":0.032290323313421326},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":58.90489339004136,"upper_bound":59.067296061966964},"point_estimate":58.98020932887276,"standard_error":0.04155331301573188},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.3213636691282396,"upper_bound":0.4703286526065337},"point_estimate":0.39983848422824136,"standard_error":0.03805887954152322}}
--------------------------------------------------------------------------------
/docs/criterion/new/new-with-timestamp/base/tukey.json:
--------------------------------------------------------------------------------
1 | [57.60774476855457,58.20479950579352,59.79694547176405,60.394000209002996]
--------------------------------------------------------------------------------
/docs/criterion/new/new-with-timestamp/change/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.588452532233334,"upper_bound":-0.5858608721180546},"point_estimate":-0.5871013877718638,"standard_error":0.0006588107552531003},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.5897462984247597,"upper_bound":-0.5888639237328709},"point_estimate":-0.5894647504064077,"standard_error":0.0002178673373629909}}
--------------------------------------------------------------------------------
/docs/criterion/new/new-with-timestamp/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"new","function_id":"new-with-timestamp","value_str":null,"throughput":{"Elements":1},"full_id":"new/new-with-timestamp","directory_name":"new/new-with-timestamp","title":"new/new-with-timestamp"}
--------------------------------------------------------------------------------
/docs/criterion/new/new-with-timestamp/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":58.99143461562253,"upper_bound":59.147159297272},"point_estimate":59.06603753741522,"standard_error":0.03977072282676487},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":58.85810304568897,"upper_bound":58.941736857888706},"point_estimate":58.90110348941246,"standard_error":0.02094432005693003},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.13422143833116526,"upper_bound":0.26078860438063983},"point_estimate":0.1890936491165726,"standard_error":0.032290323313421326},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":58.90489339004136,"upper_bound":59.067296061966964},"point_estimate":58.98020932887276,"standard_error":0.04155331301573188},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.3213636691282396,"upper_bound":0.4703286526065337},"point_estimate":0.39983848422824136,"standard_error":0.03805887954152322}}
--------------------------------------------------------------------------------
/docs/criterion/new/new-with-timestamp/new/tukey.json:
--------------------------------------------------------------------------------
1 | [57.60774476855457,58.20479950579352,59.79694547176405,60.394000209002996]
--------------------------------------------------------------------------------
/docs/criterion/new/new/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"new","function_id":"new","value_str":null,"throughput":{"Elements":1},"full_id":"new/new","directory_name":"new/new","title":"new/new"}
--------------------------------------------------------------------------------
/docs/criterion/new/new/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":89.4856195321818,"upper_bound":89.74572816160193},"point_estimate":89.60716296814294,"standard_error":0.0665067046891565},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":89.32273440060953,"upper_bound":89.47328023108989},"point_estimate":89.39056727994846,"standard_error":0.03976505006536508},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.2479221131721778,"upper_bound":0.4626299674193164},"point_estimate":0.3726100336579636,"standard_error":0.05378768917927724},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":89.33415784348877,"upper_bound":89.5849689396612},"point_estimate":89.45021917060696,"standard_error":0.06417312066754323},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.46365326396620526,"upper_bound":0.894591755793557},"point_estimate":0.668820920186925,"standard_error":0.11888627142138865}}
--------------------------------------------------------------------------------
/docs/criterion/new/new/base/sample.json:
--------------------------------------------------------------------------------
1 | [[11012.0,22024.0,33036.0,44048.0,55060.0,66072.0,77084.0,88096.0,99108.0,110120.0,121132.0,132144.0,143156.0,154168.0,165180.0,176192.0,187204.0,198216.0,209228.0,220240.0,231252.0,242264.0,253276.0,264288.0,275300.0,286312.0,297324.0,308336.0,319348.0,330360.0,341372.0,352384.0,363396.0,374408.0,385420.0,396432.0,407444.0,418456.0,429468.0,440480.0,451492.0,462504.0,473516.0,484528.0,495540.0,506552.0,517564.0,528576.0,539588.0,550600.0,561612.0,572624.0,583636.0,594648.0,605660.0,616672.0,627684.0,638696.0,649708.0,660720.0,671732.0,682744.0,693756.0,704768.0,715780.0,726792.0,737804.0,748816.0,759828.0,770840.0,781852.0,792864.0,803876.0,814888.0,825900.0,836912.0,847924.0,858936.0,869948.0,880960.0,891972.0,902984.0,913996.0,925008.0,936020.0,947032.0,958044.0,969056.0,980068.0,991080.0,1002092.0,1013104.0,1024116.0,1035128.0,1046140.0,1057152.0,1068164.0,1079176.0,1090188.0,1101200.0],[992900.0,1988200.0,2969900.0,3976900.0,4900300.0,5909100.0,6889200.0,7909400.0,8821900.0,9917400.0,10787600.0,11858400.0,12837000.0,14048300.0,14706600.0,15751700.0,16703400.0,17727700.0,18918400.0,20614100.0,20946400.0,21664300.0,22715600.0,24006900.0,25029700.0,26033900.0,27030600.0,27505100.0,28652200.0,29461300.0,30612900.0,31582300.0,32431400.0,33409500.0,34329700.0,35381900.0,36489700.0,37798500.0,38347800.0,39329600.0,40328500.0,41384200.0,42375900.0,43356900.0,44228600.0,45410400.0,46815200.0,47290300.0,48455200.0,49165700.0,50052300.0,51158600.0,52165600.0,53145800.0,54107600.0,55172400.0,56115700.0,57101700.0,57953200.0,58947800.0,59821400.0,61009300.0,61906100.0,63152000.0,64710200.0,65159100.0,66986800.0,67382900.0,67684200.0,68721100.0,69683500.0,70821600.0,71593500.0,72860300.0,73522600.0,74879200.0,75629800.0,76713600.0,77889300.0,78870600.0,79668100.0,81817600.0,81928500.0,82353700.0,83250900.0,84484900.0,85373600.0,86289600.0,87422500.0,88331600.0,89549700.0,92003600.0,92218400.0,93312700.0,93459600.0,94313200.0,95102400.0,96135000.0,97198500.0,98130300.0]]
--------------------------------------------------------------------------------
/docs/criterion/new/new/base/tukey.json:
--------------------------------------------------------------------------------
1 | [87.63937192676141,88.42160070297021,90.50754410619365,91.28977288240243]
--------------------------------------------------------------------------------
/docs/criterion/new/new/change/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.4878782410250897,"upper_bound":-0.48399463787944796},"point_estimate":-0.4857939392262879,"standard_error":0.0009976329173828325},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.4856226569425338,"upper_bound":-0.48311677241106243},"point_estimate":-0.4838028928970728,"standard_error":0.0006556183575128126}}
--------------------------------------------------------------------------------
/docs/criterion/new/new/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"new","function_id":"new","value_str":null,"throughput":{"Elements":1},"full_id":"new/new","directory_name":"new/new","title":"new/new"}
--------------------------------------------------------------------------------
/docs/criterion/new/new/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":89.4856195321818,"upper_bound":89.74572816160193},"point_estimate":89.60716296814294,"standard_error":0.0665067046891565},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":89.32273440060953,"upper_bound":89.47328023108989},"point_estimate":89.39056727994846,"standard_error":0.03976505006536508},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.2479221131721778,"upper_bound":0.4626299674193164},"point_estimate":0.3726100336579636,"standard_error":0.05378768917927724},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":89.33415784348877,"upper_bound":89.5849689396612},"point_estimate":89.45021917060696,"standard_error":0.06417312066754323},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.46365326396620526,"upper_bound":0.894591755793557},"point_estimate":0.668820920186925,"standard_error":0.11888627142138865}}
--------------------------------------------------------------------------------
/docs/criterion/new/new/new/sample.json:
--------------------------------------------------------------------------------
1 | [[11012.0,22024.0,33036.0,44048.0,55060.0,66072.0,77084.0,88096.0,99108.0,110120.0,121132.0,132144.0,143156.0,154168.0,165180.0,176192.0,187204.0,198216.0,209228.0,220240.0,231252.0,242264.0,253276.0,264288.0,275300.0,286312.0,297324.0,308336.0,319348.0,330360.0,341372.0,352384.0,363396.0,374408.0,385420.0,396432.0,407444.0,418456.0,429468.0,440480.0,451492.0,462504.0,473516.0,484528.0,495540.0,506552.0,517564.0,528576.0,539588.0,550600.0,561612.0,572624.0,583636.0,594648.0,605660.0,616672.0,627684.0,638696.0,649708.0,660720.0,671732.0,682744.0,693756.0,704768.0,715780.0,726792.0,737804.0,748816.0,759828.0,770840.0,781852.0,792864.0,803876.0,814888.0,825900.0,836912.0,847924.0,858936.0,869948.0,880960.0,891972.0,902984.0,913996.0,925008.0,936020.0,947032.0,958044.0,969056.0,980068.0,991080.0,1002092.0,1013104.0,1024116.0,1035128.0,1046140.0,1057152.0,1068164.0,1079176.0,1090188.0,1101200.0],[992900.0,1988200.0,2969900.0,3976900.0,4900300.0,5909100.0,6889200.0,7909400.0,8821900.0,9917400.0,10787600.0,11858400.0,12837000.0,14048300.0,14706600.0,15751700.0,16703400.0,17727700.0,18918400.0,20614100.0,20946400.0,21664300.0,22715600.0,24006900.0,25029700.0,26033900.0,27030600.0,27505100.0,28652200.0,29461300.0,30612900.0,31582300.0,32431400.0,33409500.0,34329700.0,35381900.0,36489700.0,37798500.0,38347800.0,39329600.0,40328500.0,41384200.0,42375900.0,43356900.0,44228600.0,45410400.0,46815200.0,47290300.0,48455200.0,49165700.0,50052300.0,51158600.0,52165600.0,53145800.0,54107600.0,55172400.0,56115700.0,57101700.0,57953200.0,58947800.0,59821400.0,61009300.0,61906100.0,63152000.0,64710200.0,65159100.0,66986800.0,67382900.0,67684200.0,68721100.0,69683500.0,70821600.0,71593500.0,72860300.0,73522600.0,74879200.0,75629800.0,76713600.0,77889300.0,78870600.0,79668100.0,81817600.0,81928500.0,82353700.0,83250900.0,84484900.0,85373600.0,86289600.0,87422500.0,88331600.0,89549700.0,92003600.0,92218400.0,93312700.0,93459600.0,94313200.0,95102400.0,96135000.0,97198500.0,98130300.0]]
--------------------------------------------------------------------------------
/docs/criterion/new/new/new/tukey.json:
--------------------------------------------------------------------------------
1 | [87.63937192676141,88.42160070297021,90.50754410619365,91.28977288240243]
--------------------------------------------------------------------------------
/docs/criterion/serialize/serialize/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"serialize","function_id":"Serialize","value_str":null,"throughput":{"Bytes":27},"full_id":"serialize/Serialize","directory_name":"serialize/serialize","title":"serialize/Serialize"}
--------------------------------------------------------------------------------
/docs/criterion/serialize/serialize/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1497.131733569189,"upper_bound":1508.0049456587624},"point_estimate":1502.1466176345448,"standard_error":2.774417592406948},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1489.434982175243,"upper_bound":1498.1860046696547},"point_estimate":1493.730284189949,"standard_error":2.0511223288137947},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7.492771096831389,"upper_bound":16.81370037711212},"point_estimate":13.638747057952905,"standard_error":2.3586747566535036},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1489.931256591594,"upper_bound":1494.9433776805774},"point_estimate":1492.1907645222707,"standard_error":1.2792703785859925},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":16.99616009138463,"upper_bound":36.894800537881736},"point_estimate":27.94485114992509,"standard_error":5.081379075588598}}
--------------------------------------------------------------------------------
/docs/criterion/serialize/serialize/base/sample.json:
--------------------------------------------------------------------------------
1 | [[653.0,1306.0,1959.0,2612.0,3265.0,3918.0,4571.0,5224.0,5877.0,6530.0,7183.0,7836.0,8489.0,9142.0,9795.0,10448.0,11101.0,11754.0,12407.0,13060.0,13713.0,14366.0,15019.0,15672.0,16325.0,16978.0,17631.0,18284.0,18937.0,19590.0,20243.0,20896.0,21549.0,22202.0,22855.0,23508.0,24161.0,24814.0,25467.0,26120.0,26773.0,27426.0,28079.0,28732.0,29385.0,30038.0,30691.0,31344.0,31997.0,32650.0,33303.0,33956.0,34609.0,35262.0,35915.0,36568.0,37221.0,37874.0,38527.0,39180.0,39833.0,40486.0,41139.0,41792.0,42445.0,43098.0,43751.0,44404.0,45057.0,45710.0,46363.0,47016.0,47669.0,48322.0,48975.0,49628.0,50281.0,50934.0,51587.0,52240.0,52893.0,53546.0,54199.0,54852.0,55505.0,56158.0,56811.0,57464.0,58117.0,58770.0,59423.0,60076.0,60729.0,61382.0,62035.0,62688.0,63341.0,63994.0,64647.0,65300.0],[1060700.0,2098800.0,3148600.0,4277400.0,4922100.0,5903700.0,6889500.0,7874300.0,8865400.0,9843200.0,11109100.0,11824800.0,12792300.0,13823700.0,14781800.0,15785000.0,16738600.0,17736500.0,18715700.0,19698100.0,20677500.0,21658700.0,22737000.0,23282800.0,24396100.0,25187100.0,26117400.0,27311800.0,28014600.0,29264400.0,30237100.0,31192100.0,32106700.0,33191300.0,34100000.0,34967900.0,36260600.0,37417500.0,38386500.0,38658800.0,39875000.0,40723800.0,41751100.0,42618400.0,43882900.0,44629800.0,45969000.0,48783000.0,48122500.0,49620700.0,51624300.0,51239500.0,52236400.0,53395500.0,54370800.0,55142800.0,55833900.0,56566600.0,58107900.0,58499300.0,59230900.0,60518400.0,61059000.0,61964400.0,63575500.0,64050300.0,65160500.0,66409800.0,67152300.0,67936200.0,68875800.0,69882400.0,70756500.0,71940800.0,72660300.0,73912100.0,74816400.0,75794000.0,77531400.0,77811100.0,80558100.0,80487300.0,80983000.0,81450400.0,82636000.0,83486900.0,84275000.0,85390800.0,86347200.0,87537700.0,88903300.0,89363600.0,90429300.0,91266900.0,92140500.0,93115100.0,94176900.0,94995300.0,95970200.0,96922800.0]]
--------------------------------------------------------------------------------
/docs/criterion/serialize/serialize/base/tukey.json:
--------------------------------------------------------------------------------
1 | [1422.6231114456493,1454.5968945090272,1539.860316011368,1571.8340990747458]
--------------------------------------------------------------------------------
/docs/criterion/serialize/serialize/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"serialize","function_id":"Serialize","value_str":null,"throughput":{"Bytes":27},"full_id":"serialize/Serialize","directory_name":"serialize/serialize","title":"serialize/Serialize"}
--------------------------------------------------------------------------------
/docs/criterion/serialize/serialize/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1497.131733569189,"upper_bound":1508.0049456587624},"point_estimate":1502.1466176345448,"standard_error":2.774417592406948},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1489.434982175243,"upper_bound":1498.1860046696547},"point_estimate":1493.730284189949,"standard_error":2.0511223288137947},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7.492771096831389,"upper_bound":16.81370037711212},"point_estimate":13.638747057952905,"standard_error":2.3586747566535036},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1489.931256591594,"upper_bound":1494.9433776805774},"point_estimate":1492.1907645222707,"standard_error":1.2792703785859925},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":16.99616009138463,"upper_bound":36.894800537881736},"point_estimate":27.94485114992509,"standard_error":5.081379075588598}}
--------------------------------------------------------------------------------
/docs/criterion/serialize/serialize/new/sample.json:
--------------------------------------------------------------------------------
1 | [[653.0,1306.0,1959.0,2612.0,3265.0,3918.0,4571.0,5224.0,5877.0,6530.0,7183.0,7836.0,8489.0,9142.0,9795.0,10448.0,11101.0,11754.0,12407.0,13060.0,13713.0,14366.0,15019.0,15672.0,16325.0,16978.0,17631.0,18284.0,18937.0,19590.0,20243.0,20896.0,21549.0,22202.0,22855.0,23508.0,24161.0,24814.0,25467.0,26120.0,26773.0,27426.0,28079.0,28732.0,29385.0,30038.0,30691.0,31344.0,31997.0,32650.0,33303.0,33956.0,34609.0,35262.0,35915.0,36568.0,37221.0,37874.0,38527.0,39180.0,39833.0,40486.0,41139.0,41792.0,42445.0,43098.0,43751.0,44404.0,45057.0,45710.0,46363.0,47016.0,47669.0,48322.0,48975.0,49628.0,50281.0,50934.0,51587.0,52240.0,52893.0,53546.0,54199.0,54852.0,55505.0,56158.0,56811.0,57464.0,58117.0,58770.0,59423.0,60076.0,60729.0,61382.0,62035.0,62688.0,63341.0,63994.0,64647.0,65300.0],[1060700.0,2098800.0,3148600.0,4277400.0,4922100.0,5903700.0,6889500.0,7874300.0,8865400.0,9843200.0,11109100.0,11824800.0,12792300.0,13823700.0,14781800.0,15785000.0,16738600.0,17736500.0,18715700.0,19698100.0,20677500.0,21658700.0,22737000.0,23282800.0,24396100.0,25187100.0,26117400.0,27311800.0,28014600.0,29264400.0,30237100.0,31192100.0,32106700.0,33191300.0,34100000.0,34967900.0,36260600.0,37417500.0,38386500.0,38658800.0,39875000.0,40723800.0,41751100.0,42618400.0,43882900.0,44629800.0,45969000.0,48783000.0,48122500.0,49620700.0,51624300.0,51239500.0,52236400.0,53395500.0,54370800.0,55142800.0,55833900.0,56566600.0,58107900.0,58499300.0,59230900.0,60518400.0,61059000.0,61964400.0,63575500.0,64050300.0,65160500.0,66409800.0,67152300.0,67936200.0,68875800.0,69882400.0,70756500.0,71940800.0,72660300.0,73912100.0,74816400.0,75794000.0,77531400.0,77811100.0,80558100.0,80487300.0,80983000.0,81450400.0,82636000.0,83486900.0,84275000.0,85390800.0,86347200.0,87537700.0,88903300.0,89363600.0,90429300.0,91266900.0,92140500.0,93115100.0,94176900.0,94995300.0,95970200.0,96922800.0]]
--------------------------------------------------------------------------------
/docs/criterion/serialize/serialize/new/tukey.json:
--------------------------------------------------------------------------------
1 | [1422.6231114456493,1454.5968945090272,1539.860316011368,1571.8340990747458]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/10/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Sort","value_str":"10","throughput":{"Elements":10},"full_id":"sort/Sort/10","directory_name":"sort/sort/10","title":"sort/Sort/10"}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/10/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":14.459755026543379,"upper_bound":14.506160352714057},"point_estimate":14.482713582058452,"standard_error":0.011868340025264467},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":14.416850031923605,"upper_bound":14.533729000183515},"point_estimate":14.482991380504124,"standard_error":0.02850991944149779},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.0974944893534174,"upper_bound":0.1724817481307758},"point_estimate":0.15905819016932526,"standard_error":0.019335893931398854},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":14.505408480478073,"upper_bound":14.547340468195664},"point_estimate":14.527941820860558,"standard_error":0.010722040053375277},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.10258493892604878,"upper_bound":0.1378775348610396},"point_estimate":0.11918716508668777,"standard_error":0.009214670222691793}}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/10/base/tukey.json:
--------------------------------------------------------------------------------
1 | [13.737645507949725,14.057377311070951,14.90999545272755,15.229727255848774]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/10/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Sort","value_str":"10","throughput":{"Elements":10},"full_id":"sort/Sort/10","directory_name":"sort/sort/10","title":"sort/Sort/10"}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/10/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":14.459755026543379,"upper_bound":14.506160352714057},"point_estimate":14.482713582058452,"standard_error":0.011868340025264467},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":14.416850031923605,"upper_bound":14.533729000183515},"point_estimate":14.482991380504124,"standard_error":0.02850991944149779},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.0974944893534174,"upper_bound":0.1724817481307758},"point_estimate":0.15905819016932526,"standard_error":0.019335893931398854},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":14.505408480478073,"upper_bound":14.547340468195664},"point_estimate":14.527941820860558,"standard_error":0.010722040053375277},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.10258493892604878,"upper_bound":0.1378775348610396},"point_estimate":0.11918716508668777,"standard_error":0.009214670222691793}}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/10/new/tukey.json:
--------------------------------------------------------------------------------
1 | [13.737645507949725,14.057377311070951,14.90999545272755,15.229727255848774]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/100/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Sort","value_str":"100","throughput":{"Elements":100},"full_id":"sort/Sort/100","directory_name":"sort/sort/100","title":"sort/Sort/100"}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/100/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":153.6095041237547,"upper_bound":154.60190142049615},"point_estimate":154.05100505404286,"standard_error":0.25405795471178777},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":154.10486599011188,"upper_bound":154.24976375364642},"point_estimate":154.1935587181489,"standard_error":0.061669223050319286},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.6179976954754046,"upper_bound":2.088598324550922},"point_estimate":1.2469319129316427,"standard_error":0.361276249979831},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":153.83449449710602,"upper_bound":154.49378166141727},"point_estimate":154.13346410526265,"standard_error":0.16766850024813806},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1.2712916687278948,"upper_bound":3.821902745737207},"point_estimate":2.5534237992616893,"standard_error":0.703496764771407}}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/100/base/sample.json:
--------------------------------------------------------------------------------
1 | [[6405.0,12810.0,19215.0,25620.0,32025.0,38430.0,44835.0,51240.0,57645.0,64050.0,70455.0,76860.0,83265.0,89670.0,96075.0,102480.0,108885.0,115290.0,121695.0,128100.0,134505.0,140910.0,147315.0,153720.0,160125.0,166530.0,172935.0,179340.0,185745.0,192150.0,198555.0,204960.0,211365.0,217770.0,224175.0,230580.0,236985.0,243390.0,249795.0,256200.0,262605.0,269010.0,275415.0,281820.0,288225.0,294630.0,301035.0,307440.0,313845.0,320250.0,326655.0,333060.0,339465.0,345870.0,352275.0,358680.0,365085.0,371490.0,377895.0,384300.0,390705.0,397110.0,403515.0,409920.0,416325.0,422730.0,429135.0,435540.0,441945.0,448350.0,454755.0,461160.0,467565.0,473970.0,480375.0,486780.0,493185.0,499590.0,505995.0,512400.0,518805.0,525210.0,531615.0,538020.0,544425.0,550830.0,557235.0,563640.0,570045.0,576450.0,582855.0,589260.0,595665.0,602070.0,608475.0,614880.0,621285.0,627690.0,634095.0,640500.0],[991700.0,1981300.0,2994200.0,3868700.0,4834800.0,5800900.0,6810800.0,7794200.0,8765700.0,9713000.0,10756800.0,11855600.0,12675600.0,13749100.0,14607000.0,15502300.0,16450300.0,17768600.0,18414800.0,19533300.0,20401700.0,21417300.0,22453800.0,25363900.0,24736600.0,26158400.0,26934200.0,27923500.0,28924100.0,29910300.0,30902000.0,31767300.0,32946800.0,33600600.0,34601400.0,35529800.0,36530100.0,37517800.0,38043900.0,38943900.0,40088600.0,40924400.0,41823100.0,42846300.0,43843700.0,50818100.0,46448700.0,47669800.0,48399100.0,49463800.0,50364700.0,51088000.0,51935200.0,53707500.0,54344500.0,55833000.0,56263900.0,57280900.0,58766500.0,59256400.0,59973100.0,60811900.0,62211300.0,63696400.0,64269200.0,65262400.0,66231000.0,67164600.0,68157600.0,69181300.0,70100200.0,71450100.0,72119600.0,73122400.0,74104400.0,75085700.0,76073900.0,77033800.0,78259700.0,79069700.0,80010400.0,81302800.0,82724500.0,82098400.0,83499500.0,84305100.0,85260500.0,86720800.0,87669300.0,88902800.0,88553800.0,90923500.0,92744600.0,92795600.0,92826900.0,93815300.0,95561300.0,96844500.0,97841500.0,98792000.0]]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/100/base/tukey.json:
--------------------------------------------------------------------------------
1 | [147.1532985424672,149.87111497418147,157.11862545875277,159.836441890467]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/100/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Sort","value_str":"100","throughput":{"Elements":100},"full_id":"sort/Sort/100","directory_name":"sort/sort/100","title":"sort/Sort/100"}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/100/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":153.6095041237547,"upper_bound":154.60190142049615},"point_estimate":154.05100505404286,"standard_error":0.25405795471178777},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":154.10486599011188,"upper_bound":154.24976375364642},"point_estimate":154.1935587181489,"standard_error":0.061669223050319286},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.6179976954754046,"upper_bound":2.088598324550922},"point_estimate":1.2469319129316427,"standard_error":0.361276249979831},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":153.83449449710602,"upper_bound":154.49378166141727},"point_estimate":154.13346410526265,"standard_error":0.16766850024813806},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1.2712916687278948,"upper_bound":3.821902745737207},"point_estimate":2.5534237992616893,"standard_error":0.703496764771407}}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/100/new/sample.json:
--------------------------------------------------------------------------------
1 | [[6405.0,12810.0,19215.0,25620.0,32025.0,38430.0,44835.0,51240.0,57645.0,64050.0,70455.0,76860.0,83265.0,89670.0,96075.0,102480.0,108885.0,115290.0,121695.0,128100.0,134505.0,140910.0,147315.0,153720.0,160125.0,166530.0,172935.0,179340.0,185745.0,192150.0,198555.0,204960.0,211365.0,217770.0,224175.0,230580.0,236985.0,243390.0,249795.0,256200.0,262605.0,269010.0,275415.0,281820.0,288225.0,294630.0,301035.0,307440.0,313845.0,320250.0,326655.0,333060.0,339465.0,345870.0,352275.0,358680.0,365085.0,371490.0,377895.0,384300.0,390705.0,397110.0,403515.0,409920.0,416325.0,422730.0,429135.0,435540.0,441945.0,448350.0,454755.0,461160.0,467565.0,473970.0,480375.0,486780.0,493185.0,499590.0,505995.0,512400.0,518805.0,525210.0,531615.0,538020.0,544425.0,550830.0,557235.0,563640.0,570045.0,576450.0,582855.0,589260.0,595665.0,602070.0,608475.0,614880.0,621285.0,627690.0,634095.0,640500.0],[991700.0,1981300.0,2994200.0,3868700.0,4834800.0,5800900.0,6810800.0,7794200.0,8765700.0,9713000.0,10756800.0,11855600.0,12675600.0,13749100.0,14607000.0,15502300.0,16450300.0,17768600.0,18414800.0,19533300.0,20401700.0,21417300.0,22453800.0,25363900.0,24736600.0,26158400.0,26934200.0,27923500.0,28924100.0,29910300.0,30902000.0,31767300.0,32946800.0,33600600.0,34601400.0,35529800.0,36530100.0,37517800.0,38043900.0,38943900.0,40088600.0,40924400.0,41823100.0,42846300.0,43843700.0,50818100.0,46448700.0,47669800.0,48399100.0,49463800.0,50364700.0,51088000.0,51935200.0,53707500.0,54344500.0,55833000.0,56263900.0,57280900.0,58766500.0,59256400.0,59973100.0,60811900.0,62211300.0,63696400.0,64269200.0,65262400.0,66231000.0,67164600.0,68157600.0,69181300.0,70100200.0,71450100.0,72119600.0,73122400.0,74104400.0,75085700.0,76073900.0,77033800.0,78259700.0,79069700.0,80010400.0,81302800.0,82724500.0,82098400.0,83499500.0,84305100.0,85260500.0,86720800.0,87669300.0,88902800.0,88553800.0,90923500.0,92744600.0,92795600.0,92826900.0,93815300.0,95561300.0,96844500.0,97841500.0,98792000.0]]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/100/new/tukey.json:
--------------------------------------------------------------------------------
1 | [147.1532985424672,149.87111497418147,157.11862545875277,159.836441890467]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/1000/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Sort","value_str":"1000","throughput":{"Elements":1000},"full_id":"sort/Sort/1000","directory_name":"sort/sort/1000","title":"sort/Sort/1000"}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/1000/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":736.8228249309532,"upper_bound":739.9141574410685},"point_estimate":738.2936281615017,"standard_error":0.7877465692782478},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":737.8348483976756,"upper_bound":740.2779855397656},"point_estimate":739.4094672748533,"standard_error":0.5442640293605471},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2.2216874787919445,"upper_bound":6.649482667923054},"point_estimate":5.06033883222586,"standard_error":1.0996481302317793},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":736.3580947177774,"upper_bound":743.2047140748335},"point_estimate":739.4161980370443,"standard_error":1.764738542645247},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":5.282011547627279,"upper_bound":10.458417232603397},"point_estimate":7.942725970135493,"standard_error":1.3520468107349468}}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/1000/base/sample.json:
--------------------------------------------------------------------------------
1 | [[1337.0,2674.0,4011.0,5348.0,6685.0,8022.0,9359.0,10696.0,12033.0,13370.0,14707.0,16044.0,17381.0,18718.0,20055.0,21392.0,22729.0,24066.0,25403.0,26740.0,28077.0,29414.0,30751.0,32088.0,33425.0,34762.0,36099.0,37436.0,38773.0,40110.0,41447.0,42784.0,44121.0,45458.0,46795.0,48132.0,49469.0,50806.0,52143.0,53480.0,54817.0,56154.0,57491.0,58828.0,60165.0,61502.0,62839.0,64176.0,65513.0,66850.0,68187.0,69524.0,70861.0,72198.0,73535.0,74872.0,76209.0,77546.0,78883.0,80220.0,81557.0,82894.0,84231.0,85568.0,86905.0,88242.0,89579.0,90916.0,92253.0,93590.0,94927.0,96264.0,97601.0,98938.0,100275.0,101612.0,102949.0,104286.0,105623.0,106960.0,108297.0,109634.0,110971.0,112308.0,113645.0,114982.0,116319.0,117656.0,118993.0,120330.0,121667.0,123004.0,124341.0,125678.0,127015.0,128352.0,129689.0,131026.0,132363.0,133700.0],[975000.0,1936900.0,2939000.0,3897100.0,5033800.0,5863700.0,6883200.0,7897200.0,8824200.0,9835200.0,10687400.0,11743800.0,12782400.0,13777300.0,14739900.0,15667800.0,16897000.0,17669500.0,18648900.0,19769900.0,20757800.0,21859900.0,22785000.0,23783500.0,24838200.0,25739000.0,26717100.0,27714300.0,28659500.0,29644200.0,30502800.0,31095200.0,32616800.0,33652100.0,34795400.0,35840900.0,36821400.0,37795300.0,38791900.0,39632900.0,40844300.0,41584100.0,43261400.0,43593300.0,44573500.0,45490700.0,46475500.0,47424700.0,47917300.0,49103800.0,49952000.0,50746200.0,51796200.0,52805000.0,53705100.0,54595800.0,56453700.0,57465200.0,58443200.0,59385100.0,60573200.0,61241600.0,62046300.0,63070600.0,64172900.0,65330000.0,66370800.0,67307900.0,68166200.0,70231800.0,70196700.0,71341800.0,72296700.0,73262000.0,74304500.0,75412100.0,76238900.0,77193100.0,78134800.0,78855600.0,79079500.0,80030200.0,80980400.0,82545400.0,84055900.0,85150900.0,86087100.0,87137300.0,86747500.0,87504600.0,88897300.0,89893700.0,90841600.0,91377100.0,92754700.0,95303100.0,96144100.0,96892600.0,102765000.0,104075600.0]]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/1000/base/tukey.json:
--------------------------------------------------------------------------------
1 | [707.9967843707125,720.3457164553784,753.2762020144874,765.6251340991532]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/1000/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Sort","value_str":"1000","throughput":{"Elements":1000},"full_id":"sort/Sort/1000","directory_name":"sort/sort/1000","title":"sort/Sort/1000"}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/1000/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":736.8228249309532,"upper_bound":739.9141574410685},"point_estimate":738.2936281615017,"standard_error":0.7877465692782478},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":737.8348483976756,"upper_bound":740.2779855397656},"point_estimate":739.4094672748533,"standard_error":0.5442640293605471},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2.2216874787919445,"upper_bound":6.649482667923054},"point_estimate":5.06033883222586,"standard_error":1.0996481302317793},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":736.3580947177774,"upper_bound":743.2047140748335},"point_estimate":739.4161980370443,"standard_error":1.764738542645247},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":5.282011547627279,"upper_bound":10.458417232603397},"point_estimate":7.942725970135493,"standard_error":1.3520468107349468}}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/1000/new/sample.json:
--------------------------------------------------------------------------------
1 | [[1337.0,2674.0,4011.0,5348.0,6685.0,8022.0,9359.0,10696.0,12033.0,13370.0,14707.0,16044.0,17381.0,18718.0,20055.0,21392.0,22729.0,24066.0,25403.0,26740.0,28077.0,29414.0,30751.0,32088.0,33425.0,34762.0,36099.0,37436.0,38773.0,40110.0,41447.0,42784.0,44121.0,45458.0,46795.0,48132.0,49469.0,50806.0,52143.0,53480.0,54817.0,56154.0,57491.0,58828.0,60165.0,61502.0,62839.0,64176.0,65513.0,66850.0,68187.0,69524.0,70861.0,72198.0,73535.0,74872.0,76209.0,77546.0,78883.0,80220.0,81557.0,82894.0,84231.0,85568.0,86905.0,88242.0,89579.0,90916.0,92253.0,93590.0,94927.0,96264.0,97601.0,98938.0,100275.0,101612.0,102949.0,104286.0,105623.0,106960.0,108297.0,109634.0,110971.0,112308.0,113645.0,114982.0,116319.0,117656.0,118993.0,120330.0,121667.0,123004.0,124341.0,125678.0,127015.0,128352.0,129689.0,131026.0,132363.0,133700.0],[975000.0,1936900.0,2939000.0,3897100.0,5033800.0,5863700.0,6883200.0,7897200.0,8824200.0,9835200.0,10687400.0,11743800.0,12782400.0,13777300.0,14739900.0,15667800.0,16897000.0,17669500.0,18648900.0,19769900.0,20757800.0,21859900.0,22785000.0,23783500.0,24838200.0,25739000.0,26717100.0,27714300.0,28659500.0,29644200.0,30502800.0,31095200.0,32616800.0,33652100.0,34795400.0,35840900.0,36821400.0,37795300.0,38791900.0,39632900.0,40844300.0,41584100.0,43261400.0,43593300.0,44573500.0,45490700.0,46475500.0,47424700.0,47917300.0,49103800.0,49952000.0,50746200.0,51796200.0,52805000.0,53705100.0,54595800.0,56453700.0,57465200.0,58443200.0,59385100.0,60573200.0,61241600.0,62046300.0,63070600.0,64172900.0,65330000.0,66370800.0,67307900.0,68166200.0,70231800.0,70196700.0,71341800.0,72296700.0,73262000.0,74304500.0,75412100.0,76238900.0,77193100.0,78134800.0,78855600.0,79079500.0,80030200.0,80980400.0,82545400.0,84055900.0,85150900.0,86087100.0,87137300.0,86747500.0,87504600.0,88897300.0,89893700.0,90841600.0,91377100.0,92754700.0,95303100.0,96144100.0,96892600.0,102765000.0,104075600.0]]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/1000/new/tukey.json:
--------------------------------------------------------------------------------
1 | [707.9967843707125,720.3457164553784,753.2762020144874,765.6251340991532]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/10000/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Sort","value_str":"10000","throughput":{"Elements":10000},"full_id":"sort/Sort/10000","directory_name":"sort/sort/10000","title":"sort/Sort/10000"}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/10000/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7523.943642990705,"upper_bound":7542.970606028845},"point_estimate":7533.069598534758,"standard_error":4.868529108335278},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7512.606985889429,"upper_bound":7534.923664122138},"point_estimate":7520.512155658812,"standard_error":6.713418662789959},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":29.739790642470464,"upper_bound":54.65113393509247},"point_estimate":36.56769072949811,"standard_error":6.428960680902303},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7525.26850383934,"upper_bound":7549.033576833935},"point_estimate":7536.705784808856,"standard_error":6.050946743370871},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":37.244110112770116,"upper_bound":62.35416803699674},"point_estimate":49.092797729028696,"standard_error":6.673369025645396}}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/10000/base/sample.json:
--------------------------------------------------------------------------------
1 | [[131.0,262.0,393.0,524.0,655.0,786.0,917.0,1048.0,1179.0,1310.0,1441.0,1572.0,1703.0,1834.0,1965.0,2096.0,2227.0,2358.0,2489.0,2620.0,2751.0,2882.0,3013.0,3144.0,3275.0,3406.0,3537.0,3668.0,3799.0,3930.0,4061.0,4192.0,4323.0,4454.0,4585.0,4716.0,4847.0,4978.0,5109.0,5240.0,5371.0,5502.0,5633.0,5764.0,5895.0,6026.0,6157.0,6288.0,6419.0,6550.0,6681.0,6812.0,6943.0,7074.0,7205.0,7336.0,7467.0,7598.0,7729.0,7860.0,7991.0,8122.0,8253.0,8384.0,8515.0,8646.0,8777.0,8908.0,9039.0,9170.0,9301.0,9432.0,9563.0,9694.0,9825.0,9956.0,10087.0,10218.0,10349.0,10480.0,10611.0,10742.0,10873.0,11004.0,11135.0,11266.0,11397.0,11528.0,11659.0,11790.0,11921.0,12052.0,12183.0,12314.0,12445.0,12576.0,12707.0,12838.0,12969.0,13100.0],[992700.0,1962100.0,2977000.0,3960200.0,4924200.0,5902000.0,6962200.0,7850700.0,8884700.0,9965900.0,10911100.0,11762300.0,12864200.0,13750900.0,14810800.0,15670600.0,16858000.0,17688200.0,18661300.0,19617900.0,20664900.0,21582700.0,22697800.0,23579300.0,24509100.0,25763400.0,26506100.0,27416800.0,28479100.0,29506300.0,30392100.0,31788600.0,32477000.0,33597200.0,34561000.0,35479300.0,36338400.0,37368300.0,38468700.0,39454300.0,40134000.0,41348900.0,43856000.0,43431300.0,44692100.0,45826700.0,46501700.0,47254100.0,48102100.0,49132100.0,50602600.0,51872100.0,52578100.0,53955300.0,54636600.0,55128700.0,56065700.0,56896000.0,58358300.0,59143200.0,59896300.0,61246400.0,61779700.0,62947300.0,63676500.0,64676700.0,65529700.0,66531400.0,67762900.0,69102000.0,69804300.0,70840900.0,72239600.0,73636000.0,74556000.0,75904300.0,75798700.0,76706500.0,77442900.0,78787500.0,79931800.0,80705700.0,82034600.0,82933300.0,84345700.0,84812600.0,86960900.0,88376800.0,88411900.0,88926400.0,89560200.0,90668800.0,91833500.0,92497300.0,93136100.0,94864700.0,95685200.0,96459600.0,97301200.0,99470700.0]]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/10000/base/tukey.json:
--------------------------------------------------------------------------------
1 | [7325.912970101715,7411.806783506921,7640.856952587472,7726.750765992678]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/10000/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Sort","value_str":"10000","throughput":{"Elements":10000},"full_id":"sort/Sort/10000","directory_name":"sort/sort/10000","title":"sort/Sort/10000"}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/10000/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7523.943642990705,"upper_bound":7542.970606028845},"point_estimate":7533.069598534758,"standard_error":4.868529108335278},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7512.606985889429,"upper_bound":7534.923664122138},"point_estimate":7520.512155658812,"standard_error":6.713418662789959},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":29.739790642470464,"upper_bound":54.65113393509247},"point_estimate":36.56769072949811,"standard_error":6.428960680902303},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7525.26850383934,"upper_bound":7549.033576833935},"point_estimate":7536.705784808856,"standard_error":6.050946743370871},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":37.244110112770116,"upper_bound":62.35416803699674},"point_estimate":49.092797729028696,"standard_error":6.673369025645396}}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/10000/new/sample.json:
--------------------------------------------------------------------------------
1 | [[131.0,262.0,393.0,524.0,655.0,786.0,917.0,1048.0,1179.0,1310.0,1441.0,1572.0,1703.0,1834.0,1965.0,2096.0,2227.0,2358.0,2489.0,2620.0,2751.0,2882.0,3013.0,3144.0,3275.0,3406.0,3537.0,3668.0,3799.0,3930.0,4061.0,4192.0,4323.0,4454.0,4585.0,4716.0,4847.0,4978.0,5109.0,5240.0,5371.0,5502.0,5633.0,5764.0,5895.0,6026.0,6157.0,6288.0,6419.0,6550.0,6681.0,6812.0,6943.0,7074.0,7205.0,7336.0,7467.0,7598.0,7729.0,7860.0,7991.0,8122.0,8253.0,8384.0,8515.0,8646.0,8777.0,8908.0,9039.0,9170.0,9301.0,9432.0,9563.0,9694.0,9825.0,9956.0,10087.0,10218.0,10349.0,10480.0,10611.0,10742.0,10873.0,11004.0,11135.0,11266.0,11397.0,11528.0,11659.0,11790.0,11921.0,12052.0,12183.0,12314.0,12445.0,12576.0,12707.0,12838.0,12969.0,13100.0],[992700.0,1962100.0,2977000.0,3960200.0,4924200.0,5902000.0,6962200.0,7850700.0,8884700.0,9965900.0,10911100.0,11762300.0,12864200.0,13750900.0,14810800.0,15670600.0,16858000.0,17688200.0,18661300.0,19617900.0,20664900.0,21582700.0,22697800.0,23579300.0,24509100.0,25763400.0,26506100.0,27416800.0,28479100.0,29506300.0,30392100.0,31788600.0,32477000.0,33597200.0,34561000.0,35479300.0,36338400.0,37368300.0,38468700.0,39454300.0,40134000.0,41348900.0,43856000.0,43431300.0,44692100.0,45826700.0,46501700.0,47254100.0,48102100.0,49132100.0,50602600.0,51872100.0,52578100.0,53955300.0,54636600.0,55128700.0,56065700.0,56896000.0,58358300.0,59143200.0,59896300.0,61246400.0,61779700.0,62947300.0,63676500.0,64676700.0,65529700.0,66531400.0,67762900.0,69102000.0,69804300.0,70840900.0,72239600.0,73636000.0,74556000.0,75904300.0,75798700.0,76706500.0,77442900.0,78787500.0,79931800.0,80705700.0,82034600.0,82933300.0,84345700.0,84812600.0,86960900.0,88376800.0,88411900.0,88926400.0,89560200.0,90668800.0,91833500.0,92497300.0,93136100.0,94864700.0,95685200.0,96459600.0,97301200.0,99470700.0]]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/10000/new/tukey.json:
--------------------------------------------------------------------------------
1 | [7325.912970101715,7411.806783506921,7640.856952587472,7726.750765992678]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/100000/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Sort","value_str":"100000","throughput":{"Elements":100000},"full_id":"sort/Sort/100000","directory_name":"sort/sort/100000","title":"sort/Sort/100000"}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/100000/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":100242.08465638387,"upper_bound":100566.54044004132},"point_estimate":100397.83054876793,"standard_error":82.92542891790924},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":100157.52577319587,"upper_bound":100487.31343283581},"point_estimate":100379.56140350876,"standard_error":96.23267080102585},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":452.966426485154,"upper_bound":742.9975329395218},"point_estimate":563.8496768317603,"standard_error":73.19667545993651},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":100246.43831560752,"upper_bound":100536.45091715477},"point_estimate":100389.19343874686,"standard_error":73.7851385244414},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":606.3495945518889,"upper_bound":1038.9452234146547},"point_estimate":832.2360840579647,"standard_error":110.60930816740411}}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/100000/base/sample.json:
--------------------------------------------------------------------------------
1 | [[10.0,20.0,30.0,40.0,50.0,60.0,70.0,80.0,90.0,100.0,110.0,120.0,130.0,140.0,150.0,160.0,170.0,180.0,190.0,200.0,210.0,220.0,230.0,240.0,250.0,260.0,270.0,280.0,290.0,300.0,310.0,320.0,330.0,340.0,350.0,360.0,370.0,380.0,390.0,400.0,410.0,420.0,430.0,440.0,450.0,460.0,470.0,480.0,490.0,500.0,510.0,520.0,530.0,540.0,550.0,560.0,570.0,580.0,590.0,600.0,610.0,620.0,630.0,640.0,650.0,660.0,670.0,680.0,690.0,700.0,710.0,720.0,730.0,740.0,750.0,760.0,770.0,780.0,790.0,800.0,810.0,820.0,830.0,840.0,850.0,860.0,870.0,880.0,890.0,900.0,910.0,920.0,930.0,940.0,950.0,960.0,970.0,980.0,990.0,1000.0],[998500.0,1981700.0,3003100.0,4162200.0,5012400.0,6022600.0,6927800.0,8003100.0,9070100.0,10049300.0,11056600.0,12067100.0,13057500.0,14064100.0,15083700.0,16017500.0,17159600.0,18384000.0,18949500.0,19998500.0,20864300.0,21873700.0,23822700.0,24019300.0,24982700.0,26180100.0,27160900.0,28177300.0,29115600.0,30247700.0,30937300.0,32043700.0,33217700.0,34294500.0,35348000.0,36313700.0,37319100.0,38169400.0,39040200.0,39876700.0,40843000.0,42597100.0,43023000.0,44225400.0,45111900.0,45613500.0,46860900.0,47798500.0,48767000.0,49561000.0,50755300.0,51779800.0,52690500.0,55682900.0,55762800.0,56351600.0,57218000.0,57882600.0,60173900.0,60434100.0,61809000.0,62155900.0,62664500.0,63885000.0,65003900.0,66858300.0,67326500.0,68104900.0,68809500.0,70320200.0,70813000.0,71471200.0,73171100.0,74337500.0,75385300.0,76213400.0,77455800.0,77973300.0,79511600.0,80377000.0,82378300.0,82477100.0,83696300.0,84600700.0,85581400.0,86791800.0,87687500.0,87525800.0,89013700.0,90387400.0,90825900.0,92055400.0,93235100.0,94581300.0,96119800.0,96231500.0,97152800.0,98061100.0,100051400.0,100182100.0]]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/100000/base/tukey.json:
--------------------------------------------------------------------------------
1 | [97583.88076923079,98747.2403846154,101849.5326923077,103012.8923076923]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/100000/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Sort","value_str":"100000","throughput":{"Elements":100000},"full_id":"sort/Sort/100000","directory_name":"sort/sort/100000","title":"sort/Sort/100000"}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/100000/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":100242.08465638387,"upper_bound":100566.54044004132},"point_estimate":100397.83054876793,"standard_error":82.92542891790924},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":100157.52577319587,"upper_bound":100487.31343283581},"point_estimate":100379.56140350876,"standard_error":96.23267080102585},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":452.966426485154,"upper_bound":742.9975329395218},"point_estimate":563.8496768317603,"standard_error":73.19667545993651},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":100246.43831560752,"upper_bound":100536.45091715477},"point_estimate":100389.19343874686,"standard_error":73.7851385244414},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":606.3495945518889,"upper_bound":1038.9452234146547},"point_estimate":832.2360840579647,"standard_error":110.60930816740411}}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/100000/new/sample.json:
--------------------------------------------------------------------------------
1 | [[10.0,20.0,30.0,40.0,50.0,60.0,70.0,80.0,90.0,100.0,110.0,120.0,130.0,140.0,150.0,160.0,170.0,180.0,190.0,200.0,210.0,220.0,230.0,240.0,250.0,260.0,270.0,280.0,290.0,300.0,310.0,320.0,330.0,340.0,350.0,360.0,370.0,380.0,390.0,400.0,410.0,420.0,430.0,440.0,450.0,460.0,470.0,480.0,490.0,500.0,510.0,520.0,530.0,540.0,550.0,560.0,570.0,580.0,590.0,600.0,610.0,620.0,630.0,640.0,650.0,660.0,670.0,680.0,690.0,700.0,710.0,720.0,730.0,740.0,750.0,760.0,770.0,780.0,790.0,800.0,810.0,820.0,830.0,840.0,850.0,860.0,870.0,880.0,890.0,900.0,910.0,920.0,930.0,940.0,950.0,960.0,970.0,980.0,990.0,1000.0],[998500.0,1981700.0,3003100.0,4162200.0,5012400.0,6022600.0,6927800.0,8003100.0,9070100.0,10049300.0,11056600.0,12067100.0,13057500.0,14064100.0,15083700.0,16017500.0,17159600.0,18384000.0,18949500.0,19998500.0,20864300.0,21873700.0,23822700.0,24019300.0,24982700.0,26180100.0,27160900.0,28177300.0,29115600.0,30247700.0,30937300.0,32043700.0,33217700.0,34294500.0,35348000.0,36313700.0,37319100.0,38169400.0,39040200.0,39876700.0,40843000.0,42597100.0,43023000.0,44225400.0,45111900.0,45613500.0,46860900.0,47798500.0,48767000.0,49561000.0,50755300.0,51779800.0,52690500.0,55682900.0,55762800.0,56351600.0,57218000.0,57882600.0,60173900.0,60434100.0,61809000.0,62155900.0,62664500.0,63885000.0,65003900.0,66858300.0,67326500.0,68104900.0,68809500.0,70320200.0,70813000.0,71471200.0,73171100.0,74337500.0,75385300.0,76213400.0,77455800.0,77973300.0,79511600.0,80377000.0,82378300.0,82477100.0,83696300.0,84600700.0,85581400.0,86791800.0,87687500.0,87525800.0,89013700.0,90387400.0,90825900.0,92055400.0,93235100.0,94581300.0,96119800.0,96231500.0,97152800.0,98061100.0,100051400.0,100182100.0]]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/100000/new/tukey.json:
--------------------------------------------------------------------------------
1 | [97583.88076923079,98747.2403846154,101849.5326923077,103012.8923076923]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/5/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Sort","value_str":"5","throughput":{"Elements":5},"full_id":"sort/Sort/5","directory_name":"sort/sort/5","title":"sort/Sort/5"}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/5/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7.601559329030883,"upper_bound":7.645285182571202},"point_estimate":7.62237529463239,"standard_error":0.011143507813906734},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7.556342931842897,"upper_bound":7.649792263173367},"point_estimate":7.582172979044287,"standard_error":0.022493139955372343},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.049261411796497734,"upper_bound":0.1311064431607202},"point_estimate":0.08769111037229975,"standard_error":0.022590547666975564},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7.656360246624733,"upper_bound":7.70285048749602},"point_estimate":7.67963571540252,"standard_error":0.01180082526448544},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.08426243312937949,"upper_bound":0.14428235036693535},"point_estimate":0.11193515246040461,"standard_error":0.016409726766872117}}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/5/base/tukey.json:
--------------------------------------------------------------------------------
1 | [7.108344657197014,7.323291073971468,7.896481518703347,8.111427935477801]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/5/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Sort","value_str":"5","throughput":{"Elements":5},"full_id":"sort/Sort/5","directory_name":"sort/sort/5","title":"sort/Sort/5"}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/5/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7.601559329030883,"upper_bound":7.645285182571202},"point_estimate":7.62237529463239,"standard_error":0.011143507813906734},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7.556342931842897,"upper_bound":7.649792263173367},"point_estimate":7.582172979044287,"standard_error":0.022493139955372343},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.049261411796497734,"upper_bound":0.1311064431607202},"point_estimate":0.08769111037229975,"standard_error":0.022590547666975564},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7.656360246624733,"upper_bound":7.70285048749602},"point_estimate":7.67963571540252,"standard_error":0.01180082526448544},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.08426243312937949,"upper_bound":0.14428235036693535},"point_estimate":0.11193515246040461,"standard_error":0.016409726766872117}}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/5/new/tukey.json:
--------------------------------------------------------------------------------
1 | [7.108344657197014,7.323291073971468,7.896481518703347,8.111427935477801]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/5000/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Sort","value_str":"5000","throughput":{"Elements":5000},"full_id":"sort/Sort/5000","directory_name":"sort/sort/5000","title":"sort/Sort/5000"}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/5000/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3660.7580143904697,"upper_bound":3679.683326568743},"point_estimate":3670.003510051319,"standard_error":4.828418443068881},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3650.8582089552237,"upper_bound":3672.7511093182734},"point_estimate":3660.1419223530443,"standard_error":4.992263882763362},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":34.98986524413547,"upper_bound":52.13717040497691},"point_estimate":43.06751257296627,"standard_error":4.407295589095029},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3677.2369471664447,"upper_bound":3709.568508992486},"point_estimate":3693.1647911616737,"standard_error":8.282666091271714},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":39.116956826122596,"upper_bound":57.144764859264974},"point_estimate":48.47534406023961,"standard_error":4.624982936637654}}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/5000/base/sample.json:
--------------------------------------------------------------------------------
1 | [[268.0,536.0,804.0,1072.0,1340.0,1608.0,1876.0,2144.0,2412.0,2680.0,2948.0,3216.0,3484.0,3752.0,4020.0,4288.0,4556.0,4824.0,5092.0,5360.0,5628.0,5896.0,6164.0,6432.0,6700.0,6968.0,7236.0,7504.0,7772.0,8040.0,8308.0,8576.0,8844.0,9112.0,9380.0,9648.0,9916.0,10184.0,10452.0,10720.0,10988.0,11256.0,11524.0,11792.0,12060.0,12328.0,12596.0,12864.0,13132.0,13400.0,13668.0,13936.0,14204.0,14472.0,14740.0,15008.0,15276.0,15544.0,15812.0,16080.0,16348.0,16616.0,16884.0,17152.0,17420.0,17688.0,17956.0,18224.0,18492.0,18760.0,19028.0,19296.0,19564.0,19832.0,20100.0,20368.0,20636.0,20904.0,21172.0,21440.0,21708.0,21976.0,22244.0,22512.0,22780.0,23048.0,23316.0,23584.0,23852.0,24120.0,24388.0,24656.0,24924.0,25192.0,25460.0,25728.0,25996.0,26264.0,26532.0,26800.0],[967100.0,1918800.0,2873300.0,3831400.0,4881700.0,5837800.0,6779500.0,7845500.0,8761100.0,9784300.0,10790900.0,11625500.0,12656400.0,13568600.0,14597300.0,15711600.0,16485400.0,17463700.0,18514700.0,19609400.0,20983000.0,21985900.0,22392400.0,23281400.0,24570600.0,25741800.0,26739100.0,27722700.0,28434300.0,29436900.0,30406200.0,31242200.0,32664000.0,33131800.0,34399900.0,35740000.0,36661300.0,37252500.0,37851100.0,39542500.0,40188800.0,40739500.0,41871500.0,43150400.0,43951000.0,44966400.0,45979400.0,46855100.0,48232900.0,49182300.0,49861800.0,50854300.0,51737400.0,52641100.0,53524800.0,54976800.0,56027100.0,57225600.0,59002300.0,59626100.0,60754900.0,61714000.0,63313600.0,63256200.0,64315800.0,65028100.0,65670800.0,66212400.0,67387200.0,68596000.0,71502800.0,71631400.0,72260700.0,72838000.0,73299200.0,75753200.0,76901700.0,77615900.0,78638200.0,78949300.0,80174600.0,80671400.0,80363900.0,81612100.0,82821800.0,83511900.0,84445800.0,85805300.0,88251700.0,89288400.0,90211800.0,90993200.0,92308400.0,92940000.0,98080600.0,97218600.0,98572100.0,99881900.0,100552200.0,98787300.0]]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/5000/base/tukey.json:
--------------------------------------------------------------------------------
1 | [3459.992760425719,3547.9757654076284,3782.5971120260538,3870.5801170079635]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/5000/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Sort","value_str":"5000","throughput":{"Elements":5000},"full_id":"sort/Sort/5000","directory_name":"sort/sort/5000","title":"sort/Sort/5000"}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/5000/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3660.7580143904697,"upper_bound":3679.683326568743},"point_estimate":3670.003510051319,"standard_error":4.828418443068881},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3650.8582089552237,"upper_bound":3672.7511093182734},"point_estimate":3660.1419223530443,"standard_error":4.992263882763362},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":34.98986524413547,"upper_bound":52.13717040497691},"point_estimate":43.06751257296627,"standard_error":4.407295589095029},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3677.2369471664447,"upper_bound":3709.568508992486},"point_estimate":3693.1647911616737,"standard_error":8.282666091271714},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":39.116956826122596,"upper_bound":57.144764859264974},"point_estimate":48.47534406023961,"standard_error":4.624982936637654}}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/5000/new/sample.json:
--------------------------------------------------------------------------------
1 | [[268.0,536.0,804.0,1072.0,1340.0,1608.0,1876.0,2144.0,2412.0,2680.0,2948.0,3216.0,3484.0,3752.0,4020.0,4288.0,4556.0,4824.0,5092.0,5360.0,5628.0,5896.0,6164.0,6432.0,6700.0,6968.0,7236.0,7504.0,7772.0,8040.0,8308.0,8576.0,8844.0,9112.0,9380.0,9648.0,9916.0,10184.0,10452.0,10720.0,10988.0,11256.0,11524.0,11792.0,12060.0,12328.0,12596.0,12864.0,13132.0,13400.0,13668.0,13936.0,14204.0,14472.0,14740.0,15008.0,15276.0,15544.0,15812.0,16080.0,16348.0,16616.0,16884.0,17152.0,17420.0,17688.0,17956.0,18224.0,18492.0,18760.0,19028.0,19296.0,19564.0,19832.0,20100.0,20368.0,20636.0,20904.0,21172.0,21440.0,21708.0,21976.0,22244.0,22512.0,22780.0,23048.0,23316.0,23584.0,23852.0,24120.0,24388.0,24656.0,24924.0,25192.0,25460.0,25728.0,25996.0,26264.0,26532.0,26800.0],[967100.0,1918800.0,2873300.0,3831400.0,4881700.0,5837800.0,6779500.0,7845500.0,8761100.0,9784300.0,10790900.0,11625500.0,12656400.0,13568600.0,14597300.0,15711600.0,16485400.0,17463700.0,18514700.0,19609400.0,20983000.0,21985900.0,22392400.0,23281400.0,24570600.0,25741800.0,26739100.0,27722700.0,28434300.0,29436900.0,30406200.0,31242200.0,32664000.0,33131800.0,34399900.0,35740000.0,36661300.0,37252500.0,37851100.0,39542500.0,40188800.0,40739500.0,41871500.0,43150400.0,43951000.0,44966400.0,45979400.0,46855100.0,48232900.0,49182300.0,49861800.0,50854300.0,51737400.0,52641100.0,53524800.0,54976800.0,56027100.0,57225600.0,59002300.0,59626100.0,60754900.0,61714000.0,63313600.0,63256200.0,64315800.0,65028100.0,65670800.0,66212400.0,67387200.0,68596000.0,71502800.0,71631400.0,72260700.0,72838000.0,73299200.0,75753200.0,76901700.0,77615900.0,78638200.0,78949300.0,80174600.0,80671400.0,80363900.0,81612100.0,82821800.0,83511900.0,84445800.0,85805300.0,88251700.0,89288400.0,90211800.0,90993200.0,92308400.0,92940000.0,98080600.0,97218600.0,98572100.0,99881900.0,100552200.0,98787300.0]]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/5000/new/tukey.json:
--------------------------------------------------------------------------------
1 | [3459.992760425719,3547.9757654076284,3782.5971120260538,3870.5801170079635]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/50000/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Sort","value_str":"50000","throughput":{"Elements":50000},"full_id":"sort/Sort/50000","directory_name":"sort/sort/50000","title":"sort/Sort/50000"}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/50000/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":41551.752149413645,"upper_bound":41686.676011019896},"point_estimate":41615.48619645398,"standard_error":34.455275119695244},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":41472.902719885475,"upper_bound":41527.678571428565},"point_estimate":41497.71110758825,"standard_error":13.521733268263208},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":111.86497951016038,"upper_bound":228.03660238944002},"point_estimate":173.04417065130974,"standard_error":31.484616825644434},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":41572.1678146537,"upper_bound":41728.06460458092},"point_estimate":41647.56200433476,"standard_error":39.7920426954242},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":245.17900664016463,"upper_bound":446.38406739999135},"point_estimate":347.169383784099,"standard_error":52.134236948573225}}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/50000/base/sample.json:
--------------------------------------------------------------------------------
1 | [[24.0,48.0,72.0,96.0,120.0,144.0,168.0,192.0,216.0,240.0,264.0,288.0,312.0,336.0,360.0,384.0,408.0,432.0,456.0,480.0,504.0,528.0,552.0,576.0,600.0,624.0,648.0,672.0,696.0,720.0,744.0,768.0,792.0,816.0,840.0,864.0,888.0,912.0,936.0,960.0,984.0,1008.0,1032.0,1056.0,1080.0,1104.0,1128.0,1152.0,1176.0,1200.0,1224.0,1248.0,1272.0,1296.0,1320.0,1344.0,1368.0,1392.0,1416.0,1440.0,1464.0,1488.0,1512.0,1536.0,1560.0,1584.0,1608.0,1632.0,1656.0,1680.0,1704.0,1728.0,1752.0,1776.0,1800.0,1824.0,1848.0,1872.0,1896.0,1920.0,1944.0,1968.0,1992.0,2016.0,2040.0,2064.0,2088.0,2112.0,2136.0,2160.0,2184.0,2208.0,2232.0,2256.0,2280.0,2304.0,2328.0,2352.0,2376.0,2400.0],[1016100.0,2010100.0,2967600.0,4111600.0,5104300.0,5935300.0,6945800.0,7917200.0,8953000.0,9950000.0,11142600.0,11966400.0,12933800.0,13912500.0,14901800.0,15872200.0,16869100.0,17862000.0,18958200.0,20001400.0,20880600.0,21815500.0,22856700.0,23867300.0,24909300.0,26018100.0,26823600.0,27910000.0,28878800.0,29795600.0,30868000.0,31865100.0,32823900.0,33850000.0,34879000.0,36002300.0,36731700.0,38073200.0,38802200.0,39800900.0,40834500.0,41832100.0,42850100.0,43845700.0,44986300.0,45908100.0,46851100.0,47913100.0,48788600.0,49784500.0,53131500.0,52225300.0,53371700.0,53828400.0,54504000.0,55505400.0,56578000.0,57702200.0,58528700.0,59655400.0,61067500.0,61502600.0,62531400.0,63992400.0,64920900.0,66330400.0,66951700.0,68553900.0,68612100.0,69485400.0,72166700.0,72474500.0,72753100.0,73540100.0,74980900.0,76216400.0,78101300.0,78281800.0,78531700.0,79369100.0,80557800.0,81642800.0,82662900.0,84835200.0,85853800.0,85892800.0,86613700.0,88799400.0,89011700.0,89642700.0,90557700.0,91369900.0,93860500.0,94701900.0,94615400.0,95484500.0,96555300.0,97432500.0,98602600.0,101118800.0]]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/50000/base/tukey.json:
--------------------------------------------------------------------------------
1 | [40685.15030889683,41054.55277381895,42039.62601361126,42409.02847853338]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/50000/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Sort","value_str":"50000","throughput":{"Elements":50000},"full_id":"sort/Sort/50000","directory_name":"sort/sort/50000","title":"sort/Sort/50000"}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/50000/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":41551.752149413645,"upper_bound":41686.676011019896},"point_estimate":41615.48619645398,"standard_error":34.455275119695244},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":41472.902719885475,"upper_bound":41527.678571428565},"point_estimate":41497.71110758825,"standard_error":13.521733268263208},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":111.86497951016038,"upper_bound":228.03660238944002},"point_estimate":173.04417065130974,"standard_error":31.484616825644434},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":41572.1678146537,"upper_bound":41728.06460458092},"point_estimate":41647.56200433476,"standard_error":39.7920426954242},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":245.17900664016463,"upper_bound":446.38406739999135},"point_estimate":347.169383784099,"standard_error":52.134236948573225}}
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/50000/new/sample.json:
--------------------------------------------------------------------------------
1 | [[24.0,48.0,72.0,96.0,120.0,144.0,168.0,192.0,216.0,240.0,264.0,288.0,312.0,336.0,360.0,384.0,408.0,432.0,456.0,480.0,504.0,528.0,552.0,576.0,600.0,624.0,648.0,672.0,696.0,720.0,744.0,768.0,792.0,816.0,840.0,864.0,888.0,912.0,936.0,960.0,984.0,1008.0,1032.0,1056.0,1080.0,1104.0,1128.0,1152.0,1176.0,1200.0,1224.0,1248.0,1272.0,1296.0,1320.0,1344.0,1368.0,1392.0,1416.0,1440.0,1464.0,1488.0,1512.0,1536.0,1560.0,1584.0,1608.0,1632.0,1656.0,1680.0,1704.0,1728.0,1752.0,1776.0,1800.0,1824.0,1848.0,1872.0,1896.0,1920.0,1944.0,1968.0,1992.0,2016.0,2040.0,2064.0,2088.0,2112.0,2136.0,2160.0,2184.0,2208.0,2232.0,2256.0,2280.0,2304.0,2328.0,2352.0,2376.0,2400.0],[1016100.0,2010100.0,2967600.0,4111600.0,5104300.0,5935300.0,6945800.0,7917200.0,8953000.0,9950000.0,11142600.0,11966400.0,12933800.0,13912500.0,14901800.0,15872200.0,16869100.0,17862000.0,18958200.0,20001400.0,20880600.0,21815500.0,22856700.0,23867300.0,24909300.0,26018100.0,26823600.0,27910000.0,28878800.0,29795600.0,30868000.0,31865100.0,32823900.0,33850000.0,34879000.0,36002300.0,36731700.0,38073200.0,38802200.0,39800900.0,40834500.0,41832100.0,42850100.0,43845700.0,44986300.0,45908100.0,46851100.0,47913100.0,48788600.0,49784500.0,53131500.0,52225300.0,53371700.0,53828400.0,54504000.0,55505400.0,56578000.0,57702200.0,58528700.0,59655400.0,61067500.0,61502600.0,62531400.0,63992400.0,64920900.0,66330400.0,66951700.0,68553900.0,68612100.0,69485400.0,72166700.0,72474500.0,72753100.0,73540100.0,74980900.0,76216400.0,78101300.0,78281800.0,78531700.0,79369100.0,80557800.0,81642800.0,82662900.0,84835200.0,85853800.0,85892800.0,86613700.0,88799400.0,89011700.0,89642700.0,90557700.0,91369900.0,93860500.0,94701900.0,94615400.0,95484500.0,96555300.0,97432500.0,98602600.0,101118800.0]]
--------------------------------------------------------------------------------
/docs/criterion/sort/sort/50000/new/tukey.json:
--------------------------------------------------------------------------------
1 | [40685.15030889683,41054.55277381895,42039.62601361126,42409.02847853338]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/10/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Unstable","value_str":"10","throughput":{"Elements":10},"full_id":"sort/Unstable/10","directory_name":"sort/unstable/10","title":"sort/Unstable/10"}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/10/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":11.284221928002188,"upper_bound":11.33355624145142},"point_estimate":11.30241778275858,"standard_error":0.01411430482365367},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":11.289685069354146,"upper_bound":11.291340448742302},"point_estimate":11.290203544491508,"standard_error":0.000437351625845906},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.00280566237940488,"upper_bound":0.005091622854154405},"point_estimate":0.003934607880234202,"standard_error":0.0005788792558069472},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":11.27067018528513,"upper_bound":11.337158447515971},"point_estimate":11.296702019913502,"standard_error":0.017545191841897467},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.018895882482869126,"upper_bound":0.24065138279464887},"point_estimate":0.14170044064547407,"standard_error":0.07566828399616338}}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/10/base/tukey.json:
--------------------------------------------------------------------------------
1 | [11.27183318211982,11.28018335806389,11.302450493914744,11.310800669858814]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/10/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Unstable","value_str":"10","throughput":{"Elements":10},"full_id":"sort/Unstable/10","directory_name":"sort/unstable/10","title":"sort/Unstable/10"}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/10/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":11.284221928002188,"upper_bound":11.33355624145142},"point_estimate":11.30241778275858,"standard_error":0.01411430482365367},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":11.289685069354146,"upper_bound":11.291340448742302},"point_estimate":11.290203544491508,"standard_error":0.000437351625845906},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.00280566237940488,"upper_bound":0.005091622854154405},"point_estimate":0.003934607880234202,"standard_error":0.0005788792558069472},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":11.27067018528513,"upper_bound":11.337158447515971},"point_estimate":11.296702019913502,"standard_error":0.017545191841897467},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.018895882482869126,"upper_bound":0.24065138279464887},"point_estimate":0.14170044064547407,"standard_error":0.07566828399616338}}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/10/new/tukey.json:
--------------------------------------------------------------------------------
1 | [11.27183318211982,11.28018335806389,11.302450493914744,11.310800669858814]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/100/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Unstable","value_str":"100","throughput":{"Elements":100},"full_id":"sort/Unstable/100","directory_name":"sort/unstable/100","title":"sort/Unstable/100"}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/100/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":83.25503730927694,"upper_bound":83.48815798139218},"point_estimate":83.37051977466497,"standard_error":0.059265853948391754},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":83.3785817887853,"upper_bound":83.43919824948011},"point_estimate":83.41995623264035,"standard_error":0.016338535002105577},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.13815756004194737,"upper_bound":0.5273765273369787},"point_estimate":0.23643905093475268,"standard_error":0.11106677396551151},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":83.19648188338641,"upper_bound":83.4224315567344},"point_estimate":83.30714567159751,"standard_error":0.05766482011971563},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.44233611592631167,"upper_bound":0.7421996590105422},"point_estimate":0.59655700769332,"standard_error":0.07714768948158365}}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/100/base/sample.json:
--------------------------------------------------------------------------------
1 | [[11881.0,23762.0,35643.0,47524.0,59405.0,71286.0,83167.0,95048.0,106929.0,118810.0,130691.0,142572.0,154453.0,166334.0,178215.0,190096.0,201977.0,213858.0,225739.0,237620.0,249501.0,261382.0,273263.0,285144.0,297025.0,308906.0,320787.0,332668.0,344549.0,356430.0,368311.0,380192.0,392073.0,403954.0,415835.0,427716.0,439597.0,451478.0,463359.0,475240.0,487121.0,499002.0,510883.0,522764.0,534645.0,546526.0,558407.0,570288.0,582169.0,594050.0,605931.0,617812.0,629693.0,641574.0,653455.0,665336.0,677217.0,689098.0,700979.0,712860.0,724741.0,736622.0,748503.0,760384.0,772265.0,784146.0,796027.0,807908.0,819789.0,831670.0,843551.0,855432.0,867313.0,879194.0,891075.0,902956.0,914837.0,926718.0,938599.0,950480.0,962361.0,974242.0,986123.0,998004.0,1009885.0,1021766.0,1033647.0,1045528.0,1057409.0,1069290.0,1081171.0,1093052.0,1104933.0,1116814.0,1128695.0,1140576.0,1152457.0,1164338.0,1176219.0,1188100.0],[997100.0,1992100.0,2989000.0,3985500.0,4978300.0,5981500.0,6971200.0,7970100.0,8974200.0,9969400.0,10951400.0,11958100.0,12941200.0,13939300.0,14943300.0,15948500.0,16889900.0,17832900.0,18833300.0,19822900.0,20790400.0,21788300.0,22769600.0,23785200.0,24772400.0,25306700.0,26558900.0,27284500.0,29124500.0,29767000.0,30737400.0,31706700.0,32748500.0,33670400.0,34689700.0,35687200.0,36704800.0,37522500.0,38242800.0,39211000.0,40488700.0,41647100.0,42596700.0,43637600.0,44567000.0,46643300.0,45802100.0,47486200.0,48517700.0,49539000.0,50546400.0,51520600.0,52501000.0,53476000.0,54430500.0,54510100.0,55593900.0,56815000.0,57389800.0,58559100.0,62361200.0,60979600.0,62413100.0,63267800.0,63912000.0,65415700.0,66415200.0,67396100.0,68473200.0,69419700.0,70373200.0,71411500.0,72363800.0,73363400.0,74367900.0,75333900.0,76413000.0,77245400.0,78292400.0,79149700.0,79880000.0,81015700.0,81912600.0,83609500.0,84715600.0,85492100.0,86345000.0,86835500.0,88046300.0,88804300.0,89823400.0,90731400.0,91681800.0,93099100.0,94221900.0,95246500.0,96059300.0,96436300.0,98314300.0,99600100.0]]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/100/base/tukey.json:
--------------------------------------------------------------------------------
1 | [82.36230419416509,82.80656435182505,83.9912581055849,84.43551826324484]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/100/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Unstable","value_str":"100","throughput":{"Elements":100},"full_id":"sort/Unstable/100","directory_name":"sort/unstable/100","title":"sort/Unstable/100"}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/100/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":83.25503730927694,"upper_bound":83.48815798139218},"point_estimate":83.37051977466497,"standard_error":0.059265853948391754},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":83.3785817887853,"upper_bound":83.43919824948011},"point_estimate":83.41995623264035,"standard_error":0.016338535002105577},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.13815756004194737,"upper_bound":0.5273765273369787},"point_estimate":0.23643905093475268,"standard_error":0.11106677396551151},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":83.19648188338641,"upper_bound":83.4224315567344},"point_estimate":83.30714567159751,"standard_error":0.05766482011971563},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.44233611592631167,"upper_bound":0.7421996590105422},"point_estimate":0.59655700769332,"standard_error":0.07714768948158365}}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/100/new/sample.json:
--------------------------------------------------------------------------------
1 | [[11881.0,23762.0,35643.0,47524.0,59405.0,71286.0,83167.0,95048.0,106929.0,118810.0,130691.0,142572.0,154453.0,166334.0,178215.0,190096.0,201977.0,213858.0,225739.0,237620.0,249501.0,261382.0,273263.0,285144.0,297025.0,308906.0,320787.0,332668.0,344549.0,356430.0,368311.0,380192.0,392073.0,403954.0,415835.0,427716.0,439597.0,451478.0,463359.0,475240.0,487121.0,499002.0,510883.0,522764.0,534645.0,546526.0,558407.0,570288.0,582169.0,594050.0,605931.0,617812.0,629693.0,641574.0,653455.0,665336.0,677217.0,689098.0,700979.0,712860.0,724741.0,736622.0,748503.0,760384.0,772265.0,784146.0,796027.0,807908.0,819789.0,831670.0,843551.0,855432.0,867313.0,879194.0,891075.0,902956.0,914837.0,926718.0,938599.0,950480.0,962361.0,974242.0,986123.0,998004.0,1009885.0,1021766.0,1033647.0,1045528.0,1057409.0,1069290.0,1081171.0,1093052.0,1104933.0,1116814.0,1128695.0,1140576.0,1152457.0,1164338.0,1176219.0,1188100.0],[997100.0,1992100.0,2989000.0,3985500.0,4978300.0,5981500.0,6971200.0,7970100.0,8974200.0,9969400.0,10951400.0,11958100.0,12941200.0,13939300.0,14943300.0,15948500.0,16889900.0,17832900.0,18833300.0,19822900.0,20790400.0,21788300.0,22769600.0,23785200.0,24772400.0,25306700.0,26558900.0,27284500.0,29124500.0,29767000.0,30737400.0,31706700.0,32748500.0,33670400.0,34689700.0,35687200.0,36704800.0,37522500.0,38242800.0,39211000.0,40488700.0,41647100.0,42596700.0,43637600.0,44567000.0,46643300.0,45802100.0,47486200.0,48517700.0,49539000.0,50546400.0,51520600.0,52501000.0,53476000.0,54430500.0,54510100.0,55593900.0,56815000.0,57389800.0,58559100.0,62361200.0,60979600.0,62413100.0,63267800.0,63912000.0,65415700.0,66415200.0,67396100.0,68473200.0,69419700.0,70373200.0,71411500.0,72363800.0,73363400.0,74367900.0,75333900.0,76413000.0,77245400.0,78292400.0,79149700.0,79880000.0,81015700.0,81912600.0,83609500.0,84715600.0,85492100.0,86345000.0,86835500.0,88046300.0,88804300.0,89823400.0,90731400.0,91681800.0,93099100.0,94221900.0,95246500.0,96059300.0,96436300.0,98314300.0,99600100.0]]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/100/new/tukey.json:
--------------------------------------------------------------------------------
1 | [82.36230419416509,82.80656435182505,83.9912581055849,84.43551826324484]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/1000/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Unstable","value_str":"1000","throughput":{"Elements":1000},"full_id":"sort/Unstable/1000","directory_name":"sort/unstable/1000","title":"sort/Unstable/1000"}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/1000/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":659.4004527313875,"upper_bound":666.9210785336678},"point_estimate":662.7202408130414,"standard_error":1.9311027452032428},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":658.9592489942876,"upper_bound":659.5841403381351},"point_estimate":659.255633581264,"standard_error":0.15865542301720906},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1.1614875702913106,"upper_bound":3.3525063117330856},"point_estimate":2.1673235590570226,"standard_error":0.5724137519379449},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":656.6340775338136,"upper_bound":658.6912545846975},"point_estimate":657.662906873393,"standard_error":0.5222735092249098},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":8.28383112730838,"upper_bound":27.937347573031726},"point_estimate":19.358491599422972,"standard_error":5.007014659312374}}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/1000/base/sample.json:
--------------------------------------------------------------------------------
1 | [[1502.0,3004.0,4506.0,6008.0,7510.0,9012.0,10514.0,12016.0,13518.0,15020.0,16522.0,18024.0,19526.0,21028.0,22530.0,24032.0,25534.0,27036.0,28538.0,30040.0,31542.0,33044.0,34546.0,36048.0,37550.0,39052.0,40554.0,42056.0,43558.0,45060.0,46562.0,48064.0,49566.0,51068.0,52570.0,54072.0,55574.0,57076.0,58578.0,60080.0,61582.0,63084.0,64586.0,66088.0,67590.0,69092.0,70594.0,72096.0,73598.0,75100.0,76602.0,78104.0,79606.0,81108.0,82610.0,84112.0,85614.0,87116.0,88618.0,90120.0,91622.0,93124.0,94626.0,96128.0,97630.0,99132.0,100634.0,102136.0,103638.0,105140.0,106642.0,108144.0,109646.0,111148.0,112650.0,114152.0,115654.0,117156.0,118658.0,120160.0,121662.0,123164.0,124666.0,126168.0,127670.0,129172.0,130674.0,132176.0,133678.0,135180.0,136682.0,138184.0,139686.0,141188.0,142690.0,144192.0,145694.0,147196.0,148698.0,150200.0],[1013000.0,1992600.0,2984800.0,3979100.0,4970100.0,5940400.0,6938900.0,7931600.0,8953500.0,9935400.0,11253200.0,11969300.0,15027400.0,16463100.0,15600500.0,16038700.0,16979900.0,17869800.0,18817600.0,19812300.0,20801100.0,21799700.0,22781200.0,23813500.0,24751100.0,25733700.0,26701300.0,29289800.0,31375100.0,31874200.0,30936600.0,31716500.0,32720800.0,33710500.0,34760900.0,35722200.0,36638500.0,37609500.0,38585300.0,39600400.0,40652000.0,41570700.0,42586600.0,43462700.0,44156500.0,44851200.0,46312900.0,46982700.0,48542900.0,49506600.0,50469600.0,51456500.0,51790800.0,52838400.0,53775200.0,54418300.0,55471100.0,56689500.0,58784400.0,59656900.0,60547500.0,61497200.0,62450200.0,63380900.0,64401900.0,65391200.0,66313100.0,67262800.0,68243200.0,69298200.0,70349800.0,71195600.0,72239500.0,72188700.0,73092100.0,74324200.0,75424200.0,77103300.0,78191500.0,78703300.0,79816700.0,81149400.0,81816900.0,82867200.0,84134200.0,84782700.0,84923700.0,85813800.0,87894700.0,88829500.0,90131800.0,91311100.0,92086200.0,93133500.0,94076300.0,94960700.0,95801000.0,96969600.0,98124800.0,98760700.0]]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/1000/base/tukey.json:
--------------------------------------------------------------------------------
1 | [648.653102096299,653.1385587336223,665.0997764331511,669.5852330704744]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/1000/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Unstable","value_str":"1000","throughput":{"Elements":1000},"full_id":"sort/Unstable/1000","directory_name":"sort/unstable/1000","title":"sort/Unstable/1000"}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/1000/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":659.4004527313875,"upper_bound":666.9210785336678},"point_estimate":662.7202408130414,"standard_error":1.9311027452032428},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":658.9592489942876,"upper_bound":659.5841403381351},"point_estimate":659.255633581264,"standard_error":0.15865542301720906},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1.1614875702913106,"upper_bound":3.3525063117330856},"point_estimate":2.1673235590570226,"standard_error":0.5724137519379449},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":656.6340775338136,"upper_bound":658.6912545846975},"point_estimate":657.662906873393,"standard_error":0.5222735092249098},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":8.28383112730838,"upper_bound":27.937347573031726},"point_estimate":19.358491599422972,"standard_error":5.007014659312374}}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/1000/new/sample.json:
--------------------------------------------------------------------------------
1 | [[1502.0,3004.0,4506.0,6008.0,7510.0,9012.0,10514.0,12016.0,13518.0,15020.0,16522.0,18024.0,19526.0,21028.0,22530.0,24032.0,25534.0,27036.0,28538.0,30040.0,31542.0,33044.0,34546.0,36048.0,37550.0,39052.0,40554.0,42056.0,43558.0,45060.0,46562.0,48064.0,49566.0,51068.0,52570.0,54072.0,55574.0,57076.0,58578.0,60080.0,61582.0,63084.0,64586.0,66088.0,67590.0,69092.0,70594.0,72096.0,73598.0,75100.0,76602.0,78104.0,79606.0,81108.0,82610.0,84112.0,85614.0,87116.0,88618.0,90120.0,91622.0,93124.0,94626.0,96128.0,97630.0,99132.0,100634.0,102136.0,103638.0,105140.0,106642.0,108144.0,109646.0,111148.0,112650.0,114152.0,115654.0,117156.0,118658.0,120160.0,121662.0,123164.0,124666.0,126168.0,127670.0,129172.0,130674.0,132176.0,133678.0,135180.0,136682.0,138184.0,139686.0,141188.0,142690.0,144192.0,145694.0,147196.0,148698.0,150200.0],[1013000.0,1992600.0,2984800.0,3979100.0,4970100.0,5940400.0,6938900.0,7931600.0,8953500.0,9935400.0,11253200.0,11969300.0,15027400.0,16463100.0,15600500.0,16038700.0,16979900.0,17869800.0,18817600.0,19812300.0,20801100.0,21799700.0,22781200.0,23813500.0,24751100.0,25733700.0,26701300.0,29289800.0,31375100.0,31874200.0,30936600.0,31716500.0,32720800.0,33710500.0,34760900.0,35722200.0,36638500.0,37609500.0,38585300.0,39600400.0,40652000.0,41570700.0,42586600.0,43462700.0,44156500.0,44851200.0,46312900.0,46982700.0,48542900.0,49506600.0,50469600.0,51456500.0,51790800.0,52838400.0,53775200.0,54418300.0,55471100.0,56689500.0,58784400.0,59656900.0,60547500.0,61497200.0,62450200.0,63380900.0,64401900.0,65391200.0,66313100.0,67262800.0,68243200.0,69298200.0,70349800.0,71195600.0,72239500.0,72188700.0,73092100.0,74324200.0,75424200.0,77103300.0,78191500.0,78703300.0,79816700.0,81149400.0,81816900.0,82867200.0,84134200.0,84782700.0,84923700.0,85813800.0,87894700.0,88829500.0,90131800.0,91311100.0,92086200.0,93133500.0,94076300.0,94960700.0,95801000.0,96969600.0,98124800.0,98760700.0]]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/1000/new/tukey.json:
--------------------------------------------------------------------------------
1 | [648.653102096299,653.1385587336223,665.0997764331511,669.5852330704744]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/10000/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Unstable","value_str":"10000","throughput":{"Elements":10000},"full_id":"sort/Unstable/10000","directory_name":"sort/unstable/10000","title":"sort/Unstable/10000"}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/10000/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6577.355592973661,"upper_bound":6620.209038153837},"point_estimate":6598.507542102804,"standard_error":10.923558911516727},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6556.133333333333,"upper_bound":6619.174947305029},"point_estimate":6596.469348659004,"standard_error":16.322135151251814},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":105.01301091867796,"upper_bound":156.60928158326564},"point_estimate":141.4157368093337,"standard_error":13.021387232063708},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6598.805025412233,"upper_bound":6652.751386489771},"point_estimate":6624.625754396335,"standard_error":13.72233448443758},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":94.42299508541785,"upper_bound":124.42953008904881},"point_estimate":109.61256283239852,"standard_error":7.691249897331497}}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/10000/base/sample.json:
--------------------------------------------------------------------------------
1 | [[150.0,300.0,450.0,600.0,750.0,900.0,1050.0,1200.0,1350.0,1500.0,1650.0,1800.0,1950.0,2100.0,2250.0,2400.0,2550.0,2700.0,2850.0,3000.0,3150.0,3300.0,3450.0,3600.0,3750.0,3900.0,4050.0,4200.0,4350.0,4500.0,4650.0,4800.0,4950.0,5100.0,5250.0,5400.0,5550.0,5700.0,5850.0,6000.0,6150.0,6300.0,6450.0,6600.0,6750.0,6900.0,7050.0,7200.0,7350.0,7500.0,7650.0,7800.0,7950.0,8100.0,8250.0,8400.0,8550.0,8700.0,8850.0,9000.0,9150.0,9300.0,9450.0,9600.0,9750.0,9900.0,10050.0,10200.0,10350.0,10500.0,10650.0,10800.0,10950.0,11100.0,11250.0,11400.0,11550.0,11700.0,11850.0,12000.0,12150.0,12300.0,12450.0,12600.0,12750.0,12900.0,13050.0,13200.0,13350.0,13500.0,13650.0,13800.0,13950.0,14100.0,14250.0,14400.0,14550.0,14700.0,14850.0,15000.0],[961400.0,1916400.0,2923100.0,3867700.0,4839500.0,5834400.0,6896700.0,7952300.0,8747900.0,9834200.0,10795100.0,11677900.0,13013900.0,13687300.0,14779900.0,15859400.0,16612100.0,17473600.0,18458800.0,19477600.0,20356400.0,21422600.0,22319700.0,23295000.0,24573900.0,25502500.0,26813800.0,27922200.0,28704900.0,29661200.0,30399300.0,31095500.0,32028200.0,33025000.0,33976400.0,34983400.0,36047100.0,37195500.0,39969800.0,40338500.0,41029300.0,42286400.0,43115200.0,44112700.0,45216400.0,45734200.0,47185100.0,48565200.0,49309500.0,50272200.0,51297200.0,51525600.0,52569200.0,53412300.0,54905800.0,56965600.0,57367800.0,58330800.0,59381000.0,60393200.0,61442400.0,62319400.0,62461600.0,63272900.0,63222000.0,64590900.0,65093900.0,66142300.0,67056600.0,68320500.0,70120600.0,75159100.0,74267700.0,74289000.0,74928900.0,75151500.0,77215700.0,78955200.0,79831800.0,81678100.0,80967900.0,81397200.0,82355700.0,83397700.0,85834900.0,85927500.0,89581700.0,87728200.0,88672800.0,89398100.0,90321100.0,89841600.0,90702000.0,92749200.0,94060000.0,94198400.0,95457700.0,95262100.0,96980200.0,97719300.0]]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/10000/base/tukey.json:
--------------------------------------------------------------------------------
1 | [5928.113766288184,6211.84517143238,6968.4622518169035,7252.1936569611]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/10000/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Unstable","value_str":"10000","throughput":{"Elements":10000},"full_id":"sort/Unstable/10000","directory_name":"sort/unstable/10000","title":"sort/Unstable/10000"}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/10000/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6577.355592973661,"upper_bound":6620.209038153837},"point_estimate":6598.507542102804,"standard_error":10.923558911516727},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6556.133333333333,"upper_bound":6619.174947305029},"point_estimate":6596.469348659004,"standard_error":16.322135151251814},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":105.01301091867796,"upper_bound":156.60928158326564},"point_estimate":141.4157368093337,"standard_error":13.021387232063708},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6598.805025412233,"upper_bound":6652.751386489771},"point_estimate":6624.625754396335,"standard_error":13.72233448443758},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":94.42299508541785,"upper_bound":124.42953008904881},"point_estimate":109.61256283239852,"standard_error":7.691249897331497}}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/10000/new/sample.json:
--------------------------------------------------------------------------------
1 | [[150.0,300.0,450.0,600.0,750.0,900.0,1050.0,1200.0,1350.0,1500.0,1650.0,1800.0,1950.0,2100.0,2250.0,2400.0,2550.0,2700.0,2850.0,3000.0,3150.0,3300.0,3450.0,3600.0,3750.0,3900.0,4050.0,4200.0,4350.0,4500.0,4650.0,4800.0,4950.0,5100.0,5250.0,5400.0,5550.0,5700.0,5850.0,6000.0,6150.0,6300.0,6450.0,6600.0,6750.0,6900.0,7050.0,7200.0,7350.0,7500.0,7650.0,7800.0,7950.0,8100.0,8250.0,8400.0,8550.0,8700.0,8850.0,9000.0,9150.0,9300.0,9450.0,9600.0,9750.0,9900.0,10050.0,10200.0,10350.0,10500.0,10650.0,10800.0,10950.0,11100.0,11250.0,11400.0,11550.0,11700.0,11850.0,12000.0,12150.0,12300.0,12450.0,12600.0,12750.0,12900.0,13050.0,13200.0,13350.0,13500.0,13650.0,13800.0,13950.0,14100.0,14250.0,14400.0,14550.0,14700.0,14850.0,15000.0],[961400.0,1916400.0,2923100.0,3867700.0,4839500.0,5834400.0,6896700.0,7952300.0,8747900.0,9834200.0,10795100.0,11677900.0,13013900.0,13687300.0,14779900.0,15859400.0,16612100.0,17473600.0,18458800.0,19477600.0,20356400.0,21422600.0,22319700.0,23295000.0,24573900.0,25502500.0,26813800.0,27922200.0,28704900.0,29661200.0,30399300.0,31095500.0,32028200.0,33025000.0,33976400.0,34983400.0,36047100.0,37195500.0,39969800.0,40338500.0,41029300.0,42286400.0,43115200.0,44112700.0,45216400.0,45734200.0,47185100.0,48565200.0,49309500.0,50272200.0,51297200.0,51525600.0,52569200.0,53412300.0,54905800.0,56965600.0,57367800.0,58330800.0,59381000.0,60393200.0,61442400.0,62319400.0,62461600.0,63272900.0,63222000.0,64590900.0,65093900.0,66142300.0,67056600.0,68320500.0,70120600.0,75159100.0,74267700.0,74289000.0,74928900.0,75151500.0,77215700.0,78955200.0,79831800.0,81678100.0,80967900.0,81397200.0,82355700.0,83397700.0,85834900.0,85927500.0,89581700.0,87728200.0,88672800.0,89398100.0,90321100.0,89841600.0,90702000.0,92749200.0,94060000.0,94198400.0,95457700.0,95262100.0,96980200.0,97719300.0]]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/10000/new/tukey.json:
--------------------------------------------------------------------------------
1 | [5928.113766288184,6211.84517143238,6968.4622518169035,7252.1936569611]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/100000/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Unstable","value_str":"100000","throughput":{"Elements":100000},"full_id":"sort/Unstable/100000","directory_name":"sort/unstable/100000","title":"sort/Unstable/100000"}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/100000/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":69605.58836976158,"upper_bound":69814.84747688542},"point_estimate":69709.04312425126,"standard_error":53.38351131194562},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":69428.14814814815,"upper_bound":69756.66666666667},"point_estimate":69554.3141025641,"standard_error":68.6332004505474},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":331.6761052798687,"upper_bound":652.9534144944117},"point_estimate":426.1234308405988,"standard_error":77.21015697936272},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":69580.82426309751,"upper_bound":69803.45532254776},"point_estimate":69686.17995172652,"standard_error":56.677458455319886},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":467.0432582592545,"upper_bound":597.3407052432998},"point_estimate":536.7810679991276,"standard_error":33.209109368629896}}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/100000/base/sample.json:
--------------------------------------------------------------------------------
1 | [[15.0,30.0,45.0,60.0,75.0,90.0,105.0,120.0,135.0,150.0,165.0,180.0,195.0,210.0,225.0,240.0,255.0,270.0,285.0,300.0,315.0,330.0,345.0,360.0,375.0,390.0,405.0,420.0,435.0,450.0,465.0,480.0,495.0,510.0,525.0,540.0,555.0,570.0,585.0,600.0,615.0,630.0,645.0,660.0,675.0,690.0,705.0,720.0,735.0,750.0,765.0,780.0,795.0,810.0,825.0,840.0,855.0,870.0,885.0,900.0,915.0,930.0,945.0,960.0,975.0,990.0,1005.0,1020.0,1035.0,1050.0,1065.0,1080.0,1095.0,1110.0,1125.0,1140.0,1155.0,1170.0,1185.0,1200.0,1215.0,1230.0,1245.0,1260.0,1275.0,1290.0,1305.0,1320.0,1335.0,1350.0,1365.0,1380.0,1395.0,1410.0,1425.0,1440.0,1455.0,1470.0,1485.0,1500.0],[1041400.0,2056800.0,3079400.0,4185400.0,5183100.0,6239400.0,7270000.0,8346500.0,9487000.0,10339200.0,11411600.0,12516800.0,13468400.0,14649600.0,15595200.0,16596600.0,17636100.0,18745600.0,19694000.0,20774000.0,21922800.0,23273900.0,24404400.0,25164600.0,26521900.0,27619400.0,28592400.0,29641400.0,30747300.0,31742400.0,32670000.0,33378600.0,34650700.0,35602400.0,37150400.0,37486600.0,39273800.0,39419700.0,40962000.0,42205700.0,43265700.0,43833100.0,45344600.0,46264300.0,47463300.0,48135500.0,49223800.0,50055900.0,50790600.0,52127300.0,52903000.0,54044400.0,55147600.0,56261400.0,57240000.0,58664100.0,59563200.0,60662600.0,61402000.0,62450600.0,64194200.0,65474200.0,66470400.0,66637000.0,67815600.0,68609800.0,69626100.0,70610200.0,71687600.0,72599800.0,73825300.0,75275600.0,76841200.0,78128900.0,78191200.0,80877800.0,80726000.0,81410300.0,82341000.0,83202900.0,84406000.0,86753100.0,86970000.0,87972400.0,88698800.0,89450000.0,91124600.0,92844800.0,92879200.0,93465300.0,94686800.0,95743500.0,97364800.0,99370300.0,99701200.0,99786300.0,100793700.0,102035600.0,102932200.0,104026900.0]]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/100000/base/tukey.json:
--------------------------------------------------------------------------------
1 | [66935.80307714254,68127.05208155984,71303.71609333932,72494.96509775662]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/100000/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Unstable","value_str":"100000","throughput":{"Elements":100000},"full_id":"sort/Unstable/100000","directory_name":"sort/unstable/100000","title":"sort/Unstable/100000"}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/100000/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":69605.58836976158,"upper_bound":69814.84747688542},"point_estimate":69709.04312425126,"standard_error":53.38351131194562},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":69428.14814814815,"upper_bound":69756.66666666667},"point_estimate":69554.3141025641,"standard_error":68.6332004505474},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":331.6761052798687,"upper_bound":652.9534144944117},"point_estimate":426.1234308405988,"standard_error":77.21015697936272},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":69580.82426309751,"upper_bound":69803.45532254776},"point_estimate":69686.17995172652,"standard_error":56.677458455319886},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":467.0432582592545,"upper_bound":597.3407052432998},"point_estimate":536.7810679991276,"standard_error":33.209109368629896}}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/100000/new/sample.json:
--------------------------------------------------------------------------------
1 | [[15.0,30.0,45.0,60.0,75.0,90.0,105.0,120.0,135.0,150.0,165.0,180.0,195.0,210.0,225.0,240.0,255.0,270.0,285.0,300.0,315.0,330.0,345.0,360.0,375.0,390.0,405.0,420.0,435.0,450.0,465.0,480.0,495.0,510.0,525.0,540.0,555.0,570.0,585.0,600.0,615.0,630.0,645.0,660.0,675.0,690.0,705.0,720.0,735.0,750.0,765.0,780.0,795.0,810.0,825.0,840.0,855.0,870.0,885.0,900.0,915.0,930.0,945.0,960.0,975.0,990.0,1005.0,1020.0,1035.0,1050.0,1065.0,1080.0,1095.0,1110.0,1125.0,1140.0,1155.0,1170.0,1185.0,1200.0,1215.0,1230.0,1245.0,1260.0,1275.0,1290.0,1305.0,1320.0,1335.0,1350.0,1365.0,1380.0,1395.0,1410.0,1425.0,1440.0,1455.0,1470.0,1485.0,1500.0],[1041400.0,2056800.0,3079400.0,4185400.0,5183100.0,6239400.0,7270000.0,8346500.0,9487000.0,10339200.0,11411600.0,12516800.0,13468400.0,14649600.0,15595200.0,16596600.0,17636100.0,18745600.0,19694000.0,20774000.0,21922800.0,23273900.0,24404400.0,25164600.0,26521900.0,27619400.0,28592400.0,29641400.0,30747300.0,31742400.0,32670000.0,33378600.0,34650700.0,35602400.0,37150400.0,37486600.0,39273800.0,39419700.0,40962000.0,42205700.0,43265700.0,43833100.0,45344600.0,46264300.0,47463300.0,48135500.0,49223800.0,50055900.0,50790600.0,52127300.0,52903000.0,54044400.0,55147600.0,56261400.0,57240000.0,58664100.0,59563200.0,60662600.0,61402000.0,62450600.0,64194200.0,65474200.0,66470400.0,66637000.0,67815600.0,68609800.0,69626100.0,70610200.0,71687600.0,72599800.0,73825300.0,75275600.0,76841200.0,78128900.0,78191200.0,80877800.0,80726000.0,81410300.0,82341000.0,83202900.0,84406000.0,86753100.0,86970000.0,87972400.0,88698800.0,89450000.0,91124600.0,92844800.0,92879200.0,93465300.0,94686800.0,95743500.0,97364800.0,99370300.0,99701200.0,99786300.0,100793700.0,102035600.0,102932200.0,104026900.0]]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/100000/new/tukey.json:
--------------------------------------------------------------------------------
1 | [66935.80307714254,68127.05208155984,71303.71609333932,72494.96509775662]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/5/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Unstable","value_str":"5","throughput":{"Elements":5},"full_id":"sort/Unstable/5","directory_name":"sort/unstable/5","title":"sort/Unstable/5"}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/5/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.481695367561654,"upper_bound":6.57177803710068},"point_estimate":6.519700744001577,"standard_error":0.02335892400726891},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.492494308539954,"upper_bound":6.498037866889884},"point_estimate":6.496030056521532,"standard_error":0.001890686181888569},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.027479772632647705,"upper_bound":0.10240478586271162},"point_estimate":0.05966705964679739,"standard_error":0.02058681985765247},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.442785515304919,"upper_bound":6.483157146944703},"point_estimate":6.46092912562711,"standard_error":0.010311044927270398},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.08586858300152342,"upper_bound":0.37075684583128515},"point_estimate":0.23529541436673646,"standard_error":0.0838144510038681}}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/5/base/tukey.json:
--------------------------------------------------------------------------------
1 | [6.157289789268451,6.29104250530915,6.647716414751013,6.781469130791711]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/5/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Unstable","value_str":"5","throughput":{"Elements":5},"full_id":"sort/Unstable/5","directory_name":"sort/unstable/5","title":"sort/Unstable/5"}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/5/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.481695367561654,"upper_bound":6.57177803710068},"point_estimate":6.519700744001577,"standard_error":0.02335892400726891},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.492494308539954,"upper_bound":6.498037866889884},"point_estimate":6.496030056521532,"standard_error":0.001890686181888569},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.027479772632647705,"upper_bound":0.10240478586271162},"point_estimate":0.05966705964679739,"standard_error":0.02058681985765247},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6.442785515304919,"upper_bound":6.483157146944703},"point_estimate":6.46092912562711,"standard_error":0.010311044927270398},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.08586858300152342,"upper_bound":0.37075684583128515},"point_estimate":0.23529541436673646,"standard_error":0.0838144510038681}}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/5/new/tukey.json:
--------------------------------------------------------------------------------
1 | [6.157289789268451,6.29104250530915,6.647716414751013,6.781469130791711]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/5000/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Unstable","value_str":"5000","throughput":{"Elements":5000},"full_id":"sort/Unstable/5000","directory_name":"sort/unstable/5000","title":"sort/Unstable/5000"}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/5000/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3307.985158191938,"upper_bound":3324.7307279231313},"point_estimate":3315.7021967042765,"standard_error":4.2816487548551905},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3311.3597972972975,"upper_bound":3317.0195195195197},"point_estimate":3315.6917554573806,"standard_error":1.404483473477511},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":11.356478690064456,"upper_bound":33.47653175768541},"point_estimate":19.664152512958744,"standard_error":5.256845981076694},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3312.227480828263,"upper_bound":3349.087542363734},"point_estimate":3328.961821878033,"standard_error":9.461202591282621},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":26.549318083569553,"upper_bound":60.62241725828161},"point_estimate":43.12200403184676,"standard_error":9.380133836341479}}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/5000/base/sample.json:
--------------------------------------------------------------------------------
1 | [[296.0,592.0,888.0,1184.0,1480.0,1776.0,2072.0,2368.0,2664.0,2960.0,3256.0,3552.0,3848.0,4144.0,4440.0,4736.0,5032.0,5328.0,5624.0,5920.0,6216.0,6512.0,6808.0,7104.0,7400.0,7696.0,7992.0,8288.0,8584.0,8880.0,9176.0,9472.0,9768.0,10064.0,10360.0,10656.0,10952.0,11248.0,11544.0,11840.0,12136.0,12432.0,12728.0,13024.0,13320.0,13616.0,13912.0,14208.0,14504.0,14800.0,15096.0,15392.0,15688.0,15984.0,16280.0,16576.0,16872.0,17168.0,17464.0,17760.0,18056.0,18352.0,18648.0,18944.0,19240.0,19536.0,19832.0,20128.0,20424.0,20720.0,21016.0,21312.0,21608.0,21904.0,22200.0,22496.0,22792.0,23088.0,23384.0,23680.0,23976.0,24272.0,24568.0,24864.0,25160.0,25456.0,25752.0,26048.0,26344.0,26640.0,26936.0,27232.0,27528.0,27824.0,28120.0,28416.0,28712.0,29008.0,29304.0,29600.0],[972300.0,1934600.0,2936900.0,3918000.0,4839700.0,5890500.0,6878800.0,7838700.0,8835800.0,9800500.0,10799800.0,11778100.0,13101300.0,13701300.0,14714300.0,15682600.0,16750500.0,17840500.0,18660700.0,19713800.0,20595800.0,21904800.0,22643800.0,23642800.0,24533000.0,25616900.0,26545100.0,27591700.0,28560100.0,29538300.0,30399400.0,31411500.0,32351400.0,33175100.0,33857600.0,34888100.0,35955300.0,37050500.0,37840200.0,38793000.0,39878900.0,40795500.0,42293900.0,43227200.0,44172000.0,45174200.0,46376300.0,46571300.0,47944100.0,49062300.0,50165100.0,51038300.0,51648900.0,52244800.0,53291300.0,54175500.0,55194300.0,56233600.0,57477100.0,58286700.0,59917500.0,60344500.0,61228200.0,62852300.0,63901900.0,64742900.0,65669800.0,66462900.0,66582300.0,67904900.0,69791200.0,70679600.0,70850100.0,72515200.0,73297500.0,74672600.0,75600800.0,76535100.0,77598000.0,78510700.0,78640900.0,79257900.0,80509300.0,81235300.0,84516900.0,84433000.0,85839900.0,86453000.0,87527800.0,88368800.0,91677300.0,91613300.0,95191600.0,94093700.0,94099400.0,95549500.0,96156400.0,104374700.0,98963700.0,98551300.0]]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/5000/base/tukey.json:
--------------------------------------------------------------------------------
1 | [3181.676665712921,3234.652209060556,3375.9203246542493,3428.8958680018845]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/5000/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Unstable","value_str":"5000","throughput":{"Elements":5000},"full_id":"sort/Unstable/5000","directory_name":"sort/unstable/5000","title":"sort/Unstable/5000"}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/5000/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3307.985158191938,"upper_bound":3324.7307279231313},"point_estimate":3315.7021967042765,"standard_error":4.2816487548551905},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3311.3597972972975,"upper_bound":3317.0195195195197},"point_estimate":3315.6917554573806,"standard_error":1.404483473477511},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":11.356478690064456,"upper_bound":33.47653175768541},"point_estimate":19.664152512958744,"standard_error":5.256845981076694},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3312.227480828263,"upper_bound":3349.087542363734},"point_estimate":3328.961821878033,"standard_error":9.461202591282621},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":26.549318083569553,"upper_bound":60.62241725828161},"point_estimate":43.12200403184676,"standard_error":9.380133836341479}}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/5000/new/sample.json:
--------------------------------------------------------------------------------
1 | [[296.0,592.0,888.0,1184.0,1480.0,1776.0,2072.0,2368.0,2664.0,2960.0,3256.0,3552.0,3848.0,4144.0,4440.0,4736.0,5032.0,5328.0,5624.0,5920.0,6216.0,6512.0,6808.0,7104.0,7400.0,7696.0,7992.0,8288.0,8584.0,8880.0,9176.0,9472.0,9768.0,10064.0,10360.0,10656.0,10952.0,11248.0,11544.0,11840.0,12136.0,12432.0,12728.0,13024.0,13320.0,13616.0,13912.0,14208.0,14504.0,14800.0,15096.0,15392.0,15688.0,15984.0,16280.0,16576.0,16872.0,17168.0,17464.0,17760.0,18056.0,18352.0,18648.0,18944.0,19240.0,19536.0,19832.0,20128.0,20424.0,20720.0,21016.0,21312.0,21608.0,21904.0,22200.0,22496.0,22792.0,23088.0,23384.0,23680.0,23976.0,24272.0,24568.0,24864.0,25160.0,25456.0,25752.0,26048.0,26344.0,26640.0,26936.0,27232.0,27528.0,27824.0,28120.0,28416.0,28712.0,29008.0,29304.0,29600.0],[972300.0,1934600.0,2936900.0,3918000.0,4839700.0,5890500.0,6878800.0,7838700.0,8835800.0,9800500.0,10799800.0,11778100.0,13101300.0,13701300.0,14714300.0,15682600.0,16750500.0,17840500.0,18660700.0,19713800.0,20595800.0,21904800.0,22643800.0,23642800.0,24533000.0,25616900.0,26545100.0,27591700.0,28560100.0,29538300.0,30399400.0,31411500.0,32351400.0,33175100.0,33857600.0,34888100.0,35955300.0,37050500.0,37840200.0,38793000.0,39878900.0,40795500.0,42293900.0,43227200.0,44172000.0,45174200.0,46376300.0,46571300.0,47944100.0,49062300.0,50165100.0,51038300.0,51648900.0,52244800.0,53291300.0,54175500.0,55194300.0,56233600.0,57477100.0,58286700.0,59917500.0,60344500.0,61228200.0,62852300.0,63901900.0,64742900.0,65669800.0,66462900.0,66582300.0,67904900.0,69791200.0,70679600.0,70850100.0,72515200.0,73297500.0,74672600.0,75600800.0,76535100.0,77598000.0,78510700.0,78640900.0,79257900.0,80509300.0,81235300.0,84516900.0,84433000.0,85839900.0,86453000.0,87527800.0,88368800.0,91677300.0,91613300.0,95191600.0,94093700.0,94099400.0,95549500.0,96156400.0,104374700.0,98963700.0,98551300.0]]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/5000/new/tukey.json:
--------------------------------------------------------------------------------
1 | [3181.676665712921,3234.652209060556,3375.9203246542493,3428.8958680018845]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/50000/base/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Unstable","value_str":"50000","throughput":{"Elements":50000},"full_id":"sort/Unstable/50000","directory_name":"sort/unstable/50000","title":"sort/Unstable/50000"}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/50000/base/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":34795.143789371585,"upper_bound":34895.235334666286},"point_estimate":34843.8313874226,"standard_error":25.59585516845708},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":34703.90482054891,"upper_bound":34837.93103448276},"point_estimate":34758.962531721154,"standard_error":36.49146027689132},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":130.9246366464623,"upper_bound":280.7124026302903},"point_estimate":198.98285113104126,"standard_error":36.64582345984308},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":34845.99898686903,"upper_bound":34968.87126799827},"point_estimate":34906.77671050687,"standard_error":31.459136572896316},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":206.41789134980837,"upper_bound":306.50998553843016},"point_estimate":257.25470726923083,"standard_error":25.80777184674538}}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/50000/base/sample.json:
--------------------------------------------------------------------------------
1 | [[29.0,58.0,87.0,116.0,145.0,174.0,203.0,232.0,261.0,290.0,319.0,348.0,377.0,406.0,435.0,464.0,493.0,522.0,551.0,580.0,609.0,638.0,667.0,696.0,725.0,754.0,783.0,812.0,841.0,870.0,899.0,928.0,957.0,986.0,1015.0,1044.0,1073.0,1102.0,1131.0,1160.0,1189.0,1218.0,1247.0,1276.0,1305.0,1334.0,1363.0,1392.0,1421.0,1450.0,1479.0,1508.0,1537.0,1566.0,1595.0,1624.0,1653.0,1682.0,1711.0,1740.0,1769.0,1798.0,1827.0,1856.0,1885.0,1914.0,1943.0,1972.0,2001.0,2030.0,2059.0,2088.0,2117.0,2146.0,2175.0,2204.0,2233.0,2262.0,2291.0,2320.0,2349.0,2378.0,2407.0,2436.0,2465.0,2494.0,2523.0,2552.0,2581.0,2610.0,2639.0,2668.0,2697.0,2726.0,2755.0,2784.0,2813.0,2842.0,2871.0,2900.0],[1023600.0,2072100.0,3037900.0,4069500.0,5028000.0,6037500.0,7074400.0,8006200.0,8998000.0,10112300.0,11000600.0,12064000.0,13075400.0,14043000.0,15046800.0,16067500.0,17075900.0,18107000.0,19104100.0,20119600.0,21165400.0,22123600.0,23212300.0,24169800.0,25303500.0,26135700.0,27124200.0,28094000.0,29377800.0,30094800.0,31126200.0,32175200.0,33321000.0,34290800.0,35105500.0,36107300.0,37237400.0,38482400.0,39282300.0,40259100.0,41393600.0,42202900.0,43733200.0,44223700.0,45229700.0,46094700.0,47323300.0,48155700.0,49311100.0,50515000.0,51888400.0,52214600.0,53351700.0,54140600.0,55447900.0,56306500.0,59277100.0,58812500.0,60188800.0,60870200.0,61525500.0,62515100.0,63425500.0,64693100.0,66304100.0,67175400.0,67702700.0,69401400.0,70850200.0,70812900.0,72325800.0,73525200.0,74253900.0,75102400.0,75763100.0,76201400.0,78378300.0,79580400.0,79427400.0,81879700.0,82308600.0,82501000.0,84594800.0,85689100.0,85493800.0,87093400.0,88426300.0,89803600.0,91084700.0,91455800.0,91471600.0,92708300.0,93382100.0,95251300.0,96951900.0,96813500.0,97477900.0,99237300.0,99642800.0,100456600.0]]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/50000/base/tukey.json:
--------------------------------------------------------------------------------
1 | [33627.742217397405,34145.07847891469,35524.641842960795,36041.97810447808]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/50000/new/benchmark.json:
--------------------------------------------------------------------------------
1 | {"group_id":"sort","function_id":"Unstable","value_str":"50000","throughput":{"Elements":50000},"full_id":"sort/Unstable/50000","directory_name":"sort/unstable/50000","title":"sort/Unstable/50000"}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/50000/new/estimates.json:
--------------------------------------------------------------------------------
1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":34795.143789371585,"upper_bound":34895.235334666286},"point_estimate":34843.8313874226,"standard_error":25.59585516845708},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":34703.90482054891,"upper_bound":34837.93103448276},"point_estimate":34758.962531721154,"standard_error":36.49146027689132},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":130.9246366464623,"upper_bound":280.7124026302903},"point_estimate":198.98285113104126,"standard_error":36.64582345984308},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":34845.99898686903,"upper_bound":34968.87126799827},"point_estimate":34906.77671050687,"standard_error":31.459136572896316},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":206.41789134980837,"upper_bound":306.50998553843016},"point_estimate":257.25470726923083,"standard_error":25.80777184674538}}
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/50000/new/sample.json:
--------------------------------------------------------------------------------
1 | [[29.0,58.0,87.0,116.0,145.0,174.0,203.0,232.0,261.0,290.0,319.0,348.0,377.0,406.0,435.0,464.0,493.0,522.0,551.0,580.0,609.0,638.0,667.0,696.0,725.0,754.0,783.0,812.0,841.0,870.0,899.0,928.0,957.0,986.0,1015.0,1044.0,1073.0,1102.0,1131.0,1160.0,1189.0,1218.0,1247.0,1276.0,1305.0,1334.0,1363.0,1392.0,1421.0,1450.0,1479.0,1508.0,1537.0,1566.0,1595.0,1624.0,1653.0,1682.0,1711.0,1740.0,1769.0,1798.0,1827.0,1856.0,1885.0,1914.0,1943.0,1972.0,2001.0,2030.0,2059.0,2088.0,2117.0,2146.0,2175.0,2204.0,2233.0,2262.0,2291.0,2320.0,2349.0,2378.0,2407.0,2436.0,2465.0,2494.0,2523.0,2552.0,2581.0,2610.0,2639.0,2668.0,2697.0,2726.0,2755.0,2784.0,2813.0,2842.0,2871.0,2900.0],[1023600.0,2072100.0,3037900.0,4069500.0,5028000.0,6037500.0,7074400.0,8006200.0,8998000.0,10112300.0,11000600.0,12064000.0,13075400.0,14043000.0,15046800.0,16067500.0,17075900.0,18107000.0,19104100.0,20119600.0,21165400.0,22123600.0,23212300.0,24169800.0,25303500.0,26135700.0,27124200.0,28094000.0,29377800.0,30094800.0,31126200.0,32175200.0,33321000.0,34290800.0,35105500.0,36107300.0,37237400.0,38482400.0,39282300.0,40259100.0,41393600.0,42202900.0,43733200.0,44223700.0,45229700.0,46094700.0,47323300.0,48155700.0,49311100.0,50515000.0,51888400.0,52214600.0,53351700.0,54140600.0,55447900.0,56306500.0,59277100.0,58812500.0,60188800.0,60870200.0,61525500.0,62515100.0,63425500.0,64693100.0,66304100.0,67175400.0,67702700.0,69401400.0,70850200.0,70812900.0,72325800.0,73525200.0,74253900.0,75102400.0,75763100.0,76201400.0,78378300.0,79580400.0,79427400.0,81879700.0,82308600.0,82501000.0,84594800.0,85689100.0,85493800.0,87093400.0,88426300.0,89803600.0,91084700.0,91455800.0,91471600.0,92708300.0,93382100.0,95251300.0,96951900.0,96813500.0,97477900.0,99237300.0,99642800.0,100456600.0]]
--------------------------------------------------------------------------------
/docs/criterion/sort/unstable/50000/new/tukey.json:
--------------------------------------------------------------------------------
1 | [33627.742217397405,34145.07847891469,35524.641842960795,36041.97810447808]
--------------------------------------------------------------------------------
/docs/index.html:
--------------------------------------------------------------------------------
1 |
2 | Benchmark results
3 |
4 |
--------------------------------------------------------------------------------
/tests/compat.rs:
--------------------------------------------------------------------------------
1 | extern crate rksuid;
2 |
3 | #[cfg(test)]
4 | mod tests {
5 | use ::rksuid::rksuid;
6 | use ::rksuid::rksuid::Ksuid;
7 |
8 | fn build_segment_ksuid() -> Ksuid {
9 | rksuid::new(Some(107608047), Some(0xB5A1CD34B5F99D1154FB6853345C9735))
10 | }
11 | // Compat tests with ksuids generated by the segment go code
12 | #[test]
13 | fn test_serialize_compat_with_segment_ksuid() {
14 | // From github.com/segmentio/ksuid#inspect-the-components-of-a-ksuid
15 | // REPRESENTATION:
16 | // String: 0ujtsYcgvSTl8PAuAdqWYSMnLOv
17 | // Raw: 0669F7EFB5A1CD34B5F99D1154FB6853345C9735
18 | // COMPONENTS:
19 | // Time: 2017-10-09 21:00:47 -0700 PDT
20 | // Timestamp: 107608047
21 | // Payload: B5A1CD34B5F99D1154FB6853345C9735
22 | let segment_serialized = "0ujtsYcgvSTl8PAuAdqWYSMnLOv";
23 | let ksuid_known_good = build_segment_ksuid();
24 | let test_serialized = ksuid_known_good.serialize();
25 | assert_eq!(segment_serialized, test_serialized);
26 | }
27 |
28 | #[test]
29 | fn test_deserialize_compat_with_segment_ksuid() {
30 | let segment_serialized = "0ujtsYcgvSTl8PAuAdqWYSMnLOv";
31 | let ksuid = rksuid::deserialize(segment_serialized);
32 | let known_good = build_segment_ksuid();
33 | assert_eq!(ksuid, known_good);
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/tests/new.rs:
--------------------------------------------------------------------------------
1 |
2 | #[cfg(test)]
3 | mod tests{
4 | use rksuid::rksuid::{new, RngType, Ksuid, gen_epoch, gen_payload};
5 | use chrono::prelude::*;
6 | use rand::distributions::Standard;
7 | use rand::prelude::*;
8 | use std::{thread, time};
9 | use strum::IntoEnumIterator;
10 | use std::any::{Any, TypeId};
11 |
12 | // Creation tests
13 | #[test]
14 | fn test_new() {
15 | let first = new(None, None);
16 | thread::sleep(time::Duration::from_millis(2000));
17 | let second = new(None, None);
18 | assert_ne!(first.timestamp, second.timestamp);
19 | }
20 | #[test]
21 | fn new_with_timestamp() {
22 | let ksuid = new(Some(85), None);
23 | assert_eq!(ksuid.timestamp, 85);
24 | }
25 | #[test]
26 | fn new_with_payload() {
27 | let payload: u128 = StdRng::from_entropy().sample(Standard);
28 | let ksuid = new(None, Some(payload));
29 | assert_eq!(payload, ksuid.payload);
30 | }
31 | #[test]
32 | fn new_with_payload_and_timestamp() {
33 | let payload: u128 = StdRng::from_entropy().sample(Standard);
34 | let epoch_base = gen_epoch();
35 | let timestamp = Utc::now().signed_duration_since(epoch_base).num_seconds() as u32;
36 | let ksuid = new(Some(timestamp), Some(payload));
37 | assert_eq!(ksuid.payload, payload);
38 | assert_eq!(ksuid.timestamp, timestamp);
39 | }
40 |
41 |
42 | #[test]
43 | fn test_payload_variants() {
44 | for e in RngType::iter() {
45 | let payload: u128 = gen_payload(Some(e));
46 | assert_eq!(payload.type_id(), TypeId::of::());
47 | }
48 | }
49 | }
50 |
--------------------------------------------------------------------------------
/tests/props.rs:
--------------------------------------------------------------------------------
1 | extern crate rksuid;
2 |
3 | #[cfg(test)]
4 | mod tests {
5 | use ::rksuid::rksuid;
6 | use chrono::prelude::*;
7 |
8 | // Test get_time
9 | #[test]
10 | fn test_get_time() {
11 | // Friday, July 14, 2017 2:40:00 AM
12 | let timestamp: DateTime = Utc.timestamp(1500000000, 0);
13 | let epoch_offset = timestamp
14 | .signed_duration_since(rksuid::gen_epoch())
15 | .num_seconds();
16 | // Sanity check the expected timestamp for the ksuid
17 | assert_eq!(100000000, epoch_offset);
18 | let ksuid = rksuid::new(Some(epoch_offset as u32), None);
19 | let ksuid_time = ksuid.get_time();
20 | assert_eq!(timestamp, ksuid_time);
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/tests/serialize.rs:
--------------------------------------------------------------------------------
1 | extern crate rksuid;
2 |
3 | #[cfg(test)]
4 | mod tests {
5 | use ::rksuid::rksuid;
6 |
7 | // SerDe tests
8 | #[test]
9 | fn test_serialize_with_random_data_returns_right_length() {
10 | let ksuid = rksuid::new(None, None);
11 | let serialized = ksuid.serialize();
12 | assert_eq!(serialized.char_indices().count(), 27);
13 | }
14 | #[test]
15 | fn test_serialize_deserialize() {
16 | let ksuid = rksuid::new(None, None);
17 | let serialized = ksuid.serialize();
18 | let ksuid2 = rksuid::deserialize(&serialized);
19 | assert_eq!(ksuid, ksuid2);
20 | }
21 | #[test]
22 | fn test_get_formatted_lines() {
23 | let ksuid = rksuid::deserialize("0ujtsYcgvSTl8PAuAdqWYSMnLOv");
24 | let formatted = ksuid.get_formatted_lines();
25 | assert!(!formatted.is_empty());
26 | let timestamp_line = "\tTimestamp: 107608047";
27 | assert_eq!(formatted[5], timestamp_line);
28 | let raw_line = "\tRaw: 669F7EFB5A1CD34B5F99D1154FB6853";
29 | assert_eq!(formatted[2], raw_line);
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/tests/sorting.rs:
--------------------------------------------------------------------------------
1 | extern crate rksuid;
2 |
3 | #[cfg(test)]
4 | mod tests {
5 | use ::rksuid::rksuid;
6 | use ::rksuid::rksuid::Ksuid;
7 |
8 | // Sorting tests
9 | #[test]
10 | fn gt_lt() {
11 | let first = rksuid::new(Some(100), None);
12 | let second = rksuid::new(Some(500), None);
13 | let third = rksuid::new(Some(12321312), None);
14 | assert!(first < second);
15 | assert!(second < third);
16 | assert!(first < third);
17 | }
18 | #[test]
19 | fn sort_by_timestamp() {
20 | let first = rksuid::new(Some(100), None);
21 | let second = rksuid::new(Some(500), None);
22 | let third = rksuid::new(Some(12321312), None);
23 | let mut ksuid_vec: Vec = vec![second, third, first];
24 | ksuid_vec.sort();
25 | assert_eq!(ksuid_vec[0], first);
26 | assert_eq!(ksuid_vec[2], third);
27 | }
28 | }
29 |
--------------------------------------------------------------------------------