├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE.txt ├── README.md ├── benches └── rawbson.rs ├── criterion-report ├── access-broad-from-bytes │ ├── 1 │ │ └── report │ │ │ ├── index.html │ │ │ └── violin.svg │ ├── 10 │ │ └── report │ │ │ ├── index.html │ │ │ └── violin.svg │ ├── 20 │ │ └── report │ │ │ ├── index.html │ │ │ └── violin.svg │ ├── 30 │ │ └── report │ │ │ ├── index.html │ │ │ └── violin.svg │ ├── 40 │ │ └── report │ │ │ ├── index.html │ │ │ └── violin.svg │ ├── 50 │ │ └── report │ │ │ ├── index.html │ │ │ └── violin.svg │ ├── parsed │ │ ├── 1 │ │ │ ├── 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 │ │ │ │ └── typical.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 │ │ │ │ └── typical.svg │ │ ├── 20 │ │ │ ├── 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 │ │ │ │ └── typical.svg │ │ ├── 30 │ │ │ ├── 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 │ │ │ │ └── typical.svg │ │ ├── 40 │ │ │ ├── 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 │ │ │ │ └── typical.svg │ │ ├── 50 │ │ │ ├── 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 │ │ │ │ └── typical.svg │ │ └── report │ │ │ ├── index.html │ │ │ ├── lines.svg │ │ │ └── violin.svg │ ├── raw │ │ ├── 1 │ │ │ ├── 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 │ │ │ │ └── typical.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 │ │ │ │ └── typical.svg │ │ ├── 20 │ │ │ ├── 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 │ │ │ │ └── typical.svg │ │ ├── 30 │ │ │ ├── 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 │ │ │ │ └── typical.svg │ │ ├── 40 │ │ │ ├── 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 │ │ │ │ └── typical.svg │ │ ├── 50 │ │ │ ├── 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 │ │ │ │ └── typical.svg │ │ └── report │ │ │ ├── index.html │ │ │ ├── lines.svg │ │ │ └── violin.svg │ └── report │ │ ├── index.html │ │ ├── lines.svg │ │ └── violin.svg ├── access-broad-from-type │ ├── 1 │ │ └── report │ │ │ ├── index.html │ │ │ └── violin.svg │ ├── 10 │ │ └── report │ │ │ ├── index.html │ │ │ └── violin.svg │ ├── 20 │ │ └── report │ │ │ ├── index.html │ │ │ └── violin.svg │ ├── 30 │ │ └── report │ │ │ ├── index.html │ │ │ └── violin.svg │ ├── 40 │ │ └── report │ │ │ ├── index.html │ │ │ └── violin.svg │ ├── 50 │ │ └── report │ │ │ ├── index.html │ │ │ └── violin.svg │ ├── parsed │ │ ├── 1 │ │ │ ├── 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 │ │ │ │ └── typical.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 │ │ │ │ └── typical.svg │ │ ├── 20 │ │ │ ├── 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 │ │ │ │ └── typical.svg │ │ ├── 30 │ │ │ ├── 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 │ │ │ │ └── typical.svg │ │ ├── 40 │ │ │ ├── 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 │ │ │ │ └── typical.svg │ │ ├── 50 │ │ │ ├── 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 │ │ │ │ └── typical.svg │ │ └── report │ │ │ ├── index.html │ │ │ ├── lines.svg │ │ │ └── violin.svg │ ├── raw │ │ ├── 1 │ │ │ ├── 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 │ │ │ │ └── typical.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 │ │ │ │ └── typical.svg │ │ ├── 20 │ │ │ ├── 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 │ │ │ │ └── typical.svg │ │ ├── 30 │ │ │ ├── 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 │ │ │ │ └── typical.svg │ │ ├── 40 │ │ │ ├── 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 │ │ │ │ └── typical.svg │ │ ├── 50 │ │ │ ├── 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 │ │ │ │ └── typical.svg │ │ └── report │ │ │ ├── index.html │ │ │ ├── lines.svg │ │ │ └── violin.svg │ └── report │ │ ├── index.html │ │ ├── lines.svg │ │ └── violin.svg ├── access-deep-from-bytes │ ├── 10 │ │ └── report │ │ │ ├── index.html │ │ │ └── violin.svg │ ├── 100 │ │ └── report │ │ │ ├── index.html │ │ │ └── violin.svg │ ├── 1000 │ │ └── report │ │ │ ├── index.html │ │ │ └── violin.svg │ ├── parsed │ │ ├── 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 │ │ │ │ └── typical.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 │ │ │ │ └── typical.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 │ │ │ │ └── typical.svg │ │ └── report │ │ │ ├── index.html │ │ │ ├── lines.svg │ │ │ └── violin.svg │ ├── raw │ │ ├── 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 │ │ │ │ └── typical.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 │ │ │ │ └── typical.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 │ │ │ │ └── typical.svg │ │ └── report │ │ │ ├── index.html │ │ │ ├── lines.svg │ │ │ └── violin.svg │ └── report │ │ ├── index.html │ │ ├── lines.svg │ │ └── violin.svg ├── access-deep-from-type │ ├── 10 │ │ └── report │ │ │ ├── index.html │ │ │ └── violin.svg │ ├── 100 │ │ └── report │ │ │ ├── index.html │ │ │ └── violin.svg │ ├── 1000 │ │ └── report │ │ │ ├── index.html │ │ │ └── violin.svg │ ├── parsed │ │ ├── 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 │ │ │ │ └── typical.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 │ │ │ │ └── typical.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 │ │ │ │ └── typical.svg │ │ └── report │ │ │ ├── index.html │ │ │ ├── lines.svg │ │ │ └── violin.svg │ ├── raw │ │ ├── 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 │ │ │ │ └── typical.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 │ │ │ │ └── typical.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 │ │ │ │ └── typical.svg │ │ └── report │ │ │ ├── index.html │ │ │ ├── lines.svg │ │ │ └── violin.svg │ └── report │ │ ├── index.html │ │ ├── lines.svg │ │ └── violin.svg ├── construct-bson-broad │ ├── direct │ │ ├── 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 │ │ │ └── typical.svg │ ├── report │ │ ├── index.html │ │ └── violin.svg │ └── via-raw │ │ ├── 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 │ │ └── typical.svg ├── construct-bson-deep │ ├── direct │ │ ├── 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 │ │ │ └── typical.svg │ ├── report │ │ ├── index.html │ │ └── violin.svg │ └── via-raw │ │ ├── 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 │ │ └── typical.svg ├── iter-broad-from-bytes │ ├── parsed │ │ ├── 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 │ │ │ └── typical.svg │ ├── raw │ │ ├── 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 │ │ │ └── typical.svg │ └── report │ │ ├── index.html │ │ └── violin.svg ├── iter-broad-from-type │ ├── parsed │ │ ├── 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 │ │ │ └── typical.svg │ ├── raw │ │ ├── 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 │ │ │ └── typical.svg │ └── report │ │ ├── index.html │ │ └── violin.svg └── report │ └── index.html ├── proptest-regressions └── lib.txt └── src ├── de.rs ├── de ├── binary.rs ├── datetime.rs ├── js.rs ├── object_id.rs └── regex.rs ├── elem.rs ├── lib.rs └── props.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | # 0.2.1 4 | 5 | * Implemented Error for RawError 6 | 7 | # 0.2.0 8 | 9 | * Converted DocRef<'a> and ArrayRef<'a> to unsized types, &Doc and &Array. 10 | * Updated documentation 11 | * Added LICENSE file. 12 | 13 | # 0.1.1 14 | 15 | Updated documentation 16 | 17 | # 0.1.0 18 | 19 | Initial release 20 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "rawbson" 3 | version = "0.2.1" 4 | authors = ["J. Cliff Dyer "] 5 | description = "Blazing fast zero-copy BSON handling" 6 | license = "MIT" 7 | readme = "README.md" 8 | homepage = "https://github.com/jcdyer/rawbson" 9 | repository = "https://github.com/jcdyer/rawbson" 10 | documentation = "https://docs.rs/crate/rawbson" 11 | edition = "2018" 12 | keywords = ["serde", "bson", "mongodb", "serialization"] 13 | 14 | [[bench]] 15 | name = "rawbson" 16 | harness = false 17 | edition = "2018" 18 | 19 | [dependencies] 20 | bson = {version = "1.1", features = ["decimal128"] } 21 | chrono = { version = "0.4", features = ["serde"] } 22 | decimal = "2.0.4" 23 | serde = { version = "1.0.118", features = ["derive"] } 24 | 25 | [dev-dependencies] 26 | criterion = "0.3.0" 27 | proptest = "0.10" 28 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2021 J. Cliff Dyer 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of 4 | this software and associated documentation files (the "Software"), to deal in 5 | the Software without restriction, including without limitation the rights to 6 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 7 | of the Software, and to permit persons to whom the Software is furnished to do 8 | so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 19 | SOFTWARE. 20 | -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/1/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-bytes","function_id":"parsed","value_str":"1","throughput":null,"full_id":"access-broad-from-bytes/parsed/1","directory_name":"access-broad-from-bytes/parsed/1","title":"access-broad-from-bytes/parsed/1"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/1/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":469814.67874239665,"upper_bound":475503.974720556},"point_estimate":471869.34049488045,"standard_error":1665.7663527517802},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":469249.967650463,"upper_bound":470289.59349593497},"point_estimate":469885.08615267836,"standard_error":268.72714421248594},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1295.5161419536976,"upper_bound":2072.3798717367054},"point_estimate":1613.7343471569673,"standard_error":191.51439711075284},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":469665.8153430464,"upper_bound":478840.82590962306},"point_estimate":472707.52508546377,"standard_error":2634.303251112249},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2119.2206588215463,"upper_bound":28492.74411769944},"point_estimate":16749.3542772621,"standard_error":9226.325935345863}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/1/base/tukey.json: -------------------------------------------------------------------------------- 1 | [461920.0827672101,465290.89645606885,474279.73295969213,477650.54664855084] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/1/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-bytes","function_id":"parsed","value_str":"1","throughput":null,"full_id":"access-broad-from-bytes/parsed/1","directory_name":"access-broad-from-bytes/parsed/1","title":"access-broad-from-bytes/parsed/1"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/1/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":469814.67874239665,"upper_bound":475503.974720556},"point_estimate":471869.34049488045,"standard_error":1665.7663527517802},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":469249.967650463,"upper_bound":470289.59349593497},"point_estimate":469885.08615267836,"standard_error":268.72714421248594},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1295.5161419536976,"upper_bound":2072.3798717367054},"point_estimate":1613.7343471569673,"standard_error":191.51439711075284},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":469665.8153430464,"upper_bound":478840.82590962306},"point_estimate":472707.52508546377,"standard_error":2634.303251112249},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2119.2206588215463,"upper_bound":28492.74411769944},"point_estimate":16749.3542772621,"standard_error":9226.325935345863}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/1/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[3.0,6.0,9.0,12.0,15.0,18.0,21.0,24.0,27.0,30.0,33.0,36.0,39.0,42.0,45.0,48.0,51.0,54.0,57.0,60.0,63.0,66.0,69.0,72.0,75.0,78.0,81.0,84.0,87.0,90.0,93.0,96.0,99.0,102.0,105.0,108.0,111.0,114.0,117.0,120.0,123.0,126.0,129.0,132.0,135.0,138.0,141.0,144.0,147.0,150.0,153.0,156.0,159.0,162.0,165.0,168.0,171.0,174.0,177.0,180.0,183.0,186.0,189.0,192.0,195.0,198.0,201.0,204.0,207.0,210.0,213.0,216.0,219.0,222.0,225.0,228.0,231.0,234.0,237.0,240.0,243.0,246.0,249.0,252.0,255.0,258.0,261.0,264.0,267.0,270.0,273.0,276.0,279.0,282.0,285.0,288.0,291.0,294.0,297.0,300.0],"times":[1435193.0,2825899.0,4167261.0,5742996.0,7203397.0,8506812.0,9881250.0,11387855.0,12744498.0,14043407.0,15543702.0,16953852.0,18227440.0,19624527.0,21084542.0,22478576.0,23984665.0,25200204.0,26595960.0,28231423.0,29435132.0,30924618.0,32223477.0,33848064.0,35188187.0,36685659.0,37995865.0,39264577.0,41252316.0,42497101.0,43598983.0,45206251.0,46429113.0,47710777.0,49264043.0,50603914.0,52131907.0,53509928.0,54805418.0,56972575.0,57863980.0,59227764.0,60497374.0,61889485.0,63187287.0,64763348.0,66152422.0,68299235.0,69184426.0,70350587.0,71804449.0,73586815.0,74712531.0,76129369.0,77668259.0,79067262.0,80550486.0,81759127.0,83153178.0,84512814.0,86596103.0,87617523.0,88912004.0,90106869.0,91756009.0,93054119.0,94487375.0,96366995.0,97013023.0,98703665.0,100201454.0,101806276.0,139144809.0,104564719.0,106342556.0,107235027.0,111848074.0,110153093.0,111135814.0,113010962.0,114339070.0,115691240.0,116696589.0,117850756.0,119500234.0,120993040.0,122285611.0,123541415.0,125385549.0,126682198.0,127829013.0,129263433.0,130806379.0,132027424.0,133498309.0,135122146.0,137758066.0,138171433.0,139424922.0,141593400.0]} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/1/new/tukey.json: -------------------------------------------------------------------------------- 1 | [461920.0827672101,465290.89645606885,474279.73295969213,477650.54664855084] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/10/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-bytes","function_id":"parsed","value_str":"10","throughput":null,"full_id":"access-broad-from-bytes/parsed/10","directory_name":"access-broad-from-bytes/parsed/10","title":"access-broad-from-bytes/parsed/10"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/10/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":479401.85011424596,"upper_bound":480839.6905006859},"point_estimate":480079.3739207794,"standard_error":366.8026117898507},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":478769.3580520394,"upper_bound":480304.57232704404},"point_estimate":479251.1863553113,"standard_error":422.3718524746949},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2141.4835467863813,"upper_bound":3645.4678391711163},"point_estimate":2958.717355671601,"standard_error":392.66503174793246},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":477935.6238607929,"upper_bound":479430.05637659214},"point_estimate":478627.87966602633,"standard_error":383.1875509937144},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2554.756480924637,"upper_bound":5022.875226538864},"point_estimate":3699.702936498693,"standard_error":696.2523397389251}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/10/base/tukey.json: -------------------------------------------------------------------------------- 1 | [466548.14954780333,472240.2627079294,487419.2311349323,493111.3442950584] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/10/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-bytes","function_id":"parsed","value_str":"10","throughput":null,"full_id":"access-broad-from-bytes/parsed/10","directory_name":"access-broad-from-bytes/parsed/10","title":"access-broad-from-bytes/parsed/10"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/10/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":479401.85011424596,"upper_bound":480839.6905006859},"point_estimate":480079.3739207794,"standard_error":366.8026117898507},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":478769.3580520394,"upper_bound":480304.57232704404},"point_estimate":479251.1863553113,"standard_error":422.3718524746949},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2141.4835467863813,"upper_bound":3645.4678391711163},"point_estimate":2958.717355671601,"standard_error":392.66503174793246},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":477935.6238607929,"upper_bound":479430.05637659214},"point_estimate":478627.87966602633,"standard_error":383.1875509937144},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2554.756480924637,"upper_bound":5022.875226538864},"point_estimate":3699.702936498693,"standard_error":696.2523397389251}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/10/new/tukey.json: -------------------------------------------------------------------------------- 1 | [466548.14954780333,472240.2627079294,487419.2311349323,493111.3442950584] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/20/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-bytes","function_id":"parsed","value_str":"20","throughput":null,"full_id":"access-broad-from-bytes/parsed/20","directory_name":"access-broad-from-bytes/parsed/20","title":"access-broad-from-bytes/parsed/20"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/20/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":479731.73411103134,"upper_bound":481195.06661978125},"point_estimate":480428.1157156386,"standard_error":373.488798023437},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":479281.7494949495,"upper_bound":480365.08845029236},"point_estimate":479752.58194444445,"standard_error":317.85359563437015},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1589.9795443279622,"upper_bound":3338.6271058073266},"point_estimate":2366.091689773661,"standard_error":417.29145009492765},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":478626.925487102,"upper_bound":480397.0793874434},"point_estimate":479453.834952958,"standard_error":451.64728809658953},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2749.7582152379223,"upper_bound":4702.910721059077},"point_estimate":3744.1782929218225,"standard_error":502.4013657322633}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/20/base/tukey.json: -------------------------------------------------------------------------------- 1 | [469779.3598108415,474212.75945087534,486035.1584909655,490468.55813099927] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/20/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-bytes","function_id":"parsed","value_str":"20","throughput":null,"full_id":"access-broad-from-bytes/parsed/20","directory_name":"access-broad-from-bytes/parsed/20","title":"access-broad-from-bytes/parsed/20"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/20/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":479731.73411103134,"upper_bound":481195.06661978125},"point_estimate":480428.1157156386,"standard_error":373.488798023437},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":479281.7494949495,"upper_bound":480365.08845029236},"point_estimate":479752.58194444445,"standard_error":317.85359563437015},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1589.9795443279622,"upper_bound":3338.6271058073266},"point_estimate":2366.091689773661,"standard_error":417.29145009492765},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":478626.925487102,"upper_bound":480397.0793874434},"point_estimate":479453.834952958,"standard_error":451.64728809658953},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2749.7582152379223,"upper_bound":4702.910721059077},"point_estimate":3744.1782929218225,"standard_error":502.4013657322633}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/20/new/tukey.json: -------------------------------------------------------------------------------- 1 | [469779.3598108415,474212.75945087534,486035.1584909655,490468.55813099927] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/30/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-bytes","function_id":"parsed","value_str":"30","throughput":null,"full_id":"access-broad-from-bytes/parsed/30","directory_name":"access-broad-from-bytes/parsed/30","title":"access-broad-from-bytes/parsed/30"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/30/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":466546.0295100792,"upper_bound":469547.18856338784},"point_estimate":467770.07900657563,"standard_error":782.7386003655162},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":466048.623015873,"upper_bound":467588.7514139272},"point_estimate":466555.7045177045,"standard_error":445.12519081703084},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2505.2839050994885,"upper_bound":4287.500933196099},"point_estimate":3224.2153530775363,"standard_error":433.79183943832254},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":467117.11788938585,"upper_bound":474328.1189256504},"point_estimate":469693.65705630265,"standard_error":2013.9485089182726},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3095.3788343401084,"upper_bound":12694.490928090874},"point_estimate":7869.237000365505,"standard_error":3201.9512209151526}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/30/base/tukey.json: -------------------------------------------------------------------------------- 1 | [451087.4076260284,457874.1692198273,475972.2001366243,482758.96173042315] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/30/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-bytes","function_id":"parsed","value_str":"30","throughput":null,"full_id":"access-broad-from-bytes/parsed/30","directory_name":"access-broad-from-bytes/parsed/30","title":"access-broad-from-bytes/parsed/30"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/30/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":466546.0295100792,"upper_bound":469547.18856338784},"point_estimate":467770.07900657563,"standard_error":782.7386003655162},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":466048.623015873,"upper_bound":467588.7514139272},"point_estimate":466555.7045177045,"standard_error":445.12519081703084},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2505.2839050994885,"upper_bound":4287.500933196099},"point_estimate":3224.2153530775363,"standard_error":433.79183943832254},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":467117.11788938585,"upper_bound":474328.1189256504},"point_estimate":469693.65705630265,"standard_error":2013.9485089182726},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3095.3788343401084,"upper_bound":12694.490928090874},"point_estimate":7869.237000365505,"standard_error":3201.9512209151526}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/30/new/tukey.json: -------------------------------------------------------------------------------- 1 | [451087.4076260284,457874.1692198273,475972.2001366243,482758.96173042315] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/40/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-bytes","function_id":"parsed","value_str":"40","throughput":null,"full_id":"access-broad-from-bytes/parsed/40","directory_name":"access-broad-from-bytes/parsed/40","title":"access-broad-from-bytes/parsed/40"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/40/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":475659.8496145208,"upper_bound":480484.1987782693},"point_estimate":478047.26439778524,"standard_error":1230.3775144015253},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":479853.1581920904,"upper_bound":482715.1543859649},"point_estimate":481518.8111178738,"standard_error":669.9305344838364},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3888.9843032243366,"upper_bound":15625.185483527757},"point_estimate":5650.162715059981,"standard_error":3118.8278119028037},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":467401.9962271119,"upper_bound":471909.42746593093},"point_estimate":469391.86114280083,"standard_error":1152.9649619465922},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":10418.614045160251,"upper_bound":14257.645705093035},"point_estimate":12358.439357287396,"standard_error":985.883967426809}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/40/base/tukey.json: -------------------------------------------------------------------------------- 1 | [402464.04893483716,433104.55560776946,514812.5734022556,545453.0800751878] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/40/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-bytes","function_id":"parsed","value_str":"40","throughput":null,"full_id":"access-broad-from-bytes/parsed/40","directory_name":"access-broad-from-bytes/parsed/40","title":"access-broad-from-bytes/parsed/40"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/40/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":475659.8496145208,"upper_bound":480484.1987782693},"point_estimate":478047.26439778524,"standard_error":1230.3775144015253},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":479853.1581920904,"upper_bound":482715.1543859649},"point_estimate":481518.8111178738,"standard_error":669.9305344838364},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3888.9843032243366,"upper_bound":15625.185483527757},"point_estimate":5650.162715059981,"standard_error":3118.8278119028037},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":467401.9962271119,"upper_bound":471909.42746593093},"point_estimate":469391.86114280083,"standard_error":1152.9649619465922},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":10418.614045160251,"upper_bound":14257.645705093035},"point_estimate":12358.439357287396,"standard_error":985.883967426809}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/40/new/tukey.json: -------------------------------------------------------------------------------- 1 | [402464.04893483716,433104.55560776946,514812.5734022556,545453.0800751878] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/50/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-bytes","function_id":"parsed","value_str":"50","throughput":null,"full_id":"access-broad-from-bytes/parsed/50","directory_name":"access-broad-from-bytes/parsed/50","title":"access-broad-from-bytes/parsed/50"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/50/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":467553.0010611347,"upper_bound":468820.6217966009},"point_estimate":468169.6533771096,"standard_error":322.17205823905016},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":467431.20547945204,"upper_bound":468489.0745098039},"point_estimate":468042.2444444444,"standard_error":278.463296298746},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2043.4571793082305,"upper_bound":3243.33374579145},"point_estimate":2790.9979039789027,"standard_error":306.53314924846205},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":467318.56833136757,"upper_bound":468430.88060219074},"point_estimate":467869.06457908475,"standard_error":282.9139901944147},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2378.2025290166016,"upper_bound":4220.776663838742},"point_estimate":3243.351749886481,"standard_error":493.88758680456885}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/50/base/tukey.json: -------------------------------------------------------------------------------- 1 | [454888.9975425111,460533.3004687864,475584.7749388539,481229.0778651293] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/50/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-bytes","function_id":"parsed","value_str":"50","throughput":null,"full_id":"access-broad-from-bytes/parsed/50","directory_name":"access-broad-from-bytes/parsed/50","title":"access-broad-from-bytes/parsed/50"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/50/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":467553.0010611347,"upper_bound":468820.6217966009},"point_estimate":468169.6533771096,"standard_error":322.17205823905016},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":467431.20547945204,"upper_bound":468489.0745098039},"point_estimate":468042.2444444444,"standard_error":278.463296298746},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2043.4571793082305,"upper_bound":3243.33374579145},"point_estimate":2790.9979039789027,"standard_error":306.53314924846205},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":467318.56833136757,"upper_bound":468430.88060219074},"point_estimate":467869.06457908475,"standard_error":282.9139901944147},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2378.2025290166016,"upper_bound":4220.776663838742},"point_estimate":3243.351749886481,"standard_error":493.88758680456885}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/50/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[3.0,6.0,9.0,12.0,15.0,18.0,21.0,24.0,27.0,30.0,33.0,36.0,39.0,42.0,45.0,48.0,51.0,54.0,57.0,60.0,63.0,66.0,69.0,72.0,75.0,78.0,81.0,84.0,87.0,90.0,93.0,96.0,99.0,102.0,105.0,108.0,111.0,114.0,117.0,120.0,123.0,126.0,129.0,132.0,135.0,138.0,141.0,144.0,147.0,150.0,153.0,156.0,159.0,162.0,165.0,168.0,171.0,174.0,177.0,180.0,183.0,186.0,189.0,192.0,195.0,198.0,201.0,204.0,207.0,210.0,213.0,216.0,219.0,222.0,225.0,228.0,231.0,234.0,237.0,240.0,243.0,246.0,249.0,252.0,255.0,258.0,261.0,264.0,267.0,270.0,273.0,276.0,279.0,282.0,285.0,288.0,291.0,294.0,297.0,300.0],"times":[1409481.0,2760991.0,4213880.0,5829833.0,7049837.0,8501459.0,9905314.0,11203959.0,12797942.0,14157293.0,15424106.0,16782614.0,18170582.0,19528077.0,20684433.0,22450926.0,23744864.0,25007970.0,26637960.0,27907046.0,29271848.0,30710877.0,32064668.0,33399419.0,35018723.0,36225477.0,37758899.0,39319223.0,40671345.0,42173610.0,43540900.0,44819710.0,46327069.0,47880480.0,49067602.0,50573549.0,52049658.0,53738268.0,55638430.0,56651659.0,57818491.0,59310704.0,60661917.0,62094105.0,63409786.0,65149089.0,66296255.0,67832306.0,69348176.0,70743927.0,72105428.0,73537940.0,74717956.0,76503488.0,77368914.0,78911896.0,79923091.0,81592658.0,82623092.0,84246067.0,85673906.0,87451111.0,88360449.0,89734883.0,90883518.0,92935753.0,93978255.0,95637849.0,96456256.0,98012479.0,99410070.0,100707906.0,102367434.0,103917980.0,104562321.0,107310041.0,107980161.0,109504434.0,110243300.0,112332188.0,113321915.0,115019224.0,115389064.0,117083428.0,119464714.0,120238500.0,120946249.0,122897700.0,124440437.0,125683443.0,127224879.0,128688159.0,131688086.0,132461721.0,133399332.0,134946399.0,136284569.0,137905245.0,139348123.0,141076422.0]} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/parsed/50/new/tukey.json: -------------------------------------------------------------------------------- 1 | [454888.9975425111,460533.3004687864,475584.7749388539,481229.0778651293] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/1/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-bytes","function_id":"raw","value_str":"1","throughput":null,"full_id":"access-broad-from-bytes/raw/1","directory_name":"access-broad-from-bytes/raw/1","title":"access-broad-from-bytes/raw/1"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/1/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":29078.57372776258,"upper_bound":29214.56951054648},"point_estimate":29141.687992479634,"standard_error":34.66902542464454},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":28993.205383848453,"upper_bound":29084.249455785604},"point_estimate":29046.294876340122,"standard_error":23.730560003646726},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":118.33434684796198,"upper_bound":218.66174420496418},"point_estimate":173.33594112120258,"standard_error":25.97514274502024},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":28970.474202954738,"upper_bound":29032.924503539645},"point_estimate":29000.167132363807,"standard_error":15.859912457720318},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":229.2293863419515,"upper_bound":460.9599813951468},"point_estimate":348.32854724907486,"standard_error":59.93374174869683}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/1/base/tukey.json: -------------------------------------------------------------------------------- 1 | [28233.963932443985,28591.724306516986,29545.751970711655,29903.512344784656] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/1/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-bytes","function_id":"raw","value_str":"1","throughput":null,"full_id":"access-broad-from-bytes/raw/1","directory_name":"access-broad-from-bytes/raw/1","title":"access-broad-from-bytes/raw/1"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/1/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":29078.57372776258,"upper_bound":29214.56951054648},"point_estimate":29141.687992479634,"standard_error":34.66902542464454},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":28993.205383848453,"upper_bound":29084.249455785604},"point_estimate":29046.294876340122,"standard_error":23.730560003646726},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":118.33434684796198,"upper_bound":218.66174420496418},"point_estimate":173.33594112120258,"standard_error":25.97514274502024},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":28970.474202954738,"upper_bound":29032.924503539645},"point_estimate":29000.167132363807,"standard_error":15.859912457720318},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":229.2293863419515,"upper_bound":460.9599813951468},"point_estimate":348.32854724907486,"standard_error":59.93374174869683}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/1/new/tukey.json: -------------------------------------------------------------------------------- 1 | [28233.963932443985,28591.724306516986,29545.751970711655,29903.512344784656] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/10/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-bytes","function_id":"raw","value_str":"10","throughput":null,"full_id":"access-broad-from-bytes/raw/10","directory_name":"access-broad-from-bytes/raw/10","title":"access-broad-from-bytes/raw/10"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/10/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":266415.63769929635,"upper_bound":267079.3686451094},"point_estimate":266735.2792687273,"standard_error":168.9125778361482},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":266273.98076923075,"upper_bound":266907.5138888889},"point_estimate":266500.0404850746,"standard_error":147.4691942492755},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":889.1329645272286,"upper_bound":1553.9630619548643},"point_estimate":1158.1636778833608,"standard_error":171.77844613817246},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":265795.15025183995,"upper_bound":266660.61151482887},"point_estimate":266191.7803413625,"standard_error":221.241288513859},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1297.1658884151966,"upper_bound":2055.317664372546},"point_estimate":1693.4117838605723,"standard_error":194.16278039394894}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/10/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[4.0,8.0,12.0,16.0,20.0,24.0,28.0,32.0,36.0,40.0,44.0,48.0,52.0,56.0,60.0,64.0,68.0,72.0,76.0,80.0,84.0,88.0,92.0,96.0,100.0,104.0,108.0,112.0,116.0,120.0,124.0,128.0,132.0,136.0,140.0,144.0,148.0,152.0,156.0,160.0,164.0,168.0,172.0,176.0,180.0,184.0,188.0,192.0,196.0,200.0,204.0,208.0,212.0,216.0,220.0,224.0,228.0,232.0,236.0,240.0,244.0,248.0,252.0,256.0,260.0,264.0,268.0,272.0,276.0,280.0,284.0,288.0,292.0,296.0,300.0,304.0,308.0,312.0,316.0,320.0,324.0,328.0,332.0,336.0,340.0,344.0,348.0,352.0,356.0,360.0,364.0,368.0,372.0,376.0,380.0,384.0,388.0,392.0,396.0,400.0],"times":[1069613.0,2147597.0,3200035.0,4376881.0,5271596.0,6408827.0,7517465.0,8524463.0,9579889.0,10710733.0,11749129.0,12833930.0,13846247.0,14910893.0,15948109.0,17059569.0,18209432.0,19199222.0,20312644.0,21320282.0,22443074.0,23421706.0,24951587.0,25742097.0,26659619.0,27754699.0,29299961.0,29905484.0,30828987.0,32064860.0,33169206.0,34192274.0,35428040.0,36481623.0,37463130.0,38434682.0,39702533.0,40990605.0,41621622.0,42573877.0,43778454.0,44873021.0,46112506.0,46985085.0,48926944.0,49265967.0,49668714.0,51089503.0,52160651.0,53056755.0,54249805.0,55213452.0,56412236.0,57350126.0,59010494.0,59836721.0,61006232.0,61530303.0,62842994.0,64005278.0,65209385.0,66770159.0,67281279.0,68415874.0,69417957.0,70327127.0,71421077.0,72435668.0,73401074.0,74610671.0,75668516.0,76296259.0,77420839.0,78437881.0,79473984.0,80933160.0,81859586.0,83124505.0,83889470.0,84744800.0,86084578.0,87099612.0,88125409.0,89204721.0,90596312.0,90957210.0,92276983.0,93263153.0,93946381.0,95732397.0,98998952.0,97710132.0,99000462.0,99348428.0,100594855.0,101771606.0,102566297.0,104777990.0,106460392.0,106626803.0]} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/10/base/tukey.json: -------------------------------------------------------------------------------- 1 | [261165.26574146672,263456.94910902623,269568.1047558517,271859.78812341124] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/10/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-bytes","function_id":"raw","value_str":"10","throughput":null,"full_id":"access-broad-from-bytes/raw/10","directory_name":"access-broad-from-bytes/raw/10","title":"access-broad-from-bytes/raw/10"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/10/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":266415.63769929635,"upper_bound":267079.3686451094},"point_estimate":266735.2792687273,"standard_error":168.9125778361482},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":266273.98076923075,"upper_bound":266907.5138888889},"point_estimate":266500.0404850746,"standard_error":147.4691942492755},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":889.1329645272286,"upper_bound":1553.9630619548643},"point_estimate":1158.1636778833608,"standard_error":171.77844613817246},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":265795.15025183995,"upper_bound":266660.61151482887},"point_estimate":266191.7803413625,"standard_error":221.241288513859},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1297.1658884151966,"upper_bound":2055.317664372546},"point_estimate":1693.4117838605723,"standard_error":194.16278039394894}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/10/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[4.0,8.0,12.0,16.0,20.0,24.0,28.0,32.0,36.0,40.0,44.0,48.0,52.0,56.0,60.0,64.0,68.0,72.0,76.0,80.0,84.0,88.0,92.0,96.0,100.0,104.0,108.0,112.0,116.0,120.0,124.0,128.0,132.0,136.0,140.0,144.0,148.0,152.0,156.0,160.0,164.0,168.0,172.0,176.0,180.0,184.0,188.0,192.0,196.0,200.0,204.0,208.0,212.0,216.0,220.0,224.0,228.0,232.0,236.0,240.0,244.0,248.0,252.0,256.0,260.0,264.0,268.0,272.0,276.0,280.0,284.0,288.0,292.0,296.0,300.0,304.0,308.0,312.0,316.0,320.0,324.0,328.0,332.0,336.0,340.0,344.0,348.0,352.0,356.0,360.0,364.0,368.0,372.0,376.0,380.0,384.0,388.0,392.0,396.0,400.0],"times":[1069613.0,2147597.0,3200035.0,4376881.0,5271596.0,6408827.0,7517465.0,8524463.0,9579889.0,10710733.0,11749129.0,12833930.0,13846247.0,14910893.0,15948109.0,17059569.0,18209432.0,19199222.0,20312644.0,21320282.0,22443074.0,23421706.0,24951587.0,25742097.0,26659619.0,27754699.0,29299961.0,29905484.0,30828987.0,32064860.0,33169206.0,34192274.0,35428040.0,36481623.0,37463130.0,38434682.0,39702533.0,40990605.0,41621622.0,42573877.0,43778454.0,44873021.0,46112506.0,46985085.0,48926944.0,49265967.0,49668714.0,51089503.0,52160651.0,53056755.0,54249805.0,55213452.0,56412236.0,57350126.0,59010494.0,59836721.0,61006232.0,61530303.0,62842994.0,64005278.0,65209385.0,66770159.0,67281279.0,68415874.0,69417957.0,70327127.0,71421077.0,72435668.0,73401074.0,74610671.0,75668516.0,76296259.0,77420839.0,78437881.0,79473984.0,80933160.0,81859586.0,83124505.0,83889470.0,84744800.0,86084578.0,87099612.0,88125409.0,89204721.0,90596312.0,90957210.0,92276983.0,93263153.0,93946381.0,95732397.0,98998952.0,97710132.0,99000462.0,99348428.0,100594855.0,101771606.0,102566297.0,104777990.0,106460392.0,106626803.0]} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/10/new/tukey.json: -------------------------------------------------------------------------------- 1 | [261165.26574146672,263456.94910902623,269568.1047558517,271859.78812341124] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/20/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-bytes","function_id":"raw","value_str":"20","throughput":null,"full_id":"access-broad-from-bytes/raw/20","directory_name":"access-broad-from-bytes/raw/20","title":"access-broad-from-bytes/raw/20"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/20/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":508729.25533990125,"upper_bound":510754.4952750655},"point_estimate":509694.2698521438,"standard_error":516.4129553798217},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":508300.8,"upper_bound":509301.7471910112},"point_estimate":508922.15549547283,"standard_error":259.4325582685559},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1832.2632066139504,"upper_bound":3131.260214579313},"point_estimate":2353.775375541537,"standard_error":321.2007163967775},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":509040.96405665734,"upper_bound":511363.90265398426},"point_estimate":510110.014372691,"standard_error":595.9064058365548},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3533.596782980458,"upper_bound":6601.923803256157},"point_estimate":5182.720479540915,"standard_error":785.2417643243535}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/20/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2.0,4.0,6.0,8.0,10.0,12.0,14.0,16.0,18.0,20.0,22.0,24.0,26.0,28.0,30.0,32.0,34.0,36.0,38.0,40.0,42.0,44.0,46.0,48.0,50.0,52.0,54.0,56.0,58.0,60.0,62.0,64.0,66.0,68.0,70.0,72.0,74.0,76.0,78.0,80.0,82.0,84.0,86.0,88.0,90.0,92.0,94.0,96.0,98.0,100.0,102.0,104.0,106.0,108.0,110.0,112.0,114.0,116.0,118.0,120.0,122.0,124.0,126.0,128.0,130.0,132.0,134.0,136.0,138.0,140.0,142.0,144.0,146.0,148.0,150.0,152.0,154.0,156.0,158.0,160.0,162.0,164.0,166.0,168.0,170.0,172.0,174.0,176.0,178.0,180.0,182.0,184.0,186.0,188.0,190.0,192.0,194.0,196.0,198.0,200.0],"times":[985102.0,2086811.0,3053442.0,4097871.0,5123233.0,6330935.0,7176472.0,8072752.0,9252806.0,10210892.0,11278813.0,12311865.0,13307128.0,14269045.0,15265863.0,16290210.0,17200727.0,18382814.0,19162155.0,20138081.0,21399209.0,23459011.0,23526371.0,24414968.0,25369822.0,26311778.0,27551757.0,28409149.0,29427047.0,30497812.0,31298259.0,32498930.0,33611695.0,34423479.0,35443913.0,36483835.0,37569675.0,38643286.0,39544813.0,40507429.0,41737748.0,43578518.0,43891804.0,44653337.0,45938439.0,46866257.0,47627028.0,48754459.0,49771003.0,50555582.0,51525966.0,52739128.0,53881114.0,54979697.0,55913088.0,56997775.0,57681152.0,58697947.0,60184700.0,60773242.0,62628026.0,63131680.0,63853823.0,64774595.0,65857972.0,66914963.0,67991110.0,68956031.0,70098755.0,71347518.0,72268856.0,73091097.0,74391355.0,74960735.0,76411736.0,77640977.0,78508721.0,79303607.0,80215603.0,81191709.0,82272095.0,85443034.0,87320936.0,88538449.0,86830995.0,88808400.0,88568423.0,89599946.0,90655711.0,91632709.0,92850099.0,93717183.0,94623220.0,95824350.0,97120358.0,97659421.0,98973232.0,100594374.0,100894436.0,102273340.0]} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/20/base/tukey.json: -------------------------------------------------------------------------------- 1 | [497873.29003322264,502564.85707018274,515075.70250207634,519767.26953903644] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/20/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-bytes","function_id":"raw","value_str":"20","throughput":null,"full_id":"access-broad-from-bytes/raw/20","directory_name":"access-broad-from-bytes/raw/20","title":"access-broad-from-bytes/raw/20"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/20/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":508729.25533990125,"upper_bound":510754.4952750655},"point_estimate":509694.2698521438,"standard_error":516.4129553798217},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":508300.8,"upper_bound":509301.7471910112},"point_estimate":508922.15549547283,"standard_error":259.4325582685559},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1832.2632066139504,"upper_bound":3131.260214579313},"point_estimate":2353.775375541537,"standard_error":321.2007163967775},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":509040.96405665734,"upper_bound":511363.90265398426},"point_estimate":510110.014372691,"standard_error":595.9064058365548},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3533.596782980458,"upper_bound":6601.923803256157},"point_estimate":5182.720479540915,"standard_error":785.2417643243535}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/20/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2.0,4.0,6.0,8.0,10.0,12.0,14.0,16.0,18.0,20.0,22.0,24.0,26.0,28.0,30.0,32.0,34.0,36.0,38.0,40.0,42.0,44.0,46.0,48.0,50.0,52.0,54.0,56.0,58.0,60.0,62.0,64.0,66.0,68.0,70.0,72.0,74.0,76.0,78.0,80.0,82.0,84.0,86.0,88.0,90.0,92.0,94.0,96.0,98.0,100.0,102.0,104.0,106.0,108.0,110.0,112.0,114.0,116.0,118.0,120.0,122.0,124.0,126.0,128.0,130.0,132.0,134.0,136.0,138.0,140.0,142.0,144.0,146.0,148.0,150.0,152.0,154.0,156.0,158.0,160.0,162.0,164.0,166.0,168.0,170.0,172.0,174.0,176.0,178.0,180.0,182.0,184.0,186.0,188.0,190.0,192.0,194.0,196.0,198.0,200.0],"times":[985102.0,2086811.0,3053442.0,4097871.0,5123233.0,6330935.0,7176472.0,8072752.0,9252806.0,10210892.0,11278813.0,12311865.0,13307128.0,14269045.0,15265863.0,16290210.0,17200727.0,18382814.0,19162155.0,20138081.0,21399209.0,23459011.0,23526371.0,24414968.0,25369822.0,26311778.0,27551757.0,28409149.0,29427047.0,30497812.0,31298259.0,32498930.0,33611695.0,34423479.0,35443913.0,36483835.0,37569675.0,38643286.0,39544813.0,40507429.0,41737748.0,43578518.0,43891804.0,44653337.0,45938439.0,46866257.0,47627028.0,48754459.0,49771003.0,50555582.0,51525966.0,52739128.0,53881114.0,54979697.0,55913088.0,56997775.0,57681152.0,58697947.0,60184700.0,60773242.0,62628026.0,63131680.0,63853823.0,64774595.0,65857972.0,66914963.0,67991110.0,68956031.0,70098755.0,71347518.0,72268856.0,73091097.0,74391355.0,74960735.0,76411736.0,77640977.0,78508721.0,79303607.0,80215603.0,81191709.0,82272095.0,85443034.0,87320936.0,88538449.0,86830995.0,88808400.0,88568423.0,89599946.0,90655711.0,91632709.0,92850099.0,93717183.0,94623220.0,95824350.0,97120358.0,97659421.0,98973232.0,100594374.0,100894436.0,102273340.0]} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/20/new/tukey.json: -------------------------------------------------------------------------------- 1 | [497873.29003322264,502564.85707018274,515075.70250207634,519767.26953903644] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/30/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-bytes","function_id":"raw","value_str":"30","throughput":null,"full_id":"access-broad-from-bytes/raw/30","directory_name":"access-broad-from-bytes/raw/30","title":"access-broad-from-bytes/raw/30"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/30/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":754858.1357510401,"upper_bound":756955.4173444709},"point_estimate":755880.2094348277,"standard_error":533.903745520665},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":754006.0211038961,"upper_bound":756534.8903508772},"point_estimate":755337.6517857143,"standard_error":595.2836984140156},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3361.9624325849063,"upper_bound":5492.194585972891},"point_estimate":4586.468902375524,"standard_error":544.5309968137241},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":752988.5777295611,"upper_bound":755131.6937463045},"point_estimate":753998.7010492095,"standard_error":547.2840234216461},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4389.02796338225,"upper_bound":6198.12670660853},"point_estimate":5352.4937344017035,"standard_error":462.78121326578645}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/30/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2.0,4.0,6.0,8.0,10.0,12.0,14.0,16.0,18.0,20.0,22.0,24.0,26.0,28.0,30.0,32.0,34.0,36.0,38.0,40.0,42.0,44.0,46.0,48.0,50.0,52.0,54.0,56.0,58.0,60.0,62.0,64.0,66.0,68.0,70.0,72.0,74.0,76.0,78.0,80.0,82.0,84.0,86.0,88.0,90.0,92.0,94.0,96.0,98.0,100.0,102.0,104.0,106.0,108.0,110.0,112.0,114.0,116.0,118.0,120.0,122.0,124.0,126.0,128.0,130.0,132.0,134.0,136.0,138.0,140.0,142.0,144.0,146.0,148.0,150.0,152.0,154.0,156.0,158.0,160.0,162.0,164.0,166.0,168.0,170.0,172.0,174.0,176.0,178.0,180.0,182.0,184.0,186.0,188.0,190.0,192.0,194.0,196.0,198.0,200.0],"times":[1538192.0,2981460.0,4552364.0,6030774.0,7713627.0,9081935.0,10602147.0,12102130.0,13604217.0,15135208.0,16808783.0,18139097.0,19503593.0,21166951.0,23152058.0,24214782.0,25558914.0,27229782.0,28711055.0,30417493.0,31711924.0,33345444.0,34932781.0,36259671.0,38217821.0,39520267.0,41343481.0,42592664.0,44023228.0,45942420.0,47079758.0,48572017.0,49956448.0,51573706.0,53006743.0,54496682.0,56077112.0,57508208.0,59169619.0,60395564.0,61776568.0,63533561.0,64789747.0,67874415.0,68568224.0,69850200.0,70718437.0,72484118.0,73898824.0,75450729.0,76773777.0,78224615.0,79805368.0,81506984.0,82852945.0,84589735.0,86095810.0,87806738.0,88706528.0,90052361.0,91738135.0,92883951.0,96470589.0,97679345.0,99851068.0,99417098.0,100801472.0,102057206.0,103710218.0,104900609.0,106392079.0,107838948.0,109465723.0,111444658.0,112461210.0,113749772.0,116141455.0,116939545.0,118600236.0,119871373.0,121762080.0,123164653.0,125621138.0,126554645.0,128654349.0,130376828.0,131483005.0,134465521.0,134760674.0,136435159.0,137668662.0,138698074.0,140417976.0,141527839.0,143079757.0,144333001.0,145570751.0,146833249.0,148263008.0,150444596.0]} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/30/base/tukey.json: -------------------------------------------------------------------------------- 1 | [734885.6016502682,743546.3882770571,766641.8192818277,775302.6059086167] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/30/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-bytes","function_id":"raw","value_str":"30","throughput":null,"full_id":"access-broad-from-bytes/raw/30","directory_name":"access-broad-from-bytes/raw/30","title":"access-broad-from-bytes/raw/30"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/30/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":754858.1357510401,"upper_bound":756955.4173444709},"point_estimate":755880.2094348277,"standard_error":533.903745520665},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":754006.0211038961,"upper_bound":756534.8903508772},"point_estimate":755337.6517857143,"standard_error":595.2836984140156},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3361.9624325849063,"upper_bound":5492.194585972891},"point_estimate":4586.468902375524,"standard_error":544.5309968137241},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":752988.5777295611,"upper_bound":755131.6937463045},"point_estimate":753998.7010492095,"standard_error":547.2840234216461},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4389.02796338225,"upper_bound":6198.12670660853},"point_estimate":5352.4937344017035,"standard_error":462.78121326578645}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/30/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2.0,4.0,6.0,8.0,10.0,12.0,14.0,16.0,18.0,20.0,22.0,24.0,26.0,28.0,30.0,32.0,34.0,36.0,38.0,40.0,42.0,44.0,46.0,48.0,50.0,52.0,54.0,56.0,58.0,60.0,62.0,64.0,66.0,68.0,70.0,72.0,74.0,76.0,78.0,80.0,82.0,84.0,86.0,88.0,90.0,92.0,94.0,96.0,98.0,100.0,102.0,104.0,106.0,108.0,110.0,112.0,114.0,116.0,118.0,120.0,122.0,124.0,126.0,128.0,130.0,132.0,134.0,136.0,138.0,140.0,142.0,144.0,146.0,148.0,150.0,152.0,154.0,156.0,158.0,160.0,162.0,164.0,166.0,168.0,170.0,172.0,174.0,176.0,178.0,180.0,182.0,184.0,186.0,188.0,190.0,192.0,194.0,196.0,198.0,200.0],"times":[1538192.0,2981460.0,4552364.0,6030774.0,7713627.0,9081935.0,10602147.0,12102130.0,13604217.0,15135208.0,16808783.0,18139097.0,19503593.0,21166951.0,23152058.0,24214782.0,25558914.0,27229782.0,28711055.0,30417493.0,31711924.0,33345444.0,34932781.0,36259671.0,38217821.0,39520267.0,41343481.0,42592664.0,44023228.0,45942420.0,47079758.0,48572017.0,49956448.0,51573706.0,53006743.0,54496682.0,56077112.0,57508208.0,59169619.0,60395564.0,61776568.0,63533561.0,64789747.0,67874415.0,68568224.0,69850200.0,70718437.0,72484118.0,73898824.0,75450729.0,76773777.0,78224615.0,79805368.0,81506984.0,82852945.0,84589735.0,86095810.0,87806738.0,88706528.0,90052361.0,91738135.0,92883951.0,96470589.0,97679345.0,99851068.0,99417098.0,100801472.0,102057206.0,103710218.0,104900609.0,106392079.0,107838948.0,109465723.0,111444658.0,112461210.0,113749772.0,116141455.0,116939545.0,118600236.0,119871373.0,121762080.0,123164653.0,125621138.0,126554645.0,128654349.0,130376828.0,131483005.0,134465521.0,134760674.0,136435159.0,137668662.0,138698074.0,140417976.0,141527839.0,143079757.0,144333001.0,145570751.0,146833249.0,148263008.0,150444596.0]} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/30/new/tukey.json: -------------------------------------------------------------------------------- 1 | [734885.6016502682,743546.3882770571,766641.8192818277,775302.6059086167] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/40/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-bytes","function_id":"raw","value_str":"40","throughput":null,"full_id":"access-broad-from-bytes/raw/40","directory_name":"access-broad-from-bytes/raw/40","title":"access-broad-from-bytes/raw/40"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/40/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1010686.7029994641,"upper_bound":1028886.6258794976},"point_estimate":1018085.4806276801,"standard_error":4788.5148900211125},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1015834.3260869565,"upper_bound":1025615.6034482758},"point_estimate":1023091.0387500001,"standard_error":2515.04927053159},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":9043.769118199933,"upper_bound":26912.646984808744},"point_estimate":15573.101490069583,"standard_error":4518.503974006386},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":996378.8809567534,"upper_bound":1004050.9237450352},"point_estimate":999876.6645337668,"standard_error":1957.7911899427188},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":18452.37089048428,"upper_bound":78227.62789077578},"point_estimate":48238.1152409982,"standard_error":19997.28325431164}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/40/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0,18.0,19.0,20.0,21.0,22.0,23.0,24.0,25.0,26.0,27.0,28.0,29.0,30.0,31.0,32.0,33.0,34.0,35.0,36.0,37.0,38.0,39.0,40.0,41.0,42.0,43.0,44.0,45.0,46.0,47.0,48.0,49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0,72.0,73.0,74.0,75.0,76.0,77.0,78.0,79.0,80.0,81.0,82.0,83.0,84.0,85.0,86.0,87.0,88.0,89.0,90.0,91.0,92.0,93.0,94.0,95.0,96.0,97.0,98.0,99.0,100.0],"times":[1066625.0,2044291.0,3016251.0,4182853.0,7252529.0,6209936.0,7333938.0,8289843.0,9294867.0,10361993.0,11230134.0,12352751.0,13422336.0,14100091.0,15476609.0,16373671.0,17173467.0,18509857.0,19253128.0,20418874.0,21441933.0,22577891.0,23850690.0,24988107.0,25675192.0,26714435.0,28014947.0,28530603.0,29881577.0,30726372.0,31762817.0,32806140.0,33542207.0,34963510.0,35950509.0,36878419.0,37947950.0,39014580.0,39505503.0,41410274.0,41881365.0,43192001.0,44460686.0,45333863.0,46172679.0,46728379.0,48224798.0,49248959.0,50178364.0,51141382.0,52285963.0,53216938.0,54597552.0,55582067.0,56244007.0,57317688.0,58507661.0,59485705.0,60572860.0,61880676.0,62686813.0,63917525.0,64659439.0,65787435.0,66958565.0,64985744.0,63397486.0,66376132.0,67992998.0,69757335.0,70069613.0,70883045.0,71976188.0,74145719.0,74864596.0,75818599.0,76192288.0,77044739.0,77905052.0,79059137.0,79814344.0,81088773.0,82293964.0,83035410.0,84264137.0,85660448.0,86723751.0,87488811.0,88324507.0,88680159.0,90062002.0,90850346.0,91999327.0,93076313.0,94042356.0,95076843.0,95705484.0,98107177.0,98187847.0,98976344.0]} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/40/base/tukey.json: -------------------------------------------------------------------------------- 1 | [881896.8231401542,936808.7672199493,1083240.6180994029,1138152.562179198] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/40/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-bytes","function_id":"raw","value_str":"40","throughput":null,"full_id":"access-broad-from-bytes/raw/40","directory_name":"access-broad-from-bytes/raw/40","title":"access-broad-from-bytes/raw/40"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/40/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1010686.7029994641,"upper_bound":1028886.6258794976},"point_estimate":1018085.4806276801,"standard_error":4788.5148900211125},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1015834.3260869565,"upper_bound":1025615.6034482758},"point_estimate":1023091.0387500001,"standard_error":2515.04927053159},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":9043.769118199933,"upper_bound":26912.646984808744},"point_estimate":15573.101490069583,"standard_error":4518.503974006386},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":996378.8809567534,"upper_bound":1004050.9237450352},"point_estimate":999876.6645337668,"standard_error":1957.7911899427188},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":18452.37089048428,"upper_bound":78227.62789077578},"point_estimate":48238.1152409982,"standard_error":19997.28325431164}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/40/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0,18.0,19.0,20.0,21.0,22.0,23.0,24.0,25.0,26.0,27.0,28.0,29.0,30.0,31.0,32.0,33.0,34.0,35.0,36.0,37.0,38.0,39.0,40.0,41.0,42.0,43.0,44.0,45.0,46.0,47.0,48.0,49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0,72.0,73.0,74.0,75.0,76.0,77.0,78.0,79.0,80.0,81.0,82.0,83.0,84.0,85.0,86.0,87.0,88.0,89.0,90.0,91.0,92.0,93.0,94.0,95.0,96.0,97.0,98.0,99.0,100.0],"times":[1066625.0,2044291.0,3016251.0,4182853.0,7252529.0,6209936.0,7333938.0,8289843.0,9294867.0,10361993.0,11230134.0,12352751.0,13422336.0,14100091.0,15476609.0,16373671.0,17173467.0,18509857.0,19253128.0,20418874.0,21441933.0,22577891.0,23850690.0,24988107.0,25675192.0,26714435.0,28014947.0,28530603.0,29881577.0,30726372.0,31762817.0,32806140.0,33542207.0,34963510.0,35950509.0,36878419.0,37947950.0,39014580.0,39505503.0,41410274.0,41881365.0,43192001.0,44460686.0,45333863.0,46172679.0,46728379.0,48224798.0,49248959.0,50178364.0,51141382.0,52285963.0,53216938.0,54597552.0,55582067.0,56244007.0,57317688.0,58507661.0,59485705.0,60572860.0,61880676.0,62686813.0,63917525.0,64659439.0,65787435.0,66958565.0,64985744.0,63397486.0,66376132.0,67992998.0,69757335.0,70069613.0,70883045.0,71976188.0,74145719.0,74864596.0,75818599.0,76192288.0,77044739.0,77905052.0,79059137.0,79814344.0,81088773.0,82293964.0,83035410.0,84264137.0,85660448.0,86723751.0,87488811.0,88324507.0,88680159.0,90062002.0,90850346.0,91999327.0,93076313.0,94042356.0,95076843.0,95705484.0,98107177.0,98187847.0,98976344.0]} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/40/new/tukey.json: -------------------------------------------------------------------------------- 1 | [881896.8231401542,936808.7672199493,1083240.6180994029,1138152.562179198] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/50/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-bytes","function_id":"raw","value_str":"50","throughput":null,"full_id":"access-broad-from-bytes/raw/50","directory_name":"access-broad-from-bytes/raw/50","title":"access-broad-from-bytes/raw/50"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/50/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1233062.7187568904,"upper_bound":1249914.5717198744},"point_estimate":1240139.9808245962,"standard_error":4373.572224231594},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1229790.814092827,"upper_bound":1233566.4838709678},"point_estimate":1231069.8848270439,"standard_error":973.9395598387874},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":5300.990311451105,"upper_bound":9461.02599912784},"point_estimate":6795.40564893276,"standard_error":1057.6739841285382},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1229259.6250094657,"upper_bound":1265152.881839671},"point_estimate":1241109.7140564504,"standard_error":10559.656722663794},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":9120.576552162811,"upper_bound":69957.72031790724},"point_estimate":44239.04897432121,"standard_error":15821.961588524726}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/50/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0,18.0,19.0,20.0,21.0,22.0,23.0,24.0,25.0,26.0,27.0,28.0,29.0,30.0,31.0,32.0,33.0,34.0,35.0,36.0,37.0,38.0,39.0,40.0,41.0,42.0,43.0,44.0,45.0,46.0,47.0,48.0,49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0,72.0,73.0,74.0,75.0,76.0,77.0,78.0,79.0,80.0,81.0,82.0,83.0,84.0,85.0,86.0,87.0,88.0,89.0,90.0,91.0,92.0,93.0,94.0,95.0,96.0,97.0,98.0,99.0,100.0],"times":[1240004.0,2508852.0,3679414.0,5675988.0,6918895.0,7525350.0,8738999.0,9824748.0,11203909.0,12361615.0,13688328.0,14915901.0,16001625.0,17222130.0,18504874.0,19769936.0,20931711.0,22157004.0,23368774.0,24628363.0,26649669.0,27271976.0,28391115.0,29332525.0,30383831.0,32947332.0,33947892.0,34542056.0,35740782.0,36744508.0,38495687.0,39469115.0,40280380.0,41758923.0,43196087.0,44671483.0,45388456.0,46599406.0,47986228.0,49003587.0,50317149.0,51446851.0,52664399.0,54015193.0,56018280.0,56685045.0,57682156.0,59089822.0,59998163.0,61430922.0,63022551.0,64276914.0,65248396.0,66458499.0,67989665.0,69202897.0,70839246.0,71896986.0,72844908.0,74398379.0,75699861.0,76481122.0,77887842.0,78917845.0,81049509.0,81701027.0,83051570.0,83938040.0,84872613.0,86317113.0,87880105.0,88384705.0,89647765.0,90802451.0,92213243.0,94211111.0,94663494.0,95671159.0,97175666.0,98081463.0,99029684.0,100692458.0,101584592.0,103026131.0,104205152.0,106112473.0,106723731.0,107798710.0,109243352.0,110246930.0,111785175.0,113336513.0,114092429.0,115323003.0,116900717.0,118023318.0,118981941.0,120068564.0,120917373.0,159848121.0]} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/50/base/tukey.json: -------------------------------------------------------------------------------- 1 | [1194667.237099541,1210836.2314738648,1253953.549805395,1270122.544179719] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/50/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-bytes","function_id":"raw","value_str":"50","throughput":null,"full_id":"access-broad-from-bytes/raw/50","directory_name":"access-broad-from-bytes/raw/50","title":"access-broad-from-bytes/raw/50"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/50/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1233062.7187568904,"upper_bound":1249914.5717198744},"point_estimate":1240139.9808245962,"standard_error":4373.572224231594},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1229790.814092827,"upper_bound":1233566.4838709678},"point_estimate":1231069.8848270439,"standard_error":973.9395598387874},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":5300.990311451105,"upper_bound":9461.02599912784},"point_estimate":6795.40564893276,"standard_error":1057.6739841285382},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1229259.6250094657,"upper_bound":1265152.881839671},"point_estimate":1241109.7140564504,"standard_error":10559.656722663794},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":9120.576552162811,"upper_bound":69957.72031790724},"point_estimate":44239.04897432121,"standard_error":15821.961588524726}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/50/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0,18.0,19.0,20.0,21.0,22.0,23.0,24.0,25.0,26.0,27.0,28.0,29.0,30.0,31.0,32.0,33.0,34.0,35.0,36.0,37.0,38.0,39.0,40.0,41.0,42.0,43.0,44.0,45.0,46.0,47.0,48.0,49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0,72.0,73.0,74.0,75.0,76.0,77.0,78.0,79.0,80.0,81.0,82.0,83.0,84.0,85.0,86.0,87.0,88.0,89.0,90.0,91.0,92.0,93.0,94.0,95.0,96.0,97.0,98.0,99.0,100.0],"times":[1240004.0,2508852.0,3679414.0,5675988.0,6918895.0,7525350.0,8738999.0,9824748.0,11203909.0,12361615.0,13688328.0,14915901.0,16001625.0,17222130.0,18504874.0,19769936.0,20931711.0,22157004.0,23368774.0,24628363.0,26649669.0,27271976.0,28391115.0,29332525.0,30383831.0,32947332.0,33947892.0,34542056.0,35740782.0,36744508.0,38495687.0,39469115.0,40280380.0,41758923.0,43196087.0,44671483.0,45388456.0,46599406.0,47986228.0,49003587.0,50317149.0,51446851.0,52664399.0,54015193.0,56018280.0,56685045.0,57682156.0,59089822.0,59998163.0,61430922.0,63022551.0,64276914.0,65248396.0,66458499.0,67989665.0,69202897.0,70839246.0,71896986.0,72844908.0,74398379.0,75699861.0,76481122.0,77887842.0,78917845.0,81049509.0,81701027.0,83051570.0,83938040.0,84872613.0,86317113.0,87880105.0,88384705.0,89647765.0,90802451.0,92213243.0,94211111.0,94663494.0,95671159.0,97175666.0,98081463.0,99029684.0,100692458.0,101584592.0,103026131.0,104205152.0,106112473.0,106723731.0,107798710.0,109243352.0,110246930.0,111785175.0,113336513.0,114092429.0,115323003.0,116900717.0,118023318.0,118981941.0,120068564.0,120917373.0,159848121.0]} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-bytes/raw/50/new/tukey.json: -------------------------------------------------------------------------------- 1 | [1194667.237099541,1210836.2314738648,1253953.549805395,1270122.544179719] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/1/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-type","function_id":"parsed","value_str":"1","throughput":null,"full_id":"access-broad-from-type/parsed/1","directory_name":"access-broad-from-type/parsed/1","title":"access-broad-from-type/parsed/1"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/1/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":31.052924668384534,"upper_bound":31.436514428006173},"point_estimate":31.22647800729029,"standard_error":0.09839101768262716},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":30.780155623333894,"upper_bound":31.280658106983037},"point_estimate":30.868351940608665,"standard_error":0.13950912540362226},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.2455881358300476,"upper_bound":0.708294859023552},"point_estimate":0.4136976979317019,"standard_error":0.13071209383441132},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":31.053510846800386,"upper_bound":31.719507212675747},"point_estimate":31.348101770262023,"standard_error":0.17113289875696122},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.45625680224033177,"upper_bound":1.373677167289109},"point_estimate":0.9889873634672267,"standard_error":0.22245600715487937}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/1/base/tukey.json: -------------------------------------------------------------------------------- 1 | [28.310079728166762,29.500345046724654,32.674385896212364,33.864651214770255] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/1/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-type","function_id":"parsed","value_str":"1","throughput":null,"full_id":"access-broad-from-type/parsed/1","directory_name":"access-broad-from-type/parsed/1","title":"access-broad-from-type/parsed/1"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/1/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":31.052924668384534,"upper_bound":31.436514428006173},"point_estimate":31.22647800729029,"standard_error":0.09839101768262716},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":30.780155623333894,"upper_bound":31.280658106983037},"point_estimate":30.868351940608665,"standard_error":0.13950912540362226},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.2455881358300476,"upper_bound":0.708294859023552},"point_estimate":0.4136976979317019,"standard_error":0.13071209383441132},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":31.053510846800386,"upper_bound":31.719507212675747},"point_estimate":31.348101770262023,"standard_error":0.17113289875696122},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.45625680224033177,"upper_bound":1.373677167289109},"point_estimate":0.9889873634672267,"standard_error":0.22245600715487937}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/1/new/tukey.json: -------------------------------------------------------------------------------- 1 | [28.310079728166762,29.500345046724654,32.674385896212364,33.864651214770255] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/10/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-type","function_id":"parsed","value_str":"10","throughput":null,"full_id":"access-broad-from-type/parsed/10","directory_name":"access-broad-from-type/parsed/10","title":"access-broad-from-type/parsed/10"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/10/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":305.9496140613343,"upper_bound":317.0141617475691},"point_estimate":310.8828003946948,"standard_error":2.835104892573176},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":299.49959169935494,"upper_bound":306.55803010406515},"point_estimate":303.01512399890134,"standard_error":1.9439869870727944},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":8.03767251924499,"upper_bound":16.770583966907974},"point_estimate":12.27888247971744,"standard_error":2.4390198991627488},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":310.66924849052924,"upper_bound":326.3404466930212},"point_estimate":317.6010189992166,"standard_error":4.0214841758744},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":13.921123275994555,"upper_bound":41.0106474746719},"point_estimate":28.30699839812775,"standard_error":7.117582522620585}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/10/base/tukey.json: -------------------------------------------------------------------------------- 1 | [229.69510926801604,262.80338793120063,351.09213103302613,384.20040969621067] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/10/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-type","function_id":"parsed","value_str":"10","throughput":null,"full_id":"access-broad-from-type/parsed/10","directory_name":"access-broad-from-type/parsed/10","title":"access-broad-from-type/parsed/10"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/10/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":305.9496140613343,"upper_bound":317.0141617475691},"point_estimate":310.8828003946948,"standard_error":2.835104892573176},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":299.49959169935494,"upper_bound":306.55803010406515},"point_estimate":303.01512399890134,"standard_error":1.9439869870727944},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":8.03767251924499,"upper_bound":16.770583966907974},"point_estimate":12.27888247971744,"standard_error":2.4390198991627488},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":310.66924849052924,"upper_bound":326.3404466930212},"point_estimate":317.6010189992166,"standard_error":4.0214841758744},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":13.921123275994555,"upper_bound":41.0106474746719},"point_estimate":28.30699839812775,"standard_error":7.117582522620585}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/10/new/tukey.json: -------------------------------------------------------------------------------- 1 | [229.69510926801604,262.80338793120063,351.09213103302613,384.20040969621067] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/20/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-type","function_id":"parsed","value_str":"20","throughput":null,"full_id":"access-broad-from-type/parsed/20","directory_name":"access-broad-from-type/parsed/20","title":"access-broad-from-type/parsed/20"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/20/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":592.0060101259825,"upper_bound":596.4187681917376},"point_estimate":594.1190309353749,"standard_error":1.128630537154042},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":588.4297026601267,"upper_bound":591.6797321972002},"point_estimate":589.7388653160594,"standard_error":0.8831175848128414},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3.624320231384228,"upper_bound":7.693673714409088},"point_estimate":5.812156276132969,"standard_error":1.0933374757883887},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":590.9752243195029,"upper_bound":595.8703961246792},"point_estimate":593.2518420144446,"standard_error":1.251838608431052},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":8.876203688461455,"upper_bound":13.660999591840259},"point_estimate":11.336530372569705,"standard_error":1.2277005616957979}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/20/base/tukey.json: -------------------------------------------------------------------------------- 1 | [557.975321401615,572.6155996297763,611.6563415715397,626.2966197997009] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/20/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-type","function_id":"parsed","value_str":"20","throughput":null,"full_id":"access-broad-from-type/parsed/20","directory_name":"access-broad-from-type/parsed/20","title":"access-broad-from-type/parsed/20"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/20/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":592.0060101259825,"upper_bound":596.4187681917376},"point_estimate":594.1190309353749,"standard_error":1.128630537154042},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":588.4297026601267,"upper_bound":591.6797321972002},"point_estimate":589.7388653160594,"standard_error":0.8831175848128414},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3.624320231384228,"upper_bound":7.693673714409088},"point_estimate":5.812156276132969,"standard_error":1.0933374757883887},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":590.9752243195029,"upper_bound":595.8703961246792},"point_estimate":593.2518420144446,"standard_error":1.251838608431052},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":8.876203688461455,"upper_bound":13.660999591840259},"point_estimate":11.336530372569705,"standard_error":1.2277005616957979}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/20/new/tukey.json: -------------------------------------------------------------------------------- 1 | [557.975321401615,572.6155996297763,611.6563415715397,626.2966197997009] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/30/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-type","function_id":"parsed","value_str":"30","throughput":null,"full_id":"access-broad-from-type/parsed/30","directory_name":"access-broad-from-type/parsed/30","title":"access-broad-from-type/parsed/30"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/30/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":919.7239116461493,"upper_bound":926.34062363191},"point_estimate":922.9161765666238,"standard_error":1.6834497762690352},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":916.6631345777164,"upper_bound":922.4293030007528},"point_estimate":918.9637068157184,"standard_error":1.5695512254916322},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":8.595018077662273,"upper_bound":15.872891477740593},"point_estimate":11.241513328540128,"standard_error":1.8713131183551053},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":915.6948038339012,"upper_bound":925.56341855737},"point_estimate":920.2796112789589,"standard_error":2.527197783586656},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":13.0903304236383,"upper_bound":20.479905192766747},"point_estimate":16.85180290387765,"standard_error":1.9038878862659332}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/30/base/tukey.json: -------------------------------------------------------------------------------- 1 | [861.3246613893904,886.7246904971462,954.4581014511618,979.8581305589178] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/30/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-type","function_id":"parsed","value_str":"30","throughput":null,"full_id":"access-broad-from-type/parsed/30","directory_name":"access-broad-from-type/parsed/30","title":"access-broad-from-type/parsed/30"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/30/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":919.7239116461493,"upper_bound":926.34062363191},"point_estimate":922.9161765666238,"standard_error":1.6834497762690352},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":916.6631345777164,"upper_bound":922.4293030007528},"point_estimate":918.9637068157184,"standard_error":1.5695512254916322},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":8.595018077662273,"upper_bound":15.872891477740593},"point_estimate":11.241513328540128,"standard_error":1.8713131183551053},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":915.6948038339012,"upper_bound":925.56341855737},"point_estimate":920.2796112789589,"standard_error":2.527197783586656},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":13.0903304236383,"upper_bound":20.479905192766747},"point_estimate":16.85180290387765,"standard_error":1.9038878862659332}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/30/new/tukey.json: -------------------------------------------------------------------------------- 1 | [861.3246613893904,886.7246904971462,954.4581014511618,979.8581305589178] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/40/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-type","function_id":"parsed","value_str":"40","throughput":null,"full_id":"access-broad-from-type/parsed/40","directory_name":"access-broad-from-type/parsed/40","title":"access-broad-from-type/parsed/40"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/40/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1218.0455086556456,"upper_bound":1226.5840348502725},"point_estimate":1222.1371061261807,"standard_error":2.179649685174908},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1215.4078850855747,"upper_bound":1223.439129128507},"point_estimate":1217.951289248488,"standard_error":1.9019592538652346},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":14.935950598115586,"upper_bound":23.232794358010786},"point_estimate":18.339242609064247,"standard_error":2.0729914333105395},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1212.2805331969848,"upper_bound":1223.4576489076346},"point_estimate":1217.3698955306982,"standard_error":2.8509878795752193},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":16.926429901900974,"upper_bound":27.510109048906184},"point_estimate":22.000305297171458,"standard_error":2.7776919465382157}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/40/base/tukey.json: -------------------------------------------------------------------------------- 1 | [1128.9267319747185,1167.6505743851772,1270.9141541464,1309.6379965568585] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/40/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-type","function_id":"parsed","value_str":"40","throughput":null,"full_id":"access-broad-from-type/parsed/40","directory_name":"access-broad-from-type/parsed/40","title":"access-broad-from-type/parsed/40"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/40/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1218.0455086556456,"upper_bound":1226.5840348502725},"point_estimate":1222.1371061261807,"standard_error":2.179649685174908},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1215.4078850855747,"upper_bound":1223.439129128507},"point_estimate":1217.951289248488,"standard_error":1.9019592538652346},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":14.935950598115586,"upper_bound":23.232794358010786},"point_estimate":18.339242609064247,"standard_error":2.0729914333105395},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1212.2805331969848,"upper_bound":1223.4576489076346},"point_estimate":1217.3698955306982,"standard_error":2.8509878795752193},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":16.926429901900974,"upper_bound":27.510109048906184},"point_estimate":22.000305297171458,"standard_error":2.7776919465382157}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/40/new/tukey.json: -------------------------------------------------------------------------------- 1 | [1128.9267319747185,1167.6505743851772,1270.9141541464,1309.6379965568585] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/50/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-type","function_id":"parsed","value_str":"50","throughput":null,"full_id":"access-broad-from-type/parsed/50","directory_name":"access-broad-from-type/parsed/50","title":"access-broad-from-type/parsed/50"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/50/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1511.8223925017392,"upper_bound":1533.438139718468},"point_estimate":1522.65348408109,"standard_error":5.524156033565426},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1530.1403687966445,"upper_bound":1541.823064770932},"point_estimate":1535.3599756225647,"standard_error":3.048723015380134},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.557293958081424,"upper_bound":49.64982554034044},"point_estimate":36.24737774510598,"standard_error":6.165082465571064},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1474.7371197482648,"upper_bound":1502.8850448223518},"point_estimate":1487.4385580707042,"standard_error":7.181230987994413},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":46.71251836713615,"upper_bound":64.4233297348494},"point_estimate":55.61372644805524,"standard_error":4.524125376400123}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/50/base/tukey.json: -------------------------------------------------------------------------------- 1 | [1219.2772437504243,1345.4682660095702,1681.977658700626,1808.168680959772] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/50/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-type","function_id":"parsed","value_str":"50","throughput":null,"full_id":"access-broad-from-type/parsed/50","directory_name":"access-broad-from-type/parsed/50","title":"access-broad-from-type/parsed/50"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/50/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1511.8223925017392,"upper_bound":1533.438139718468},"point_estimate":1522.65348408109,"standard_error":5.524156033565426},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1530.1403687966445,"upper_bound":1541.823064770932},"point_estimate":1535.3599756225647,"standard_error":3.048723015380134},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.557293958081424,"upper_bound":49.64982554034044},"point_estimate":36.24737774510598,"standard_error":6.165082465571064},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1474.7371197482648,"upper_bound":1502.8850448223518},"point_estimate":1487.4385580707042,"standard_error":7.181230987994413},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":46.71251836713615,"upper_bound":64.4233297348494},"point_estimate":55.61372644805524,"standard_error":4.524125376400123}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/parsed/50/new/tukey.json: -------------------------------------------------------------------------------- 1 | [1219.2772437504243,1345.4682660095702,1681.977658700626,1808.168680959772] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/1/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-type","function_id":"raw","value_str":"1","throughput":null,"full_id":"access-broad-from-type/raw/1","directory_name":"access-broad-from-type/raw/1","title":"access-broad-from-type/raw/1"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/1/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25472.3010857981,"upper_bound":25891.713807911816},"point_estimate":25627.529856796842,"standard_error":117.35097818005839},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25421.381764851692,"upper_bound":25482.016467236466},"point_estimate":25442.88973938974,"standard_error":18.282322042344887},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":135.56540849781769,"upper_bound":223.91961006756713},"point_estimate":181.2496318473196,"standard_error":22.10312632720146},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25388.288109493675,"upper_bound":26457.643411858946},"point_estimate":25768.869701530428,"standard_error":303.7140976651803},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":202.29709955945233,"upper_bound":1991.4903017574868},"point_estimate":1181.4595956675341,"standard_error":608.6281670195619}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/1/base/tukey.json: -------------------------------------------------------------------------------- 1 | [24539.85442134703,24938.10538270529,26000.107946327313,26398.35890768557] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/1/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-type","function_id":"raw","value_str":"1","throughput":null,"full_id":"access-broad-from-type/raw/1","directory_name":"access-broad-from-type/raw/1","title":"access-broad-from-type/raw/1"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/1/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25472.3010857981,"upper_bound":25891.713807911816},"point_estimate":25627.529856796842,"standard_error":117.35097818005839},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25421.381764851692,"upper_bound":25482.016467236466},"point_estimate":25442.88973938974,"standard_error":18.282322042344887},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":135.56540849781769,"upper_bound":223.91961006756713},"point_estimate":181.2496318473196,"standard_error":22.10312632720146},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25388.288109493675,"upper_bound":26457.643411858946},"point_estimate":25768.869701530428,"standard_error":303.7140976651803},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":202.29709955945233,"upper_bound":1991.4903017574868},"point_estimate":1181.4595956675341,"standard_error":608.6281670195619}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/1/new/tukey.json: -------------------------------------------------------------------------------- 1 | [24539.85442134703,24938.10538270529,26000.107946327313,26398.35890768557] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/10/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-type","function_id":"raw","value_str":"10","throughput":null,"full_id":"access-broad-from-type/raw/10","directory_name":"access-broad-from-type/raw/10","title":"access-broad-from-type/raw/10"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/10/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":243608.4492924658,"upper_bound":248353.8963214217},"point_estimate":245661.48382991154,"standard_error":1220.7963831266939},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":239588.85915492958,"upper_bound":248658.59523809524},"point_estimate":240548.89138513512,"standard_error":2532.356817864847},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2584.4020279347997,"upper_bound":12128.394058326614},"point_estimate":4743.865050065282,"standard_error":2664.5416821933713},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":239407.66940597346,"upper_bound":242078.6920997607},"point_estimate":240407.61474508644,"standard_error":700.5885675429525},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6566.156093936291,"upper_bound":18784.245316318345},"point_estimate":12322.141843784733,"standard_error":3969.8660217231336}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/10/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[4.0,8.0,12.0,16.0,20.0,24.0,28.0,32.0,36.0,40.0,44.0,48.0,52.0,56.0,60.0,64.0,68.0,72.0,76.0,80.0,84.0,88.0,92.0,96.0,100.0,104.0,108.0,112.0,116.0,120.0,124.0,128.0,132.0,136.0,140.0,144.0,148.0,152.0,156.0,160.0,164.0,168.0,172.0,176.0,180.0,184.0,188.0,192.0,196.0,200.0,204.0,208.0,212.0,216.0,220.0,224.0,228.0,232.0,236.0,240.0,244.0,248.0,252.0,256.0,260.0,264.0,268.0,272.0,276.0,280.0,284.0,288.0,292.0,296.0,300.0,304.0,308.0,312.0,316.0,320.0,324.0,328.0,332.0,336.0,340.0,344.0,348.0,352.0,356.0,360.0,364.0,368.0,372.0,376.0,380.0,384.0,388.0,392.0,396.0,400.0],"times":[1028032.0,2026732.0,3093099.0,4140354.0,5249472.0,6028241.0,7117242.0,8057047.0,9144900.0,10025912.0,11048309.0,12090918.0,13563054.0,14250121.0,15145129.0,16026344.0,17136953.0,18236003.0,18784136.0,19905160.0,20887322.0,22280920.0,22834906.0,24123437.0,25272876.0,26067082.0,27241833.0,28089479.0,28876787.0,30093382.0,30920991.0,32130751.0,32777031.0,34224000.0,35044025.0,37132919.0,37309360.0,38077400.0,39083143.0,40037057.0,41369066.0,41980356.0,42944573.0,60789256.0,43867392.0,42572098.0,43920824.0,45872131.0,46512436.0,47321373.0,48534432.0,49649227.0,50433943.0,51543100.0,52560312.0,53581315.0,54414454.0,56446042.0,56494656.0,57569089.0,58785527.0,59268839.0,60496824.0,61254458.0,62291344.0,63208876.0,64675795.0,65144509.0,66110305.0,66902795.0,68043236.0,69405941.0,70003958.0,71231518.0,71895237.0,72474472.0,73562236.0,74825961.0,75397639.0,76944244.0,77816857.0,78314138.0,79765178.0,79910656.0,81158139.0,81867323.0,83503405.0,83873341.0,84868962.0,85813207.0,86314000.0,87479605.0,88361055.0,90083864.0,90416512.0,91384176.0,91999560.0,93527300.0,94066899.0,95163718.0]} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/10/base/tukey.json: -------------------------------------------------------------------------------- 1 | [201677.62691584608,220188.74260809273,269551.7177874171,288062.83347966376] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/10/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-type","function_id":"raw","value_str":"10","throughput":null,"full_id":"access-broad-from-type/raw/10","directory_name":"access-broad-from-type/raw/10","title":"access-broad-from-type/raw/10"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/10/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":243608.4492924658,"upper_bound":248353.8963214217},"point_estimate":245661.48382991154,"standard_error":1220.7963831266939},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":239588.85915492958,"upper_bound":248658.59523809524},"point_estimate":240548.89138513512,"standard_error":2532.356817864847},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2584.4020279347997,"upper_bound":12128.394058326614},"point_estimate":4743.865050065282,"standard_error":2664.5416821933713},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":239407.66940597346,"upper_bound":242078.6920997607},"point_estimate":240407.61474508644,"standard_error":700.5885675429525},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6566.156093936291,"upper_bound":18784.245316318345},"point_estimate":12322.141843784733,"standard_error":3969.8660217231336}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/10/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[4.0,8.0,12.0,16.0,20.0,24.0,28.0,32.0,36.0,40.0,44.0,48.0,52.0,56.0,60.0,64.0,68.0,72.0,76.0,80.0,84.0,88.0,92.0,96.0,100.0,104.0,108.0,112.0,116.0,120.0,124.0,128.0,132.0,136.0,140.0,144.0,148.0,152.0,156.0,160.0,164.0,168.0,172.0,176.0,180.0,184.0,188.0,192.0,196.0,200.0,204.0,208.0,212.0,216.0,220.0,224.0,228.0,232.0,236.0,240.0,244.0,248.0,252.0,256.0,260.0,264.0,268.0,272.0,276.0,280.0,284.0,288.0,292.0,296.0,300.0,304.0,308.0,312.0,316.0,320.0,324.0,328.0,332.0,336.0,340.0,344.0,348.0,352.0,356.0,360.0,364.0,368.0,372.0,376.0,380.0,384.0,388.0,392.0,396.0,400.0],"times":[1028032.0,2026732.0,3093099.0,4140354.0,5249472.0,6028241.0,7117242.0,8057047.0,9144900.0,10025912.0,11048309.0,12090918.0,13563054.0,14250121.0,15145129.0,16026344.0,17136953.0,18236003.0,18784136.0,19905160.0,20887322.0,22280920.0,22834906.0,24123437.0,25272876.0,26067082.0,27241833.0,28089479.0,28876787.0,30093382.0,30920991.0,32130751.0,32777031.0,34224000.0,35044025.0,37132919.0,37309360.0,38077400.0,39083143.0,40037057.0,41369066.0,41980356.0,42944573.0,60789256.0,43867392.0,42572098.0,43920824.0,45872131.0,46512436.0,47321373.0,48534432.0,49649227.0,50433943.0,51543100.0,52560312.0,53581315.0,54414454.0,56446042.0,56494656.0,57569089.0,58785527.0,59268839.0,60496824.0,61254458.0,62291344.0,63208876.0,64675795.0,65144509.0,66110305.0,66902795.0,68043236.0,69405941.0,70003958.0,71231518.0,71895237.0,72474472.0,73562236.0,74825961.0,75397639.0,76944244.0,77816857.0,78314138.0,79765178.0,79910656.0,81158139.0,81867323.0,83503405.0,83873341.0,84868962.0,85813207.0,86314000.0,87479605.0,88361055.0,90083864.0,90416512.0,91384176.0,91999560.0,93527300.0,94066899.0,95163718.0]} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/10/new/tukey.json: -------------------------------------------------------------------------------- 1 | [201677.62691584608,220188.74260809273,269551.7177874171,288062.83347966376] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/20/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-type","function_id":"raw","value_str":"20","throughput":null,"full_id":"access-broad-from-type/raw/20","directory_name":"access-broad-from-type/raw/20","title":"access-broad-from-type/raw/20"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/20/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":478345.6677643113,"upper_bound":481073.3712313517},"point_estimate":479653.18806990364,"standard_error":694.5630853928228},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":476843.98787091183,"upper_bound":478536.85562499997},"point_estimate":477652.9158730159,"standard_error":479.414518992418},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3218.1277601691813,"upper_bound":6689.353803462465},"point_estimate":4772.075342551495,"standard_error":923.4221131521912},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":475440.42493412003,"upper_bound":477638.7124629033},"point_estimate":476444.65943254024,"standard_error":560.4946648855581},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":5357.262288355662,"upper_bound":8416.930426221415},"point_estimate":6994.79877837852,"standard_error":782.8644440128127}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/20/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[3.0,6.0,9.0,12.0,15.0,18.0,21.0,24.0,27.0,30.0,33.0,36.0,39.0,42.0,45.0,48.0,51.0,54.0,57.0,60.0,63.0,66.0,69.0,72.0,75.0,78.0,81.0,84.0,87.0,90.0,93.0,96.0,99.0,102.0,105.0,108.0,111.0,114.0,117.0,120.0,123.0,126.0,129.0,132.0,135.0,138.0,141.0,144.0,147.0,150.0,153.0,156.0,159.0,162.0,165.0,168.0,171.0,174.0,177.0,180.0,183.0,186.0,189.0,192.0,195.0,198.0,201.0,204.0,207.0,210.0,213.0,216.0,219.0,222.0,225.0,228.0,231.0,234.0,237.0,240.0,243.0,246.0,249.0,252.0,255.0,258.0,261.0,264.0,267.0,270.0,273.0,276.0,279.0,282.0,285.0,288.0,291.0,294.0,297.0,300.0],"times":[1458950.0,2981003.0,4305021.0,5882786.0,7156282.0,8790459.0,9920382.0,11515418.0,13083603.0,14330784.0,15856620.0,17534755.0,18653339.0,20087627.0,21470968.0,23190336.0,24736677.0,26093708.0,27670192.0,29089345.0,30089621.0,31557121.0,32951926.0,34734660.0,35947672.0,37311855.0,39442752.0,41416098.0,42204970.0,42898010.0,44856740.0,45921427.0,47579811.0,48478239.0,49817309.0,51376750.0,52990824.0,54234649.0,58978188.0,59606734.0,62077056.0,63430797.0,63383832.0,63143436.0,65533686.0,66634261.0,69382342.0,69440557.0,70724973.0,71808827.0,74093976.0,74892409.0,76029207.0,77663536.0,78761545.0,79896618.0,81568905.0,82737260.0,85312948.0,87193234.0,87212069.0,89173147.0,90004788.0,91045056.0,93367728.0,94336973.0,95487733.0,97206249.0,98915704.0,99996538.0,102300422.0,103030935.0,103688603.0,105113748.0,106419369.0,108464256.0,109427757.0,110825103.0,111905811.0,114611065.0,115832471.0,116530893.0,117943983.0,118973720.0,121266002.0,122595450.0,123466500.0,125419601.0,127031241.0,128799665.0,128491928.0,130278284.0,131915122.0,132703969.0,134751186.0,136909855.0,140657004.0,138600518.0,140902095.0,141711230.0]} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/20/base/tukey.json: -------------------------------------------------------------------------------- 1 | [453820.32803175616,464587.81099810847,493301.0989083813,504068.5818747336] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/20/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-type","function_id":"raw","value_str":"20","throughput":null,"full_id":"access-broad-from-type/raw/20","directory_name":"access-broad-from-type/raw/20","title":"access-broad-from-type/raw/20"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/20/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":478345.6677643113,"upper_bound":481073.3712313517},"point_estimate":479653.18806990364,"standard_error":694.5630853928228},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":476843.98787091183,"upper_bound":478536.85562499997},"point_estimate":477652.9158730159,"standard_error":479.414518992418},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3218.1277601691813,"upper_bound":6689.353803462465},"point_estimate":4772.075342551495,"standard_error":923.4221131521912},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":475440.42493412003,"upper_bound":477638.7124629033},"point_estimate":476444.65943254024,"standard_error":560.4946648855581},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":5357.262288355662,"upper_bound":8416.930426221415},"point_estimate":6994.79877837852,"standard_error":782.8644440128127}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/20/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[3.0,6.0,9.0,12.0,15.0,18.0,21.0,24.0,27.0,30.0,33.0,36.0,39.0,42.0,45.0,48.0,51.0,54.0,57.0,60.0,63.0,66.0,69.0,72.0,75.0,78.0,81.0,84.0,87.0,90.0,93.0,96.0,99.0,102.0,105.0,108.0,111.0,114.0,117.0,120.0,123.0,126.0,129.0,132.0,135.0,138.0,141.0,144.0,147.0,150.0,153.0,156.0,159.0,162.0,165.0,168.0,171.0,174.0,177.0,180.0,183.0,186.0,189.0,192.0,195.0,198.0,201.0,204.0,207.0,210.0,213.0,216.0,219.0,222.0,225.0,228.0,231.0,234.0,237.0,240.0,243.0,246.0,249.0,252.0,255.0,258.0,261.0,264.0,267.0,270.0,273.0,276.0,279.0,282.0,285.0,288.0,291.0,294.0,297.0,300.0],"times":[1458950.0,2981003.0,4305021.0,5882786.0,7156282.0,8790459.0,9920382.0,11515418.0,13083603.0,14330784.0,15856620.0,17534755.0,18653339.0,20087627.0,21470968.0,23190336.0,24736677.0,26093708.0,27670192.0,29089345.0,30089621.0,31557121.0,32951926.0,34734660.0,35947672.0,37311855.0,39442752.0,41416098.0,42204970.0,42898010.0,44856740.0,45921427.0,47579811.0,48478239.0,49817309.0,51376750.0,52990824.0,54234649.0,58978188.0,59606734.0,62077056.0,63430797.0,63383832.0,63143436.0,65533686.0,66634261.0,69382342.0,69440557.0,70724973.0,71808827.0,74093976.0,74892409.0,76029207.0,77663536.0,78761545.0,79896618.0,81568905.0,82737260.0,85312948.0,87193234.0,87212069.0,89173147.0,90004788.0,91045056.0,93367728.0,94336973.0,95487733.0,97206249.0,98915704.0,99996538.0,102300422.0,103030935.0,103688603.0,105113748.0,106419369.0,108464256.0,109427757.0,110825103.0,111905811.0,114611065.0,115832471.0,116530893.0,117943983.0,118973720.0,121266002.0,122595450.0,123466500.0,125419601.0,127031241.0,128799665.0,128491928.0,130278284.0,131915122.0,132703969.0,134751186.0,136909855.0,140657004.0,138600518.0,140902095.0,141711230.0]} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/20/new/tukey.json: -------------------------------------------------------------------------------- 1 | [453820.32803175616,464587.81099810847,493301.0989083813,504068.5818747336] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/30/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-type","function_id":"raw","value_str":"30","throughput":null,"full_id":"access-broad-from-type/raw/30","directory_name":"access-broad-from-type/raw/30","title":"access-broad-from-type/raw/30"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/30/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":740412.1270367341,"upper_bound":744204.4078771784},"point_estimate":742224.2055609368,"standard_error":970.085931146082},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":737890.6344086021,"upper_bound":740360.8412698413},"point_estimate":738561.8370588236,"standard_error":655.9971929391974},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3297.4346273174397,"upper_bound":6409.886160028008},"point_estimate":4969.669154895745,"standard_error":827.6419625673606},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":736967.6699272976,"upper_bound":739591.220676176},"point_estimate":738164.5699423674,"standard_error":673.8077304925712},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7431.489306076381,"upper_bound":11759.153941360986},"point_estimate":9792.396551210742,"standard_error":1105.1871641072373}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/30/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2.0,4.0,6.0,8.0,10.0,12.0,14.0,16.0,18.0,20.0,22.0,24.0,26.0,28.0,30.0,32.0,34.0,36.0,38.0,40.0,42.0,44.0,46.0,48.0,50.0,52.0,54.0,56.0,58.0,60.0,62.0,64.0,66.0,68.0,70.0,72.0,74.0,76.0,78.0,80.0,82.0,84.0,86.0,88.0,90.0,92.0,94.0,96.0,98.0,100.0,102.0,104.0,106.0,108.0,110.0,112.0,114.0,116.0,118.0,120.0,122.0,124.0,126.0,128.0,130.0,132.0,134.0,136.0,138.0,140.0,142.0,144.0,146.0,148.0,150.0,152.0,154.0,156.0,158.0,160.0,162.0,164.0,166.0,168.0,170.0,172.0,174.0,176.0,178.0,180.0,182.0,184.0,186.0,188.0,190.0,192.0,194.0,196.0,198.0,200.0],"times":[1492849.0,3102140.0,4656103.0,6158271.0,7599589.0,9067499.0,10547357.0,12246700.0,13899141.0,15391680.0,16819685.0,18170575.0,19719156.0,21013657.0,22475282.0,23844781.0,25239777.0,26431651.0,28252551.0,29503771.0,31110145.0,32680847.0,34558564.0,35445437.0,36873770.0,38383221.0,39996639.0,41410440.0,43395978.0,44185075.0,45510282.0,47054582.0,48893473.0,50223902.0,51500770.0,53080522.0,54517574.0,56567605.0,57507161.0,58672503.0,60481278.0,62295857.0,64225063.0,65105837.0,66319384.0,67917107.0,69253252.0,70632514.0,71842946.0,73853688.0,74909865.0,76553054.0,78844298.0,79703466.0,81058041.0,82556759.0,84757782.0,86152986.0,87645774.0,88407334.0,90712076.0,91724764.0,93285466.0,94478106.0,95456475.0,97640234.0,99357711.0,101142386.0,102622884.0,103870457.0,104772761.0,106478688.0,107897040.0,109602207.0,110606499.0,111992531.0,114159720.0,115135562.0,116507002.0,118065850.0,119290647.0,120327170.0,122509798.0,123167820.0,125645009.0,126448778.0,127611463.0,129319241.0,131539602.0,135930900.0,136539015.0,135056597.0,137247658.0,138545026.0,139295330.0,141439972.0,142318653.0,143602008.0,144976764.0,146960869.0]} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/30/base/tukey.json: -------------------------------------------------------------------------------- 1 | [716205.6430014832,726466.2368723631,753827.8205280432,764088.4143989233] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/30/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-type","function_id":"raw","value_str":"30","throughput":null,"full_id":"access-broad-from-type/raw/30","directory_name":"access-broad-from-type/raw/30","title":"access-broad-from-type/raw/30"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/30/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":740412.1270367341,"upper_bound":744204.4078771784},"point_estimate":742224.2055609368,"standard_error":970.085931146082},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":737890.6344086021,"upper_bound":740360.8412698413},"point_estimate":738561.8370588236,"standard_error":655.9971929391974},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3297.4346273174397,"upper_bound":6409.886160028008},"point_estimate":4969.669154895745,"standard_error":827.6419625673606},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":736967.6699272976,"upper_bound":739591.220676176},"point_estimate":738164.5699423674,"standard_error":673.8077304925712},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7431.489306076381,"upper_bound":11759.153941360986},"point_estimate":9792.396551210742,"standard_error":1105.1871641072373}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/30/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2.0,4.0,6.0,8.0,10.0,12.0,14.0,16.0,18.0,20.0,22.0,24.0,26.0,28.0,30.0,32.0,34.0,36.0,38.0,40.0,42.0,44.0,46.0,48.0,50.0,52.0,54.0,56.0,58.0,60.0,62.0,64.0,66.0,68.0,70.0,72.0,74.0,76.0,78.0,80.0,82.0,84.0,86.0,88.0,90.0,92.0,94.0,96.0,98.0,100.0,102.0,104.0,106.0,108.0,110.0,112.0,114.0,116.0,118.0,120.0,122.0,124.0,126.0,128.0,130.0,132.0,134.0,136.0,138.0,140.0,142.0,144.0,146.0,148.0,150.0,152.0,154.0,156.0,158.0,160.0,162.0,164.0,166.0,168.0,170.0,172.0,174.0,176.0,178.0,180.0,182.0,184.0,186.0,188.0,190.0,192.0,194.0,196.0,198.0,200.0],"times":[1492849.0,3102140.0,4656103.0,6158271.0,7599589.0,9067499.0,10547357.0,12246700.0,13899141.0,15391680.0,16819685.0,18170575.0,19719156.0,21013657.0,22475282.0,23844781.0,25239777.0,26431651.0,28252551.0,29503771.0,31110145.0,32680847.0,34558564.0,35445437.0,36873770.0,38383221.0,39996639.0,41410440.0,43395978.0,44185075.0,45510282.0,47054582.0,48893473.0,50223902.0,51500770.0,53080522.0,54517574.0,56567605.0,57507161.0,58672503.0,60481278.0,62295857.0,64225063.0,65105837.0,66319384.0,67917107.0,69253252.0,70632514.0,71842946.0,73853688.0,74909865.0,76553054.0,78844298.0,79703466.0,81058041.0,82556759.0,84757782.0,86152986.0,87645774.0,88407334.0,90712076.0,91724764.0,93285466.0,94478106.0,95456475.0,97640234.0,99357711.0,101142386.0,102622884.0,103870457.0,104772761.0,106478688.0,107897040.0,109602207.0,110606499.0,111992531.0,114159720.0,115135562.0,116507002.0,118065850.0,119290647.0,120327170.0,122509798.0,123167820.0,125645009.0,126448778.0,127611463.0,129319241.0,131539602.0,135930900.0,136539015.0,135056597.0,137247658.0,138545026.0,139295330.0,141439972.0,142318653.0,143602008.0,144976764.0,146960869.0]} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/30/new/tukey.json: -------------------------------------------------------------------------------- 1 | [716205.6430014832,726466.2368723631,753827.8205280432,764088.4143989233] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/40/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-type","function_id":"raw","value_str":"40","throughput":null,"full_id":"access-broad-from-type/raw/40","directory_name":"access-broad-from-type/raw/40","title":"access-broad-from-type/raw/40"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/40/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":982241.3176815222,"upper_bound":994170.1554023193},"point_estimate":986848.6991494574,"standard_error":3204.661780014842},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":979876.0537530266,"upper_bound":983031.7011494252},"point_estimate":981412.0776512236,"standard_error":894.2904752518868},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4745.952229271796,"upper_bound":8494.813945020258},"point_estimate":7184.635579683995,"standard_error":977.9587838060103},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":978817.0706121037,"upper_bound":981065.2808787792},"point_estimate":979928.6890764001,"standard_error":575.591846957545},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":8567.274869214169,"upper_bound":53323.44630814248},"point_estimate":32194.02178967561,"standard_error":14978.430381455526}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/40/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0,18.0,19.0,20.0,21.0,22.0,23.0,24.0,25.0,26.0,27.0,28.0,29.0,30.0,31.0,32.0,33.0,34.0,35.0,36.0,37.0,38.0,39.0,40.0,41.0,42.0,43.0,44.0,45.0,46.0,47.0,48.0,49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0,72.0,73.0,74.0,75.0,76.0,77.0,78.0,79.0,80.0,81.0,82.0,83.0,84.0,85.0,86.0,87.0,88.0,89.0,90.0,91.0,92.0,93.0,94.0,95.0,96.0,97.0,98.0,99.0,100.0],"times":[1000017.0,1975948.0,3104620.0,4031152.0,6435710.0,6100893.0,7075855.0,8012828.0,8717569.0,9964366.0,10937838.0,11856630.0,12894654.0,14176854.0,15139036.0,15715057.0,16666191.0,17576305.0,18774366.0,19743105.0,20628337.0,21828932.0,23010457.0,23671999.0,24701993.0,25856760.0,26400525.0,27555230.0,28306396.0,29369198.0,30534200.0,31369517.0,32024645.0,33419594.0,34291618.0,35174805.0,36507860.0,37237159.0,39144092.0,39296453.0,40260377.0,41279222.0,41887361.0,43379161.0,43872877.0,44756407.0,46535598.0,47202887.0,48021329.0,48932096.0,50325177.0,51359675.0,51894076.0,52728744.0,53685476.0,54467969.0,55668557.0,57063770.0,57819504.0,58744167.0,59273691.0,60552498.0,61231505.0,62655618.0,64151619.0,64351617.0,66092431.0,66927257.0,67708890.0,67927118.0,68868833.0,70125516.0,71640397.0,72566727.0,72947879.0,73937009.0,75285620.0,76659111.0,77465258.0,78663319.0,80140515.0,80522146.0,81115257.0,82198230.0,83238432.0,84234499.0,85523758.0,86880158.0,87348948.0,88292094.0,89539890.0,90068113.0,90974466.0,91759544.0,93397317.0,93945133.0,95357328.0,95781890.0,96903714.0,97342311.0]} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/40/base/tukey.json: -------------------------------------------------------------------------------- 1 | [949572.7956311547,963607.9226300486,1001034.9279604324,1015070.0549593263] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/40/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-type","function_id":"raw","value_str":"40","throughput":null,"full_id":"access-broad-from-type/raw/40","directory_name":"access-broad-from-type/raw/40","title":"access-broad-from-type/raw/40"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/40/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":982241.3176815222,"upper_bound":994170.1554023193},"point_estimate":986848.6991494574,"standard_error":3204.661780014842},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":979876.0537530266,"upper_bound":983031.7011494252},"point_estimate":981412.0776512236,"standard_error":894.2904752518868},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4745.952229271796,"upper_bound":8494.813945020258},"point_estimate":7184.635579683995,"standard_error":977.9587838060103},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":978817.0706121037,"upper_bound":981065.2808787792},"point_estimate":979928.6890764001,"standard_error":575.591846957545},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":8567.274869214169,"upper_bound":53323.44630814248},"point_estimate":32194.02178967561,"standard_error":14978.430381455526}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/40/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0,18.0,19.0,20.0,21.0,22.0,23.0,24.0,25.0,26.0,27.0,28.0,29.0,30.0,31.0,32.0,33.0,34.0,35.0,36.0,37.0,38.0,39.0,40.0,41.0,42.0,43.0,44.0,45.0,46.0,47.0,48.0,49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0,72.0,73.0,74.0,75.0,76.0,77.0,78.0,79.0,80.0,81.0,82.0,83.0,84.0,85.0,86.0,87.0,88.0,89.0,90.0,91.0,92.0,93.0,94.0,95.0,96.0,97.0,98.0,99.0,100.0],"times":[1000017.0,1975948.0,3104620.0,4031152.0,6435710.0,6100893.0,7075855.0,8012828.0,8717569.0,9964366.0,10937838.0,11856630.0,12894654.0,14176854.0,15139036.0,15715057.0,16666191.0,17576305.0,18774366.0,19743105.0,20628337.0,21828932.0,23010457.0,23671999.0,24701993.0,25856760.0,26400525.0,27555230.0,28306396.0,29369198.0,30534200.0,31369517.0,32024645.0,33419594.0,34291618.0,35174805.0,36507860.0,37237159.0,39144092.0,39296453.0,40260377.0,41279222.0,41887361.0,43379161.0,43872877.0,44756407.0,46535598.0,47202887.0,48021329.0,48932096.0,50325177.0,51359675.0,51894076.0,52728744.0,53685476.0,54467969.0,55668557.0,57063770.0,57819504.0,58744167.0,59273691.0,60552498.0,61231505.0,62655618.0,64151619.0,64351617.0,66092431.0,66927257.0,67708890.0,67927118.0,68868833.0,70125516.0,71640397.0,72566727.0,72947879.0,73937009.0,75285620.0,76659111.0,77465258.0,78663319.0,80140515.0,80522146.0,81115257.0,82198230.0,83238432.0,84234499.0,85523758.0,86880158.0,87348948.0,88292094.0,89539890.0,90068113.0,90974466.0,91759544.0,93397317.0,93945133.0,95357328.0,95781890.0,96903714.0,97342311.0]} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/40/new/tukey.json: -------------------------------------------------------------------------------- 1 | [949572.7956311547,963607.9226300486,1001034.9279604324,1015070.0549593263] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/50/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-type","function_id":"raw","value_str":"50","throughput":null,"full_id":"access-broad-from-type/raw/50","directory_name":"access-broad-from-type/raw/50","title":"access-broad-from-type/raw/50"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/50/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1226930.4871589686,"upper_bound":1250417.238290686},"point_estimate":1236904.2173665678,"standard_error":6068.019906843506},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1222416.439690027,"upper_bound":1228706.9642857143},"point_estimate":1225925.4284131206,"standard_error":2000.45045083605},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":10075.363853324749,"upper_bound":18655.599687701968},"point_estimate":13492.970750205222,"standard_error":2251.7430899832943},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1216924.0189291015,"upper_bound":1238760.9778318268},"point_estimate":1224443.9611940298,"standard_error":5994.939548314319},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":15865.859274116721,"upper_bound":95181.81245963165},"point_estimate":60835.13495380953,"standard_error":20337.59561190648}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/50/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0,18.0,19.0,20.0,21.0,22.0,23.0,24.0,25.0,26.0,27.0,28.0,29.0,30.0,31.0,32.0,33.0,34.0,35.0,36.0,37.0,38.0,39.0,40.0,41.0,42.0,43.0,44.0,45.0,46.0,47.0,48.0,49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0,72.0,73.0,74.0,75.0,76.0,77.0,78.0,79.0,80.0,81.0,82.0,83.0,84.0,85.0,86.0,87.0,88.0,89.0,90.0,91.0,92.0,93.0,94.0,95.0,96.0,97.0,98.0,99.0,100.0],"times":[1281893.0,2547630.0,3747785.0,6104064.0,6469511.0,7548215.0,8829073.0,9827809.0,11012769.0,12335258.0,13544572.0,14898426.0,16031713.0,17363366.0,18710106.0,19864387.0,21002039.0,22165244.0,23135993.0,24819709.0,25697036.0,27402057.0,28584674.0,29042041.0,30709407.0,31949955.0,33260805.0,34216741.0,35746019.0,37187827.0,38083075.0,39104720.0,40236724.0,48013864.0,42995830.0,44988571.0,45669568.0,46799806.0,47698552.0,49140835.0,50409757.0,52091528.0,54027236.0,54098214.0,55120433.0,56790436.0,57632252.0,58830371.0,59838044.0,60722281.0,62756343.0,63679718.0,64808740.0,66447415.0,67488454.0,68807590.0,69643887.0,70729748.0,72993325.0,73368167.0,74404553.0,75467162.0,107373094.0,80159633.0,79878062.0,81371735.0,81935983.0,83540207.0,84486758.0,85868764.0,87377962.0,87482597.0,88401984.0,89603077.0,90596850.0,92081529.0,93661984.0,94215490.0,95757992.0,96898200.0,98486676.0,100058631.0,100467189.0,101754436.0,103065428.0,104786679.0,105344044.0,107187756.0,107858052.0,108942754.0,110590795.0,111106123.0,112602455.0,113572751.0,114708024.0,116091073.0,117908001.0,118361323.0,120209175.0,121937306.0]} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/50/base/tukey.json: -------------------------------------------------------------------------------- 1 | [1162033.5322420357,1188916.8997120832,1260605.8796322097,1287489.247102257] -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/50/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-broad-from-type","function_id":"raw","value_str":"50","throughput":null,"full_id":"access-broad-from-type/raw/50","directory_name":"access-broad-from-type/raw/50","title":"access-broad-from-type/raw/50"} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/50/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1226930.4871589686,"upper_bound":1250417.238290686},"point_estimate":1236904.2173665678,"standard_error":6068.019906843506},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1222416.439690027,"upper_bound":1228706.9642857143},"point_estimate":1225925.4284131206,"standard_error":2000.45045083605},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":10075.363853324749,"upper_bound":18655.599687701968},"point_estimate":13492.970750205222,"standard_error":2251.7430899832943},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1216924.0189291015,"upper_bound":1238760.9778318268},"point_estimate":1224443.9611940298,"standard_error":5994.939548314319},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":15865.859274116721,"upper_bound":95181.81245963165},"point_estimate":60835.13495380953,"standard_error":20337.59561190648}} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/50/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0,18.0,19.0,20.0,21.0,22.0,23.0,24.0,25.0,26.0,27.0,28.0,29.0,30.0,31.0,32.0,33.0,34.0,35.0,36.0,37.0,38.0,39.0,40.0,41.0,42.0,43.0,44.0,45.0,46.0,47.0,48.0,49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0,72.0,73.0,74.0,75.0,76.0,77.0,78.0,79.0,80.0,81.0,82.0,83.0,84.0,85.0,86.0,87.0,88.0,89.0,90.0,91.0,92.0,93.0,94.0,95.0,96.0,97.0,98.0,99.0,100.0],"times":[1281893.0,2547630.0,3747785.0,6104064.0,6469511.0,7548215.0,8829073.0,9827809.0,11012769.0,12335258.0,13544572.0,14898426.0,16031713.0,17363366.0,18710106.0,19864387.0,21002039.0,22165244.0,23135993.0,24819709.0,25697036.0,27402057.0,28584674.0,29042041.0,30709407.0,31949955.0,33260805.0,34216741.0,35746019.0,37187827.0,38083075.0,39104720.0,40236724.0,48013864.0,42995830.0,44988571.0,45669568.0,46799806.0,47698552.0,49140835.0,50409757.0,52091528.0,54027236.0,54098214.0,55120433.0,56790436.0,57632252.0,58830371.0,59838044.0,60722281.0,62756343.0,63679718.0,64808740.0,66447415.0,67488454.0,68807590.0,69643887.0,70729748.0,72993325.0,73368167.0,74404553.0,75467162.0,107373094.0,80159633.0,79878062.0,81371735.0,81935983.0,83540207.0,84486758.0,85868764.0,87377962.0,87482597.0,88401984.0,89603077.0,90596850.0,92081529.0,93661984.0,94215490.0,95757992.0,96898200.0,98486676.0,100058631.0,100467189.0,101754436.0,103065428.0,104786679.0,105344044.0,107187756.0,107858052.0,108942754.0,110590795.0,111106123.0,112602455.0,113572751.0,114708024.0,116091073.0,117908001.0,118361323.0,120209175.0,121937306.0]} -------------------------------------------------------------------------------- /criterion-report/access-broad-from-type/raw/50/new/tukey.json: -------------------------------------------------------------------------------- 1 | [1162033.5322420357,1188916.8997120832,1260605.8796322097,1287489.247102257] -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/parsed/10/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-deep-from-bytes","function_id":"parsed","value_str":"10","throughput":null,"full_id":"access-deep-from-bytes/parsed/10","directory_name":"access-deep-from-bytes/parsed/10","title":"access-deep-from-bytes/parsed/10"} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/parsed/10/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4452.210298034048,"upper_bound":4474.909230739898},"point_estimate":4463.341680450919,"standard_error":5.80332144373009},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4425.578237787477,"upper_bound":4468.570664414414},"point_estimate":4438.361438361439,"standard_error":10.98140102009959},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":24.74532512644281,"upper_bound":76.8273484367503},"point_estimate":46.41173576502,"standard_error":12.93019569653661},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4456.916234298287,"upper_bound":4483.632416623791},"point_estimate":4470.283400751128,"standard_error":6.825650986912426},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":51.240066624051146,"upper_bound":64.83267456115058},"point_estimate":58.437858442772,"standard_error":3.4666136170054838}} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/parsed/10/base/tukey.json: -------------------------------------------------------------------------------- 1 | [4124.871953999522,4269.7290028824245,4656.014466570166,4800.87151545307] -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/parsed/10/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-deep-from-bytes","function_id":"parsed","value_str":"10","throughput":null,"full_id":"access-deep-from-bytes/parsed/10","directory_name":"access-deep-from-bytes/parsed/10","title":"access-deep-from-bytes/parsed/10"} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/parsed/10/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4452.210298034048,"upper_bound":4474.909230739898},"point_estimate":4463.341680450919,"standard_error":5.80332144373009},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4425.578237787477,"upper_bound":4468.570664414414},"point_estimate":4438.361438361439,"standard_error":10.98140102009959},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":24.74532512644281,"upper_bound":76.8273484367503},"point_estimate":46.41173576502,"standard_error":12.93019569653661},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4456.916234298287,"upper_bound":4483.632416623791},"point_estimate":4470.283400751128,"standard_error":6.825650986912426},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":51.240066624051146,"upper_bound":64.83267456115058},"point_estimate":58.437858442772,"standard_error":3.4666136170054838}} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/parsed/10/new/tukey.json: -------------------------------------------------------------------------------- 1 | [4124.871953999522,4269.7290028824245,4656.014466570166,4800.87151545307] -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/parsed/100/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-deep-from-bytes","function_id":"parsed","value_str":"100","throughput":null,"full_id":"access-deep-from-bytes/parsed/100","directory_name":"access-deep-from-bytes/parsed/100","title":"access-deep-from-bytes/parsed/100"} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/parsed/100/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":58250.11768546113,"upper_bound":58605.70528645553},"point_estimate":58416.06660249827,"standard_error":90.72069534492064},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":58071.88888888889,"upper_bound":58249.59259259259},"point_estimate":58189.43357942367,"standard_error":41.75029736194391},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":270.88357575824733,"upper_bound":491.147433285365},"point_estimate":367.4033881502603,"standard_error":57.886960176139716},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":57923.61796230787,"upper_bound":58072.22436777862},"point_estimate":57993.404010118305,"standard_error":37.90901658218774},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":603.1930422722683,"upper_bound":1159.2306028058365},"point_estimate":907.7510436739807,"standard_error":142.30761222212058}} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/parsed/100/base/tukey.json: -------------------------------------------------------------------------------- 1 | [56465.5800128664,57216.35061249381,59218.405544833564,59969.17614446097] -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/parsed/100/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-deep-from-bytes","function_id":"parsed","value_str":"100","throughput":null,"full_id":"access-deep-from-bytes/parsed/100","directory_name":"access-deep-from-bytes/parsed/100","title":"access-deep-from-bytes/parsed/100"} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/parsed/100/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":58250.11768546113,"upper_bound":58605.70528645553},"point_estimate":58416.06660249827,"standard_error":90.72069534492064},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":58071.88888888889,"upper_bound":58249.59259259259},"point_estimate":58189.43357942367,"standard_error":41.75029736194391},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":270.88357575824733,"upper_bound":491.147433285365},"point_estimate":367.4033881502603,"standard_error":57.886960176139716},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":57923.61796230787,"upper_bound":58072.22436777862},"point_estimate":57993.404010118305,"standard_error":37.90901658218774},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":603.1930422722683,"upper_bound":1159.2306028058365},"point_estimate":907.7510436739807,"standard_error":142.30761222212058}} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/parsed/100/new/tukey.json: -------------------------------------------------------------------------------- 1 | [56465.5800128664,57216.35061249381,59218.405544833564,59969.17614446097] -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/parsed/1000/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-deep-from-bytes","function_id":"parsed","value_str":"1000","throughput":null,"full_id":"access-deep-from-bytes/parsed/1000","directory_name":"access-deep-from-bytes/parsed/1000","title":"access-deep-from-bytes/parsed/1000"} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/parsed/1000/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1290318.0177549715,"upper_bound":1309080.7878304964},"point_estimate":1297108.042936388,"standard_error":5455.378610170693},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1288820.625,"upper_bound":1291866.573871409},"point_estimate":1290404.331845238,"standard_error":718.3112887211639},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4341.782577824851,"upper_bound":7693.3476649046825},"point_estimate":5937.600613222871,"standard_error":887.3390002162984},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1289542.9040149767,"upper_bound":1292206.8444536119},"point_estimate":1290821.9986581942,"standard_error":681.6850115661708},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7408.683366245759,"upper_bound":93148.0700358958},"point_estimate":54785.765737301655,"standard_error":30005.205394441185}} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/parsed/1000/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0,18.0,19.0,20.0,21.0,22.0,23.0,24.0,25.0,26.0,27.0,28.0,29.0,30.0,31.0,32.0,33.0,34.0,35.0,36.0,37.0,38.0,39.0,40.0,41.0,42.0,43.0,44.0,45.0,46.0,47.0,48.0,49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0,72.0,73.0,74.0,75.0,76.0,77.0,78.0,79.0,80.0,81.0,82.0,83.0,84.0,85.0,86.0,87.0,88.0,89.0,90.0,91.0,92.0,93.0,94.0,95.0,96.0,97.0,98.0,99.0,100.0],"times":[1318100.0,2518776.0,3864102.0,7324273.0,6480897.0,7877906.0,9083472.0,10358158.0,11549349.0,12891214.0,14088396.0,15361378.0,17264587.0,18725194.0,19324580.0,20621130.0,21894205.0,22946249.0,24536339.0,25735587.0,27086195.0,28338400.0,29473704.0,30774606.0,32183332.0,33603883.0,34597794.0,36180848.0,37482830.0,38779646.0,40024677.0,41293910.0,42295479.0,43664070.0,45151375.0,46878679.0,47943630.0,49076320.0,50500118.0,51871246.0,53309126.0,54726849.0,55724845.0,56953198.0,58501186.0,59885394.0,60645855.0,61861982.0,63071176.0,64944498.0,65551326.0,66927135.0,68414686.0,69420795.0,71125864.0,72406131.0,74449825.0,75577696.0,76278152.0,77936950.0,79161059.0,79771474.0,81402427.0,82290590.0,83835665.0,85498245.0,86116955.0,87860298.0,89949727.0,90303901.0,91399447.0,92571228.0,94293627.0,95142523.0,96050555.0,97840629.0,99450556.0,99993182.0,101663088.0,103622865.0,103934418.0,105434926.0,108079162.0,108391414.0,109460128.0,111083615.0,112258375.0,113713575.0,115687518.0,116327126.0,117540561.0,118417446.0,119565362.0,120935420.0,122357608.0,123638207.0,125884573.0,126431198.0,127789233.0,128638115.0]} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/parsed/1000/base/tukey.json: -------------------------------------------------------------------------------- 1 | [1261438.9009026182,1274144.8185683978,1308027.2656771434,1320733.183342923] -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/parsed/1000/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-deep-from-bytes","function_id":"parsed","value_str":"1000","throughput":null,"full_id":"access-deep-from-bytes/parsed/1000","directory_name":"access-deep-from-bytes/parsed/1000","title":"access-deep-from-bytes/parsed/1000"} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/parsed/1000/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1290318.0177549715,"upper_bound":1309080.7878304964},"point_estimate":1297108.042936388,"standard_error":5455.378610170693},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1288820.625,"upper_bound":1291866.573871409},"point_estimate":1290404.331845238,"standard_error":718.3112887211639},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4341.782577824851,"upper_bound":7693.3476649046825},"point_estimate":5937.600613222871,"standard_error":887.3390002162984},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1289542.9040149767,"upper_bound":1292206.8444536119},"point_estimate":1290821.9986581942,"standard_error":681.6850115661708},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7408.683366245759,"upper_bound":93148.0700358958},"point_estimate":54785.765737301655,"standard_error":30005.205394441185}} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/parsed/1000/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0,18.0,19.0,20.0,21.0,22.0,23.0,24.0,25.0,26.0,27.0,28.0,29.0,30.0,31.0,32.0,33.0,34.0,35.0,36.0,37.0,38.0,39.0,40.0,41.0,42.0,43.0,44.0,45.0,46.0,47.0,48.0,49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0,72.0,73.0,74.0,75.0,76.0,77.0,78.0,79.0,80.0,81.0,82.0,83.0,84.0,85.0,86.0,87.0,88.0,89.0,90.0,91.0,92.0,93.0,94.0,95.0,96.0,97.0,98.0,99.0,100.0],"times":[1318100.0,2518776.0,3864102.0,7324273.0,6480897.0,7877906.0,9083472.0,10358158.0,11549349.0,12891214.0,14088396.0,15361378.0,17264587.0,18725194.0,19324580.0,20621130.0,21894205.0,22946249.0,24536339.0,25735587.0,27086195.0,28338400.0,29473704.0,30774606.0,32183332.0,33603883.0,34597794.0,36180848.0,37482830.0,38779646.0,40024677.0,41293910.0,42295479.0,43664070.0,45151375.0,46878679.0,47943630.0,49076320.0,50500118.0,51871246.0,53309126.0,54726849.0,55724845.0,56953198.0,58501186.0,59885394.0,60645855.0,61861982.0,63071176.0,64944498.0,65551326.0,66927135.0,68414686.0,69420795.0,71125864.0,72406131.0,74449825.0,75577696.0,76278152.0,77936950.0,79161059.0,79771474.0,81402427.0,82290590.0,83835665.0,85498245.0,86116955.0,87860298.0,89949727.0,90303901.0,91399447.0,92571228.0,94293627.0,95142523.0,96050555.0,97840629.0,99450556.0,99993182.0,101663088.0,103622865.0,103934418.0,105434926.0,108079162.0,108391414.0,109460128.0,111083615.0,112258375.0,113713575.0,115687518.0,116327126.0,117540561.0,118417446.0,119565362.0,120935420.0,122357608.0,123638207.0,125884573.0,126431198.0,127789233.0,128638115.0]} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/parsed/1000/new/tukey.json: -------------------------------------------------------------------------------- 1 | [1261438.9009026182,1274144.8185683978,1308027.2656771434,1320733.183342923] -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/raw/10/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-deep-from-bytes","function_id":"raw","value_str":"10","throughput":null,"full_id":"access-deep-from-bytes/raw/10","directory_name":"access-deep-from-bytes/raw/10","title":"access-deep-from-bytes/raw/10"} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/raw/10/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":560.6499084795804,"upper_bound":563.3144718647004},"point_estimate":561.929165541893,"standard_error":0.6787612640041923},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":559.3774811314552,"upper_bound":561.462370424792},"point_estimate":560.364477441462,"standard_error":0.5837211988238135},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3.485213925736517,"upper_bound":5.5886519042563085},"point_estimate":4.48742140895528,"standard_error":0.5291124970557762},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":559.045519768037,"upper_bound":561.624777614179},"point_estimate":560.2146982488083,"standard_error":0.6594025035011615},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":5.1795848922662255,"upper_bound":8.312039324664953},"point_estimate":6.822329366707658,"standard_error":0.8010941330098631}} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/raw/10/base/tukey.json: -------------------------------------------------------------------------------- 1 | [539.7246480199965,548.6345853700275,572.3944183034434,581.3043556534744] -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/raw/10/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-deep-from-bytes","function_id":"raw","value_str":"10","throughput":null,"full_id":"access-deep-from-bytes/raw/10","directory_name":"access-deep-from-bytes/raw/10","title":"access-deep-from-bytes/raw/10"} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/raw/10/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":560.6499084795804,"upper_bound":563.3144718647004},"point_estimate":561.929165541893,"standard_error":0.6787612640041923},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":559.3774811314552,"upper_bound":561.462370424792},"point_estimate":560.364477441462,"standard_error":0.5837211988238135},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3.485213925736517,"upper_bound":5.5886519042563085},"point_estimate":4.48742140895528,"standard_error":0.5291124970557762},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":559.045519768037,"upper_bound":561.624777614179},"point_estimate":560.2146982488083,"standard_error":0.6594025035011615},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":5.1795848922662255,"upper_bound":8.312039324664953},"point_estimate":6.822329366707658,"standard_error":0.8010941330098631}} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/raw/10/new/tukey.json: -------------------------------------------------------------------------------- 1 | [539.7246480199965,548.6345853700275,572.3944183034434,581.3043556534744] -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/raw/100/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-deep-from-bytes","function_id":"raw","value_str":"100","throughput":null,"full_id":"access-deep-from-bytes/raw/100","directory_name":"access-deep-from-bytes/raw/100","title":"access-deep-from-bytes/raw/100"} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/raw/100/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3779.0329767429666,"upper_bound":3810.7747278616184},"point_estimate":3794.6304327362113,"standard_error":8.107179023124377},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3763.3552800890093,"upper_bound":3815.7496875},"point_estimate":3795.9287462116527,"standard_error":13.688831259744408},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":68.96739202554095,"upper_bound":110.81078815394399},"point_estimate":99.18085875712728,"standard_error":10.213237332139634},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3736.716928387817,"upper_bound":3757.0145115210166},"point_estimate":3745.8752729122025,"standard_error":5.185589562860691},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":68.11195716299709,"upper_bound":94.85850876385058},"point_estimate":81.43327380770823,"standard_error":6.874421300065845}} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/raw/100/base/tukey.json: -------------------------------------------------------------------------------- 1 | [3343.556499565973,3532.424565972223,4036.0727430555553,4224.940809461805] -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/raw/100/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-deep-from-bytes","function_id":"raw","value_str":"100","throughput":null,"full_id":"access-deep-from-bytes/raw/100","directory_name":"access-deep-from-bytes/raw/100","title":"access-deep-from-bytes/raw/100"} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/raw/100/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3779.0329767429666,"upper_bound":3810.7747278616184},"point_estimate":3794.6304327362113,"standard_error":8.107179023124377},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3763.3552800890093,"upper_bound":3815.7496875},"point_estimate":3795.9287462116527,"standard_error":13.688831259744408},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":68.96739202554095,"upper_bound":110.81078815394399},"point_estimate":99.18085875712728,"standard_error":10.213237332139634},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3736.716928387817,"upper_bound":3757.0145115210166},"point_estimate":3745.8752729122025,"standard_error":5.185589562860691},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":68.11195716299709,"upper_bound":94.85850876385058},"point_estimate":81.43327380770823,"standard_error":6.874421300065845}} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/raw/100/new/tukey.json: -------------------------------------------------------------------------------- 1 | [3343.556499565973,3532.424565972223,4036.0727430555553,4224.940809461805] -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/raw/1000/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-deep-from-bytes","function_id":"raw","value_str":"1000","throughput":null,"full_id":"access-deep-from-bytes/raw/1000","directory_name":"access-deep-from-bytes/raw/1000","title":"access-deep-from-bytes/raw/1000"} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/raw/1000/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":33404.22852975885,"upper_bound":33720.94811061723},"point_estimate":33541.90881043192,"standard_error":81.47996448161643},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":33286.486153846156,"upper_bound":33417.333333333336},"point_estimate":33339.098383966244,"standard_error":38.71764040063893},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":210.42023693095905,"upper_bound":367.45893540613304},"point_estimate":311.2717336255075,"standard_error":40.4400032427883},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":33271.81037791832,"upper_bound":33478.4709240225},"point_estimate":33357.06095670164,"standard_error":53.319682163661355},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":371.27339580749776,"upper_bound":1242.3594142833429},"point_estimate":819.4934580367872,"standard_error":239.1734857116366}} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/raw/1000/base/tukey.json: -------------------------------------------------------------------------------- 1 | [31896.743111960503,32539.98111164198,34255.28244412592,34898.5204438074] -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/raw/1000/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-deep-from-bytes","function_id":"raw","value_str":"1000","throughput":null,"full_id":"access-deep-from-bytes/raw/1000","directory_name":"access-deep-from-bytes/raw/1000","title":"access-deep-from-bytes/raw/1000"} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/raw/1000/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":33404.22852975885,"upper_bound":33720.94811061723},"point_estimate":33541.90881043192,"standard_error":81.47996448161643},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":33286.486153846156,"upper_bound":33417.333333333336},"point_estimate":33339.098383966244,"standard_error":38.71764040063893},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":210.42023693095905,"upper_bound":367.45893540613304},"point_estimate":311.2717336255075,"standard_error":40.4400032427883},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":33271.81037791832,"upper_bound":33478.4709240225},"point_estimate":33357.06095670164,"standard_error":53.319682163661355},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":371.27339580749776,"upper_bound":1242.3594142833429},"point_estimate":819.4934580367872,"standard_error":239.1734857116366}} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-bytes/raw/1000/new/tukey.json: -------------------------------------------------------------------------------- 1 | [31896.743111960503,32539.98111164198,34255.28244412592,34898.5204438074] -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/parsed/10/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-deep-from-type","function_id":"parsed","value_str":"10","throughput":null,"full_id":"access-deep-from-type/parsed/10","directory_name":"access-deep-from-type/parsed/10","title":"access-deep-from-type/parsed/10"} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/parsed/10/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4297.060244698779,"upper_bound":4307.904010642347},"point_estimate":4302.44788338608,"standard_error":2.7586056151601355},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4297.455927543264,"upper_bound":4305.784544004031},"point_estimate":4302.764789851557,"standard_error":2.107546220629641},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":13.077297799870074,"upper_bound":25.13412037464061},"point_estimate":20.457921280998963,"standard_error":3.1723731320231896},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4296.787363423626,"upper_bound":4307.487137141326},"point_estimate":4302.019284118987,"standard_error":2.730505005899802},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":20.04715460592006,"upper_bound":34.759417250228914},"point_estimate":27.733198358256402,"standard_error":3.762843602181992}} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/parsed/10/base/tukey.json: -------------------------------------------------------------------------------- 1 | [4205.623519450994,4245.860082130392,4353.1575826087865,4393.3941452881845] -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/parsed/10/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-deep-from-type","function_id":"parsed","value_str":"10","throughput":null,"full_id":"access-deep-from-type/parsed/10","directory_name":"access-deep-from-type/parsed/10","title":"access-deep-from-type/parsed/10"} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/parsed/10/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4297.060244698779,"upper_bound":4307.904010642347},"point_estimate":4302.44788338608,"standard_error":2.7586056151601355},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4297.455927543264,"upper_bound":4305.784544004031},"point_estimate":4302.764789851557,"standard_error":2.107546220629641},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":13.077297799870074,"upper_bound":25.13412037464061},"point_estimate":20.457921280998963,"standard_error":3.1723731320231896},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4296.787363423626,"upper_bound":4307.487137141326},"point_estimate":4302.019284118987,"standard_error":2.730505005899802},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":20.04715460592006,"upper_bound":34.759417250228914},"point_estimate":27.733198358256402,"standard_error":3.762843602181992}} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/parsed/10/new/tukey.json: -------------------------------------------------------------------------------- 1 | [4205.623519450994,4245.860082130392,4353.1575826087865,4393.3941452881845] -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/parsed/100/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-deep-from-type","function_id":"parsed","value_str":"100","throughput":null,"full_id":"access-deep-from-type/parsed/100","directory_name":"access-deep-from-type/parsed/100","title":"access-deep-from-type/parsed/100"} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/parsed/100/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":54933.797874731375,"upper_bound":55139.28037271465},"point_estimate":55029.66803343535,"standard_error":52.53486893972403},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":54847.903173472616,"upper_bound":55031.9076318743},"point_estimate":54923.379145622894,"standard_error":49.595254231221574},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":253.24180328183576,"upper_bound":439.0393502086906},"point_estimate":329.5482239054433,"standard_error":45.210406746112554},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":54771.54504139933,"upper_bound":54899.52630240632},"point_estimate":54831.47677946899,"standard_error":32.66130269176162},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":346.2560085827839,"upper_bound":705.1915459610215},"point_estimate":527.0179483099296,"standard_error":93.96127809162421}} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/parsed/100/base/tukey.json: -------------------------------------------------------------------------------- 1 | [53452.51713259455,54094.379979316946,55806.01423724335,56447.87708396575] -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/parsed/100/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-deep-from-type","function_id":"parsed","value_str":"100","throughput":null,"full_id":"access-deep-from-type/parsed/100","directory_name":"access-deep-from-type/parsed/100","title":"access-deep-from-type/parsed/100"} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/parsed/100/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":54933.797874731375,"upper_bound":55139.28037271465},"point_estimate":55029.66803343535,"standard_error":52.53486893972403},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":54847.903173472616,"upper_bound":55031.9076318743},"point_estimate":54923.379145622894,"standard_error":49.595254231221574},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":253.24180328183576,"upper_bound":439.0393502086906},"point_estimate":329.5482239054433,"standard_error":45.210406746112554},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":54771.54504139933,"upper_bound":54899.52630240632},"point_estimate":54831.47677946899,"standard_error":32.66130269176162},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":346.2560085827839,"upper_bound":705.1915459610215},"point_estimate":527.0179483099296,"standard_error":93.96127809162421}} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/parsed/100/new/tukey.json: -------------------------------------------------------------------------------- 1 | [53452.51713259455,54094.379979316946,55806.01423724335,56447.87708396575] -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/parsed/1000/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-deep-from-type","function_id":"parsed","value_str":"1000","throughput":null,"full_id":"access-deep-from-type/parsed/1000","directory_name":"access-deep-from-type/parsed/1000","title":"access-deep-from-type/parsed/1000"} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/parsed/1000/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1271717.1603850825,"upper_bound":1285718.1219346125},"point_estimate":1277316.0855117312,"standard_error":3700.006212863073},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1268659.761516854,"upper_bound":1271568.122596154},"point_estimate":1269508.3541666665,"standard_error":691.3996516958586},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4278.439549610455,"upper_bound":7467.403971966429},"point_estimate":5655.45033898973,"standard_error":844.5318547047387},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1269283.743861672,"upper_bound":1271909.357120668},"point_estimate":1270562.3981764445,"standard_error":668.7677005795372},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":8839.870698159386,"upper_bound":60883.39832649932},"point_estimate":37323.056454032376,"standard_error":15579.816341811716}} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/parsed/1000/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0,18.0,19.0,20.0,21.0,22.0,23.0,24.0,25.0,26.0,27.0,28.0,29.0,30.0,31.0,32.0,33.0,34.0,35.0,36.0,37.0,38.0,39.0,40.0,41.0,42.0,43.0,44.0,45.0,46.0,47.0,48.0,49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0,72.0,73.0,74.0,75.0,76.0,77.0,78.0,79.0,80.0,81.0,82.0,83.0,84.0,85.0,86.0,87.0,88.0,89.0,90.0,91.0,92.0,93.0,94.0,95.0,96.0,97.0,98.0,99.0,100.0],"times":[1320334.0,2653928.0,3852394.0,5601361.0,8041040.0,7777528.0,8856407.0,10137668.0,11788733.0,12755731.0,13927924.0,15231329.0,16523342.0,17817864.0,19117906.0,20209310.0,21505763.0,22751380.0,24462679.0,25369559.0,27302456.0,27948085.0,29510996.0,30649058.0,32015199.0,33156914.0,34316011.0,35408786.0,36808979.0,38167278.0,39110900.0,40707518.0,41790364.0,43043579.0,44329401.0,45656749.0,46966152.0,48060779.0,49445261.0,50671131.0,52502205.0,53443465.0,54309257.0,55851173.0,57037097.0,58388985.0,60289965.0,60594738.0,62023868.0,63441141.0,64631197.0,65665642.0,67544536.0,68888055.0,70310410.0,70980603.0,72816658.0,73535934.0,74690121.0,76166285.0,78152486.0,79107335.0,80216008.0,81279337.0,83038254.0,84074167.0,85595957.0,86615315.0,87789870.0,88941763.0,90115616.0,91409661.0,93281509.0,93853139.0,95077947.0,96291479.0,97454347.0,99116480.0,100108006.0,101575637.0,102528569.0,103599857.0,105810699.0,106293301.0,107692848.0,108641388.0,110248831.0,111455080.0,112926900.0,113826475.0,115258874.0,117803529.0,118598096.0,120033348.0,120748178.0,121829825.0,122712321.0,124912267.0,125703320.0,127917970.0]} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/parsed/1000/base/tukey.json: -------------------------------------------------------------------------------- 1 | [1240097.841300365,1253413.4028960615,1288921.5671512522,1302237.1287469487] -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/parsed/1000/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-deep-from-type","function_id":"parsed","value_str":"1000","throughput":null,"full_id":"access-deep-from-type/parsed/1000","directory_name":"access-deep-from-type/parsed/1000","title":"access-deep-from-type/parsed/1000"} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/parsed/1000/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1271717.1603850825,"upper_bound":1285718.1219346125},"point_estimate":1277316.0855117312,"standard_error":3700.006212863073},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1268659.761516854,"upper_bound":1271568.122596154},"point_estimate":1269508.3541666665,"standard_error":691.3996516958586},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4278.439549610455,"upper_bound":7467.403971966429},"point_estimate":5655.45033898973,"standard_error":844.5318547047387},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1269283.743861672,"upper_bound":1271909.357120668},"point_estimate":1270562.3981764445,"standard_error":668.7677005795372},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":8839.870698159386,"upper_bound":60883.39832649932},"point_estimate":37323.056454032376,"standard_error":15579.816341811716}} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/parsed/1000/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0,18.0,19.0,20.0,21.0,22.0,23.0,24.0,25.0,26.0,27.0,28.0,29.0,30.0,31.0,32.0,33.0,34.0,35.0,36.0,37.0,38.0,39.0,40.0,41.0,42.0,43.0,44.0,45.0,46.0,47.0,48.0,49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0,72.0,73.0,74.0,75.0,76.0,77.0,78.0,79.0,80.0,81.0,82.0,83.0,84.0,85.0,86.0,87.0,88.0,89.0,90.0,91.0,92.0,93.0,94.0,95.0,96.0,97.0,98.0,99.0,100.0],"times":[1320334.0,2653928.0,3852394.0,5601361.0,8041040.0,7777528.0,8856407.0,10137668.0,11788733.0,12755731.0,13927924.0,15231329.0,16523342.0,17817864.0,19117906.0,20209310.0,21505763.0,22751380.0,24462679.0,25369559.0,27302456.0,27948085.0,29510996.0,30649058.0,32015199.0,33156914.0,34316011.0,35408786.0,36808979.0,38167278.0,39110900.0,40707518.0,41790364.0,43043579.0,44329401.0,45656749.0,46966152.0,48060779.0,49445261.0,50671131.0,52502205.0,53443465.0,54309257.0,55851173.0,57037097.0,58388985.0,60289965.0,60594738.0,62023868.0,63441141.0,64631197.0,65665642.0,67544536.0,68888055.0,70310410.0,70980603.0,72816658.0,73535934.0,74690121.0,76166285.0,78152486.0,79107335.0,80216008.0,81279337.0,83038254.0,84074167.0,85595957.0,86615315.0,87789870.0,88941763.0,90115616.0,91409661.0,93281509.0,93853139.0,95077947.0,96291479.0,97454347.0,99116480.0,100108006.0,101575637.0,102528569.0,103599857.0,105810699.0,106293301.0,107692848.0,108641388.0,110248831.0,111455080.0,112926900.0,113826475.0,115258874.0,117803529.0,118598096.0,120033348.0,120748178.0,121829825.0,122712321.0,124912267.0,125703320.0,127917970.0]} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/parsed/1000/new/tukey.json: -------------------------------------------------------------------------------- 1 | [1240097.841300365,1253413.4028960615,1288921.5671512522,1302237.1287469487] -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/raw/10/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-deep-from-type","function_id":"raw","value_str":"10","throughput":null,"full_id":"access-deep-from-type/raw/10","directory_name":"access-deep-from-type/raw/10","title":"access-deep-from-type/raw/10"} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/raw/10/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":596.0437876638242,"upper_bound":597.5069598310139},"point_estimate":596.7672887122742,"standard_error":0.37258947847542667},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":595.4332667205239,"upper_bound":597.1116174341929},"point_estimate":596.2016718954044,"standard_error":0.40936962942034116},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1.9518060255275091,"upper_bound":3.384638190915118},"point_estimate":2.6858008012763595,"standard_error":0.34716359352806303},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":596.0323566614604,"upper_bound":597.059826348364},"point_estimate":596.5415534242936,"standard_error":0.26270468369326455},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2.634924401353482,"upper_bound":4.822485803703504},"point_estimate":3.7629574431771506,"standard_error":0.5602825232230608}} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/raw/10/base/tukey.json: -------------------------------------------------------------------------------- 1 | [584.3415659380671,589.5220111114243,603.3365315737099,608.5169767470669] -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/raw/10/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-deep-from-type","function_id":"raw","value_str":"10","throughput":null,"full_id":"access-deep-from-type/raw/10","directory_name":"access-deep-from-type/raw/10","title":"access-deep-from-type/raw/10"} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/raw/10/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":596.0437876638242,"upper_bound":597.5069598310139},"point_estimate":596.7672887122742,"standard_error":0.37258947847542667},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":595.4332667205239,"upper_bound":597.1116174341929},"point_estimate":596.2016718954044,"standard_error":0.40936962942034116},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1.9518060255275091,"upper_bound":3.384638190915118},"point_estimate":2.6858008012763595,"standard_error":0.34716359352806303},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":596.0323566614604,"upper_bound":597.059826348364},"point_estimate":596.5415534242936,"standard_error":0.26270468369326455},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2.634924401353482,"upper_bound":4.822485803703504},"point_estimate":3.7629574431771506,"standard_error":0.5602825232230608}} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/raw/10/new/tukey.json: -------------------------------------------------------------------------------- 1 | [584.3415659380671,589.5220111114243,603.3365315737099,608.5169767470669] -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/raw/100/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-deep-from-type","function_id":"raw","value_str":"100","throughput":null,"full_id":"access-deep-from-type/raw/100","directory_name":"access-deep-from-type/raw/100","title":"access-deep-from-type/raw/100"} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/raw/100/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3743.8221555704627,"upper_bound":3754.6017056779447},"point_estimate":3749.0060035443817,"standard_error":2.7553995380512424},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3739.901886792453,"upper_bound":3746.1877513145687},"point_estimate":3742.824097980801,"standard_error":1.5740925342662},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":11.780024129515859,"upper_bound":24.471291641019075},"point_estimate":18.61394834000588,"standard_error":3.2186290748620547},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3736.85357833828,"upper_bound":3751.5522178570645},"point_estimate":3743.756796930721,"standard_error":3.7588274049451065},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":21.294116987714983,"upper_bound":34.27176170233109},"point_estimate":27.66186183954907,"standard_error":3.3824798547440014}} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/raw/100/base/tukey.json: -------------------------------------------------------------------------------- 1 | [3660.433408682512,3696.560642178183,3792.899931499973,3829.027164995644] -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/raw/100/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-deep-from-type","function_id":"raw","value_str":"100","throughput":null,"full_id":"access-deep-from-type/raw/100","directory_name":"access-deep-from-type/raw/100","title":"access-deep-from-type/raw/100"} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/raw/100/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3743.8221555704627,"upper_bound":3754.6017056779447},"point_estimate":3749.0060035443817,"standard_error":2.7553995380512424},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3739.901886792453,"upper_bound":3746.1877513145687},"point_estimate":3742.824097980801,"standard_error":1.5740925342662},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":11.780024129515859,"upper_bound":24.471291641019075},"point_estimate":18.61394834000588,"standard_error":3.2186290748620547},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3736.85357833828,"upper_bound":3751.5522178570645},"point_estimate":3743.756796930721,"standard_error":3.7588274049451065},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":21.294116987714983,"upper_bound":34.27176170233109},"point_estimate":27.66186183954907,"standard_error":3.3824798547440014}} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/raw/100/new/tukey.json: -------------------------------------------------------------------------------- 1 | [3660.433408682512,3696.560642178183,3792.899931499973,3829.027164995644] -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/raw/1000/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-deep-from-type","function_id":"raw","value_str":"1000","throughput":null,"full_id":"access-deep-from-type/raw/1000","directory_name":"access-deep-from-type/raw/1000","title":"access-deep-from-type/raw/1000"} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/raw/1000/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":34838.615033744645,"upper_bound":34933.275928266434},"point_estimate":34881.948383196795,"standard_error":24.25926593063068},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":34834.91855025232,"upper_bound":34888.587438423645},"point_estimate":34861.37233630376,"standard_error":14.220201446654231},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":92.86868884457147,"upper_bound":154.26915554487633},"point_estimate":123.40467107680155,"standard_error":15.240023611133045},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":34780.8988080027,"upper_bound":34843.81271824873},"point_estimate":34812.52865692024,"standard_error":16.012581751100072},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":134.20211439838727,"upper_bound":346.7237998292282},"point_estimate":244.31586667271864,"standard_error":55.94533826145425}} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/raw/1000/base/tukey.json: -------------------------------------------------------------------------------- 1 | [34294.60376396404,34538.69882959954,35189.619004627544,35433.71407026305] -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/raw/1000/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"access-deep-from-type","function_id":"raw","value_str":"1000","throughput":null,"full_id":"access-deep-from-type/raw/1000","directory_name":"access-deep-from-type/raw/1000","title":"access-deep-from-type/raw/1000"} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/raw/1000/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":34838.615033744645,"upper_bound":34933.275928266434},"point_estimate":34881.948383196795,"standard_error":24.25926593063068},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":34834.91855025232,"upper_bound":34888.587438423645},"point_estimate":34861.37233630376,"standard_error":14.220201446654231},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":92.86868884457147,"upper_bound":154.26915554487633},"point_estimate":123.40467107680155,"standard_error":15.240023611133045},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":34780.8988080027,"upper_bound":34843.81271824873},"point_estimate":34812.52865692024,"standard_error":16.012581751100072},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":134.20211439838727,"upper_bound":346.7237998292282},"point_estimate":244.31586667271864,"standard_error":55.94533826145425}} -------------------------------------------------------------------------------- /criterion-report/access-deep-from-type/raw/1000/new/tukey.json: -------------------------------------------------------------------------------- 1 | [34294.60376396404,34538.69882959954,35189.619004627544,35433.71407026305] -------------------------------------------------------------------------------- /criterion-report/construct-bson-broad/direct/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"construct-bson-broad","function_id":"direct","value_str":null,"throughput":null,"full_id":"construct-bson-broad/direct","directory_name":"construct-bson-broad/direct","title":"construct-bson-broad/direct"} -------------------------------------------------------------------------------- /criterion-report/construct-bson-broad/direct/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":480463.20897403307,"upper_bound":481886.3688225505},"point_estimate":481140.9057540135,"standard_error":362.83912833840947},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":479598.357723659,"upper_bound":481194.79569892475},"point_estimate":480350.8272893773,"standard_error":409.34410147958886},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1973.8272116331143,"upper_bound":3187.236683020999},"point_estimate":2573.4383009162334,"standard_error":301.10562697700607},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":478887.68317941,"upper_bound":479655.5411625625},"point_estimate":479250.01249987684,"standard_error":195.2702104541597},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2619.5642913222796,"upper_bound":4602.3134061823275},"point_estimate":3640.236152153302,"standard_error":509.4106441660899}} -------------------------------------------------------------------------------- /criterion-report/construct-bson-broad/direct/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[3.0,6.0,9.0,12.0,15.0,18.0,21.0,24.0,27.0,30.0,33.0,36.0,39.0,42.0,45.0,48.0,51.0,54.0,57.0,60.0,63.0,66.0,69.0,72.0,75.0,78.0,81.0,84.0,87.0,90.0,93.0,96.0,99.0,102.0,105.0,108.0,111.0,114.0,117.0,120.0,123.0,126.0,129.0,132.0,135.0,138.0,141.0,144.0,147.0,150.0,153.0,156.0,159.0,162.0,165.0,168.0,171.0,174.0,177.0,180.0,183.0,186.0,189.0,192.0,195.0,198.0,201.0,204.0,207.0,210.0,213.0,216.0,219.0,222.0,225.0,228.0,231.0,234.0,237.0,240.0,243.0,246.0,249.0,252.0,255.0,258.0,261.0,264.0,267.0,270.0,273.0,276.0,279.0,282.0,285.0,288.0,291.0,294.0,297.0,300.0],"times":[1489625.0,2939477.0,4373988.0,5973045.0,7113362.0,8768442.0,10227117.0,11665046.0,13087483.0,14410327.0,15898346.0,17328096.0,18842929.0,20359447.0,21675501.0,23249623.0,24742649.0,25936951.0,27329155.0,29041246.0,30683753.0,31843155.0,33296775.0,34500252.0,36587532.0,37686839.0,38997308.0,40541800.0,42169645.0,43397689.0,44751116.0,46213478.0,47760635.0,49164994.0,50461111.0,52512305.0,53537325.0,54913915.0,56392354.0,57794688.0,59177639.0,60751798.0,61741256.0,63703885.0,64462564.0,66205988.0,68144257.0,69031845.0,70275585.0,72103544.0,72981070.0,75256382.0,76196879.0,78484725.0,78954253.0,80577576.0,81898062.0,83675027.0,84930862.0,86829272.0,87679352.0,89209039.0,90861699.0,92509840.0,93460555.0,95058560.0,95911630.0,97796962.0,99371603.0,100368552.0,102185055.0,103452315.0,105012724.0,106767361.0,107835196.0,109563833.0,111007857.0,112116485.0,113492801.0,114895475.0,116216959.0,117159165.0,119521040.0,120613346.0,122068630.0,123359673.0,124682306.0,126354557.0,127668538.0,129222975.0,131137576.0,132160876.0,133361306.0,134759109.0,135613284.0,137769757.0,139061727.0,140960023.0,141794918.0,143592197.0]} -------------------------------------------------------------------------------- /criterion-report/construct-bson-broad/direct/base/tukey.json: -------------------------------------------------------------------------------- 1 | [468010.8277401945,473413.21470795956,487819.579955333,493221.9669230981] -------------------------------------------------------------------------------- /criterion-report/construct-bson-broad/direct/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"construct-bson-broad","function_id":"direct","value_str":null,"throughput":null,"full_id":"construct-bson-broad/direct","directory_name":"construct-bson-broad/direct","title":"construct-bson-broad/direct"} -------------------------------------------------------------------------------- /criterion-report/construct-bson-broad/direct/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":480463.20897403307,"upper_bound":481886.3688225505},"point_estimate":481140.9057540135,"standard_error":362.83912833840947},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":479598.357723659,"upper_bound":481194.79569892475},"point_estimate":480350.8272893773,"standard_error":409.34410147958886},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1973.8272116331143,"upper_bound":3187.236683020999},"point_estimate":2573.4383009162334,"standard_error":301.10562697700607},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":478887.68317941,"upper_bound":479655.5411625625},"point_estimate":479250.01249987684,"standard_error":195.2702104541597},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2619.5642913222796,"upper_bound":4602.3134061823275},"point_estimate":3640.236152153302,"standard_error":509.4106441660899}} -------------------------------------------------------------------------------- /criterion-report/construct-bson-broad/direct/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[3.0,6.0,9.0,12.0,15.0,18.0,21.0,24.0,27.0,30.0,33.0,36.0,39.0,42.0,45.0,48.0,51.0,54.0,57.0,60.0,63.0,66.0,69.0,72.0,75.0,78.0,81.0,84.0,87.0,90.0,93.0,96.0,99.0,102.0,105.0,108.0,111.0,114.0,117.0,120.0,123.0,126.0,129.0,132.0,135.0,138.0,141.0,144.0,147.0,150.0,153.0,156.0,159.0,162.0,165.0,168.0,171.0,174.0,177.0,180.0,183.0,186.0,189.0,192.0,195.0,198.0,201.0,204.0,207.0,210.0,213.0,216.0,219.0,222.0,225.0,228.0,231.0,234.0,237.0,240.0,243.0,246.0,249.0,252.0,255.0,258.0,261.0,264.0,267.0,270.0,273.0,276.0,279.0,282.0,285.0,288.0,291.0,294.0,297.0,300.0],"times":[1489625.0,2939477.0,4373988.0,5973045.0,7113362.0,8768442.0,10227117.0,11665046.0,13087483.0,14410327.0,15898346.0,17328096.0,18842929.0,20359447.0,21675501.0,23249623.0,24742649.0,25936951.0,27329155.0,29041246.0,30683753.0,31843155.0,33296775.0,34500252.0,36587532.0,37686839.0,38997308.0,40541800.0,42169645.0,43397689.0,44751116.0,46213478.0,47760635.0,49164994.0,50461111.0,52512305.0,53537325.0,54913915.0,56392354.0,57794688.0,59177639.0,60751798.0,61741256.0,63703885.0,64462564.0,66205988.0,68144257.0,69031845.0,70275585.0,72103544.0,72981070.0,75256382.0,76196879.0,78484725.0,78954253.0,80577576.0,81898062.0,83675027.0,84930862.0,86829272.0,87679352.0,89209039.0,90861699.0,92509840.0,93460555.0,95058560.0,95911630.0,97796962.0,99371603.0,100368552.0,102185055.0,103452315.0,105012724.0,106767361.0,107835196.0,109563833.0,111007857.0,112116485.0,113492801.0,114895475.0,116216959.0,117159165.0,119521040.0,120613346.0,122068630.0,123359673.0,124682306.0,126354557.0,127668538.0,129222975.0,131137576.0,132160876.0,133361306.0,134759109.0,135613284.0,137769757.0,139061727.0,140960023.0,141794918.0,143592197.0]} -------------------------------------------------------------------------------- /criterion-report/construct-bson-broad/direct/new/tukey.json: -------------------------------------------------------------------------------- 1 | [468010.8277401945,473413.21470795956,487819.579955333,493221.9669230981] -------------------------------------------------------------------------------- /criterion-report/construct-bson-broad/via-raw/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"construct-bson-broad","function_id":"via-raw","value_str":null,"throughput":null,"full_id":"construct-bson-broad/via-raw","directory_name":"construct-bson-broad/via-raw","title":"construct-bson-broad/via-raw"} -------------------------------------------------------------------------------- /criterion-report/construct-bson-broad/via-raw/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":397969.93908968195,"upper_bound":400541.96137416654},"point_estimate":399085.3929878479,"standard_error":664.6354127064851},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":397484.6696296296,"upper_bound":398440.6434108527},"point_estimate":397903.052631579,"standard_error":241.57522055991748},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1277.1800394600339,"upper_bound":2198.9576590397955},"point_estimate":1705.327534694724,"standard_error":230.39161774558616},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":398053.7460752967,"upper_bound":401043.1819268778},"point_estimate":399292.1689000542,"standard_error":773.5881262982664},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2550.0222831910023,"upper_bound":10285.915576821211},"point_estimate":6691.241571162664,"standard_error":2078.0707020565073}} -------------------------------------------------------------------------------- /criterion-report/construct-bson-broad/via-raw/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[3.0,6.0,9.0,12.0,15.0,18.0,21.0,24.0,27.0,30.0,33.0,36.0,39.0,42.0,45.0,48.0,51.0,54.0,57.0,60.0,63.0,66.0,69.0,72.0,75.0,78.0,81.0,84.0,87.0,90.0,93.0,96.0,99.0,102.0,105.0,108.0,111.0,114.0,117.0,120.0,123.0,126.0,129.0,132.0,135.0,138.0,141.0,144.0,147.0,150.0,153.0,156.0,159.0,162.0,165.0,168.0,171.0,174.0,177.0,180.0,183.0,186.0,189.0,192.0,195.0,198.0,201.0,204.0,207.0,210.0,213.0,216.0,219.0,222.0,225.0,228.0,231.0,234.0,237.0,240.0,243.0,246.0,249.0,252.0,255.0,258.0,261.0,264.0,267.0,270.0,273.0,276.0,279.0,282.0,285.0,288.0,291.0,294.0,297.0,300.0],"times":[1180126.0,2318303.0,3623331.0,4809164.0,6017370.0,7146068.0,8331078.0,9528134.0,10741501.0,11818398.0,13111801.0,14359913.0,15641643.0,16736551.0,17961127.0,18985714.0,20342632.0,21416272.0,22720052.0,23883560.0,25041816.0,26178394.0,28115899.0,28573493.0,30110243.0,31091507.0,32332671.0,33424055.0,34655642.0,35845011.0,36908494.0,38480639.0,39140125.0,40738086.0,41799631.0,42909702.0,44312046.0,45264045.0,47018675.0,47945262.0,48691809.0,50037979.0,53101378.0,53891952.0,53661365.0,54751307.0,55987999.0,56898170.0,58912114.0,59524044.0,60751359.0,62037207.0,63195793.0,64254895.0,65247831.0,66508349.0,68309947.0,68648378.0,70122055.0,71183680.0,72426557.0,74183302.0,81263322.0,86301981.0,77842433.0,78785880.0,79836321.0,81172825.0,82282100.0,84126953.0,84433838.0,85979823.0,87072273.0,88256994.0,89693207.0,90721357.0,92209261.0,93254025.0,94171575.0,96027198.0,97851455.0,98044382.0,99704453.0,100854273.0,103366486.0,102797686.0,103918247.0,105348951.0,105446713.0,107197669.0,109444468.0,109788873.0,110911498.0,111736806.0,113237912.0,114161419.0,115995714.0,116755181.0,118446088.0,119243324.0]} -------------------------------------------------------------------------------- /criterion-report/construct-bson-broad/via-raw/base/tukey.json: -------------------------------------------------------------------------------- 1 | [390340.73454072804,393654.9747972457,402492.9488146262,405807.1890711439] -------------------------------------------------------------------------------- /criterion-report/construct-bson-broad/via-raw/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"construct-bson-broad","function_id":"via-raw","value_str":null,"throughput":null,"full_id":"construct-bson-broad/via-raw","directory_name":"construct-bson-broad/via-raw","title":"construct-bson-broad/via-raw"} -------------------------------------------------------------------------------- /criterion-report/construct-bson-broad/via-raw/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":397969.93908968195,"upper_bound":400541.96137416654},"point_estimate":399085.3929878479,"standard_error":664.6354127064851},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":397484.6696296296,"upper_bound":398440.6434108527},"point_estimate":397903.052631579,"standard_error":241.57522055991748},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1277.1800394600339,"upper_bound":2198.9576590397955},"point_estimate":1705.327534694724,"standard_error":230.39161774558616},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":398053.7460752967,"upper_bound":401043.1819268778},"point_estimate":399292.1689000542,"standard_error":773.5881262982664},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2550.0222831910023,"upper_bound":10285.915576821211},"point_estimate":6691.241571162664,"standard_error":2078.0707020565073}} -------------------------------------------------------------------------------- /criterion-report/construct-bson-broad/via-raw/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[3.0,6.0,9.0,12.0,15.0,18.0,21.0,24.0,27.0,30.0,33.0,36.0,39.0,42.0,45.0,48.0,51.0,54.0,57.0,60.0,63.0,66.0,69.0,72.0,75.0,78.0,81.0,84.0,87.0,90.0,93.0,96.0,99.0,102.0,105.0,108.0,111.0,114.0,117.0,120.0,123.0,126.0,129.0,132.0,135.0,138.0,141.0,144.0,147.0,150.0,153.0,156.0,159.0,162.0,165.0,168.0,171.0,174.0,177.0,180.0,183.0,186.0,189.0,192.0,195.0,198.0,201.0,204.0,207.0,210.0,213.0,216.0,219.0,222.0,225.0,228.0,231.0,234.0,237.0,240.0,243.0,246.0,249.0,252.0,255.0,258.0,261.0,264.0,267.0,270.0,273.0,276.0,279.0,282.0,285.0,288.0,291.0,294.0,297.0,300.0],"times":[1180126.0,2318303.0,3623331.0,4809164.0,6017370.0,7146068.0,8331078.0,9528134.0,10741501.0,11818398.0,13111801.0,14359913.0,15641643.0,16736551.0,17961127.0,18985714.0,20342632.0,21416272.0,22720052.0,23883560.0,25041816.0,26178394.0,28115899.0,28573493.0,30110243.0,31091507.0,32332671.0,33424055.0,34655642.0,35845011.0,36908494.0,38480639.0,39140125.0,40738086.0,41799631.0,42909702.0,44312046.0,45264045.0,47018675.0,47945262.0,48691809.0,50037979.0,53101378.0,53891952.0,53661365.0,54751307.0,55987999.0,56898170.0,58912114.0,59524044.0,60751359.0,62037207.0,63195793.0,64254895.0,65247831.0,66508349.0,68309947.0,68648378.0,70122055.0,71183680.0,72426557.0,74183302.0,81263322.0,86301981.0,77842433.0,78785880.0,79836321.0,81172825.0,82282100.0,84126953.0,84433838.0,85979823.0,87072273.0,88256994.0,89693207.0,90721357.0,92209261.0,93254025.0,94171575.0,96027198.0,97851455.0,98044382.0,99704453.0,100854273.0,103366486.0,102797686.0,103918247.0,105348951.0,105446713.0,107197669.0,109444468.0,109788873.0,110911498.0,111736806.0,113237912.0,114161419.0,115995714.0,116755181.0,118446088.0,119243324.0]} -------------------------------------------------------------------------------- /criterion-report/construct-bson-broad/via-raw/new/tukey.json: -------------------------------------------------------------------------------- 1 | [390340.73454072804,393654.9747972457,402492.9488146262,405807.1890711439] -------------------------------------------------------------------------------- /criterion-report/construct-bson-deep/direct/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"construct-bson-deep","function_id":"direct","value_str":null,"throughput":null,"full_id":"construct-bson-deep/direct","directory_name":"construct-bson-deep/direct","title":"construct-bson-deep/direct"} -------------------------------------------------------------------------------- /criterion-report/construct-bson-deep/direct/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1203591.1973713005,"upper_bound":1219399.9448841454},"point_estimate":1209817.98679412,"standard_error":4191.448945181528},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1202021.4707792208,"upper_bound":1204116.4409608333},"point_estimate":1202921.548076923,"standard_error":561.7317108580237},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3016.87870054498,"upper_bound":6247.383754691694},"point_estimate":4571.444017968604,"standard_error":813.14029399851},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1203480.4965306295,"upper_bound":1206822.6045301785},"point_estimate":1205091.7369321708,"standard_error":851.413642969388},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6565.998571352239,"upper_bound":69038.62403544011},"point_estimate":42130.40348387538,"standard_error":18199.597077389557}} -------------------------------------------------------------------------------- /criterion-report/construct-bson-deep/direct/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0,18.0,19.0,20.0,21.0,22.0,23.0,24.0,25.0,26.0,27.0,28.0,29.0,30.0,31.0,32.0,33.0,34.0,35.0,36.0,37.0,38.0,39.0,40.0,41.0,42.0,43.0,44.0,45.0,46.0,47.0,48.0,49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0,72.0,73.0,74.0,75.0,76.0,77.0,78.0,79.0,80.0,81.0,82.0,83.0,84.0,85.0,86.0,87.0,88.0,89.0,90.0,91.0,92.0,93.0,94.0,95.0,96.0,97.0,98.0,99.0,100.0],"times":[1186754.0,2468887.0,3596149.0,6316521.0,6928297.0,7314603.0,8382810.0,9767702.0,10833106.0,12062645.0,13175812.0,14448861.0,15566403.0,16908338.0,17996083.0,19096889.0,20298415.0,21469437.0,22732494.0,24046910.0,25321610.0,26657628.0,27782350.0,28944273.0,30126156.0,31324082.0,32504180.0,33654262.0,34844635.0,36109222.0,37202729.0,38539320.0,39739194.0,40948750.0,42121622.0,44327251.0,44561818.0,45637108.0,46775585.0,47928258.0,49173936.0,50236328.0,51593317.0,52923433.0,54120307.0,55182497.0,56411487.0,57585418.0,58987292.0,60235486.0,61010690.0,62212120.0,64354283.0,64886931.0,66960406.0,67080641.0,68865693.0,69366247.0,70937790.0,72142996.0,73091274.0,74696750.0,75700483.0,77434788.0,77947254.0,79282667.0,80702590.0,82752373.0,82988382.0,84973587.0,85486960.0,86608518.0,87905957.0,89232873.0,90262670.0,92231699.0,92562086.0,93829867.0,96345464.0,96241385.0,97778860.0,98522434.0,99771571.0,101285558.0,102153697.0,103599922.0,104523712.0,105730658.0,108183159.0,108216639.0,110293300.0,110271970.0,111730789.0,112917490.0,113912757.0,115135202.0,116974561.0,118909088.0,120878784.0,120856979.0]} -------------------------------------------------------------------------------- /criterion-report/construct-bson-deep/direct/base/tukey.json: -------------------------------------------------------------------------------- 1 | [1181436.6337264238,1190627.3932198011,1215136.0852021403,1224326.8446955173] -------------------------------------------------------------------------------- /criterion-report/construct-bson-deep/direct/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"construct-bson-deep","function_id":"direct","value_str":null,"throughput":null,"full_id":"construct-bson-deep/direct","directory_name":"construct-bson-deep/direct","title":"construct-bson-deep/direct"} -------------------------------------------------------------------------------- /criterion-report/construct-bson-deep/direct/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1203591.1973713005,"upper_bound":1219399.9448841454},"point_estimate":1209817.98679412,"standard_error":4191.448945181528},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1202021.4707792208,"upper_bound":1204116.4409608333},"point_estimate":1202921.548076923,"standard_error":561.7317108580237},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3016.87870054498,"upper_bound":6247.383754691694},"point_estimate":4571.444017968604,"standard_error":813.14029399851},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1203480.4965306295,"upper_bound":1206822.6045301785},"point_estimate":1205091.7369321708,"standard_error":851.413642969388},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6565.998571352239,"upper_bound":69038.62403544011},"point_estimate":42130.40348387538,"standard_error":18199.597077389557}} -------------------------------------------------------------------------------- /criterion-report/construct-bson-deep/direct/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0,18.0,19.0,20.0,21.0,22.0,23.0,24.0,25.0,26.0,27.0,28.0,29.0,30.0,31.0,32.0,33.0,34.0,35.0,36.0,37.0,38.0,39.0,40.0,41.0,42.0,43.0,44.0,45.0,46.0,47.0,48.0,49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0,72.0,73.0,74.0,75.0,76.0,77.0,78.0,79.0,80.0,81.0,82.0,83.0,84.0,85.0,86.0,87.0,88.0,89.0,90.0,91.0,92.0,93.0,94.0,95.0,96.0,97.0,98.0,99.0,100.0],"times":[1186754.0,2468887.0,3596149.0,6316521.0,6928297.0,7314603.0,8382810.0,9767702.0,10833106.0,12062645.0,13175812.0,14448861.0,15566403.0,16908338.0,17996083.0,19096889.0,20298415.0,21469437.0,22732494.0,24046910.0,25321610.0,26657628.0,27782350.0,28944273.0,30126156.0,31324082.0,32504180.0,33654262.0,34844635.0,36109222.0,37202729.0,38539320.0,39739194.0,40948750.0,42121622.0,44327251.0,44561818.0,45637108.0,46775585.0,47928258.0,49173936.0,50236328.0,51593317.0,52923433.0,54120307.0,55182497.0,56411487.0,57585418.0,58987292.0,60235486.0,61010690.0,62212120.0,64354283.0,64886931.0,66960406.0,67080641.0,68865693.0,69366247.0,70937790.0,72142996.0,73091274.0,74696750.0,75700483.0,77434788.0,77947254.0,79282667.0,80702590.0,82752373.0,82988382.0,84973587.0,85486960.0,86608518.0,87905957.0,89232873.0,90262670.0,92231699.0,92562086.0,93829867.0,96345464.0,96241385.0,97778860.0,98522434.0,99771571.0,101285558.0,102153697.0,103599922.0,104523712.0,105730658.0,108183159.0,108216639.0,110293300.0,110271970.0,111730789.0,112917490.0,113912757.0,115135202.0,116974561.0,118909088.0,120878784.0,120856979.0]} -------------------------------------------------------------------------------- /criterion-report/construct-bson-deep/direct/new/tukey.json: -------------------------------------------------------------------------------- 1 | [1181436.6337264238,1190627.3932198011,1215136.0852021403,1224326.8446955173] -------------------------------------------------------------------------------- /criterion-report/construct-bson-deep/via-raw/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"construct-bson-deep","function_id":"via-raw","value_str":null,"throughput":null,"full_id":"construct-bson-deep/via-raw","directory_name":"construct-bson-deep/via-raw","title":"construct-bson-deep/via-raw"} -------------------------------------------------------------------------------- /criterion-report/construct-bson-deep/via-raw/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":461193.0910166679,"upper_bound":463180.1445841075},"point_estimate":462135.4882205724,"standard_error":506.89511880261057},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":460440.41921631776,"upper_bound":461788.7301587302},"point_estimate":461202.388990639,"standard_error":305.28212438607494},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2365.710073349038,"upper_bound":3724.332714016479},"point_estimate":2962.9494202419733,"standard_error":326.12289109902986},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":460080.33552381303,"upper_bound":462627.96934691066},"point_estimate":461212.11033545143,"standard_error":653.6062985872306},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3683.7319747431943,"upper_bound":6319.039201487509},"point_estimate":5101.986533366839,"standard_error":671.7759938908753}} -------------------------------------------------------------------------------- /criterion-report/construct-bson-deep/via-raw/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[3.0,6.0,9.0,12.0,15.0,18.0,21.0,24.0,27.0,30.0,33.0,36.0,39.0,42.0,45.0,48.0,51.0,54.0,57.0,60.0,63.0,66.0,69.0,72.0,75.0,78.0,81.0,84.0,87.0,90.0,93.0,96.0,99.0,102.0,105.0,108.0,111.0,114.0,117.0,120.0,123.0,126.0,129.0,132.0,135.0,138.0,141.0,144.0,147.0,150.0,153.0,156.0,159.0,162.0,165.0,168.0,171.0,174.0,177.0,180.0,183.0,186.0,189.0,192.0,195.0,198.0,201.0,204.0,207.0,210.0,213.0,216.0,219.0,222.0,225.0,228.0,231.0,234.0,237.0,240.0,243.0,246.0,249.0,252.0,255.0,258.0,261.0,264.0,267.0,270.0,273.0,276.0,279.0,282.0,285.0,288.0,291.0,294.0,297.0,300.0],"times":[1432742.0,2733550.0,4077554.0,5703593.0,6948761.0,8328626.0,9609535.0,11015237.0,12321344.0,13973259.0,15155499.0,17139682.0,18149817.0,19384825.0,20782597.0,22042474.0,23398008.0,24987518.0,26160954.0,27747552.0,29092690.0,30732432.0,31964048.0,33295600.0,35691543.0,35972761.0,37414889.0,38752083.0,40299720.0,41938683.0,42997727.0,44161025.0,45636324.0,46925643.0,48935286.0,49896666.0,51697471.0,52590564.0,53991445.0,56454236.0,56889410.0,58336120.0,59736948.0,61258209.0,63380926.0,63564777.0,64833968.0,66674857.0,68060274.0,69222220.0,70065644.0,72253432.0,73704088.0,74563175.0,75777951.0,77227268.0,78749199.0,80032021.0,82762240.0,82884861.0,84460198.0,85450337.0,87169736.0,88546063.0,89438826.0,90498726.0,92268790.0,93689989.0,95428009.0,97384172.0,98230942.0,99016093.0,100742319.0,101898851.0,105552540.0,109575959.0,111719579.0,108729776.0,109034428.0,110877505.0,111432330.0,112836462.0,114949772.0,115147927.0,116516267.0,118925549.0,119126869.0,121717876.0,123428003.0,123815850.0,124787649.0,126314485.0,127611716.0,130101239.0,130866329.0,134319255.0,133429316.0,135051942.0,136113888.0,137253127.0]} -------------------------------------------------------------------------------- /criterion-report/construct-bson-deep/via-raw/base/tukey.json: -------------------------------------------------------------------------------- 1 | [447293.2308721435,453220.24190242426,469025.60464983946,474952.6156801201] -------------------------------------------------------------------------------- /criterion-report/construct-bson-deep/via-raw/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"construct-bson-deep","function_id":"via-raw","value_str":null,"throughput":null,"full_id":"construct-bson-deep/via-raw","directory_name":"construct-bson-deep/via-raw","title":"construct-bson-deep/via-raw"} -------------------------------------------------------------------------------- /criterion-report/construct-bson-deep/via-raw/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":461193.0910166679,"upper_bound":463180.1445841075},"point_estimate":462135.4882205724,"standard_error":506.89511880261057},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":460440.41921631776,"upper_bound":461788.7301587302},"point_estimate":461202.388990639,"standard_error":305.28212438607494},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2365.710073349038,"upper_bound":3724.332714016479},"point_estimate":2962.9494202419733,"standard_error":326.12289109902986},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":460080.33552381303,"upper_bound":462627.96934691066},"point_estimate":461212.11033545143,"standard_error":653.6062985872306},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3683.7319747431943,"upper_bound":6319.039201487509},"point_estimate":5101.986533366839,"standard_error":671.7759938908753}} -------------------------------------------------------------------------------- /criterion-report/construct-bson-deep/via-raw/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[3.0,6.0,9.0,12.0,15.0,18.0,21.0,24.0,27.0,30.0,33.0,36.0,39.0,42.0,45.0,48.0,51.0,54.0,57.0,60.0,63.0,66.0,69.0,72.0,75.0,78.0,81.0,84.0,87.0,90.0,93.0,96.0,99.0,102.0,105.0,108.0,111.0,114.0,117.0,120.0,123.0,126.0,129.0,132.0,135.0,138.0,141.0,144.0,147.0,150.0,153.0,156.0,159.0,162.0,165.0,168.0,171.0,174.0,177.0,180.0,183.0,186.0,189.0,192.0,195.0,198.0,201.0,204.0,207.0,210.0,213.0,216.0,219.0,222.0,225.0,228.0,231.0,234.0,237.0,240.0,243.0,246.0,249.0,252.0,255.0,258.0,261.0,264.0,267.0,270.0,273.0,276.0,279.0,282.0,285.0,288.0,291.0,294.0,297.0,300.0],"times":[1432742.0,2733550.0,4077554.0,5703593.0,6948761.0,8328626.0,9609535.0,11015237.0,12321344.0,13973259.0,15155499.0,17139682.0,18149817.0,19384825.0,20782597.0,22042474.0,23398008.0,24987518.0,26160954.0,27747552.0,29092690.0,30732432.0,31964048.0,33295600.0,35691543.0,35972761.0,37414889.0,38752083.0,40299720.0,41938683.0,42997727.0,44161025.0,45636324.0,46925643.0,48935286.0,49896666.0,51697471.0,52590564.0,53991445.0,56454236.0,56889410.0,58336120.0,59736948.0,61258209.0,63380926.0,63564777.0,64833968.0,66674857.0,68060274.0,69222220.0,70065644.0,72253432.0,73704088.0,74563175.0,75777951.0,77227268.0,78749199.0,80032021.0,82762240.0,82884861.0,84460198.0,85450337.0,87169736.0,88546063.0,89438826.0,90498726.0,92268790.0,93689989.0,95428009.0,97384172.0,98230942.0,99016093.0,100742319.0,101898851.0,105552540.0,109575959.0,111719579.0,108729776.0,109034428.0,110877505.0,111432330.0,112836462.0,114949772.0,115147927.0,116516267.0,118925549.0,119126869.0,121717876.0,123428003.0,123815850.0,124787649.0,126314485.0,127611716.0,130101239.0,130866329.0,134319255.0,133429316.0,135051942.0,136113888.0,137253127.0]} -------------------------------------------------------------------------------- /criterion-report/construct-bson-deep/via-raw/new/tukey.json: -------------------------------------------------------------------------------- 1 | [447293.2308721435,453220.24190242426,469025.60464983946,474952.6156801201] -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-bytes/parsed/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"iter-broad-from-bytes","function_id":"parsed","value_str":null,"throughput":null,"full_id":"iter-broad-from-bytes/parsed","directory_name":"iter-broad-from-bytes/parsed","title":"iter-broad-from-bytes/parsed"} -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-bytes/parsed/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":532995.3948137463,"upper_bound":534522.9824094839},"point_estimate":533759.9426143928,"standard_error":390.3956099120388},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":533474.3831168831,"upper_bound":534823.3806494076},"point_estimate":534260.1682692308,"standard_error":337.04334294665705},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2381.4088054087756,"upper_bound":4440.767716139274},"point_estimate":3272.0088489557515,"standard_error":543.3419301196334},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":531351.4703149202,"upper_bound":533369.9626037334},"point_estimate":532315.5503664844,"standard_error":514.9784206688346},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3320.6440486338215,"upper_bound":4486.61125228906},"point_estimate":3928.466115625614,"standard_error":297.9536183861441}} -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-bytes/parsed/base/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2.0,4.0,6.0,8.0,10.0,12.0,14.0,16.0,18.0,20.0,22.0,24.0,26.0,28.0,30.0,32.0,34.0,36.0,38.0,40.0,42.0,44.0,46.0,48.0,50.0,52.0,54.0,56.0,58.0,60.0,62.0,64.0,66.0,68.0,70.0,72.0,74.0,76.0,78.0,80.0,82.0,84.0,86.0,88.0,90.0,92.0,94.0,96.0,98.0,100.0,102.0,104.0,106.0,108.0,110.0,112.0,114.0,116.0,118.0,120.0,122.0,124.0,126.0,128.0,130.0,132.0,134.0,136.0,138.0,140.0,142.0,144.0,146.0,148.0,150.0,152.0,154.0,156.0,158.0,160.0,162.0,164.0,166.0,168.0,170.0,172.0,174.0,176.0,178.0,180.0,182.0,184.0,186.0,188.0,190.0,192.0,194.0,196.0,198.0,200.0],"times":[1053515.0,2102719.0,3149528.0,4220225.0,5453156.0,6527815.0,7581537.0,8601094.0,9613414.0,10796299.0,11706311.0,12713348.0,13890732.0,14881012.0,15987853.0,17037288.0,18252701.0,19204471.0,20146850.0,21460757.0,22401114.0,23440830.0,24416422.0,25608303.0,26433460.0,27687149.0,28825362.0,29759489.0,31052579.0,32063750.0,33024726.0,34510517.0,35582060.0,36597009.0,37656010.0,38671812.0,39870203.0,40560993.0,41663809.0,42759898.0,43922694.0,44917872.0,45993921.0,47230163.0,48214348.0,49571390.0,50322943.0,51667950.0,52404175.0,53422051.0,54447130.0,55563187.0,56692375.0,58240716.0,59050128.0,60005425.0,61094627.0,62039131.0,63162409.0,64232514.0,65209374.0,66562828.0,67555356.0,68160486.0,69780969.0,70765466.0,71692606.0,72872842.0,74419923.0,74982987.0,75948787.0,77163092.0,78297665.0,78842913.0,80178262.0,81231533.0,82155055.0,83675435.0,84268164.0,85454089.0,86061657.0,87802382.0,88142246.0,89025890.0,89514677.0,91260931.0,92397951.0,93324447.0,94484129.0,95439619.0,96487984.0,97404753.0,98645760.0,99849212.0,100190868.0,101103030.0,102173069.0,103195356.0,104219115.0,105229789.0]} -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-bytes/parsed/base/tukey.json: -------------------------------------------------------------------------------- 1 | [516469.67831567,523779.98869011673,543274.1496886413,550584.4600630881] -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-bytes/parsed/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"iter-broad-from-bytes","function_id":"parsed","value_str":null,"throughput":null,"full_id":"iter-broad-from-bytes/parsed","directory_name":"iter-broad-from-bytes/parsed","title":"iter-broad-from-bytes/parsed"} -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-bytes/parsed/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":532995.3948137463,"upper_bound":534522.9824094839},"point_estimate":533759.9426143928,"standard_error":390.3956099120388},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":533474.3831168831,"upper_bound":534823.3806494076},"point_estimate":534260.1682692308,"standard_error":337.04334294665705},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2381.4088054087756,"upper_bound":4440.767716139274},"point_estimate":3272.0088489557515,"standard_error":543.3419301196334},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":531351.4703149202,"upper_bound":533369.9626037334},"point_estimate":532315.5503664844,"standard_error":514.9784206688346},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3320.6440486338215,"upper_bound":4486.61125228906},"point_estimate":3928.466115625614,"standard_error":297.9536183861441}} -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-bytes/parsed/new/sample.json: -------------------------------------------------------------------------------- 1 | {"sampling_mode":"Linear","iters":[2.0,4.0,6.0,8.0,10.0,12.0,14.0,16.0,18.0,20.0,22.0,24.0,26.0,28.0,30.0,32.0,34.0,36.0,38.0,40.0,42.0,44.0,46.0,48.0,50.0,52.0,54.0,56.0,58.0,60.0,62.0,64.0,66.0,68.0,70.0,72.0,74.0,76.0,78.0,80.0,82.0,84.0,86.0,88.0,90.0,92.0,94.0,96.0,98.0,100.0,102.0,104.0,106.0,108.0,110.0,112.0,114.0,116.0,118.0,120.0,122.0,124.0,126.0,128.0,130.0,132.0,134.0,136.0,138.0,140.0,142.0,144.0,146.0,148.0,150.0,152.0,154.0,156.0,158.0,160.0,162.0,164.0,166.0,168.0,170.0,172.0,174.0,176.0,178.0,180.0,182.0,184.0,186.0,188.0,190.0,192.0,194.0,196.0,198.0,200.0],"times":[1053515.0,2102719.0,3149528.0,4220225.0,5453156.0,6527815.0,7581537.0,8601094.0,9613414.0,10796299.0,11706311.0,12713348.0,13890732.0,14881012.0,15987853.0,17037288.0,18252701.0,19204471.0,20146850.0,21460757.0,22401114.0,23440830.0,24416422.0,25608303.0,26433460.0,27687149.0,28825362.0,29759489.0,31052579.0,32063750.0,33024726.0,34510517.0,35582060.0,36597009.0,37656010.0,38671812.0,39870203.0,40560993.0,41663809.0,42759898.0,43922694.0,44917872.0,45993921.0,47230163.0,48214348.0,49571390.0,50322943.0,51667950.0,52404175.0,53422051.0,54447130.0,55563187.0,56692375.0,58240716.0,59050128.0,60005425.0,61094627.0,62039131.0,63162409.0,64232514.0,65209374.0,66562828.0,67555356.0,68160486.0,69780969.0,70765466.0,71692606.0,72872842.0,74419923.0,74982987.0,75948787.0,77163092.0,78297665.0,78842913.0,80178262.0,81231533.0,82155055.0,83675435.0,84268164.0,85454089.0,86061657.0,87802382.0,88142246.0,89025890.0,89514677.0,91260931.0,92397951.0,93324447.0,94484129.0,95439619.0,96487984.0,97404753.0,98645760.0,99849212.0,100190868.0,101103030.0,102173069.0,103195356.0,104219115.0,105229789.0]} -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-bytes/parsed/new/tukey.json: -------------------------------------------------------------------------------- 1 | [516469.67831567,523779.98869011673,543274.1496886413,550584.4600630881] -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-bytes/raw/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"iter-broad-from-bytes","function_id":"raw","value_str":null,"throughput":null,"full_id":"iter-broad-from-bytes/raw","directory_name":"iter-broad-from-bytes/raw","title":"iter-broad-from-bytes/raw"} -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-bytes/raw/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":29010.5404147444,"upper_bound":29083.665784007746},"point_estimate":29046.17199107444,"standard_error":18.72529058197864},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":28987.903645833332,"upper_bound":29048.67218137255},"point_estimate":29020.433653846154,"standard_error":15.739240492135123},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":108.39056842066329,"upper_bound":199.73547038876643},"point_estimate":154.17083238433898,"standard_error":23.411860892719538},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":28967.95394764871,"upper_bound":29047.519578107367},"point_estimate":29004.419215744227,"standard_error":20.30383932661705},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":153.98568030023543,"upper_bound":219.89223719579851},"point_estimate":188.42447997050004,"standard_error":16.86062660184153}} -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-bytes/raw/base/tukey.json: -------------------------------------------------------------------------------- 1 | [28298.149075885925,28607.52759644831,29432.536984614675,29741.91550517706] -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-bytes/raw/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"iter-broad-from-bytes","function_id":"raw","value_str":null,"throughput":null,"full_id":"iter-broad-from-bytes/raw","directory_name":"iter-broad-from-bytes/raw","title":"iter-broad-from-bytes/raw"} -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-bytes/raw/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":29010.5404147444,"upper_bound":29083.665784007746},"point_estimate":29046.17199107444,"standard_error":18.72529058197864},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":28987.903645833332,"upper_bound":29048.67218137255},"point_estimate":29020.433653846154,"standard_error":15.739240492135123},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":108.39056842066329,"upper_bound":199.73547038876643},"point_estimate":154.17083238433898,"standard_error":23.411860892719538},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":28967.95394764871,"upper_bound":29047.519578107367},"point_estimate":29004.419215744227,"standard_error":20.30383932661705},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":153.98568030023543,"upper_bound":219.89223719579851},"point_estimate":188.42447997050004,"standard_error":16.86062660184153}} -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-bytes/raw/new/tukey.json: -------------------------------------------------------------------------------- 1 | [28298.149075885925,28607.52759644831,29432.536984614675,29741.91550517706] -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-type/parsed/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"iter-broad-from-type","function_id":"parsed","value_str":null,"throughput":null,"full_id":"iter-broad-from-type/parsed","directory_name":"iter-broad-from-type/parsed","title":"iter-broad-from-type/parsed"} -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-type/parsed/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4596.328679893255,"upper_bound":4634.286463377251},"point_estimate":4615.575251053417,"standard_error":9.678534772151322},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4649.997356245869,"upper_bound":4666.600839144507},"point_estimate":4659.921502990337,"standard_error":5.37710501958446},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":46.61857979740718,"upper_bound":89.26182659401861},"point_estimate":64.36218335979446,"standard_error":12.08918283877356},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4589.134227536833,"upper_bound":4639.207058475119},"point_estimate":4614.727847479149,"standard_error":12.814829705415963},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":88.74274190319998,"upper_bound":103.24557796717278},"point_estimate":97.29342240204903,"standard_error":3.679093782493836}} -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-type/parsed/base/tukey.json: -------------------------------------------------------------------------------- 1 | [3871.392278992307,4179.809292305355,5002.254661140148,5310.671674453195] -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-type/parsed/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"iter-broad-from-type","function_id":"parsed","value_str":null,"throughput":null,"full_id":"iter-broad-from-type/parsed","directory_name":"iter-broad-from-type/parsed","title":"iter-broad-from-type/parsed"} -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-type/parsed/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4596.328679893255,"upper_bound":4634.286463377251},"point_estimate":4615.575251053417,"standard_error":9.678534772151322},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4649.997356245869,"upper_bound":4666.600839144507},"point_estimate":4659.921502990337,"standard_error":5.37710501958446},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":46.61857979740718,"upper_bound":89.26182659401861},"point_estimate":64.36218335979446,"standard_error":12.08918283877356},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4589.134227536833,"upper_bound":4639.207058475119},"point_estimate":4614.727847479149,"standard_error":12.814829705415963},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":88.74274190319998,"upper_bound":103.24557796717278},"point_estimate":97.29342240204903,"standard_error":3.679093782493836}} -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-type/parsed/new/tukey.json: -------------------------------------------------------------------------------- 1 | [3871.392278992307,4179.809292305355,5002.254661140148,5310.671674453195] -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-type/raw/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"iter-broad-from-type","function_id":"raw","value_str":null,"throughput":null,"full_id":"iter-broad-from-type/raw","directory_name":"iter-broad-from-type/raw","title":"iter-broad-from-type/raw"} -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-type/raw/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":24234.965141246874,"upper_bound":24330.76326204047},"point_estimate":24280.401609047265,"standard_error":24.500123874172573},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":24179.764619453425,"upper_bound":24226.30576175327},"point_estimate":24204.914960603783,"standard_error":10.951563020221496},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":85.02966041201647,"upper_bound":145.1071130808067},"point_estimate":104.17226929606484,"standard_error":15.732449166358716},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":24208.258380893658,"upper_bound":24368.262062301073},"point_estimate":24278.81598416995,"standard_error":41.48419767943449},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":175.8444734105625,"upper_bound":306.9013468432818},"point_estimate":247.04171448960975,"standard_error":33.52098497072817}} -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-type/raw/base/tukey.json: -------------------------------------------------------------------------------- 1 | [23640.37654258484,23888.60346314251,24550.541917962964,24798.768838520635] -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-type/raw/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"iter-broad-from-type","function_id":"raw","value_str":null,"throughput":null,"full_id":"iter-broad-from-type/raw","directory_name":"iter-broad-from-type/raw","title":"iter-broad-from-type/raw"} -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-type/raw/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":24234.965141246874,"upper_bound":24330.76326204047},"point_estimate":24280.401609047265,"standard_error":24.500123874172573},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":24179.764619453425,"upper_bound":24226.30576175327},"point_estimate":24204.914960603783,"standard_error":10.951563020221496},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":85.02966041201647,"upper_bound":145.1071130808067},"point_estimate":104.17226929606484,"standard_error":15.732449166358716},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":24208.258380893658,"upper_bound":24368.262062301073},"point_estimate":24278.81598416995,"standard_error":41.48419767943449},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":175.8444734105625,"upper_bound":306.9013468432818},"point_estimate":247.04171448960975,"standard_error":33.52098497072817}} -------------------------------------------------------------------------------- /criterion-report/iter-broad-from-type/raw/new/tukey.json: -------------------------------------------------------------------------------- 1 | [23640.37654258484,23888.60346314251,24550.541917962964,24798.768838520635] -------------------------------------------------------------------------------- /proptest-regressions/lib.txt: -------------------------------------------------------------------------------- 1 | # Seeds for failure cases proptest has generated in the past. It is 2 | # automatically read and these particular cases re-run before any 3 | # novel cases are generated. 4 | # 5 | # It is recommended to check this file in to source control so that 6 | # everyone who runs the test benefits from these saved cases. 7 | cc 4c842aebf7b21a0441c81f50b48c9728a4e42406e0a25abd8cc5b019df6cb38b # shrinks to bson = Array([Document(Document({"": Binary(Binary { subtype: BinaryOld, bytes: [0, 0, 0, 0] })}))]) 8 | --------------------------------------------------------------------------------