├── .clog.toml ├── .config └── nextest.toml ├── .envrc ├── .github ├── FUNDING.yml └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── assets ├── async-mpsc-integer-8c882b0 │ ├── 10 │ │ └── report │ │ │ ├── index.html │ │ │ └── violin.svg │ ├── 50 │ │ └── report │ │ │ ├── index.html │ │ │ └── violin.svg │ ├── 100 │ │ └── report │ │ │ ├── index.html │ │ │ └── violin.svg │ ├── ThingBuf │ │ ├── 10 │ │ │ ├── base │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ ├── change │ │ │ │ └── estimates.json │ │ │ ├── new │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ └── report │ │ │ │ ├── MAD.svg │ │ │ │ ├── SD.svg │ │ │ │ ├── both │ │ │ │ ├── pdf.svg │ │ │ │ └── regression.svg │ │ │ │ ├── change │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ └── t-test.svg │ │ │ │ ├── index.html │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── pdf_small.svg │ │ │ │ ├── regression.svg │ │ │ │ ├── regression_small.svg │ │ │ │ ├── relative_pdf_small.svg │ │ │ │ ├── relative_regression_small.svg │ │ │ │ ├── slope.svg │ │ │ │ └── typical.svg │ │ ├── 50 │ │ │ ├── base │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ ├── change │ │ │ │ └── estimates.json │ │ │ ├── new │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ └── report │ │ │ │ ├── MAD.svg │ │ │ │ ├── SD.svg │ │ │ │ ├── both │ │ │ │ ├── pdf.svg │ │ │ │ └── regression.svg │ │ │ │ ├── change │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ └── t-test.svg │ │ │ │ ├── index.html │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── pdf_small.svg │ │ │ │ ├── regression.svg │ │ │ │ ├── regression_small.svg │ │ │ │ ├── relative_pdf_small.svg │ │ │ │ ├── relative_regression_small.svg │ │ │ │ ├── slope.svg │ │ │ │ └── typical.svg │ │ ├── 100 │ │ │ ├── base │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ ├── change │ │ │ │ └── estimates.json │ │ │ ├── new │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ ├── raw.csv │ │ │ │ ├── sample.json │ │ │ │ └── tukey.json │ │ │ └── report │ │ │ │ ├── MAD.svg │ │ │ │ ├── SD.svg │ │ │ │ ├── both │ │ │ │ ├── pdf.svg │ │ │ │ └── regression.svg │ │ │ │ ├── change │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ └── t-test.svg │ │ │ │ ├── index.html │ │ │ │ ├── mean.svg │ │ │ │ ├── median.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── pdf_small.svg │ │ │ │ ├── regression.svg │ │ │ │ ├── regression_small.svg │ │ │ │ ├── relative_pdf_small.svg │ │ │ │ ├── relative_regression_small.svg │ │ │ │ ├── slope.svg │ │ │ │ └── typical.svg │ │ └── report │ │ │ ├── index.html │ │ │ ├── lines.svg │ │ │ └── violin.svg │ ├── async_std__channel__bounded │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ └── report │ │ │ ├── index.html │ │ │ ├── lines.svg │ │ │ └── violin.svg │ ├── futures__channel__mpsc │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ └── report │ │ │ ├── index.html │ │ │ ├── lines.svg │ │ │ └── violin.svg │ ├── report │ │ ├── index.html │ │ ├── lines.svg │ │ └── violin.svg │ └── tokio__sync__mpsc │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ └── report │ │ ├── index.html │ │ ├── lines.svg │ │ └── violin.svg └── async_mpsc_integer │ ├── lines.svg │ └── violin.svg ├── bench ├── Cargo.toml ├── benches │ ├── async_mpsc.rs │ ├── async_mpsc_nowait.rs │ ├── async_mpsc_utils.rs │ ├── async_spsc.rs │ └── sync_spsc.rs └── src │ └── lib.rs ├── bin ├── loom └── miri ├── default.nix ├── mpsc_perf_comparison.md ├── netlify.toml ├── shell.nix ├── src ├── lib.rs ├── loom.rs ├── macros.rs ├── mpsc.rs ├── mpsc │ ├── async_impl.rs │ ├── blocking.rs │ ├── errors.rs │ ├── tests.rs │ └── tests │ │ ├── mpsc_async.rs │ │ └── mpsc_blocking.rs ├── recycling.rs ├── static_thingbuf.rs ├── thingbuf.rs ├── thingbuf │ └── tests.rs ├── util.rs ├── util │ ├── mutex.rs │ ├── mutex │ │ ├── loom_impl.rs │ │ └── spin_impl.rs │ └── panic.rs ├── wait.rs └── wait │ ├── cell.rs │ └── queue.rs └── tests ├── debug.rs ├── mpsc_async.rs ├── mpsc_blocking.rs └── static_storage.rs /.clog.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/.clog.toml -------------------------------------------------------------------------------- /.config/nextest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/.config/nextest.toml -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use nix; -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | .direnv 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/README.md -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/10/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/10/report/index.html -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/10/report/violin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/10/report/violin.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/100/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/100/report/index.html -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/100/report/violin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/100/report/violin.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/50/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/50/report/index.html -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/50/report/violin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/50/report/violin.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/base/benchmark.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/base/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/base/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/base/raw.csv -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/base/sample.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/base/tukey.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/change/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/change/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/new/benchmark.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/new/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/new/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/new/raw.csv -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/new/sample.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/new/tukey.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/MAD.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/SD.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/both/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/both/pdf.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/both/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/both/regression.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/change/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/change/mean.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/change/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/change/median.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/change/t-test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/change/t-test.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/index.html -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/mean.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/median.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/pdf.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/pdf_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/regression.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/regression_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/relative_pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/relative_pdf_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/relative_regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/relative_regression_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/slope.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/10/report/typical.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/base/benchmark.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/base/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/base/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/base/raw.csv -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/base/sample.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/base/tukey.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/change/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/change/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/new/benchmark.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/new/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/new/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/new/raw.csv -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/new/sample.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/new/tukey.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/MAD.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/SD.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/both/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/both/pdf.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/both/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/both/regression.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/change/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/change/mean.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/change/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/change/median.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/change/t-test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/change/t-test.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/index.html -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/mean.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/median.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/pdf.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/pdf_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/regression.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/regression_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/relative_pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/relative_pdf_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/relative_regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/relative_regression_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/slope.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/100/report/typical.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/base/benchmark.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/base/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/base/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/base/raw.csv -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/base/sample.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/base/tukey.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/change/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/change/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/new/benchmark.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/new/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/new/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/new/raw.csv -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/new/sample.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/new/tukey.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/MAD.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/SD.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/both/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/both/pdf.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/both/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/both/regression.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/change/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/change/mean.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/change/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/change/median.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/change/t-test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/change/t-test.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/index.html -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/mean.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/median.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/pdf.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/pdf_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/regression.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/regression_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/relative_pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/relative_pdf_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/relative_regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/relative_regression_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/slope.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/50/report/typical.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/report/index.html -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/report/lines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/report/lines.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/ThingBuf/report/violin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/ThingBuf/report/violin.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/base/benchmark.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/base/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/base/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/base/raw.csv -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/base/sample.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/base/tukey.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/new/benchmark.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/new/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/new/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/new/raw.csv -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/new/sample.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/new/tukey.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/report/MAD.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/report/SD.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/report/index.html -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/report/mean.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/report/median.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/report/pdf.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/report/pdf_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/report/regression.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/report/regression_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/report/slope.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/10/report/typical.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/base/benchmark.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/base/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/base/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/base/raw.csv -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/base/sample.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/base/tukey.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/new/benchmark.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/new/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/new/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/new/raw.csv -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/new/sample.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/new/tukey.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/report/MAD.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/report/SD.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/report/index.html -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/report/mean.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/report/median.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/report/pdf.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/report/pdf_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/report/regression.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/report/regression_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/report/slope.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/100/report/typical.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/base/benchmark.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/base/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/base/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/base/raw.csv -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/base/sample.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/base/tukey.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/new/benchmark.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/new/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/new/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/new/raw.csv -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/new/sample.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/new/tukey.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/report/MAD.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/report/SD.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/report/index.html -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/report/mean.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/report/median.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/report/pdf.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/report/pdf_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/report/regression.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/report/regression_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/report/slope.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/50/report/typical.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/report/index.html -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/report/lines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/report/lines.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/report/violin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/async_std__channel__bounded/report/violin.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/base/benchmark.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/base/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/base/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/base/raw.csv -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/base/sample.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/base/tukey.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/new/benchmark.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/new/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/new/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/new/raw.csv -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/new/sample.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/new/tukey.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/report/MAD.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/report/SD.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/report/index.html -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/report/mean.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/report/median.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/report/pdf.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/report/pdf_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/report/regression.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/report/regression_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/report/slope.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/10/report/typical.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/base/benchmark.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/base/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/base/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/base/raw.csv -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/base/sample.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/base/tukey.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/new/benchmark.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/new/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/new/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/new/raw.csv -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/new/sample.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/new/tukey.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/report/MAD.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/report/SD.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/report/index.html -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/report/mean.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/report/median.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/report/pdf.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/report/pdf_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/report/regression.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/report/regression_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/report/slope.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/100/report/typical.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/base/benchmark.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/base/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/base/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/base/raw.csv -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/base/sample.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/base/tukey.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/new/benchmark.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/new/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/new/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/new/raw.csv -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/new/sample.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/new/tukey.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/report/MAD.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/report/SD.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/report/index.html -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/report/mean.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/report/median.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/report/pdf.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/report/pdf_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/report/regression.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/report/regression_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/report/slope.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/50/report/typical.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/report/index.html -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/report/lines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/report/lines.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/report/violin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/futures__channel__mpsc/report/violin.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/report/index.html -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/report/lines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/report/lines.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/report/violin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/report/violin.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/base/benchmark.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/base/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/base/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/base/raw.csv -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/base/sample.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/base/tukey.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/new/benchmark.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/new/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/new/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/new/raw.csv -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/new/sample.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/new/tukey.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/report/MAD.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/report/SD.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/report/index.html -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/report/mean.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/report/median.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/report/pdf.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/report/pdf_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/report/regression.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/report/regression_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/report/slope.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/10/report/typical.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/base/benchmark.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/base/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/base/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/base/raw.csv -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/base/sample.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/base/tukey.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/new/benchmark.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/new/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/new/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/new/raw.csv -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/new/sample.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/new/tukey.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/report/MAD.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/report/SD.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/report/index.html -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/report/mean.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/report/median.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/report/pdf.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/report/pdf_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/report/regression.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/report/regression_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/report/slope.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/100/report/typical.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/base/benchmark.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/base/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/base/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/base/raw.csv -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/base/sample.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/base/tukey.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/new/benchmark.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/new/estimates.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/new/raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/new/raw.csv -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/new/sample.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/new/tukey.json -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/report/MAD.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/report/SD.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/report/index.html -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/report/mean.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/report/median.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/report/pdf.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/report/pdf_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/report/regression.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/report/regression_small.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/report/slope.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/50/report/typical.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/report/index.html -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/report/lines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/report/lines.svg -------------------------------------------------------------------------------- /assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/report/violin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async-mpsc-integer-8c882b0/tokio__sync__mpsc/report/violin.svg -------------------------------------------------------------------------------- /assets/async_mpsc_integer/lines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async_mpsc_integer/lines.svg -------------------------------------------------------------------------------- /assets/async_mpsc_integer/violin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/assets/async_mpsc_integer/violin.svg -------------------------------------------------------------------------------- /bench/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/bench/Cargo.toml -------------------------------------------------------------------------------- /bench/benches/async_mpsc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/bench/benches/async_mpsc.rs -------------------------------------------------------------------------------- /bench/benches/async_mpsc_nowait.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/bench/benches/async_mpsc_nowait.rs -------------------------------------------------------------------------------- /bench/benches/async_mpsc_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/bench/benches/async_mpsc_utils.rs -------------------------------------------------------------------------------- /bench/benches/async_spsc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/bench/benches/async_spsc.rs -------------------------------------------------------------------------------- /bench/benches/sync_spsc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/bench/benches/sync_spsc.rs -------------------------------------------------------------------------------- /bench/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bin/loom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/bin/loom -------------------------------------------------------------------------------- /bin/miri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/bin/miri -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/default.nix -------------------------------------------------------------------------------- /mpsc_perf_comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/mpsc_perf_comparison.md -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/netlify.toml -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/shell.nix -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/loom.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/src/loom.rs -------------------------------------------------------------------------------- /src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/src/macros.rs -------------------------------------------------------------------------------- /src/mpsc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/src/mpsc.rs -------------------------------------------------------------------------------- /src/mpsc/async_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/src/mpsc/async_impl.rs -------------------------------------------------------------------------------- /src/mpsc/blocking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/src/mpsc/blocking.rs -------------------------------------------------------------------------------- /src/mpsc/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/src/mpsc/errors.rs -------------------------------------------------------------------------------- /src/mpsc/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/src/mpsc/tests.rs -------------------------------------------------------------------------------- /src/mpsc/tests/mpsc_async.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/src/mpsc/tests/mpsc_async.rs -------------------------------------------------------------------------------- /src/mpsc/tests/mpsc_blocking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/src/mpsc/tests/mpsc_blocking.rs -------------------------------------------------------------------------------- /src/recycling.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/src/recycling.rs -------------------------------------------------------------------------------- /src/static_thingbuf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/src/static_thingbuf.rs -------------------------------------------------------------------------------- /src/thingbuf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/src/thingbuf.rs -------------------------------------------------------------------------------- /src/thingbuf/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/src/thingbuf/tests.rs -------------------------------------------------------------------------------- /src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/src/util.rs -------------------------------------------------------------------------------- /src/util/mutex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/src/util/mutex.rs -------------------------------------------------------------------------------- /src/util/mutex/loom_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/src/util/mutex/loom_impl.rs -------------------------------------------------------------------------------- /src/util/mutex/spin_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/src/util/mutex/spin_impl.rs -------------------------------------------------------------------------------- /src/util/panic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/src/util/panic.rs -------------------------------------------------------------------------------- /src/wait.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/src/wait.rs -------------------------------------------------------------------------------- /src/wait/cell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/src/wait/cell.rs -------------------------------------------------------------------------------- /src/wait/queue.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/src/wait/queue.rs -------------------------------------------------------------------------------- /tests/debug.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/tests/debug.rs -------------------------------------------------------------------------------- /tests/mpsc_async.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/tests/mpsc_async.rs -------------------------------------------------------------------------------- /tests/mpsc_blocking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/tests/mpsc_blocking.rs -------------------------------------------------------------------------------- /tests/static_storage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkw/thingbuf/HEAD/tests/static_storage.rs --------------------------------------------------------------------------------