├── .gitattributes ├── .gitignore ├── benches ├── criterion │ ├── alloc │ │ ├── 4096 │ │ │ ├── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ │ └── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ ├── 16384 │ │ │ ├── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ │ └── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ ├── 65536 │ │ │ ├── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ │ └── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ ├── 131072 │ │ │ ├── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ │ └── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ ├── 524288 │ │ │ ├── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ │ └── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ ├── 1048576 │ │ │ ├── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ │ └── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ ├── 16777216 │ │ │ ├── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ │ └── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ ├── 33554432 │ │ │ ├── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ │ └── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ ├── 67108864 │ │ │ ├── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ │ └── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ ├── 134217728 │ │ │ ├── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ │ └── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ ├── 268435456 │ │ │ ├── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ │ └── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ ├── 536870912 │ │ │ ├── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ │ └── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ ├── 1073741824 │ │ │ ├── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ │ └── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ ├── 2147483648 │ │ │ ├── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ │ └── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── estimates.json │ │ │ │ └── sample.json │ │ └── 3221225472 │ │ │ ├── new │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ └── sample.json │ │ │ └── base │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ └── sample.json │ ├── detach_from_pool │ │ ├── 4096 │ │ │ ├── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ │ └── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ ├── 16384 │ │ │ ├── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ │ └── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ ├── 65536 │ │ │ ├── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ │ └── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ ├── 131072 │ │ │ ├── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ │ └── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ ├── 524288 │ │ │ ├── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ │ └── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ ├── 1048576 │ │ │ ├── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ │ └── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ ├── 16777216 │ │ │ ├── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ │ └── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ ├── 33554432 │ │ │ ├── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ │ └── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ ├── 67108864 │ │ │ ├── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ │ └── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ ├── 134217728 │ │ │ ├── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ │ └── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ ├── 268435456 │ │ │ ├── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ │ └── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ ├── 536870912 │ │ │ ├── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ │ └── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ ├── 1073741824 │ │ │ ├── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ │ └── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ ├── 2147483648 │ │ │ ├── base │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ │ └── new │ │ │ │ ├── tukey.json │ │ │ │ ├── benchmark.json │ │ │ │ └── estimates.json │ │ └── 3221225472 │ │ │ ├── base │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ │ └── new │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ └── pulling_from_pool │ │ ├── 4096 │ │ ├── base │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ └── new │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ ├── 16384 │ │ ├── base │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ └── new │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ ├── 65536 │ │ ├── base │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ └── new │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ └── sample.json │ │ ├── 131072 │ │ ├── base │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ └── new │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ ├── 524288 │ │ ├── base │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ └── new │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ ├── 1048576 │ │ ├── base │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ └── new │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ ├── 16777216 │ │ ├── base │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ └── new │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ ├── 33554432 │ │ ├── base │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ └── new │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ ├── 67108864 │ │ ├── base │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ └── new │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ ├── 134217728 │ │ ├── base │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ └── new │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ ├── 268435456 │ │ ├── base │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ └── new │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ ├── 536870912 │ │ ├── base │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ └── new │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ ├── 1073741824 │ │ ├── base │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ └── new │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ ├── 2147483648 │ │ ├── base │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ └── new │ │ │ ├── tukey.json │ │ │ ├── benchmark.json │ │ │ └── estimates.json │ │ └── 3221225472 │ │ ├── base │ │ ├── tukey.json │ │ ├── benchmark.json │ │ └── estimates.json │ │ └── new │ │ ├── tukey.json │ │ ├── benchmark.json │ │ └── estimates.json └── bench.rs ├── .github └── workflows │ └── rust.yml ├── Cargo.toml └── LICENSE-MIT /.gitattributes: -------------------------------------------------------------------------------- 1 | *.html linguist-vendored 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | .idea/ 5 | -------------------------------------------------------------------------------- /benches/criterion/alloc/131072/new/tukey.json: -------------------------------------------------------------------------------- 1 | [50.472612880496584,53.173343620713,60.37529226129011,63.076023001506535] -------------------------------------------------------------------------------- /benches/criterion/alloc/16384/base/tukey.json: -------------------------------------------------------------------------------- 1 | [35.82191049034802,48.22794936827766,81.3107197094234,93.71675858735304] -------------------------------------------------------------------------------- /benches/criterion/alloc/16384/new/tukey.json: -------------------------------------------------------------------------------- 1 | [35.82191049034802,48.22794936827766,81.3107197094234,93.71675858735304] -------------------------------------------------------------------------------- /benches/criterion/alloc/4096/new/tukey.json: -------------------------------------------------------------------------------- 1 | [27.82516328282071,44.507459005475745,88.99358093255583,105.67587665521087] -------------------------------------------------------------------------------- /benches/criterion/alloc/65536/new/tukey.json: -------------------------------------------------------------------------------- 1 | [49.4224163655633,52.566061668658136,60.949115810244365,64.09276111333921] -------------------------------------------------------------------------------- /benches/criterion/alloc/1048576/base/tukey.json: -------------------------------------------------------------------------------- 1 | [40.26980259918733,41.46990373311823,44.67017342360063,45.87027455753153] -------------------------------------------------------------------------------- /benches/criterion/alloc/1048576/new/tukey.json: -------------------------------------------------------------------------------- 1 | [40.26980259918733,41.46990373311823,44.67017342360063,45.87027455753153] -------------------------------------------------------------------------------- /benches/criterion/alloc/1073741824/base/tukey.json: -------------------------------------------------------------------------------- 1 | [6100.248458919953,6308.225448284832,6862.830753257843,7070.807742622722] -------------------------------------------------------------------------------- /benches/criterion/alloc/1073741824/new/tukey.json: -------------------------------------------------------------------------------- 1 | [6100.248458919953,6308.225448284832,6862.830753257843,7070.807742622722] -------------------------------------------------------------------------------- /benches/criterion/alloc/131072/base/tukey.json: -------------------------------------------------------------------------------- 1 | [50.472612880496584,53.173343620713,60.37529226129011,63.076023001506535] -------------------------------------------------------------------------------- /benches/criterion/alloc/16777216/base/tukey.json: -------------------------------------------------------------------------------- 1 | [40.16656959542313,41.6874198352415,45.74302047475716,47.26387071457553] -------------------------------------------------------------------------------- /benches/criterion/alloc/16777216/new/tukey.json: -------------------------------------------------------------------------------- 1 | [40.16656959542313,41.6874198352415,45.74302047475716,47.26387071457553] -------------------------------------------------------------------------------- /benches/criterion/alloc/2147483648/base/tukey.json: -------------------------------------------------------------------------------- 1 | [5655.961015085408,6202.68715838395,7660.623540513397,8207.349683811939] -------------------------------------------------------------------------------- /benches/criterion/alloc/2147483648/new/tukey.json: -------------------------------------------------------------------------------- 1 | [5655.961015085408,6202.68715838395,7660.623540513397,8207.349683811939] -------------------------------------------------------------------------------- /benches/criterion/alloc/268435456/base/tukey.json: -------------------------------------------------------------------------------- 1 | [3784.420996563347,3921.8258522282104,4288.238800667845,4425.643656332708] -------------------------------------------------------------------------------- /benches/criterion/alloc/268435456/new/tukey.json: -------------------------------------------------------------------------------- 1 | [3784.420996563347,3921.8258522282104,4288.238800667845,4425.643656332708] -------------------------------------------------------------------------------- /benches/criterion/alloc/3221225472/new/tukey.json: -------------------------------------------------------------------------------- 1 | [6109.462974478523,6389.984862746768,7138.0432314620875,7418.565119730332] -------------------------------------------------------------------------------- /benches/criterion/alloc/4096/base/tukey.json: -------------------------------------------------------------------------------- 1 | [27.82516328282071,44.507459005475745,88.99358093255583,105.67587665521087] -------------------------------------------------------------------------------- /benches/criterion/alloc/524288/base/tukey.json: -------------------------------------------------------------------------------- 1 | [51.173008052300034,52.46347585257402,55.90472331997131,57.19519112024529] -------------------------------------------------------------------------------- /benches/criterion/alloc/524288/new/tukey.json: -------------------------------------------------------------------------------- 1 | [51.173008052300034,52.46347585257402,55.90472331997131,57.19519112024529] -------------------------------------------------------------------------------- /benches/criterion/alloc/536870912/base/tukey.json: -------------------------------------------------------------------------------- 1 | [4607.821669655304,4717.550550695102,5010.160900134565,5119.889781174364] -------------------------------------------------------------------------------- /benches/criterion/alloc/536870912/new/tukey.json: -------------------------------------------------------------------------------- 1 | [4607.821669655304,4717.550550695102,5010.160900134565,5119.889781174364] -------------------------------------------------------------------------------- /benches/criterion/alloc/65536/base/tukey.json: -------------------------------------------------------------------------------- 1 | [49.4224163655633,52.566061668658136,60.949115810244365,64.09276111333921] -------------------------------------------------------------------------------- /benches/criterion/alloc/67108864/base/tukey.json: -------------------------------------------------------------------------------- 1 | [3391.3074475271314,3453.045492419098,3617.680278797676,3679.4183236896424] -------------------------------------------------------------------------------- /benches/criterion/alloc/67108864/new/tukey.json: -------------------------------------------------------------------------------- 1 | [3391.3074475271314,3453.045492419098,3617.680278797676,3679.4183236896424] -------------------------------------------------------------------------------- /benches/criterion/alloc/134217728/base/tukey.json: -------------------------------------------------------------------------------- 1 | [3538.3167885812236,3604.408935849571,3780.6546618984976,3846.7468091668447] -------------------------------------------------------------------------------- /benches/criterion/alloc/134217728/new/tukey.json: -------------------------------------------------------------------------------- 1 | [3538.3167885812236,3604.408935849571,3780.6546618984976,3846.7468091668447] -------------------------------------------------------------------------------- /benches/criterion/alloc/3221225472/base/tukey.json: -------------------------------------------------------------------------------- 1 | [6109.462974478523,6389.984862746768,7138.0432314620875,7418.565119730332] -------------------------------------------------------------------------------- /benches/criterion/alloc/33554432/base/tukey.json: -------------------------------------------------------------------------------- 1 | [3549.0445357133217,3641.9152155300267,3889.5703617079066,3982.4410415246116] -------------------------------------------------------------------------------- /benches/criterion/alloc/33554432/new/tukey.json: -------------------------------------------------------------------------------- 1 | [3549.0445357133217,3641.9152155300267,3889.5703617079066,3982.4410415246116] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/131072/new/tukey.json: -------------------------------------------------------------------------------- 1 | [24.331378137441455,24.760556721166957,25.905032944434957,26.334211528160456] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/16384/base/tukey.json: -------------------------------------------------------------------------------- 1 | [23.472041099916613,24.216340529379544,26.201139007947354,26.94543843741028] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/16384/new/tukey.json: -------------------------------------------------------------------------------- 1 | [23.472041099916613,24.216340529379544,26.201139007947354,26.94543843741028] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/16777216/new/tukey.json: -------------------------------------------------------------------------------- 1 | [24.542889560704104,24.89405826746527,25.830508152161713,26.18167685892288] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/4096/base/tukey.json: -------------------------------------------------------------------------------- 1 | [23.95791389196516,24.452057816438426,25.769774948367143,26.263918872840414] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/4096/new/tukey.json: -------------------------------------------------------------------------------- 1 | [23.95791389196516,24.452057816438426,25.769774948367143,26.263918872840414] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/524288/base/tukey.json: -------------------------------------------------------------------------------- 1 | [24.09994853268506,24.486538631085555,25.517445560153536,25.90403565855403] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/524288/new/tukey.json: -------------------------------------------------------------------------------- 1 | [24.09994853268506,24.486538631085555,25.517445560153536,25.90403565855403] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/65536/base/tukey.json: -------------------------------------------------------------------------------- 1 | [23.87716815878054,24.506432926540434,26.184472307233484,26.81373707499338] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/65536/new/tukey.json: -------------------------------------------------------------------------------- 1 | [23.87716815878054,24.506432926540434,26.184472307233484,26.81373707499338] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/131072/base/tukey.json: -------------------------------------------------------------------------------- 1 | [24.12398819656743,24.522447845931246,25.58500691090142,25.983466560265235] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/131072/new/tukey.json: -------------------------------------------------------------------------------- 1 | [24.12398819656743,24.522447845931246,25.58500691090142,25.983466560265235] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/16384/base/tukey.json: -------------------------------------------------------------------------------- 1 | [24.13217026108975,24.531404489756234,25.596029099533517,25.995263328199997] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/16384/new/tukey.json: -------------------------------------------------------------------------------- 1 | [24.13217026108975,24.531404489756234,25.596029099533517,25.995263328199997] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/33554432/base/tukey.json: -------------------------------------------------------------------------------- 1 | [25.627734114619333,26.14142935901136,27.51128334405677,28.0249785884488] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/33554432/new/tukey.json: -------------------------------------------------------------------------------- 1 | [25.627734114619333,26.14142935901136,27.51128334405677,28.0249785884488] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/4096/base/tukey.json: -------------------------------------------------------------------------------- 1 | [24.179376415498965,24.591549098213157,25.690676252117676,26.102848934831872] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/4096/new/tukey.json: -------------------------------------------------------------------------------- 1 | [24.179376415498965,24.591549098213157,25.690676252117676,26.102848934831872] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/524288/base/tukey.json: -------------------------------------------------------------------------------- 1 | [24.44278395815486,24.976362553357554,26.399238807231406,26.9328174024341] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/524288/new/tukey.json: -------------------------------------------------------------------------------- 1 | [24.44278395815486,24.976362553357554,26.399238807231406,26.9328174024341] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/65536/base/tukey.json: -------------------------------------------------------------------------------- 1 | [24.16797081604531,24.548705701675342,25.56399873002209,25.94473361565212] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/65536/new/tukey.json: -------------------------------------------------------------------------------- 1 | [24.16797081604531,24.548705701675342,25.56399873002209,25.94473361565212] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/1048576/base/tukey.json: -------------------------------------------------------------------------------- 1 | [23.797982840087624,24.493930057591193,26.349789304267382,27.045736521770955] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/1048576/new/tukey.json: -------------------------------------------------------------------------------- 1 | [23.797982840087624,24.493930057591193,26.349789304267382,27.045736521770955] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/1073741824/base/tukey.json: -------------------------------------------------------------------------------- 1 | [24.20876010136908,24.59438058377438,25.62270187018852,26.008322352593826] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/1073741824/new/tukey.json: -------------------------------------------------------------------------------- 1 | [24.20876010136908,24.59438058377438,25.62270187018852,26.008322352593826] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/131072/base/tukey.json: -------------------------------------------------------------------------------- 1 | [24.331378137441455,24.760556721166957,25.905032944434957,26.334211528160456] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/134217728/base/tukey.json: -------------------------------------------------------------------------------- 1 | [24.10473546349991,24.63057025767551,26.032796375477115,26.558631169652717] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/134217728/new/tukey.json: -------------------------------------------------------------------------------- 1 | [24.10473546349991,24.63057025767551,26.032796375477115,26.558631169652717] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/16777216/base/tukey.json: -------------------------------------------------------------------------------- 1 | [24.542889560704104,24.89405826746527,25.830508152161713,26.18167685892288] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/2147483648/base/tukey.json: -------------------------------------------------------------------------------- 1 | [24.820505684343765,25.5468206278567,27.48366047722453,28.209975420737464] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/2147483648/new/tukey.json: -------------------------------------------------------------------------------- 1 | [24.820505684343765,25.5468206278567,27.48366047722453,28.209975420737464] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/268435456/base/tukey.json: -------------------------------------------------------------------------------- 1 | [24.299144826808465,24.752783596349822,25.96248698179344,26.416125751334796] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/268435456/new/tukey.json: -------------------------------------------------------------------------------- 1 | [24.299144826808465,24.752783596349822,25.96248698179344,26.416125751334796] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/3221225472/base/tukey.json: -------------------------------------------------------------------------------- 1 | [24.095617728276885,24.60867999815906,25.9768460511782,26.489908321060376] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/3221225472/new/tukey.json: -------------------------------------------------------------------------------- 1 | [24.095617728276885,24.60867999815906,25.9768460511782,26.489908321060376] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/33554432/base/tukey.json: -------------------------------------------------------------------------------- 1 | [24.353199050918313,24.78173198814728,25.924486487424524,26.353019424653493] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/33554432/new/tukey.json: -------------------------------------------------------------------------------- 1 | [24.353199050918313,24.78173198814728,25.924486487424524,26.353019424653493] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/536870912/base/tukey.json: -------------------------------------------------------------------------------- 1 | [24.078787501668433,24.571731769714017,25.886249817835573,26.379194085881156] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/536870912/new/tukey.json: -------------------------------------------------------------------------------- 1 | [24.078787501668433,24.571731769714017,25.886249817835573,26.379194085881156] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/67108864/base/tukey.json: -------------------------------------------------------------------------------- 1 | [24.188196139589053,24.712365549217864,26.11015064156136,26.634320051190173] -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/67108864/new/tukey.json: -------------------------------------------------------------------------------- 1 | [24.188196139589053,24.712365549217864,26.11015064156136,26.634320051190173] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/1048576/base/tukey.json: -------------------------------------------------------------------------------- 1 | [23.940980077355512,24.528603612453427,26.095599706047867,26.683223241145782] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/1048576/new/tukey.json: -------------------------------------------------------------------------------- 1 | [23.940980077355512,24.528603612453427,26.095599706047867,26.683223241145782] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/1073741824/base/tukey.json: -------------------------------------------------------------------------------- 1 | [24.006350952739947,24.508461783504437,25.847423998876415,26.34953482964091] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/1073741824/new/tukey.json: -------------------------------------------------------------------------------- 1 | [24.006350952739947,24.508461783504437,25.847423998876415,26.34953482964091] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/134217728/base/tukey.json: -------------------------------------------------------------------------------- 1 | [23.970038118494532,24.467611631133554,25.79447433150428,26.2920478441433] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/134217728/new/tukey.json: -------------------------------------------------------------------------------- 1 | [23.970038118494532,24.467611631133554,25.79447433150428,26.2920478441433] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/16777216/base/tukey.json: -------------------------------------------------------------------------------- 1 | [24.309621773489773,24.63632609511545,25.507537619450588,25.834241941076264] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/16777216/new/tukey.json: -------------------------------------------------------------------------------- 1 | [24.309621773489773,24.63632609511545,25.507537619450588,25.834241941076264] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/2147483648/base/tukey.json: -------------------------------------------------------------------------------- 1 | [24.212414270513058,24.60004908143125,25.633741910546433,26.021376721464627] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/2147483648/new/tukey.json: -------------------------------------------------------------------------------- 1 | [24.212414270513058,24.60004908143125,25.633741910546433,26.021376721464627] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/268435456/base/tukey.json: -------------------------------------------------------------------------------- 1 | [24.778240831884865,25.035440248255455,25.721305358577027,25.978504774947616] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/268435456/new/tukey.json: -------------------------------------------------------------------------------- 1 | [24.778240831884865,25.035440248255455,25.721305358577027,25.978504774947616] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/3221225472/base/tukey.json: -------------------------------------------------------------------------------- 1 | [24.088596104486168,24.50219976714879,25.605142867582455,26.018746530245078] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/3221225472/new/tukey.json: -------------------------------------------------------------------------------- 1 | [24.088596104486168,24.50219976714879,25.605142867582455,26.018746530245078] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/536870912/base/tukey.json: -------------------------------------------------------------------------------- 1 | [23.912442414307943,24.450897886346755,25.886779145116922,26.425234617155734] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/536870912/new/tukey.json: -------------------------------------------------------------------------------- 1 | [23.912442414307943,24.450897886346755,25.886779145116922,26.425234617155734] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/67108864/base/tukey.json: -------------------------------------------------------------------------------- 1 | [24.144085924226555,24.56582768948647,25.690472396846232,26.11221416210614] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/67108864/new/tukey.json: -------------------------------------------------------------------------------- 1 | [24.144085924226555,24.56582768948647,25.690472396846232,26.11221416210614] -------------------------------------------------------------------------------- /benches/criterion/alloc/4096/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"4096","throughput":null,"full_id":"alloc/4096","directory_name":"alloc/4096","title":"alloc/4096"} -------------------------------------------------------------------------------- /benches/criterion/alloc/4096/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"4096","throughput":null,"full_id":"alloc/4096","directory_name":"alloc/4096","title":"alloc/4096"} -------------------------------------------------------------------------------- /benches/criterion/alloc/16384/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"16384","throughput":null,"full_id":"alloc/16384","directory_name":"alloc/16384","title":"alloc/16384"} -------------------------------------------------------------------------------- /benches/criterion/alloc/16384/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"16384","throughput":null,"full_id":"alloc/16384","directory_name":"alloc/16384","title":"alloc/16384"} -------------------------------------------------------------------------------- /benches/criterion/alloc/65536/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"65536","throughput":null,"full_id":"alloc/65536","directory_name":"alloc/65536","title":"alloc/65536"} -------------------------------------------------------------------------------- /benches/criterion/alloc/65536/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"65536","throughput":null,"full_id":"alloc/65536","directory_name":"alloc/65536","title":"alloc/65536"} -------------------------------------------------------------------------------- /benches/criterion/alloc/131072/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"131072","throughput":null,"full_id":"alloc/131072","directory_name":"alloc/131072","title":"alloc/131072"} -------------------------------------------------------------------------------- /benches/criterion/alloc/131072/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"131072","throughput":null,"full_id":"alloc/131072","directory_name":"alloc/131072","title":"alloc/131072"} -------------------------------------------------------------------------------- /benches/criterion/alloc/524288/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"524288","throughput":null,"full_id":"alloc/524288","directory_name":"alloc/524288","title":"alloc/524288"} -------------------------------------------------------------------------------- /benches/criterion/alloc/524288/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"524288","throughput":null,"full_id":"alloc/524288","directory_name":"alloc/524288","title":"alloc/524288"} -------------------------------------------------------------------------------- /benches/criterion/alloc/1048576/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"1048576","throughput":null,"full_id":"alloc/1048576","directory_name":"alloc/1048576","title":"alloc/1048576"} -------------------------------------------------------------------------------- /benches/criterion/alloc/1048576/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"1048576","throughput":null,"full_id":"alloc/1048576","directory_name":"alloc/1048576","title":"alloc/1048576"} -------------------------------------------------------------------------------- /benches/criterion/alloc/16777216/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"16777216","throughput":null,"full_id":"alloc/16777216","directory_name":"alloc/16777216","title":"alloc/16777216"} -------------------------------------------------------------------------------- /benches/criterion/alloc/16777216/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"16777216","throughput":null,"full_id":"alloc/16777216","directory_name":"alloc/16777216","title":"alloc/16777216"} -------------------------------------------------------------------------------- /benches/criterion/alloc/33554432/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"33554432","throughput":null,"full_id":"alloc/33554432","directory_name":"alloc/33554432","title":"alloc/33554432"} -------------------------------------------------------------------------------- /benches/criterion/alloc/33554432/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"33554432","throughput":null,"full_id":"alloc/33554432","directory_name":"alloc/33554432","title":"alloc/33554432"} -------------------------------------------------------------------------------- /benches/criterion/alloc/67108864/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"67108864","throughput":null,"full_id":"alloc/67108864","directory_name":"alloc/67108864","title":"alloc/67108864"} -------------------------------------------------------------------------------- /benches/criterion/alloc/67108864/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"67108864","throughput":null,"full_id":"alloc/67108864","directory_name":"alloc/67108864","title":"alloc/67108864"} -------------------------------------------------------------------------------- /benches/criterion/alloc/134217728/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"134217728","throughput":null,"full_id":"alloc/134217728","directory_name":"alloc/134217728","title":"alloc/134217728"} -------------------------------------------------------------------------------- /benches/criterion/alloc/134217728/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"134217728","throughput":null,"full_id":"alloc/134217728","directory_name":"alloc/134217728","title":"alloc/134217728"} -------------------------------------------------------------------------------- /benches/criterion/alloc/268435456/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"268435456","throughput":null,"full_id":"alloc/268435456","directory_name":"alloc/268435456","title":"alloc/268435456"} -------------------------------------------------------------------------------- /benches/criterion/alloc/268435456/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"268435456","throughput":null,"full_id":"alloc/268435456","directory_name":"alloc/268435456","title":"alloc/268435456"} -------------------------------------------------------------------------------- /benches/criterion/alloc/536870912/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"536870912","throughput":null,"full_id":"alloc/536870912","directory_name":"alloc/536870912","title":"alloc/536870912"} -------------------------------------------------------------------------------- /benches/criterion/alloc/536870912/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"536870912","throughput":null,"full_id":"alloc/536870912","directory_name":"alloc/536870912","title":"alloc/536870912"} -------------------------------------------------------------------------------- /benches/criterion/alloc/1073741824/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"1073741824","throughput":null,"full_id":"alloc/1073741824","directory_name":"alloc/1073741824","title":"alloc/1073741824"} -------------------------------------------------------------------------------- /benches/criterion/alloc/1073741824/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"1073741824","throughput":null,"full_id":"alloc/1073741824","directory_name":"alloc/1073741824","title":"alloc/1073741824"} -------------------------------------------------------------------------------- /benches/criterion/alloc/2147483648/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"2147483648","throughput":null,"full_id":"alloc/2147483648","directory_name":"alloc/2147483648","title":"alloc/2147483648"} -------------------------------------------------------------------------------- /benches/criterion/alloc/2147483648/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"2147483648","throughput":null,"full_id":"alloc/2147483648","directory_name":"alloc/2147483648","title":"alloc/2147483648"} -------------------------------------------------------------------------------- /benches/criterion/alloc/3221225472/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"3221225472","throughput":null,"full_id":"alloc/3221225472","directory_name":"alloc/3221225472","title":"alloc/3221225472"} -------------------------------------------------------------------------------- /benches/criterion/alloc/3221225472/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"alloc","function_id":null,"value_str":"3221225472","throughput":null,"full_id":"alloc/3221225472","directory_name":"alloc/3221225472","title":"alloc/3221225472"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/4096/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"4096","throughput":null,"full_id":"detach_from_pool/4096","directory_name":"detach_from_pool/4096","title":"detach_from_pool/4096"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/4096/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"4096","throughput":null,"full_id":"detach_from_pool/4096","directory_name":"detach_from_pool/4096","title":"detach_from_pool/4096"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/16384/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"16384","throughput":null,"full_id":"detach_from_pool/16384","directory_name":"detach_from_pool/16384","title":"detach_from_pool/16384"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/16384/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"16384","throughput":null,"full_id":"detach_from_pool/16384","directory_name":"detach_from_pool/16384","title":"detach_from_pool/16384"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/65536/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"65536","throughput":null,"full_id":"detach_from_pool/65536","directory_name":"detach_from_pool/65536","title":"detach_from_pool/65536"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/65536/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"65536","throughput":null,"full_id":"detach_from_pool/65536","directory_name":"detach_from_pool/65536","title":"detach_from_pool/65536"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/4096/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"4096","throughput":null,"full_id":"pulling_from_pool/4096","directory_name":"pulling_from_pool/4096","title":"pulling_from_pool/4096"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/4096/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"4096","throughput":null,"full_id":"pulling_from_pool/4096","directory_name":"pulling_from_pool/4096","title":"pulling_from_pool/4096"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/131072/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"131072","throughput":null,"full_id":"detach_from_pool/131072","directory_name":"detach_from_pool/131072","title":"detach_from_pool/131072"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/131072/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"131072","throughput":null,"full_id":"detach_from_pool/131072","directory_name":"detach_from_pool/131072","title":"detach_from_pool/131072"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/524288/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"524288","throughput":null,"full_id":"detach_from_pool/524288","directory_name":"detach_from_pool/524288","title":"detach_from_pool/524288"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/524288/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"524288","throughput":null,"full_id":"detach_from_pool/524288","directory_name":"detach_from_pool/524288","title":"detach_from_pool/524288"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/16384/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"16384","throughput":null,"full_id":"pulling_from_pool/16384","directory_name":"pulling_from_pool/16384","title":"pulling_from_pool/16384"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/16384/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"16384","throughput":null,"full_id":"pulling_from_pool/16384","directory_name":"pulling_from_pool/16384","title":"pulling_from_pool/16384"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/65536/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"65536","throughput":null,"full_id":"pulling_from_pool/65536","directory_name":"pulling_from_pool/65536","title":"pulling_from_pool/65536"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/65536/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"65536","throughput":null,"full_id":"pulling_from_pool/65536","directory_name":"pulling_from_pool/65536","title":"pulling_from_pool/65536"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/1048576/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"1048576","throughput":null,"full_id":"detach_from_pool/1048576","directory_name":"detach_from_pool/1048576","title":"detach_from_pool/1048576"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/1048576/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"1048576","throughput":null,"full_id":"detach_from_pool/1048576","directory_name":"detach_from_pool/1048576","title":"detach_from_pool/1048576"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/131072/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"131072","throughput":null,"full_id":"pulling_from_pool/131072","directory_name":"pulling_from_pool/131072","title":"pulling_from_pool/131072"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/131072/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"131072","throughput":null,"full_id":"pulling_from_pool/131072","directory_name":"pulling_from_pool/131072","title":"pulling_from_pool/131072"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/524288/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"524288","throughput":null,"full_id":"pulling_from_pool/524288","directory_name":"pulling_from_pool/524288","title":"pulling_from_pool/524288"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/524288/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"524288","throughput":null,"full_id":"pulling_from_pool/524288","directory_name":"pulling_from_pool/524288","title":"pulling_from_pool/524288"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/16777216/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"16777216","throughput":null,"full_id":"detach_from_pool/16777216","directory_name":"detach_from_pool/16777216","title":"detach_from_pool/16777216"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/16777216/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"16777216","throughput":null,"full_id":"detach_from_pool/16777216","directory_name":"detach_from_pool/16777216","title":"detach_from_pool/16777216"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/33554432/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"33554432","throughput":null,"full_id":"detach_from_pool/33554432","directory_name":"detach_from_pool/33554432","title":"detach_from_pool/33554432"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/33554432/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"33554432","throughput":null,"full_id":"detach_from_pool/33554432","directory_name":"detach_from_pool/33554432","title":"detach_from_pool/33554432"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/67108864/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"67108864","throughput":null,"full_id":"detach_from_pool/67108864","directory_name":"detach_from_pool/67108864","title":"detach_from_pool/67108864"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/67108864/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"67108864","throughput":null,"full_id":"detach_from_pool/67108864","directory_name":"detach_from_pool/67108864","title":"detach_from_pool/67108864"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/1048576/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"1048576","throughput":null,"full_id":"pulling_from_pool/1048576","directory_name":"pulling_from_pool/1048576","title":"pulling_from_pool/1048576"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/1048576/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"1048576","throughput":null,"full_id":"pulling_from_pool/1048576","directory_name":"pulling_from_pool/1048576","title":"pulling_from_pool/1048576"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/134217728/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"134217728","throughput":null,"full_id":"detach_from_pool/134217728","directory_name":"detach_from_pool/134217728","title":"detach_from_pool/134217728"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/134217728/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"134217728","throughput":null,"full_id":"detach_from_pool/134217728","directory_name":"detach_from_pool/134217728","title":"detach_from_pool/134217728"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/268435456/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"268435456","throughput":null,"full_id":"detach_from_pool/268435456","directory_name":"detach_from_pool/268435456","title":"detach_from_pool/268435456"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/268435456/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"268435456","throughput":null,"full_id":"detach_from_pool/268435456","directory_name":"detach_from_pool/268435456","title":"detach_from_pool/268435456"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/536870912/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"536870912","throughput":null,"full_id":"detach_from_pool/536870912","directory_name":"detach_from_pool/536870912","title":"detach_from_pool/536870912"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/536870912/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"536870912","throughput":null,"full_id":"detach_from_pool/536870912","directory_name":"detach_from_pool/536870912","title":"detach_from_pool/536870912"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/16777216/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"16777216","throughput":null,"full_id":"pulling_from_pool/16777216","directory_name":"pulling_from_pool/16777216","title":"pulling_from_pool/16777216"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/16777216/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"16777216","throughput":null,"full_id":"pulling_from_pool/16777216","directory_name":"pulling_from_pool/16777216","title":"pulling_from_pool/16777216"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/33554432/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"33554432","throughput":null,"full_id":"pulling_from_pool/33554432","directory_name":"pulling_from_pool/33554432","title":"pulling_from_pool/33554432"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/33554432/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"33554432","throughput":null,"full_id":"pulling_from_pool/33554432","directory_name":"pulling_from_pool/33554432","title":"pulling_from_pool/33554432"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/67108864/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"67108864","throughput":null,"full_id":"pulling_from_pool/67108864","directory_name":"pulling_from_pool/67108864","title":"pulling_from_pool/67108864"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/67108864/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"67108864","throughput":null,"full_id":"pulling_from_pool/67108864","directory_name":"pulling_from_pool/67108864","title":"pulling_from_pool/67108864"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/1073741824/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"1073741824","throughput":null,"full_id":"detach_from_pool/1073741824","directory_name":"detach_from_pool/1073741824","title":"detach_from_pool/1073741824"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/1073741824/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"1073741824","throughput":null,"full_id":"detach_from_pool/1073741824","directory_name":"detach_from_pool/1073741824","title":"detach_from_pool/1073741824"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/2147483648/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"2147483648","throughput":null,"full_id":"detach_from_pool/2147483648","directory_name":"detach_from_pool/2147483648","title":"detach_from_pool/2147483648"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/2147483648/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"2147483648","throughput":null,"full_id":"detach_from_pool/2147483648","directory_name":"detach_from_pool/2147483648","title":"detach_from_pool/2147483648"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/3221225472/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"3221225472","throughput":null,"full_id":"detach_from_pool/3221225472","directory_name":"detach_from_pool/3221225472","title":"detach_from_pool/3221225472"} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/3221225472/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"detach_from_pool","function_id":null,"value_str":"3221225472","throughput":null,"full_id":"detach_from_pool/3221225472","directory_name":"detach_from_pool/3221225472","title":"detach_from_pool/3221225472"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/134217728/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"134217728","throughput":null,"full_id":"pulling_from_pool/134217728","directory_name":"pulling_from_pool/134217728","title":"pulling_from_pool/134217728"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/134217728/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"134217728","throughput":null,"full_id":"pulling_from_pool/134217728","directory_name":"pulling_from_pool/134217728","title":"pulling_from_pool/134217728"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/268435456/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"268435456","throughput":null,"full_id":"pulling_from_pool/268435456","directory_name":"pulling_from_pool/268435456","title":"pulling_from_pool/268435456"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/268435456/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"268435456","throughput":null,"full_id":"pulling_from_pool/268435456","directory_name":"pulling_from_pool/268435456","title":"pulling_from_pool/268435456"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/536870912/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"536870912","throughput":null,"full_id":"pulling_from_pool/536870912","directory_name":"pulling_from_pool/536870912","title":"pulling_from_pool/536870912"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/536870912/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"536870912","throughput":null,"full_id":"pulling_from_pool/536870912","directory_name":"pulling_from_pool/536870912","title":"pulling_from_pool/536870912"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/1073741824/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"1073741824","throughput":null,"full_id":"pulling_from_pool/1073741824","directory_name":"pulling_from_pool/1073741824","title":"pulling_from_pool/1073741824"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/1073741824/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"1073741824","throughput":null,"full_id":"pulling_from_pool/1073741824","directory_name":"pulling_from_pool/1073741824","title":"pulling_from_pool/1073741824"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/2147483648/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"2147483648","throughput":null,"full_id":"pulling_from_pool/2147483648","directory_name":"pulling_from_pool/2147483648","title":"pulling_from_pool/2147483648"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/2147483648/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"2147483648","throughput":null,"full_id":"pulling_from_pool/2147483648","directory_name":"pulling_from_pool/2147483648","title":"pulling_from_pool/2147483648"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/3221225472/base/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"3221225472","throughput":null,"full_id":"pulling_from_pool/3221225472","directory_name":"pulling_from_pool/3221225472","title":"pulling_from_pool/3221225472"} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/3221225472/new/benchmark.json: -------------------------------------------------------------------------------- 1 | {"group_id":"pulling_from_pool","function_id":null,"value_str":"3221225472","throughput":null,"full_id":"pulling_from_pool/3221225472","directory_name":"pulling_from_pool/3221225472","title":"pulling_from_pool/3221225472"} -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- 1 | name: Rust 2 | 3 | on: 4 | push: 5 | branches: [ "master" ] 6 | pull_request: 7 | branches: [ "master" ] 8 | 9 | env: 10 | CARGO_TERM_COLOR: always 11 | 12 | jobs: 13 | build: 14 | 15 | runs-on: ubuntu-latest 16 | 17 | steps: 18 | - uses: actions/checkout@v4 19 | - name: Build 20 | run: cargo build --all-features --verbose 21 | - name: Run tests 22 | run: cargo test --all-features --verbose 23 | - name: Run Loom 24 | run: RUSTFLAGS="--cfg loom" cargo test loom_tests --all-features --release 25 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "object-pool" 3 | version = "0.6.0" 4 | authors = ["CJP10"] 5 | edition = "2018" 6 | description = "A thread-safe object pool with automatic return and attach/detach semantics" 7 | readme = "README.md" 8 | repository = "https://github.com/CJP10/object-pool" 9 | homepage = "https://github.com/CJP10/object-pool" 10 | documentation = "https://docs.rs/object-pool" 11 | keywords = ["atomic", "garbage", "non-blocking", "lock-free"] 12 | categories = ["concurrency", "memory-management", "data-structures"] 13 | license = "MIT/Apache-2.0" 14 | 15 | [lints.rust] 16 | unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] } 17 | 18 | [dependencies] 19 | parking_lot = "0.12.3" 20 | 21 | [target.'cfg(loom)'.dependencies] 22 | loom = "0.7" 23 | 24 | [dev-dependencies] 25 | criterion = "0.5.1" 26 | criterion-plot = "0.5.0" 27 | 28 | [[bench]] 29 | name = "bench" 30 | harness = false 31 | 32 | [features] 33 | experimental = [] 34 | -------------------------------------------------------------------------------- /benches/criterion/alloc/16384/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":67.66944838851428,"upper_bound":75.00302733430985},"point_estimate":71.14582800607106,"standard_error":1.882345895011718},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":63.00922833285344,"upper_bound":65.10738688025774},"point_estimate":64.18979246543512,"standard_error":0.45543843566430386},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4.310228480576582,"upper_bound":6.95390133839512},"point_estimate":6.282209228140102,"standard_error":0.6722336498257419},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":65.41736204545889,"upper_bound":74.19194593400472},"point_estimate":69.34921073342879,"standard_error":2.23505321134338},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":13.937164392830194,"upper_bound":22.919016249506644},"point_estimate":18.943053370584582,"standard_error":2.287273970171975}} -------------------------------------------------------------------------------- /benches/criterion/alloc/16384/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":67.66944838851428,"upper_bound":75.00302733430985},"point_estimate":71.14582800607106,"standard_error":1.882345895011718},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":63.00922833285344,"upper_bound":65.10738688025774},"point_estimate":64.18979246543512,"standard_error":0.45543843566430386},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4.310228480576582,"upper_bound":6.95390133839512},"point_estimate":6.282209228140102,"standard_error":0.6722336498257419},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":65.41736204545889,"upper_bound":74.19194593400472},"point_estimate":69.34921073342879,"standard_error":2.23505321134338},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":13.937164392830194,"upper_bound":22.919016249506644},"point_estimate":18.943053370584582,"standard_error":2.287273970171975}} -------------------------------------------------------------------------------- /benches/criterion/alloc/268435456/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4102.208857276656,"upper_bound":4139.528753686232},"point_estimate":4120.1730322835165,"standard_error":9.562603902181399},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4080.7421044864227,"upper_bound":4106.221200877045},"point_estimate":4095.347477709648,"standard_error":7.83983060696098},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":39.76607568789758,"upper_bound":78.40784960989468},"point_estimate":55.17048904284185,"standard_error":9.68106521456187},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4104.649844450831,"upper_bound":4133.901477141093},"point_estimate":4119.010247140047,"standard_error":7.462741039735216},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":74.13487019867489,"upper_bound":118.92979331123986},"point_estimate":96.42095676712492,"standard_error":11.602169349164207}} -------------------------------------------------------------------------------- /benches/criterion/alloc/4096/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":67.10645184947005,"upper_bound":71.71971205369267},"point_estimate":69.30208939165954,"standard_error":1.1742320469035517},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":63.0232278465722,"upper_bound":66.3747653786765},"point_estimate":63.93451246773623,"standard_error":0.9801346262003819},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4.1754368976514495,"upper_bound":8.570112634315068},"point_estimate":5.87865893869756,"standard_error":1.2068073818957274},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":70.45977047593345,"upper_bound":78.85095041915406},"point_estimate":74.53557706553812,"standard_error":2.144760338763868},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":8.955543856678322,"upper_bound":14.480570167996884},"point_estimate":11.811289406166866,"standard_error":1.419458975227223}} -------------------------------------------------------------------------------- /benches/criterion/alloc/4096/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":67.10645184947005,"upper_bound":71.71971205369267},"point_estimate":69.30208939165954,"standard_error":1.1742320469035517},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":63.0232278465722,"upper_bound":66.3747653786765},"point_estimate":63.93451246773623,"standard_error":0.9801346262003819},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4.1754368976514495,"upper_bound":8.570112634315068},"point_estimate":5.87865893869756,"standard_error":1.2068073818957274},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":70.45977047593345,"upper_bound":78.85095041915406},"point_estimate":74.53557706553812,"standard_error":2.144760338763868},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":8.955543856678322,"upper_bound":14.480570167996884},"point_estimate":11.811289406166866,"standard_error":1.419458975227223}} -------------------------------------------------------------------------------- /benches/criterion/alloc/1073741824/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6588.912501118732,"upper_bound":6683.072026808363},"point_estimate":6630.4848958811,"standard_error":24.271194484488507},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6549.492825607064,"upper_bound":6598.182032066922},"point_estimate":6578.685674168022,"standard_error":12.049774617347136},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":71.95425612478554,"upper_bound":122.25799211425468},"point_estimate":97.11971569542206,"standard_error":12.562106690076062},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6634.336634414949,"upper_bound":6817.954893829932},"point_estimate":6710.975399626352,"standard_error":48.31777144556702},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":117.80965215339751,"upper_bound":364.44254197558894},"point_estimate":244.1787022165725,"standard_error":67.48182257534476}} -------------------------------------------------------------------------------- /benches/criterion/alloc/1073741824/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6588.912501118732,"upper_bound":6683.072026808363},"point_estimate":6630.4848958811,"standard_error":24.271194484488507},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6549.492825607064,"upper_bound":6598.182032066922},"point_estimate":6578.685674168022,"standard_error":12.049774617347136},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":71.95425612478554,"upper_bound":122.25799211425468},"point_estimate":97.11971569542206,"standard_error":12.562106690076062},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6634.336634414949,"upper_bound":6817.954893829932},"point_estimate":6710.975399626352,"standard_error":48.31777144556702},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":117.80965215339751,"upper_bound":364.44254197558894},"point_estimate":244.1787022165725,"standard_error":67.48182257534476}} -------------------------------------------------------------------------------- /benches/criterion/alloc/134217728/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3686.948836423234,"upper_bound":3705.0127699323953},"point_estimate":3695.512227455203,"standard_error":4.59596773471036},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3681.6136016591836,"upper_bound":3698.1787615249814},"point_estimate":3686.3313343657674,"standard_error":4.559114036593291},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":23.733339029457476,"upper_bound":41.49097221337696},"point_estimate":31.774234128820865,"standard_error":4.615312393983614},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3691.254852400691,"upper_bound":3704.4437972828723},"point_estimate":3697.6826533590806,"standard_error":3.373846651375396},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":32.9135916666469,"upper_bound":61.16488349583693},"point_estimate":46.30027219813787,"standard_error":7.575438829350565}} -------------------------------------------------------------------------------- /benches/criterion/alloc/134217728/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3686.948836423234,"upper_bound":3705.0127699323953},"point_estimate":3695.512227455203,"standard_error":4.59596773471036},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3681.6136016591836,"upper_bound":3698.1787615249814},"point_estimate":3686.3313343657674,"standard_error":4.559114036593291},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":23.733339029457476,"upper_bound":41.49097221337696},"point_estimate":31.774234128820865,"standard_error":4.615312393983614},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3691.254852400691,"upper_bound":3704.4437972828723},"point_estimate":3697.6826533590806,"standard_error":3.373846651375396},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":32.9135916666469,"upper_bound":61.16488349583693},"point_estimate":46.30027219813787,"standard_error":7.575438829350565}} -------------------------------------------------------------------------------- /benches/criterion/alloc/268435456/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4102.208857276656,"upper_bound":4139.528753686232},"point_estimate":4120.1730322835165,"standard_error":9.562603902181399},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4080.7421044864227,"upper_bound":4106.221200877045},"point_estimate":4095.347477709648,"standard_error":7.83983060696098},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":39.76607568789758,"upper_bound":78.40784960989468},"point_estimate":55.17048904284185,"standard_error":9.68106521456187},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4104.649844450831,"upper_bound":4133.901477141093},"point_estimate":4119.010247140047,"standard_error":7.462741039735216},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":74.13487019867489,"upper_bound":118.92979331123986},"point_estimate":96.42095676712492,"standard_error":11.602169349164207}} -------------------------------------------------------------------------------- /benches/criterion/alloc/33554432/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3762.065987027159,"upper_bound":3789.2802342151226},"point_estimate":3774.8866934668686,"standard_error":6.943922241847164},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3754.0853400929445,"upper_bound":3773.7016682650446},"point_estimate":3763.983979529132,"standard_error":4.856582998786674},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":34.71422534279198,"upper_bound":56.06277229681816},"point_estimate":47.33418859881377,"standard_error":5.456490901790173},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3758.5534761400713,"upper_bound":3775.5123346931678},"point_estimate":3766.9511496464897,"standard_error":4.319455529626805},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":46.6891211948092,"upper_bound":94.00431095399489},"point_estimate":70.07545092606678,"standard_error":12.577190875511421}} -------------------------------------------------------------------------------- /benches/criterion/alloc/33554432/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3762.065987027159,"upper_bound":3789.2802342151226},"point_estimate":3774.8866934668686,"standard_error":6.943922241847164},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3754.0853400929445,"upper_bound":3773.7016682650446},"point_estimate":3763.983979529132,"standard_error":4.856582998786674},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":34.71422534279198,"upper_bound":56.06277229681816},"point_estimate":47.33418859881377,"standard_error":5.456490901790173},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3758.5534761400713,"upper_bound":3775.5123346931678},"point_estimate":3766.9511496464897,"standard_error":4.319455529626805},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":46.6891211948092,"upper_bound":94.00431095399489},"point_estimate":70.07545092606678,"standard_error":12.577190875511421}} -------------------------------------------------------------------------------- /benches/criterion/alloc/536870912/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4860.405371884071,"upper_bound":4911.140381092563},"point_estimate":4882.9015170336215,"standard_error":13.012434220744561},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4844.606234667469,"upper_bound":4882.656573796915},"point_estimate":4865.020493042952,"standard_error":10.800649036736017},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":45.26003240979513,"upper_bound":67.25982135706491},"point_estimate":54.536422179626065,"standard_error":5.6458796932381565},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4867.958697210898,"upper_bound":4981.781508163039},"point_estimate":4916.571123814318,"standard_error":29.823785100016448},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":56.82863678411969,"upper_bound":191.6166837876304},"point_estimate":130.63914637518127,"standard_error":35.0752046822091}} -------------------------------------------------------------------------------- /benches/criterion/alloc/536870912/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4860.405371884071,"upper_bound":4911.140381092563},"point_estimate":4882.9015170336215,"standard_error":13.012434220744561},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4844.606234667469,"upper_bound":4882.656573796915},"point_estimate":4865.020493042952,"standard_error":10.800649036736017},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":45.26003240979513,"upper_bound":67.25982135706491},"point_estimate":54.536422179626065,"standard_error":5.6458796932381565},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":4867.958697210898,"upper_bound":4981.781508163039},"point_estimate":4916.571123814318,"standard_error":29.823785100016448},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":56.82863678411969,"upper_bound":191.6166837876304},"point_estimate":130.63914637518127,"standard_error":35.0752046822091}} -------------------------------------------------------------------------------- /benches/criterion/alloc/65536/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":56.840596520324155,"upper_bound":58.21679127239115},"point_estimate":57.45195967908083,"standard_error":0.353214333057422},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":56.00784991017475,"upper_bound":56.67105414012739},"point_estimate":56.3624967684526,"standard_error":0.17261684860921853},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.7616369460323817,"upper_bound":1.5766293197165464},"point_estimate":1.1640117326692394,"standard_error":0.21119290939794902},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":56.78452382527807,"upper_bound":57.82565927233767},"point_estimate":57.28265577818168,"standard_error":0.2658793169165821},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1.8687621522112254,"upper_bound":5.1520938588601},"point_estimate":3.5434508191706224,"standard_error":0.8771178665100919}} -------------------------------------------------------------------------------- /benches/criterion/alloc/65536/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":56.840596520324155,"upper_bound":58.21679127239115},"point_estimate":57.45195967908083,"standard_error":0.353214333057422},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":56.00784991017475,"upper_bound":56.67105414012739},"point_estimate":56.3624967684526,"standard_error":0.17261684860921853},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.7616369460323817,"upper_bound":1.5766293197165464},"point_estimate":1.1640117326692394,"standard_error":0.21119290939794902},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":56.78452382527807,"upper_bound":57.82565927233767},"point_estimate":57.28265577818168,"standard_error":0.2658793169165821},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1.8687621522112254,"upper_bound":5.1520938588601},"point_estimate":3.5434508191706224,"standard_error":0.8771178665100919}} -------------------------------------------------------------------------------- /benches/criterion/alloc/131072/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":56.912039987593026,"upper_bound":58.32151716025673},"point_estimate":57.5689268785239,"standard_error":0.3615588717376863},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":56.23111502832192,"upper_bound":56.672955424711574},"point_estimate":56.37829473311923,"standard_error":0.11461815118025079},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.7474932121836716,"upper_bound":1.5682852571013595},"point_estimate":1.07509469509089,"standard_error":0.21342615039898746},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":57.26140394642512,"upper_bound":59.74063010476998},"point_estimate":58.409929032656116,"standard_error":0.6370830247736484},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2.411403135580465,"upper_bound":4.624403814605119},"point_estimate":3.6356345960463163,"standard_error":0.5637121515479855}} -------------------------------------------------------------------------------- /benches/criterion/alloc/131072/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":56.912039987593026,"upper_bound":58.32151716025673},"point_estimate":57.5689268785239,"standard_error":0.3615588717376863},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":56.23111502832192,"upper_bound":56.672955424711574},"point_estimate":56.37829473311923,"standard_error":0.11461815118025079},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.7474932121836716,"upper_bound":1.5682852571013595},"point_estimate":1.07509469509089,"standard_error":0.21342615039898746},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":57.26140394642512,"upper_bound":59.74063010476998},"point_estimate":58.409929032656116,"standard_error":0.6370830247736484},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2.411403135580465,"upper_bound":4.624403814605119},"point_estimate":3.6356345960463163,"standard_error":0.5637121515479855}} -------------------------------------------------------------------------------- /benches/criterion/alloc/2147483648/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7054.343137866519,"upper_bound":7407.457279293746},"point_estimate":7222.072951052324,"standard_error":90.37256591510919},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6806.2290977798775,"upper_bound":6917.203201970444},"point_estimate":6869.984016052319,"standard_error":28.558293250925022},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":135.77883091313674,"upper_bound":275.76105757304794},"point_estimate":199.76946109006744,"standard_error":36.60103130620245},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7201.712460253353,"upper_bound":7934.699980881447},"point_estimate":7563.7549547448825,"standard_error":188.0427781525076},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":651.5441101336345,"upper_bound":1111.7383707790623},"point_estimate":906.6153020733481,"standard_error":117.40862819777277}} -------------------------------------------------------------------------------- /benches/criterion/alloc/2147483648/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7054.343137866519,"upper_bound":7407.457279293746},"point_estimate":7222.072951052324,"standard_error":90.37256591510919},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6806.2290977798775,"upper_bound":6917.203201970444},"point_estimate":6869.984016052319,"standard_error":28.558293250925022},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":135.77883091313674,"upper_bound":275.76105757304794},"point_estimate":199.76946109006744,"standard_error":36.60103130620245},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":7201.712460253353,"upper_bound":7934.699980881447},"point_estimate":7563.7549547448825,"standard_error":188.0427781525076},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":651.5441101336345,"upper_bound":1111.7383707790623},"point_estimate":906.6153020733481,"standard_error":117.40862819777277}} -------------------------------------------------------------------------------- /benches/criterion/alloc/3221225472/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6748.069191411636,"upper_bound":6823.361675699435},"point_estimate":6783.646702773037,"standard_error":19.218991539149044},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6718.486362163912,"upper_bound":6779.585908649174},"point_estimate":6742.101742184969,"standard_error":19.285353019108662},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":107.48443877059444,"upper_bound":168.6788873607043},"point_estimate":146.65560026112541,"standard_error":15.300983049098415},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6765.547575437073,"upper_bound":6860.314142968174},"point_estimate":6808.498341591698,"standard_error":24.221457586121986},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":133.35173835185026,"upper_bound":248.108879036389},"point_estimate":193.0394788445552,"standard_error":29.418867252688848}} -------------------------------------------------------------------------------- /benches/criterion/alloc/3221225472/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6748.069191411636,"upper_bound":6823.361675699435},"point_estimate":6783.646702773037,"standard_error":19.218991539149044},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6718.486362163912,"upper_bound":6779.585908649174},"point_estimate":6742.101742184969,"standard_error":19.285353019108662},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":107.48443877059444,"upper_bound":168.6788873607043},"point_estimate":146.65560026112541,"standard_error":15.300983049098415},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":6765.547575437073,"upper_bound":6860.314142968174},"point_estimate":6808.498341591698,"standard_error":24.221457586121986},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":133.35173835185026,"upper_bound":248.108879036389},"point_estimate":193.0394788445552,"standard_error":29.418867252688848}} -------------------------------------------------------------------------------- /benches/criterion/alloc/524288/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":54.26093058623988,"upper_bound":55.27323063733926},"point_estimate":54.703686128756836,"standard_error":0.261454325430604},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":53.93920042321645,"upper_bound":54.27784108085083},"point_estimate":54.11355163929568,"standard_error":0.09900216192296381},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.4884326937179879,"upper_bound":0.8324801934592617},"point_estimate":0.6279153033103391,"standard_error":0.08540186480836626},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":53.91568869187198,"upper_bound":54.32490119098737},"point_estimate":54.102079213119026,"standard_error":0.10443630993045801},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1.0344491821145714,"upper_bound":3.902078991739998},"point_estimate":2.6219317953296764,"standard_error":0.7442579220574956}} -------------------------------------------------------------------------------- /benches/criterion/alloc/524288/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":54.26093058623988,"upper_bound":55.27323063733926},"point_estimate":54.703686128756836,"standard_error":0.261454325430604},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":53.93920042321645,"upper_bound":54.27784108085083},"point_estimate":54.11355163929568,"standard_error":0.09900216192296381},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.4884326937179879,"upper_bound":0.8324801934592617},"point_estimate":0.6279153033103391,"standard_error":0.08540186480836626},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":53.91568869187198,"upper_bound":54.32490119098737},"point_estimate":54.102079213119026,"standard_error":0.10443630993045801},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1.0344491821145714,"upper_bound":3.902078991739998},"point_estimate":2.6219317953296764,"standard_error":0.7442579220574956}} -------------------------------------------------------------------------------- /benches/criterion/alloc/67108864/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3532.0465805286726,"upper_bound":3550.0276147027107},"point_estimate":3540.3495277404013,"standard_error":4.594866976880637},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3526.9910207892444,"upper_bound":3538.68321299639},"point_estimate":3533.9413524535366,"standard_error":2.826753820438756},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":22.48488687785906,"upper_bound":38.717073767775055},"point_estimate":31.595971713427797,"standard_error":4.116941947548773},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3538.2751559193034,"upper_bound":3553.0392137640333},"point_estimate":3545.5258660658887,"standard_error":3.777465768570181},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":30.092016682716498,"upper_bound":64.62333278943966},"point_estimate":46.24505473616198,"standard_error":9.948315973914948}} -------------------------------------------------------------------------------- /benches/criterion/alloc/67108864/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3532.0465805286726,"upper_bound":3550.0276147027107},"point_estimate":3540.3495277404013,"standard_error":4.594866976880637},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3526.9910207892444,"upper_bound":3538.68321299639},"point_estimate":3533.9413524535366,"standard_error":2.826753820438756},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":22.48488687785906,"upper_bound":38.717073767775055},"point_estimate":31.595971713427797,"standard_error":4.116941947548773},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":3538.2751559193034,"upper_bound":3553.0392137640333},"point_estimate":3545.5258660658887,"standard_error":3.777465768570181},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":30.092016682716498,"upper_bound":64.62333278943966},"point_estimate":46.24505473616198,"standard_error":9.948315973914948}} -------------------------------------------------------------------------------- /benches/criterion/alloc/1048576/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":43.17718033614077,"upper_bound":43.74553790019211},"point_estimate":43.44234286496323,"standard_error":0.14543281176545997},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":42.81894841130229,"upper_bound":43.19864147980106},"point_estimate":42.99728889178503,"standard_error":0.09743611876508095},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.4213813905670692,"upper_bound":0.7735757536009917},"point_estimate":0.5818971552899377,"standard_error":0.08374417630933798},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":43.098040257795134,"upper_bound":43.43781512144934},"point_estimate":43.25734707536834,"standard_error":0.08661158062557947},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.981954268752265,"upper_bound":1.8843333841605274},"point_estimate":1.4668897597960422,"standard_error":0.23094024185538725}} -------------------------------------------------------------------------------- /benches/criterion/alloc/1048576/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":43.17718033614077,"upper_bound":43.74553790019211},"point_estimate":43.44234286496323,"standard_error":0.14543281176545997},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":42.81894841130229,"upper_bound":43.19864147980106},"point_estimate":42.99728889178503,"standard_error":0.09743611876508095},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.4213813905670692,"upper_bound":0.7735757536009917},"point_estimate":0.5818971552899377,"standard_error":0.08374417630933798},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":43.098040257795134,"upper_bound":43.43781512144934},"point_estimate":43.25734707536834,"standard_error":0.08661158062557947},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.981954268752265,"upper_bound":1.8843333841605274},"point_estimate":1.4668897597960422,"standard_error":0.23094024185538725}} -------------------------------------------------------------------------------- /benches/criterion/alloc/16777216/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":43.54093113431649,"upper_bound":43.83314279749925},"point_estimate":43.68924261440263,"standard_error":0.07456727396178489},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":43.61917488948928,"upper_bound":44.00389233226317},"point_estimate":43.827438022643804,"standard_error":0.09442913253011471},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.5251560432137415,"upper_bound":0.8920962491178186},"point_estimate":0.6994173338441868,"standard_error":0.0890857408374881},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":43.98459148863136,"upper_bound":44.17750444258069},"point_estimate":44.079587716770014,"standard_error":0.04928196763098306},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.6475271148937229,"upper_bound":0.8440942469575169},"point_estimate":0.7514399270831907,"standard_error":0.05004071511473466}} -------------------------------------------------------------------------------- /benches/criterion/alloc/16777216/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":43.54093113431649,"upper_bound":43.83314279749925},"point_estimate":43.68924261440263,"standard_error":0.07456727396178489},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":43.61917488948928,"upper_bound":44.00389233226317},"point_estimate":43.827438022643804,"standard_error":0.09442913253011471},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.5251560432137415,"upper_bound":0.8920962491178186},"point_estimate":0.6994173338441868,"standard_error":0.0890857408374881},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":43.98459148863136,"upper_bound":44.17750444258069},"point_estimate":44.079587716770014,"standard_error":0.04928196763098306},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.6475271148937229,"upper_bound":0.8440942469575169},"point_estimate":0.7514399270831907,"standard_error":0.05004071511473466}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/16384/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.270730566856628,"upper_bound":25.707363655911436},"point_estimate":25.46813834746424,"standard_error":0.1118465644380868},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.116083359642875,"upper_bound":25.199750758833645},"point_estimate":25.155129003460203,"standard_error":0.02004639423455714},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.1983154051318089,"upper_bound":0.4303697297670926},"point_estimate":0.34447705246354826,"standard_error":0.05910433756084849},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.197053459169254,"upper_bound":25.479646352097426},"point_estimate":25.33078574057039,"standard_error":0.07241428099846257},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.6067405704664711,"upper_bound":1.5495715622137054},"point_estimate":1.1273387220660052,"standard_error":0.23920575045697065}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/16384/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.270730566856628,"upper_bound":25.707363655911436},"point_estimate":25.46813834746424,"standard_error":0.1118465644380868},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.116083359642875,"upper_bound":25.199750758833645},"point_estimate":25.155129003460203,"standard_error":0.02004639423455714},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.1983154051318089,"upper_bound":0.4303697297670926},"point_estimate":0.34447705246354826,"standard_error":0.05910433756084849},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.197053459169254,"upper_bound":25.479646352097426},"point_estimate":25.33078574057039,"standard_error":0.07241428099846257},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.6067405704664711,"upper_bound":1.5495715622137054},"point_estimate":1.1273387220660052,"standard_error":0.23920575045697065}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/268435456/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.353130549365506,"upper_bound":25.511858136013394},"point_estimate":25.429270028512086,"standard_error":0.04060616132569665},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.300875246622414,"upper_bound":25.39104002968384},"point_estimate":25.329130318944046,"standard_error":0.020849774363242},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.166505499278085,"upper_bound":0.28668896761818546},"point_estimate":0.2303358748878929,"standard_error":0.03252537359394052},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.39526039304868,"upper_bound":25.64045836417681},"point_estimate":25.509331974851392,"standard_error":0.0627134890707733},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.3081568912715259,"upper_bound":0.4954929693337807},"point_estimate":0.4086871792774426,"standard_error":0.04758777591399467}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/268435456/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.353130549365506,"upper_bound":25.511858136013394},"point_estimate":25.429270028512086,"standard_error":0.04060616132569665},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.300875246622414,"upper_bound":25.39104002968384},"point_estimate":25.329130318944046,"standard_error":0.020849774363242},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.166505499278085,"upper_bound":0.28668896761818546},"point_estimate":0.2303358748878929,"standard_error":0.03252537359394052},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.39526039304868,"upper_bound":25.64045836417681},"point_estimate":25.509331974851392,"standard_error":0.0627134890707733},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.3081568912715259,"upper_bound":0.4954929693337807},"point_estimate":0.4086871792774426,"standard_error":0.04758777591399467}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/4096/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.097343204223307,"upper_bound":25.253706368219547},"point_estimate":25.171187930019006,"standard_error":0.04014096864795229},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.017688135208747,"upper_bound":25.15233312047949},"point_estimate":25.084539627673028,"standard_error":0.030810745779225948},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.1775037821141244,"upper_bound":0.2884264731556729},"point_estimate":0.23337698884995176,"standard_error":0.029313343677246965},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.101637316841213,"upper_bound":25.245768191867466},"point_estimate":25.167646405712183,"standard_error":0.0369880359110193},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.2728182226096278,"upper_bound":0.522879438983607},"point_estimate":0.4027555388318609,"standard_error":0.06421143518901617}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/4096/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.097343204223307,"upper_bound":25.253706368219547},"point_estimate":25.171187930019006,"standard_error":0.04014096864795229},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.017688135208747,"upper_bound":25.15233312047949},"point_estimate":25.084539627673028,"standard_error":0.030810745779225948},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.1775037821141244,"upper_bound":0.2884264731556729},"point_estimate":0.23337698884995176,"standard_error":0.029313343677246965},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.101637316841213,"upper_bound":25.245768191867466},"point_estimate":25.167646405712183,"standard_error":0.0369880359110193},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.2728182226096278,"upper_bound":0.522879438983607},"point_estimate":0.4027555388318609,"standard_error":0.06421143518901617}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/536870912/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.198174892395368,"upper_bound":25.33599739648013},"point_estimate":25.26197607401769,"standard_error":0.03520956121439784},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.168318646691123,"upper_bound":25.2514019650599},"point_estimate":25.20361622122095,"standard_error":0.023068020995943097},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.1604295682747159,"upper_bound":0.3046592500629002},"point_estimate":0.235268333994807,"standard_error":0.035863438056702654},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.19905848475851,"upper_bound":25.31593690775024},"point_estimate":25.25488626551863,"standard_error":0.029856347738142466},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.22912152129759686,"upper_bound":0.4985502414057869},"point_estimate":0.3545859735803344,"standard_error":0.07813977355683344}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/536870912/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.198174892395368,"upper_bound":25.33599739648013},"point_estimate":25.26197607401769,"standard_error":0.03520956121439784},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.168318646691123,"upper_bound":25.2514019650599},"point_estimate":25.20361622122095,"standard_error":0.023068020995943097},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.1604295682747159,"upper_bound":0.3046592500629002},"point_estimate":0.235268333994807,"standard_error":0.035863438056702654},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.19905848475851,"upper_bound":25.31593690775024},"point_estimate":25.25488626551863,"standard_error":0.029856347738142466},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.22912152129759686,"upper_bound":0.4985502414057869},"point_estimate":0.3545859735803344,"standard_error":0.07813977355683344}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/65536/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.29000839256968,"upper_bound":25.44500093304461},"point_estimate":25.365716048575948,"standard_error":0.03949042234021904},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.26448701892605,"upper_bound":25.391288558489276},"point_estimate":25.34061702112428,"standard_error":0.03618380899433222},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.22072323096693214,"upper_bound":0.40975359287620877},"point_estimate":0.3094444259567376,"standard_error":0.049124376232758},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.375515209858538,"upper_bound":25.519255947088038},"point_estimate":25.443633792353054,"standard_error":0.03678260375156241},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.31474246920902704,"upper_bound":0.47151455836571887},"point_estimate":0.3957010469179287,"standard_error":0.04007581519211417}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/65536/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.29000839256968,"upper_bound":25.44500093304461},"point_estimate":25.365716048575948,"standard_error":0.03949042234021904},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.26448701892605,"upper_bound":25.391288558489276},"point_estimate":25.34061702112428,"standard_error":0.03618380899433222},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.22072323096693214,"upper_bound":0.40975359287620877},"point_estimate":0.3094444259567376,"standard_error":0.049124376232758},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.375515209858538,"upper_bound":25.519255947088038},"point_estimate":25.443633792353054,"standard_error":0.03678260375156241},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.31474246920902704,"upper_bound":0.47151455836571887},"point_estimate":0.3957010469179287,"standard_error":0.04007581519211417}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/4096/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.126149762926886,"upper_bound":25.265781084533092},"point_estimate":25.190812793027302,"standard_error":0.03561323422339},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.076181754076295,"upper_bound":25.178949540284776},"point_estimate":25.11206672800865,"standard_error":0.024782401096363794},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.14849531633504273,"upper_bound":0.2480253282121084},"point_estimate":0.19153980792242156,"standard_error":0.0265371824057512},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.114322188281765,"upper_bound":25.184937495490086},"point_estimate":25.148531054159108,"standard_error":0.01816936555811701},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.22054483951242027,"upper_bound":0.48603033114975597},"point_estimate":0.3581032469076483,"standard_error":0.06879623942792416}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/1048576/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.36807449269871,"upper_bound":25.542421592993865},"point_estimate":25.45414537130323,"standard_error":0.04463475815259022},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.372218174809046,"upper_bound":25.515223964813796},"point_estimate":25.447336954345687,"standard_error":0.031439768432893755},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.23160342630040331,"upper_bound":0.5859483492485724},"point_estimate":0.3341804882305825,"standard_error":0.09356976365167635},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.566201641587707,"upper_bound":25.747649465519174},"point_estimate":25.654672595555184,"standard_error":0.0462093837380653},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.3752064500052677,"upper_bound":0.5178579340438277},"point_estimate":0.4489459025418474,"standard_error":0.036397810474547765}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/1048576/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.36807449269871,"upper_bound":25.542421592993865},"point_estimate":25.45414537130323,"standard_error":0.04463475815259022},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.372218174809046,"upper_bound":25.515223964813796},"point_estimate":25.447336954345687,"standard_error":0.031439768432893755},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.23160342630040331,"upper_bound":0.5859483492485724},"point_estimate":0.3341804882305825,"standard_error":0.09356976365167635},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.566201641587707,"upper_bound":25.747649465519174},"point_estimate":25.654672595555184,"standard_error":0.0462093837380653},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.3752064500052677,"upper_bound":0.5178579340438277},"point_estimate":0.4489459025418474,"standard_error":0.036397810474547765}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/134217728/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.314745938285,"upper_bound":25.514420226353796},"point_estimate":25.407009486221753,"standard_error":0.051161340187920235},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.250003401270007,"upper_bound":25.375884854215396},"point_estimate":25.311884754313283,"standard_error":0.03947824807060394},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.19160235197954137,"upper_bound":0.3183889571479247},"point_estimate":0.24232809124190452,"standard_error":0.03260601903720612},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.39356397738925,"upper_bound":25.578162102695522},"point_estimate":25.482751698498074,"standard_error":0.04717571708250431},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.3282120609476213,"upper_bound":0.7233382431446838},"point_estimate":0.5143808606779235,"standard_error":0.11433002934782331}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/134217728/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.314745938285,"upper_bound":25.514420226353796},"point_estimate":25.407009486221753,"standard_error":0.051161340187920235},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.250003401270007,"upper_bound":25.375884854215396},"point_estimate":25.311884754313283,"standard_error":0.03947824807060394},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.19160235197954137,"upper_bound":0.3183889571479247},"point_estimate":0.24232809124190452,"standard_error":0.03260601903720612},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.39356397738925,"upper_bound":25.578162102695522},"point_estimate":25.482751698498074,"standard_error":0.04717571708250431},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.3282120609476213,"upper_bound":0.7233382431446838},"point_estimate":0.5143808606779235,"standard_error":0.11433002934782331}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/16777216/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.371811140013712,"upper_bound":25.56451970025583},"point_estimate":25.457512608754637,"standard_error":0.0494322936378347},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.318662748077895,"upper_bound":25.404022594347925},"point_estimate":25.350972694505465,"standard_error":0.018909074987717413},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.12989389166885595,"upper_bound":0.25703533788769506},"point_estimate":0.16949205595809697,"standard_error":0.032090840004619474},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.37876079687178,"upper_bound":25.510251574271514},"point_estimate":25.44075684295633,"standard_error":0.033697628818832544},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.24581169898635302,"upper_bound":0.7362158745025786},"point_estimate":0.4961119041215985,"standard_error":0.1322006292727453}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/2147483648/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":26.397569480420287,"upper_bound":26.575745605906967},"point_estimate":26.488867709625506,"standard_error":0.04546593907360522},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":26.430532822842316,"upper_bound":26.598038133769162},"point_estimate":26.517209340419335,"standard_error":0.04551608568851638},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.268695697177612,"upper_bound":0.43272874914605786},"point_estimate":0.3633917341278461,"standard_error":0.04339965132390655},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":26.478209291324706,"upper_bound":26.597705053840038},"point_estimate":26.537412321233536,"standard_error":0.03041273578060211},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.33532701782389707,"upper_bound":0.573497692161996},"point_estimate":0.4573761093312797,"standard_error":0.06090559447567517}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/3221225472/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.26884483016494,"upper_bound":25.43331180192016},"point_estimate":25.347608646872118,"standard_error":0.04210679307213136},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.234122847913056,"upper_bound":25.302397112308242},"point_estimate":25.2576557295797,"standard_error":0.019171860162766202},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.17713456976994724,"upper_bound":0.3245233582458982},"point_estimate":0.244377185728844,"standard_error":0.035801639676897694},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.29249773550768,"upper_bound":25.480350258329082},"point_estimate":25.377200540144027,"standard_error":0.04815535340929179},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.31293178917917375,"upper_bound":0.518580682404264},"point_estimate":0.42165101322188825,"standard_error":0.052623378860129404}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/3221225472/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.26884483016494,"upper_bound":25.43331180192016},"point_estimate":25.347608646872118,"standard_error":0.04210679307213136},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.234122847913056,"upper_bound":25.302397112308242},"point_estimate":25.2576557295797,"standard_error":0.019171860162766202},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.17713456976994724,"upper_bound":0.3245233582458982},"point_estimate":0.244377185728844,"standard_error":0.035801639676897694},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.29249773550768,"upper_bound":25.480350258329082},"point_estimate":25.377200540144027,"standard_error":0.04815535340929179},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.31293178917917375,"upper_bound":0.518580682404264},"point_estimate":0.42165101322188825,"standard_error":0.052623378860129404}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/33554432/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.374993401360943,"upper_bound":25.55683648421034},"point_estimate":25.461813534442722,"standard_error":0.0465636302160139},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.28216979796396,"upper_bound":25.402923203783736},"point_estimate":25.329020980529172,"standard_error":0.02702705204097782},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.15776653176628166,"upper_bound":0.2760678220050208},"point_estimate":0.1930954667172169,"standard_error":0.031237310822814734},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.328166134513555,"upper_bound":25.49411726243503},"point_estimate":25.40529662439852,"standard_error":0.04215731455940819},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.3566554408049225,"upper_bound":0.5674787594215721},"point_estimate":0.46946331645253253,"standard_error":0.053828691911053356}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/33554432/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.374993401360943,"upper_bound":25.55683648421034},"point_estimate":25.461813534442722,"standard_error":0.0465636302160139},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.28216979796396,"upper_bound":25.402923203783736},"point_estimate":25.329020980529172,"standard_error":0.02702705204097782},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.15776653176628166,"upper_bound":0.2760678220050208},"point_estimate":0.1930954667172169,"standard_error":0.031237310822814734},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.328166134513555,"upper_bound":25.49411726243503},"point_estimate":25.40529662439852,"standard_error":0.04215731455940819},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.3566554408049225,"upper_bound":0.5674787594215721},"point_estimate":0.46946331645253253,"standard_error":0.053828691911053356}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/524288/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.007514139371995,"upper_bound":25.160767269058336},"point_estimate":25.079223943061585,"standard_error":0.03936134308633695},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":24.934209635402745,"upper_bound":25.04832568998474},"point_estimate":24.98105290986912,"standard_error":0.02717821831017611},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.15342318097177343,"upper_bound":0.23723498546255364},"point_estimate":0.1908643199378873,"standard_error":0.021456945037723458},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":24.98681969909142,"upper_bound":25.08542822967611},"point_estimate":25.033053966356007,"standard_error":0.025204494627681907},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.25944333670095343,"upper_bound":0.5156104429032504},"point_estimate":0.3952979984094102,"standard_error":0.06570290680278269}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/524288/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.007514139371995,"upper_bound":25.160767269058336},"point_estimate":25.079223943061585,"standard_error":0.03936134308633695},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":24.934209635402745,"upper_bound":25.04832568998474},"point_estimate":24.98105290986912,"standard_error":0.02717821831017611},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.15342318097177343,"upper_bound":0.23723498546255364},"point_estimate":0.1908643199378873,"standard_error":0.021456945037723458},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":24.98681969909142,"upper_bound":25.08542822967611},"point_estimate":25.033053966356007,"standard_error":0.025204494627681907},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.25944333670095343,"upper_bound":0.5156104429032504},"point_estimate":0.3952979984094102,"standard_error":0.06570290680278269}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/131072/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.03429655689634,"upper_bound":25.141286306770233},"point_estimate":25.08601099839987,"standard_error":0.027305207188414476},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":24.98805026185796,"upper_bound":25.05770516134686},"point_estimate":25.02199489120117,"standard_error":0.018461487392294886},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.134465124918073,"upper_bound":0.24777542101481786},"point_estimate":0.19094793369176558,"standard_error":0.029370624549696352},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.05269417098503,"upper_bound":25.179850646871135},"point_estimate":25.112984850730747,"standard_error":0.03247269397624604},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.2088212162680079,"upper_bound":0.33530317435631074},"point_estimate":0.27450114035299483,"standard_error":0.03232599751003963}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/131072/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.03429655689634,"upper_bound":25.141286306770233},"point_estimate":25.08601099839987,"standard_error":0.027305207188414476},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":24.98805026185796,"upper_bound":25.05770516134686},"point_estimate":25.02199489120117,"standard_error":0.018461487392294886},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.134465124918073,"upper_bound":0.24777542101481786},"point_estimate":0.19094793369176558,"standard_error":0.029370624549696352},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.05269417098503,"upper_bound":25.179850646871135},"point_estimate":25.112984850730747,"standard_error":0.03247269397624604},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.2088212162680079,"upper_bound":0.33530317435631074},"point_estimate":0.27450114035299483,"standard_error":0.03232599751003963}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/16384/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.032107387928065,"upper_bound":25.16555043106236},"point_estimate":25.094197593841546,"standard_error":0.034395495781975226},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":24.984751534907808,"upper_bound":25.059875552675713},"point_estimate":25.015633404124294,"standard_error":0.017334184745107502},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.11952085320356745,"upper_bound":0.22372012262871566},"point_estimate":0.16238428845877784,"standard_error":0.02810389386924514},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.07233324777647,"upper_bound":25.25153999845268},"point_estimate":25.15094497044965,"standard_error":0.04593135696184919},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.20276313353908734,"upper_bound":0.46757556456420674},"point_estimate":0.3445012493705003,"standard_error":0.06847314316427236}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/16384/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.032107387928065,"upper_bound":25.16555043106236},"point_estimate":25.094197593841546,"standard_error":0.034395495781975226},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":24.984751534907808,"upper_bound":25.059875552675713},"point_estimate":25.015633404124294,"standard_error":0.017334184745107502},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.11952085320356745,"upper_bound":0.22372012262871566},"point_estimate":0.16238428845877784,"standard_error":0.02810389386924514},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.07233324777647,"upper_bound":25.25153999845268},"point_estimate":25.15094497044965,"standard_error":0.04593135696184919},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.20276313353908734,"upper_bound":0.46757556456420674},"point_estimate":0.3445012493705003,"standard_error":0.06847314316427236}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/4096/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.126149762926886,"upper_bound":25.265781084533092},"point_estimate":25.190812793027302,"standard_error":0.03561323422339},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.076181754076295,"upper_bound":25.178949540284776},"point_estimate":25.11206672800865,"standard_error":0.024782401096363794},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.14849531633504273,"upper_bound":0.2480253282121084},"point_estimate":0.19153980792242156,"standard_error":0.0265371824057512},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.114322188281765,"upper_bound":25.184937495490086},"point_estimate":25.148531054159108,"standard_error":0.01816936555811701},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.22054483951242027,"upper_bound":0.48603033114975597},"point_estimate":0.3581032469076483,"standard_error":0.06879623942792416}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/524288/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.65016748837607,"upper_bound":25.814345720454657},"point_estimate":25.730099851095634,"standard_error":0.041835134678046976},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.65929067583978,"upper_bound":25.76335837685087},"point_estimate":25.71397290579089,"standard_error":0.026396821993997076},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.2016402498078466,"upper_bound":0.41018521278159015},"point_estimate":0.2505759643972728,"standard_error":0.05295878118348375},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.80988028604162,"upper_bound":25.964786401493676},"point_estimate":25.885063665105793,"standard_error":0.03949302606116401},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.32984989939665166,"upper_bound":0.5061860429779803},"point_estimate":0.4199461697240029,"standard_error":0.04515657926531362}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/524288/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.65016748837607,"upper_bound":25.814345720454657},"point_estimate":25.730099851095634,"standard_error":0.041835134678046976},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.65929067583978,"upper_bound":25.76335837685087},"point_estimate":25.71397290579089,"standard_error":0.026396821993997076},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.2016402498078466,"upper_bound":0.41018521278159015},"point_estimate":0.2505759643972728,"standard_error":0.05295878118348375},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.80988028604162,"upper_bound":25.964786401493676},"point_estimate":25.885063665105793,"standard_error":0.03949302606116401},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.32984989939665166,"upper_bound":0.5061860429779803},"point_estimate":0.4199461697240029,"standard_error":0.04515657926531362}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/536870912/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.149627340291286,"upper_bound":25.28551887435164},"point_estimate":25.2149005643789,"standard_error":0.03464734464755954},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.04948064176446,"upper_bound":25.189209540005244},"point_estimate":25.09634211239713,"standard_error":0.03440178496335218},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.17512845163491345,"upper_bound":0.3185416099864781},"point_estimate":0.2305411709947589,"standard_error":0.03872031425790722},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.277562284644176,"upper_bound":25.46295793318908},"point_estimate":25.36826845880411,"standard_error":0.047331440123204754},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.2649886913358234,"upper_bound":0.42378356541209444},"point_estimate":0.34748177403260283,"standard_error":0.040673218772461474}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/536870912/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.149627340291286,"upper_bound":25.28551887435164},"point_estimate":25.2149005643789,"standard_error":0.03464734464755954},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.04948064176446,"upper_bound":25.189209540005244},"point_estimate":25.09634211239713,"standard_error":0.03440178496335218},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.17512845163491345,"upper_bound":0.3185416099864781},"point_estimate":0.2305411709947589,"standard_error":0.03872031425790722},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.277562284644176,"upper_bound":25.46295793318908},"point_estimate":25.36826845880411,"standard_error":0.047331440123204754},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.2649886913358234,"upper_bound":0.42378356541209444},"point_estimate":0.34748177403260283,"standard_error":0.040673218772461474}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/65536/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.05255912907348,"upper_bound":25.17620844813024},"point_estimate":25.109293673339693,"standard_error":0.031725371159948716},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.019675414185023,"upper_bound":25.122233913473185},"point_estimate":25.070058389034827,"standard_error":0.027739060757572348},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.13444498275665617,"upper_bound":0.24711803842738111},"point_estimate":0.20862379883473034,"standard_error":0.02902978250881297},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.046768342530317,"upper_bound":25.164856279832257},"point_estimate":25.100724366535097,"standard_error":0.03028751247893625},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.18363677066532075,"upper_bound":0.46237406922818514},"point_estimate":0.31855075958784773,"standard_error":0.079181904812448}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/1073741824/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.10820669229523,"upper_bound":25.247774548119693},"point_estimate":25.174167465411905,"standard_error":0.03568372726662897},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.048097087482944,"upper_bound":25.13167638514419},"point_estimate":25.07299187575275,"standard_error":0.023762629294882754},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.1395286756505746,"upper_bound":0.23140487330311546},"point_estimate":0.17820029078015495,"standard_error":0.02357719834391034},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.071683230859502,"upper_bound":25.137296529241095},"point_estimate":25.10275461824043,"standard_error":0.016761878557436362},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.24314678115451452,"upper_bound":0.4617264897303303},"point_estimate":0.3567164504873816,"standard_error":0.05619528595334494}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/1073741824/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.10820669229523,"upper_bound":25.247774548119693},"point_estimate":25.174167465411905,"standard_error":0.03568372726662897},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.048097087482944,"upper_bound":25.13167638514419},"point_estimate":25.07299187575275,"standard_error":0.023762629294882754},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.1395286756505746,"upper_bound":0.23140487330311546},"point_estimate":0.17820029078015495,"standard_error":0.02357719834391034},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.071683230859502,"upper_bound":25.137296529241095},"point_estimate":25.10275461824043,"standard_error":0.016761878557436362},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.24314678115451452,"upper_bound":0.4617264897303303},"point_estimate":0.3567164504873816,"standard_error":0.05619528595334494}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/131072/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.328901787239396,"upper_bound":25.457249089093523},"point_estimate":25.389026663871277,"standard_error":0.032806046160794126},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.24962103120702,"upper_bound":25.358779186717513},"point_estimate":25.302256711767154,"standard_error":0.02689241216781938},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.14408374511354172,"upper_bound":0.2556268983907821},"point_estimate":0.19921053640674533,"standard_error":0.028234275832992574},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.376881069869906,"upper_bound":25.604551915575964},"point_estimate":25.47848660727256,"standard_error":0.058487984020328614},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.2255332894263422,"upper_bound":0.4357821388401185},"point_estimate":0.33004852533101736,"standard_error":0.055023215087865104}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/131072/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.328901787239396,"upper_bound":25.457249089093523},"point_estimate":25.389026663871277,"standard_error":0.032806046160794126},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.24962103120702,"upper_bound":25.358779186717513},"point_estimate":25.302256711767154,"standard_error":0.02689241216781938},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.14408374511354172,"upper_bound":0.2556268983907821},"point_estimate":0.19921053640674533,"standard_error":0.028234275832992574},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.376881069869906,"upper_bound":25.604551915575964},"point_estimate":25.47848660727256,"standard_error":0.058487984020328614},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.2255332894263422,"upper_bound":0.4357821388401185},"point_estimate":0.33004852533101736,"standard_error":0.055023215087865104}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/16777216/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.371811140013712,"upper_bound":25.56451970025583},"point_estimate":25.457512608754637,"standard_error":0.0494322936378347},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.318662748077895,"upper_bound":25.404022594347925},"point_estimate":25.350972694505465,"standard_error":0.018909074987717413},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.12989389166885595,"upper_bound":0.25703533788769506},"point_estimate":0.16949205595809697,"standard_error":0.032090840004619474},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.37876079687178,"upper_bound":25.510251574271514},"point_estimate":25.44075684295633,"standard_error":0.033697628818832544},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.24581169898635302,"upper_bound":0.7362158745025786},"point_estimate":0.4961119041215985,"standard_error":0.1322006292727453}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/2147483648/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":26.397569480420287,"upper_bound":26.575745605906967},"point_estimate":26.488867709625506,"standard_error":0.04546593907360522},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":26.430532822842316,"upper_bound":26.598038133769162},"point_estimate":26.517209340419335,"standard_error":0.04551608568851638},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.268695697177612,"upper_bound":0.43272874914605786},"point_estimate":0.3633917341278461,"standard_error":0.04339965132390655},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":26.478209291324706,"upper_bound":26.597705053840038},"point_estimate":26.537412321233536,"standard_error":0.03041273578060211},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.33532701782389707,"upper_bound":0.573497692161996},"point_estimate":0.4573761093312797,"standard_error":0.06090559447567517}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/67108864/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.371179868329307,"upper_bound":25.52539426221279},"point_estimate":25.444512866657842,"standard_error":0.03941968583550187},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.311057769855115,"upper_bound":25.433655396157462},"point_estimate":25.361745021221026,"standard_error":0.025937422043991146},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.17352130094648172,"upper_bound":0.33511451969188316},"point_estimate":0.2769246805476201,"standard_error":0.047320021755103796},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.43891257116072,"upper_bound":25.615444362851278},"point_estimate":25.521159324322156,"standard_error":0.04525986541270769},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.2943407893412929,"upper_bound":0.4830344075149668},"point_estimate":0.3946407979462879,"standard_error":0.048179285401229004}} -------------------------------------------------------------------------------- /benches/criterion/detach_from_pool/67108864/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.371179868329307,"upper_bound":25.52539426221279},"point_estimate":25.444512866657842,"standard_error":0.03941968583550187},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.311057769855115,"upper_bound":25.433655396157462},"point_estimate":25.361745021221026,"standard_error":0.025937422043991146},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.17352130094648172,"upper_bound":0.33511451969188316},"point_estimate":0.2769246805476201,"standard_error":0.047320021755103796},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.43891257116072,"upper_bound":25.615444362851278},"point_estimate":25.521159324322156,"standard_error":0.04525986541270769},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.2943407893412929,"upper_bound":0.4830344075149668},"point_estimate":0.3946407979462879,"standard_error":0.048179285401229004}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/1048576/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.251670718429903,"upper_bound":25.40164700120225},"point_estimate":25.32341189004135,"standard_error":0.038251041782386544},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.190321454428904,"upper_bound":25.294300603461075},"point_estimate":25.227837669633395,"standard_error":0.02447639072160687},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.16519208379252703,"upper_bound":0.35222280834271674},"point_estimate":0.2623661384383703,"standard_error":0.04286876465955321},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.227285691241114,"upper_bound":25.375107173294694},"point_estimate":25.298812036473347,"standard_error":0.037643881783323924},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.2894694807563424,"upper_bound":0.46944599706859513},"point_estimate":0.3834657907772981,"standard_error":0.046106470359404975}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/1048576/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.251670718429903,"upper_bound":25.40164700120225},"point_estimate":25.32341189004135,"standard_error":0.038251041782386544},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.190321454428904,"upper_bound":25.294300603461075},"point_estimate":25.227837669633395,"standard_error":0.02447639072160687},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.16519208379252703,"upper_bound":0.35222280834271674},"point_estimate":0.2623661384383703,"standard_error":0.04286876465955321},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.227285691241114,"upper_bound":25.375107173294694},"point_estimate":25.298812036473347,"standard_error":0.037643881783323924},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.2894694807563424,"upper_bound":0.46944599706859513},"point_estimate":0.3834657907772981,"standard_error":0.046106470359404975}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/1073741824/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.201198648748942,"upper_bound":25.3499526234033},"point_estimate":25.272557189488456,"standard_error":0.037745823556158846},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.142224492345072,"upper_bound":25.23013275651222},"point_estimate":25.184647075502085,"standard_error":0.022095940685888313},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.16026233359005826,"upper_bound":0.3079143479740728},"point_estimate":0.25539239260706714,"standard_error":0.03768580584820586},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.11541732818503,"upper_bound":25.23545873373085},"point_estimate":25.171824741246276,"standard_error":0.03052909325344759},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.28819685436396514,"upper_bound":0.45554387014161796},"point_estimate":0.37808492516976666,"standard_error":0.04283992616455026}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/1073741824/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.201198648748942,"upper_bound":25.3499526234033},"point_estimate":25.272557189488456,"standard_error":0.037745823556158846},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.142224492345072,"upper_bound":25.23013275651222},"point_estimate":25.184647075502085,"standard_error":0.022095940685888313},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.16026233359005826,"upper_bound":0.3079143479740728},"point_estimate":0.25539239260706714,"standard_error":0.03768580584820586},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.11541732818503,"upper_bound":25.23545873373085},"point_estimate":25.171824741246276,"standard_error":0.03052909325344759},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.28819685436396514,"upper_bound":0.45554387014161796},"point_estimate":0.37808492516976666,"standard_error":0.04283992616455026}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/134217728/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.092570939629,"upper_bound":25.19056895482249},"point_estimate":25.14018427713591,"standard_error":0.025028305935054465},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.047426239490846,"upper_bound":25.158224946090115},"point_estimate":25.095850254146605,"standard_error":0.02646092229450173},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.17734035888311722,"upper_bound":0.28796373752925086},"point_estimate":0.23303012746494375,"standard_error":0.028742171789420706},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.123405918796095,"upper_bound":25.2377948811494},"point_estimate":25.178268513846184,"standard_error":0.029211769468561827},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.20623586857022289,"upper_bound":0.2948447648854281},"point_estimate":0.25145731741070326,"standard_error":0.02268938867444393}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/134217728/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.092570939629,"upper_bound":25.19056895482249},"point_estimate":25.14018427713591,"standard_error":0.025028305935054465},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.047426239490846,"upper_bound":25.158224946090115},"point_estimate":25.095850254146605,"standard_error":0.02646092229450173},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.17734035888311722,"upper_bound":0.28796373752925086},"point_estimate":0.23303012746494375,"standard_error":0.028742171789420706},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.123405918796095,"upper_bound":25.2377948811494},"point_estimate":25.178268513846184,"standard_error":0.029211769468561827},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.20623586857022289,"upper_bound":0.2948447648854281},"point_estimate":0.25145731741070326,"standard_error":0.02268938867444393}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/16777216/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.057089782562638,"upper_bound":25.141377262300672},"point_estimate":25.09842691424259,"standard_error":0.021507574456412864},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.041266486734227,"upper_bound":25.111398863048542},"point_estimate":25.08512922420724,"standard_error":0.017574009159296574},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.1258320941702866,"upper_bound":0.1958366488839327},"point_estimate":0.1663008868505194,"standard_error":0.01927054274681469},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.097776717802322,"upper_bound":25.224502888601478},"point_estimate":25.158762958288474,"standard_error":0.03241718717870667},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.17237307525773302,"upper_bound":0.2562373848498671},"point_estimate":0.21639018307820476,"standard_error":0.021440807306042888}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/16777216/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.057089782562638,"upper_bound":25.141377262300672},"point_estimate":25.09842691424259,"standard_error":0.021507574456412864},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.041266486734227,"upper_bound":25.111398863048542},"point_estimate":25.08512922420724,"standard_error":0.017574009159296574},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.1258320941702866,"upper_bound":0.1958366488839327},"point_estimate":0.1663008868505194,"standard_error":0.01927054274681469},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.097776717802322,"upper_bound":25.224502888601478},"point_estimate":25.158762958288474,"standard_error":0.03241718717870667},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.17237307525773302,"upper_bound":0.2562373848498671},"point_estimate":0.21639018307820476,"standard_error":0.021440807306042888}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/2147483648/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.08506707518463,"upper_bound":25.19208173888303},"point_estimate":25.137304880482006,"standard_error":0.02721964175709722},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.04963559382572,"upper_bound":25.138069747602533},"point_estimate":25.0962896838181,"standard_error":0.021542498517991695},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.13208199067347992,"upper_bound":0.24979652130388236},"point_estimate":0.19104643773493124,"standard_error":0.030260368335973464},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.083497696460377,"upper_bound":25.174960256787323},"point_estimate":25.128294338130235,"standard_error":0.023368943699773086},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.216690183667805,"upper_bound":0.32590225737347533},"point_estimate":0.2735569389659222,"standard_error":0.02801210213607444}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/2147483648/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.08506707518463,"upper_bound":25.19208173888303},"point_estimate":25.137304880482006,"standard_error":0.02721964175709722},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.04963559382572,"upper_bound":25.138069747602533},"point_estimate":25.0962896838181,"standard_error":0.021542498517991695},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.13208199067347992,"upper_bound":0.24979652130388236},"point_estimate":0.19104643773493124,"standard_error":0.030260368335973464},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.083497696460377,"upper_bound":25.174960256787323},"point_estimate":25.128294338130235,"standard_error":0.023368943699773086},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.216690183667805,"upper_bound":0.32590225737347533},"point_estimate":0.2735569389659222,"standard_error":0.02801210213607444}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/268435456/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.365971244619814,"upper_bound":25.436189867771862},"point_estimate":25.40008341702099,"standard_error":0.017869721087971347},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.34176327606419,"upper_bound":25.408503698515155},"point_estimate":25.38225414909587,"standard_error":0.015608142455195801},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.09993567064131696,"upper_bound":0.16325005730744677},"point_estimate":0.12700195441006526,"standard_error":0.015535958309963755},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.364555131694047,"upper_bound":25.417759238945536},"point_estimate":25.389887121628234,"standard_error":0.01357018758315347},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.1412587357440161,"upper_bound":0.21664968753879169},"point_estimate":0.1802151753503606,"standard_error":0.01937706886410545}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/268435456/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.365971244619814,"upper_bound":25.436189867771862},"point_estimate":25.40008341702099,"standard_error":0.017869721087971347},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.34176327606419,"upper_bound":25.408503698515155},"point_estimate":25.38225414909587,"standard_error":0.015608142455195801},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.09993567064131696,"upper_bound":0.16325005730744677},"point_estimate":0.12700195441006526,"standard_error":0.015535958309963755},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.364555131694047,"upper_bound":25.417759238945536},"point_estimate":25.389887121628234,"standard_error":0.01357018758315347},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.1412587357440161,"upper_bound":0.21664968753879169},"point_estimate":0.1802151753503606,"standard_error":0.01937706886410545}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/33554432/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":26.743917710728223,"upper_bound":26.89998167164185},"point_estimate":26.82495007593424,"standard_error":0.03973110608234232},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":26.786518681506596,"upper_bound":26.904873590197482},"point_estimate":26.851938030057003,"standard_error":0.03133879049943612},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.18635200756611023,"upper_bound":0.33470079653150564},"point_estimate":0.24007906874162002,"standard_error":0.036134389154327796},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":26.835509632993254,"upper_bound":26.930568498691102},"point_estimate":26.883071026959207,"standard_error":0.024246140265719827},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.2640355183160372,"upper_bound":0.5422663348904504},"point_estimate":0.40069521110947476,"standard_error":0.07314250972711346}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/33554432/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":26.743917710728223,"upper_bound":26.89998167164185},"point_estimate":26.82495007593424,"standard_error":0.03973110608234232},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":26.786518681506596,"upper_bound":26.904873590197482},"point_estimate":26.851938030057003,"standard_error":0.03133879049943612},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.18635200756611023,"upper_bound":0.33470079653150564},"point_estimate":0.24007906874162002,"standard_error":0.036134389154327796},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":26.835509632993254,"upper_bound":26.930568498691102},"point_estimate":26.883071026959207,"standard_error":0.024246140265719827},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.2640355183160372,"upper_bound":0.5422663348904504},"point_estimate":0.40069521110947476,"standard_error":0.07314250972711346}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/65536/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.05255912907348,"upper_bound":25.17620844813024},"point_estimate":25.109293673339693,"standard_error":0.031725371159948716},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.019675414185023,"upper_bound":25.122233913473185},"point_estimate":25.070058389034827,"standard_error":0.027739060757572348},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.13444498275665617,"upper_bound":0.24711803842738111},"point_estimate":0.20862379883473034,"standard_error":0.02902978250881297},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.046768342530317,"upper_bound":25.164856279832257},"point_estimate":25.100724366535097,"standard_error":0.03028751247893625},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.18363677066532075,"upper_bound":0.46237406922818514},"point_estimate":0.31855075958784773,"standard_error":0.079181904812448}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/3221225472/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.035280126041368,"upper_bound":25.136585899898147},"point_estimate":25.084762996411936,"standard_error":0.025931035579378207},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":24.975111325366516,"upper_bound":25.071790196494256},"point_estimate":25.020973830977162,"standard_error":0.026144383597975572},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.1279819905173966,"upper_bound":0.23119025258459588},"point_estimate":0.1791653630122195,"standard_error":0.027396284108377522},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.006339210790664,"upper_bound":25.07487304867997},"point_estimate":25.038663202371193,"standard_error":0.01748719669899924},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.21132590956780387,"upper_bound":0.30155937997479487},"point_estimate":0.2600720969068123,"standard_error":0.022987908287789818}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/3221225472/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.035280126041368,"upper_bound":25.136585899898147},"point_estimate":25.084762996411936,"standard_error":0.025931035579378207},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":24.975111325366516,"upper_bound":25.071790196494256},"point_estimate":25.020973830977162,"standard_error":0.026144383597975572},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.1279819905173966,"upper_bound":0.23119025258459588},"point_estimate":0.1791653630122195,"standard_error":0.027396284108377522},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.006339210790664,"upper_bound":25.07487304867997},"point_estimate":25.038663202371193,"standard_error":0.01748719669899924},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.21132590956780387,"upper_bound":0.30155937997479487},"point_estimate":0.2600720969068123,"standard_error":0.022987908287789818}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/67108864/base/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.157393695958646,"upper_bound":25.359122014863214},"point_estimate":25.252081883447577,"standard_error":0.05153067149686278},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.065708659905432,"upper_bound":25.146854093981933},"point_estimate":25.097146999478248,"standard_error":0.023700982692894033},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.15259172700457715,"upper_bound":0.24734703044919787},"point_estimate":0.19487658493536425,"standard_error":0.024239013204140927},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.082579833021594,"upper_bound":25.160335127604746},"point_estimate":25.119639391653557,"standard_error":0.019855028634400338},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.34588138092115656,"upper_bound":0.6687071613550092},"point_estimate":0.5185988102528982,"standard_error":0.08245592802943995}} -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/67108864/new/estimates.json: -------------------------------------------------------------------------------- 1 | {"Mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.157393695958646,"upper_bound":25.359122014863214},"point_estimate":25.252081883447577,"standard_error":0.05153067149686278},"Median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.065708659905432,"upper_bound":25.146854093981933},"point_estimate":25.097146999478248,"standard_error":0.023700982692894033},"MedianAbsDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.15259172700457715,"upper_bound":0.24734703044919787},"point_estimate":0.19487658493536425,"standard_error":0.024239013204140927},"Slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":25.082579833021594,"upper_bound":25.160335127604746},"point_estimate":25.119639391653557,"standard_error":0.019855028634400338},"StdDev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":0.34588138092115656,"upper_bound":0.6687071613550092},"point_estimate":0.5185988102528982,"standard_error":0.08245592802943995}} -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 CJP10 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /benches/bench.rs: -------------------------------------------------------------------------------- 1 | #[macro_use] 2 | extern crate criterion; 3 | 4 | use criterion::Criterion; 5 | use object_pool::{experimental::Pool as ExperimentalPool, Pool}; 6 | use std::iter::FromIterator; 7 | use std::sync::Arc; 8 | 9 | fn basics(c: &mut Criterion) { 10 | let mut group = c.benchmark_group("pulling_from_pool"); 11 | group.throughput(criterion::Throughput::Elements(1)); 12 | 13 | group.bench_function("experimental_borrowed", |b| { 14 | let pool = ExperimentalPool::from_iter(&[()]); 15 | b.iter(|| pool.pull()) 16 | }); 17 | 18 | group.bench_function("experimental_owned", |b| { 19 | let pool = Arc::new(ExperimentalPool::from_iter(&[()])); 20 | b.iter(|| pool.pull_owned()) 21 | }); 22 | 23 | group.bench_function("borrowed", |b| { 24 | let pool = Pool::new(1, || ()); 25 | b.iter(|| pool.try_pull()) 26 | }); 27 | 28 | group.bench_function("owned", |b| { 29 | let pool = std::sync::Arc::new(Pool::new(1, || ())); 30 | b.iter(|| pool.try_pull_owned()) 31 | }); 32 | drop(group); 33 | 34 | c.bench_function("detach_from_pool", |b| { 35 | let pool = Pool::new(1, || ()); 36 | b.iter(|| { 37 | let item = pool.try_pull().unwrap(); 38 | let (_, vec) = item.detach(); 39 | pool.attach(vec); 40 | }) 41 | }); 42 | } 43 | 44 | criterion_group!(benches, basics); 45 | criterion_main!(benches); 46 | -------------------------------------------------------------------------------- /benches/criterion/alloc/3221225472/base/sample.json: -------------------------------------------------------------------------------- 1 | [[147.0,294.0,441.0,588.0,735.0,882.0,1029.0,1176.0,1323.0,1470.0,1617.0,1764.0,1911.0,2058.0,2205.0,2352.0,2499.0,2646.0,2793.0,2940.0,3087.0,3234.0,3381.0,3528.0,3675.0,3822.0,3969.0,4116.0,4263.0,4410.0,4557.0,4704.0,4851.0,4998.0,5145.0,5292.0,5439.0,5586.0,5733.0,5880.0,6027.0,6174.0,6321.0,6468.0,6615.0,6762.0,6909.0,7056.0,7203.0,7350.0,7497.0,7644.0,7791.0,7938.0,8085.0,8232.0,8379.0,8526.0,8673.0,8820.0,8967.0,9114.0,9261.0,9408.0,9555.0,9702.0,9849.0,9996.0,10143.0,10290.0,10437.0,10584.0,10731.0,10878.0,11025.0,11172.0,11319.0,11466.0,11613.0,11760.0,11907.0,12054.0,12201.0,12348.0,12495.0,12642.0,12789.0,12936.0,13083.0,13230.0,13377.0,13524.0,13671.0,13818.0,13965.0,14112.0,14259.0,14406.0,14553.0,14700.0],[947202.0,1929984.0,3351990.0,4116566.0,4837105.0,5890293.0,7060797.0,8004897.0,8762661.0,9822952.0,11696120.0,12075222.0,13527384.0,13739025.0,14425988.0,16151316.0,16443674.0,18046941.0,18537632.0,20629834.0,20815376.0,21610201.0,22788196.0,23250520.0,24900087.0,25343253.0,26567731.0,27647994.0,28493716.0,29634199.0,30879684.0,31711025.0,32225859.0,33343118.0,34885167.0,35594748.0,36343168.0,38971160.0,37862645.0,39742815.0,39942521.0,40689824.0,43646479.0,43777311.0,45669797.0,46938345.0,46120801.0,46522635.0,47756628.0,48725725.0,49640067.0,50507491.0,53103238.0,53339059.0,53266124.0,54624256.0,55247669.0,56814868.0,59604495.0,59287894.0,61797840.0,62258858.0,63573907.0,63673310.0,64730311.0,65074733.0,67155325.0,68382366.0,68839588.0,69761939.0,70271443.0,72433384.0,72238853.0,73944553.0,77689605.0,76277081.0,82283652.0,79225255.0,89704188.0,80936925.0,85773493.0,83020496.0,85147010.0,84096424.0,85191374.0,87374686.0,85084202.0,86621020.0,87239415.0,89068264.0,88834314.0,90493887.0,94182649.0,93499801.0,94471144.0,94860104.0,95697931.0,96378734.0,99840409.0,100791119.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/3221225472/new/sample.json: -------------------------------------------------------------------------------- 1 | [[147.0,294.0,441.0,588.0,735.0,882.0,1029.0,1176.0,1323.0,1470.0,1617.0,1764.0,1911.0,2058.0,2205.0,2352.0,2499.0,2646.0,2793.0,2940.0,3087.0,3234.0,3381.0,3528.0,3675.0,3822.0,3969.0,4116.0,4263.0,4410.0,4557.0,4704.0,4851.0,4998.0,5145.0,5292.0,5439.0,5586.0,5733.0,5880.0,6027.0,6174.0,6321.0,6468.0,6615.0,6762.0,6909.0,7056.0,7203.0,7350.0,7497.0,7644.0,7791.0,7938.0,8085.0,8232.0,8379.0,8526.0,8673.0,8820.0,8967.0,9114.0,9261.0,9408.0,9555.0,9702.0,9849.0,9996.0,10143.0,10290.0,10437.0,10584.0,10731.0,10878.0,11025.0,11172.0,11319.0,11466.0,11613.0,11760.0,11907.0,12054.0,12201.0,12348.0,12495.0,12642.0,12789.0,12936.0,13083.0,13230.0,13377.0,13524.0,13671.0,13818.0,13965.0,14112.0,14259.0,14406.0,14553.0,14700.0],[947202.0,1929984.0,3351990.0,4116566.0,4837105.0,5890293.0,7060797.0,8004897.0,8762661.0,9822952.0,11696120.0,12075222.0,13527384.0,13739025.0,14425988.0,16151316.0,16443674.0,18046941.0,18537632.0,20629834.0,20815376.0,21610201.0,22788196.0,23250520.0,24900087.0,25343253.0,26567731.0,27647994.0,28493716.0,29634199.0,30879684.0,31711025.0,32225859.0,33343118.0,34885167.0,35594748.0,36343168.0,38971160.0,37862645.0,39742815.0,39942521.0,40689824.0,43646479.0,43777311.0,45669797.0,46938345.0,46120801.0,46522635.0,47756628.0,48725725.0,49640067.0,50507491.0,53103238.0,53339059.0,53266124.0,54624256.0,55247669.0,56814868.0,59604495.0,59287894.0,61797840.0,62258858.0,63573907.0,63673310.0,64730311.0,65074733.0,67155325.0,68382366.0,68839588.0,69761939.0,70271443.0,72433384.0,72238853.0,73944553.0,77689605.0,76277081.0,82283652.0,79225255.0,89704188.0,80936925.0,85773493.0,83020496.0,85147010.0,84096424.0,85191374.0,87374686.0,85084202.0,86621020.0,87239415.0,89068264.0,88834314.0,90493887.0,94182649.0,93499801.0,94471144.0,94860104.0,95697931.0,96378734.0,99840409.0,100791119.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/1073741824/base/sample.json: -------------------------------------------------------------------------------- 1 | [[151.0,302.0,453.0,604.0,755.0,906.0,1057.0,1208.0,1359.0,1510.0,1661.0,1812.0,1963.0,2114.0,2265.0,2416.0,2567.0,2718.0,2869.0,3020.0,3171.0,3322.0,3473.0,3624.0,3775.0,3926.0,4077.0,4228.0,4379.0,4530.0,4681.0,4832.0,4983.0,5134.0,5285.0,5436.0,5587.0,5738.0,5889.0,6040.0,6191.0,6342.0,6493.0,6644.0,6795.0,6946.0,7097.0,7248.0,7399.0,7550.0,7701.0,7852.0,8003.0,8154.0,8305.0,8456.0,8607.0,8758.0,8909.0,9060.0,9211.0,9362.0,9513.0,9664.0,9815.0,9966.0,10117.0,10268.0,10419.0,10570.0,10721.0,10872.0,11023.0,11174.0,11325.0,11476.0,11627.0,11778.0,11929.0,12080.0,12231.0,12382.0,12533.0,12684.0,12835.0,12986.0,13137.0,13288.0,13439.0,13590.0,13741.0,13892.0,14043.0,14194.0,14345.0,14496.0,14647.0,14798.0,14949.0,15100.0],[967328.0,1936245.0,2987286.0,3906803.0,4892202.0,5870833.0,7261755.0,7782901.0,8790871.0,9794666.0,11189624.0,11729733.0,12800599.0,13960168.0,14700942.0,15859937.0,16550791.0,18314942.0,18673497.0,19666187.0,21264796.0,21506055.0,22598681.0,23568371.0,24268458.0,25404133.0,26841996.0,27658670.0,28654766.0,29663449.0,30691519.0,32323799.0,33008706.0,33820917.0,34526522.0,35786567.0,36616677.0,37322237.0,38506057.0,40312421.0,40459296.0,41381994.0,42257395.0,43343766.0,44268140.0,45620071.0,46245456.0,47628016.0,48544206.0,49747778.0,51012541.0,52292945.0,52240576.0,53542481.0,55029732.0,54870112.0,56699345.0,56906992.0,57849107.0,59322098.0,60155954.0,61889224.0,66789757.0,67216185.0,68861459.0,69564160.0,77194658.0,70176448.0,69661276.0,71037385.0,71373897.0,72171787.0,72790206.0,73895875.0,76214862.0,75720737.0,76732170.0,77529243.0,79381650.0,79818661.0,79777544.0,82253566.0,82422364.0,83073767.0,85246678.0,85655437.0,87080281.0,87267023.0,89310421.0,88555212.0,89893593.0,91422474.0,118001047.0,96154806.0,96128384.0,96483709.0,99991469.0,104467783.0,100150013.0,102084402.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/1073741824/new/sample.json: -------------------------------------------------------------------------------- 1 | [[151.0,302.0,453.0,604.0,755.0,906.0,1057.0,1208.0,1359.0,1510.0,1661.0,1812.0,1963.0,2114.0,2265.0,2416.0,2567.0,2718.0,2869.0,3020.0,3171.0,3322.0,3473.0,3624.0,3775.0,3926.0,4077.0,4228.0,4379.0,4530.0,4681.0,4832.0,4983.0,5134.0,5285.0,5436.0,5587.0,5738.0,5889.0,6040.0,6191.0,6342.0,6493.0,6644.0,6795.0,6946.0,7097.0,7248.0,7399.0,7550.0,7701.0,7852.0,8003.0,8154.0,8305.0,8456.0,8607.0,8758.0,8909.0,9060.0,9211.0,9362.0,9513.0,9664.0,9815.0,9966.0,10117.0,10268.0,10419.0,10570.0,10721.0,10872.0,11023.0,11174.0,11325.0,11476.0,11627.0,11778.0,11929.0,12080.0,12231.0,12382.0,12533.0,12684.0,12835.0,12986.0,13137.0,13288.0,13439.0,13590.0,13741.0,13892.0,14043.0,14194.0,14345.0,14496.0,14647.0,14798.0,14949.0,15100.0],[967328.0,1936245.0,2987286.0,3906803.0,4892202.0,5870833.0,7261755.0,7782901.0,8790871.0,9794666.0,11189624.0,11729733.0,12800599.0,13960168.0,14700942.0,15859937.0,16550791.0,18314942.0,18673497.0,19666187.0,21264796.0,21506055.0,22598681.0,23568371.0,24268458.0,25404133.0,26841996.0,27658670.0,28654766.0,29663449.0,30691519.0,32323799.0,33008706.0,33820917.0,34526522.0,35786567.0,36616677.0,37322237.0,38506057.0,40312421.0,40459296.0,41381994.0,42257395.0,43343766.0,44268140.0,45620071.0,46245456.0,47628016.0,48544206.0,49747778.0,51012541.0,52292945.0,52240576.0,53542481.0,55029732.0,54870112.0,56699345.0,56906992.0,57849107.0,59322098.0,60155954.0,61889224.0,66789757.0,67216185.0,68861459.0,69564160.0,77194658.0,70176448.0,69661276.0,71037385.0,71373897.0,72171787.0,72790206.0,73895875.0,76214862.0,75720737.0,76732170.0,77529243.0,79381650.0,79818661.0,79777544.0,82253566.0,82422364.0,83073767.0,85246678.0,85655437.0,87080281.0,87267023.0,89310421.0,88555212.0,89893593.0,91422474.0,118001047.0,96154806.0,96128384.0,96483709.0,99991469.0,104467783.0,100150013.0,102084402.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/2147483648/base/sample.json: -------------------------------------------------------------------------------- 1 | [[145.0,290.0,435.0,580.0,725.0,870.0,1015.0,1160.0,1305.0,1450.0,1595.0,1740.0,1885.0,2030.0,2175.0,2320.0,2465.0,2610.0,2755.0,2900.0,3045.0,3190.0,3335.0,3480.0,3625.0,3770.0,3915.0,4060.0,4205.0,4350.0,4495.0,4640.0,4785.0,4930.0,5075.0,5220.0,5365.0,5510.0,5655.0,5800.0,5945.0,6090.0,6235.0,6380.0,6525.0,6670.0,6815.0,6960.0,7105.0,7250.0,7395.0,7540.0,7685.0,7830.0,7975.0,8120.0,8265.0,8410.0,8555.0,8700.0,8845.0,8990.0,9135.0,9280.0,9425.0,9570.0,9715.0,9860.0,10005.0,10150.0,10295.0,10440.0,10585.0,10730.0,10875.0,11020.0,11165.0,11310.0,11455.0,11600.0,11745.0,11890.0,12035.0,12180.0,12325.0,12470.0,12615.0,12760.0,12905.0,13050.0,13195.0,13340.0,13485.0,13630.0,13775.0,13920.0,14065.0,14210.0,14355.0,14500.0],[1024350.0,1990812.0,2891935.0,4944499.0,5026093.0,5853346.0,7015488.0,8186126.0,8731798.0,10000013.0,10831878.0,11573319.0,12707093.0,13813949.0,14660693.0,15677113.0,16583234.0,17612071.0,18460577.0,21173390.0,21792201.0,28400702.0,32732269.0,27947400.0,27496476.0,28701366.0,26954009.0,27927775.0,28886282.0,29412991.0,30814854.0,31355616.0,32794919.0,34170718.0,33888506.0,35072434.0,36155792.0,38303518.0,40385694.0,39848667.0,40531823.0,43731339.0,45482514.0,44128247.0,44245276.0,45021907.0,46257526.0,50271031.0,49752297.0,50293159.0,49361252.0,52291755.0,51694269.0,53399510.0,53396515.0,56211476.0,69523319.0,56447929.0,57952289.0,57702774.0,59400692.0,60353444.0,61892424.0,62709326.0,63805257.0,64447305.0,75673188.0,66896854.0,66952235.0,70679381.0,75397148.0,73240975.0,72043935.0,72279180.0,73890074.0,75520202.0,74654123.0,78735290.0,78005106.0,82414130.0,78596374.0,84433378.0,82171149.0,83815907.0,83416268.0,85863237.0,89022352.0,92429494.0,107403162.0,130915165.0,125966790.0,92138962.0,93188192.0,91897803.0,144220787.0,128457853.0,133577141.0,124301006.0,154122498.0,138470046.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/2147483648/new/sample.json: -------------------------------------------------------------------------------- 1 | [[145.0,290.0,435.0,580.0,725.0,870.0,1015.0,1160.0,1305.0,1450.0,1595.0,1740.0,1885.0,2030.0,2175.0,2320.0,2465.0,2610.0,2755.0,2900.0,3045.0,3190.0,3335.0,3480.0,3625.0,3770.0,3915.0,4060.0,4205.0,4350.0,4495.0,4640.0,4785.0,4930.0,5075.0,5220.0,5365.0,5510.0,5655.0,5800.0,5945.0,6090.0,6235.0,6380.0,6525.0,6670.0,6815.0,6960.0,7105.0,7250.0,7395.0,7540.0,7685.0,7830.0,7975.0,8120.0,8265.0,8410.0,8555.0,8700.0,8845.0,8990.0,9135.0,9280.0,9425.0,9570.0,9715.0,9860.0,10005.0,10150.0,10295.0,10440.0,10585.0,10730.0,10875.0,11020.0,11165.0,11310.0,11455.0,11600.0,11745.0,11890.0,12035.0,12180.0,12325.0,12470.0,12615.0,12760.0,12905.0,13050.0,13195.0,13340.0,13485.0,13630.0,13775.0,13920.0,14065.0,14210.0,14355.0,14500.0],[1024350.0,1990812.0,2891935.0,4944499.0,5026093.0,5853346.0,7015488.0,8186126.0,8731798.0,10000013.0,10831878.0,11573319.0,12707093.0,13813949.0,14660693.0,15677113.0,16583234.0,17612071.0,18460577.0,21173390.0,21792201.0,28400702.0,32732269.0,27947400.0,27496476.0,28701366.0,26954009.0,27927775.0,28886282.0,29412991.0,30814854.0,31355616.0,32794919.0,34170718.0,33888506.0,35072434.0,36155792.0,38303518.0,40385694.0,39848667.0,40531823.0,43731339.0,45482514.0,44128247.0,44245276.0,45021907.0,46257526.0,50271031.0,49752297.0,50293159.0,49361252.0,52291755.0,51694269.0,53399510.0,53396515.0,56211476.0,69523319.0,56447929.0,57952289.0,57702774.0,59400692.0,60353444.0,61892424.0,62709326.0,63805257.0,64447305.0,75673188.0,66896854.0,66952235.0,70679381.0,75397148.0,73240975.0,72043935.0,72279180.0,73890074.0,75520202.0,74654123.0,78735290.0,78005106.0,82414130.0,78596374.0,84433378.0,82171149.0,83815907.0,83416268.0,85863237.0,89022352.0,92429494.0,107403162.0,130915165.0,125966790.0,92138962.0,93188192.0,91897803.0,144220787.0,128457853.0,133577141.0,124301006.0,154122498.0,138470046.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/536870912/base/sample.json: -------------------------------------------------------------------------------- 1 | [[202.0,404.0,606.0,808.0,1010.0,1212.0,1414.0,1616.0,1818.0,2020.0,2222.0,2424.0,2626.0,2828.0,3030.0,3232.0,3434.0,3636.0,3838.0,4040.0,4242.0,4444.0,4646.0,4848.0,5050.0,5252.0,5454.0,5656.0,5858.0,6060.0,6262.0,6464.0,6666.0,6868.0,7070.0,7272.0,7474.0,7676.0,7878.0,8080.0,8282.0,8484.0,8686.0,8888.0,9090.0,9292.0,9494.0,9696.0,9898.0,10100.0,10302.0,10504.0,10706.0,10908.0,11110.0,11312.0,11514.0,11716.0,11918.0,12120.0,12322.0,12524.0,12726.0,12928.0,13130.0,13332.0,13534.0,13736.0,13938.0,14140.0,14342.0,14544.0,14746.0,14948.0,15150.0,15352.0,15554.0,15756.0,15958.0,16160.0,16362.0,16564.0,16766.0,16968.0,17170.0,17372.0,17574.0,17776.0,17978.0,18180.0,18382.0,18584.0,18786.0,18988.0,19190.0,19392.0,19594.0,19796.0,19998.0,20200.0],[948525.0,1979637.0,2838568.0,4007862.0,4956103.0,5802255.0,7345692.0,7713651.0,8817955.0,9917826.0,10907481.0,12053965.0,12677034.0,13672061.0,14939215.0,15700565.0,16999842.0,17466711.0,18800431.0,19222369.0,20601211.0,21428045.0,22495548.0,23443622.0,24386889.0,25840834.0,26619022.0,27346619.0,28125044.0,29305616.0,30620372.0,31478408.0,32142454.0,33196285.0,34727998.0,35621111.0,35999222.0,36793251.0,38429265.0,39064147.0,40154613.0,40803047.0,42462941.0,43023499.0,43810027.0,44809802.0,46090204.0,48373238.0,48514585.0,49289936.0,49703406.0,50541031.0,51673537.0,52465221.0,56179365.0,55235424.0,56005019.0,57009597.0,57190632.0,60078280.0,59228946.0,60440102.0,61712415.0,63251133.0,64788766.0,65211446.0,65866367.0,66211466.0,66866504.0,69014082.0,70072579.0,70401041.0,71801903.0,72168113.0,74959458.0,74309785.0,75271057.0,77181117.0,78218345.0,80178100.0,80354415.0,81881112.0,81269750.0,83065084.0,83628979.0,84821510.0,86088415.0,87041170.0,87177443.0,87308110.0,88531255.0,90973357.0,107705240.0,91790185.0,94221397.0,95093520.0,95819384.0,97409151.0,96907764.0,113156340.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/536870912/new/sample.json: -------------------------------------------------------------------------------- 1 | [[202.0,404.0,606.0,808.0,1010.0,1212.0,1414.0,1616.0,1818.0,2020.0,2222.0,2424.0,2626.0,2828.0,3030.0,3232.0,3434.0,3636.0,3838.0,4040.0,4242.0,4444.0,4646.0,4848.0,5050.0,5252.0,5454.0,5656.0,5858.0,6060.0,6262.0,6464.0,6666.0,6868.0,7070.0,7272.0,7474.0,7676.0,7878.0,8080.0,8282.0,8484.0,8686.0,8888.0,9090.0,9292.0,9494.0,9696.0,9898.0,10100.0,10302.0,10504.0,10706.0,10908.0,11110.0,11312.0,11514.0,11716.0,11918.0,12120.0,12322.0,12524.0,12726.0,12928.0,13130.0,13332.0,13534.0,13736.0,13938.0,14140.0,14342.0,14544.0,14746.0,14948.0,15150.0,15352.0,15554.0,15756.0,15958.0,16160.0,16362.0,16564.0,16766.0,16968.0,17170.0,17372.0,17574.0,17776.0,17978.0,18180.0,18382.0,18584.0,18786.0,18988.0,19190.0,19392.0,19594.0,19796.0,19998.0,20200.0],[948525.0,1979637.0,2838568.0,4007862.0,4956103.0,5802255.0,7345692.0,7713651.0,8817955.0,9917826.0,10907481.0,12053965.0,12677034.0,13672061.0,14939215.0,15700565.0,16999842.0,17466711.0,18800431.0,19222369.0,20601211.0,21428045.0,22495548.0,23443622.0,24386889.0,25840834.0,26619022.0,27346619.0,28125044.0,29305616.0,30620372.0,31478408.0,32142454.0,33196285.0,34727998.0,35621111.0,35999222.0,36793251.0,38429265.0,39064147.0,40154613.0,40803047.0,42462941.0,43023499.0,43810027.0,44809802.0,46090204.0,48373238.0,48514585.0,49289936.0,49703406.0,50541031.0,51673537.0,52465221.0,56179365.0,55235424.0,56005019.0,57009597.0,57190632.0,60078280.0,59228946.0,60440102.0,61712415.0,63251133.0,64788766.0,65211446.0,65866367.0,66211466.0,66866504.0,69014082.0,70072579.0,70401041.0,71801903.0,72168113.0,74959458.0,74309785.0,75271057.0,77181117.0,78218345.0,80178100.0,80354415.0,81881112.0,81269750.0,83065084.0,83628979.0,84821510.0,86088415.0,87041170.0,87177443.0,87308110.0,88531255.0,90973357.0,107705240.0,91790185.0,94221397.0,95093520.0,95819384.0,97409151.0,96907764.0,113156340.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/268435456/base/sample.json: -------------------------------------------------------------------------------- 1 | [[242.0,484.0,726.0,968.0,1210.0,1452.0,1694.0,1936.0,2178.0,2420.0,2662.0,2904.0,3146.0,3388.0,3630.0,3872.0,4114.0,4356.0,4598.0,4840.0,5082.0,5324.0,5566.0,5808.0,6050.0,6292.0,6534.0,6776.0,7018.0,7260.0,7502.0,7744.0,7986.0,8228.0,8470.0,8712.0,8954.0,9196.0,9438.0,9680.0,9922.0,10164.0,10406.0,10648.0,10890.0,11132.0,11374.0,11616.0,11858.0,12100.0,12342.0,12584.0,12826.0,13068.0,13310.0,13552.0,13794.0,14036.0,14278.0,14520.0,14762.0,15004.0,15246.0,15488.0,15730.0,15972.0,16214.0,16456.0,16698.0,16940.0,17182.0,17424.0,17666.0,17908.0,18150.0,18392.0,18634.0,18876.0,19118.0,19360.0,19602.0,19844.0,20086.0,20328.0,20570.0,20812.0,21054.0,21296.0,21538.0,21780.0,22022.0,22264.0,22506.0,22748.0,22990.0,23232.0,23474.0,23716.0,23958.0,24200.0],[1001483.0,1905724.0,2904275.0,3863246.0,4853650.0,5984816.0,7041552.0,8846987.0,8775063.0,10547612.0,11251337.0,11584954.0,12737913.0,14845216.0,14680994.0,16489418.0,16612875.0,18830360.0,19879013.0,19550458.0,21506209.0,22431558.0,22535303.0,24575505.0,25739507.0,25268504.0,27617092.0,28880266.0,29728261.0,31028607.0,30724667.0,31604940.0,32543994.0,33198115.0,34354762.0,35345072.0,36344954.0,37542303.0,38409916.0,38938435.0,40480103.0,41008843.0,42029525.0,43141279.0,44596345.0,45491176.0,45983656.0,47137569.0,48414018.0,49187891.0,50528586.0,51705401.0,52272342.0,53427057.0,54292536.0,55302217.0,56688719.0,57607757.0,57958439.0,58962996.0,60021261.0,61742200.0,61710041.0,62854713.0,64540156.0,65627333.0,66438593.0,67545966.0,67797263.0,69970050.0,70704340.0,70721157.0,71812627.0,73490449.0,77144791.0,75447018.0,76039178.0,80809024.0,79003259.0,79771590.0,81613463.0,83232606.0,82970728.0,86349264.0,84868729.0,85467699.0,85499643.0,86794550.0,88073909.0,88491376.0,89879511.0,94126443.0,94447577.0,93361421.0,95215269.0,95258397.0,97545427.0,97383142.0,100235953.0,100412810.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/268435456/new/sample.json: -------------------------------------------------------------------------------- 1 | [[242.0,484.0,726.0,968.0,1210.0,1452.0,1694.0,1936.0,2178.0,2420.0,2662.0,2904.0,3146.0,3388.0,3630.0,3872.0,4114.0,4356.0,4598.0,4840.0,5082.0,5324.0,5566.0,5808.0,6050.0,6292.0,6534.0,6776.0,7018.0,7260.0,7502.0,7744.0,7986.0,8228.0,8470.0,8712.0,8954.0,9196.0,9438.0,9680.0,9922.0,10164.0,10406.0,10648.0,10890.0,11132.0,11374.0,11616.0,11858.0,12100.0,12342.0,12584.0,12826.0,13068.0,13310.0,13552.0,13794.0,14036.0,14278.0,14520.0,14762.0,15004.0,15246.0,15488.0,15730.0,15972.0,16214.0,16456.0,16698.0,16940.0,17182.0,17424.0,17666.0,17908.0,18150.0,18392.0,18634.0,18876.0,19118.0,19360.0,19602.0,19844.0,20086.0,20328.0,20570.0,20812.0,21054.0,21296.0,21538.0,21780.0,22022.0,22264.0,22506.0,22748.0,22990.0,23232.0,23474.0,23716.0,23958.0,24200.0],[1001483.0,1905724.0,2904275.0,3863246.0,4853650.0,5984816.0,7041552.0,8846987.0,8775063.0,10547612.0,11251337.0,11584954.0,12737913.0,14845216.0,14680994.0,16489418.0,16612875.0,18830360.0,19879013.0,19550458.0,21506209.0,22431558.0,22535303.0,24575505.0,25739507.0,25268504.0,27617092.0,28880266.0,29728261.0,31028607.0,30724667.0,31604940.0,32543994.0,33198115.0,34354762.0,35345072.0,36344954.0,37542303.0,38409916.0,38938435.0,40480103.0,41008843.0,42029525.0,43141279.0,44596345.0,45491176.0,45983656.0,47137569.0,48414018.0,49187891.0,50528586.0,51705401.0,52272342.0,53427057.0,54292536.0,55302217.0,56688719.0,57607757.0,57958439.0,58962996.0,60021261.0,61742200.0,61710041.0,62854713.0,64540156.0,65627333.0,66438593.0,67545966.0,67797263.0,69970050.0,70704340.0,70721157.0,71812627.0,73490449.0,77144791.0,75447018.0,76039178.0,80809024.0,79003259.0,79771590.0,81613463.0,83232606.0,82970728.0,86349264.0,84868729.0,85467699.0,85499643.0,86794550.0,88073909.0,88491376.0,89879511.0,94126443.0,94447577.0,93361421.0,95215269.0,95258397.0,97545427.0,97383142.0,100235953.0,100412810.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/33554432/base/sample.json: -------------------------------------------------------------------------------- 1 | [[263.0,526.0,789.0,1052.0,1315.0,1578.0,1841.0,2104.0,2367.0,2630.0,2893.0,3156.0,3419.0,3682.0,3945.0,4208.0,4471.0,4734.0,4997.0,5260.0,5523.0,5786.0,6049.0,6312.0,6575.0,6838.0,7101.0,7364.0,7627.0,7890.0,8153.0,8416.0,8679.0,8942.0,9205.0,9468.0,9731.0,9994.0,10257.0,10520.0,10783.0,11046.0,11309.0,11572.0,11835.0,12098.0,12361.0,12624.0,12887.0,13150.0,13413.0,13676.0,13939.0,14202.0,14465.0,14728.0,14991.0,15254.0,15517.0,15780.0,16043.0,16306.0,16569.0,16832.0,17095.0,17358.0,17621.0,17884.0,18147.0,18410.0,18673.0,18936.0,19199.0,19462.0,19725.0,19988.0,20251.0,20514.0,20777.0,21040.0,21303.0,21566.0,21829.0,22092.0,22355.0,22618.0,22881.0,23144.0,23407.0,23670.0,23933.0,24196.0,24459.0,24722.0,24985.0,25248.0,25511.0,25774.0,26037.0,26300.0],[981443.0,1914339.0,3302702.0,3848864.0,4861071.0,6300286.0,7082054.0,7910909.0,9183558.0,9810416.0,10893912.0,12085930.0,13013615.0,13995625.0,14940037.0,15776319.0,16790205.0,17745286.0,18757078.0,19579149.0,20769101.0,22683917.0,23462211.0,23547534.0,25051483.0,25705981.0,26915684.0,27292407.0,28276623.0,29386801.0,30481809.0,32694296.0,34391613.0,34136953.0,34373420.0,35808914.0,36982784.0,37653439.0,39136277.0,39584713.0,40282687.0,41004807.0,42812923.0,43549651.0,44062929.0,45013270.0,46931232.0,46700890.0,48266003.0,50989291.0,51140853.0,51431935.0,52340978.0,52616501.0,53680701.0,55237671.0,57055959.0,59499765.0,58669307.0,58975758.0,60529070.0,61600167.0,61884838.0,62529857.0,63527683.0,65588780.0,65527228.0,66302862.0,67922582.0,69468964.0,69913089.0,70421841.0,72919352.0,73473351.0,73906616.0,75356547.0,76785717.0,76906681.0,78282923.0,79858906.0,79973280.0,82016640.0,82336528.0,83876554.0,85323433.0,85572718.0,86586340.0,86560468.0,88469661.0,88225886.0,90198715.0,90706909.0,92047506.0,94309054.0,92967906.0,95082520.0,94969790.0,97665107.0,98018987.0,100007433.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/33554432/new/sample.json: -------------------------------------------------------------------------------- 1 | [[263.0,526.0,789.0,1052.0,1315.0,1578.0,1841.0,2104.0,2367.0,2630.0,2893.0,3156.0,3419.0,3682.0,3945.0,4208.0,4471.0,4734.0,4997.0,5260.0,5523.0,5786.0,6049.0,6312.0,6575.0,6838.0,7101.0,7364.0,7627.0,7890.0,8153.0,8416.0,8679.0,8942.0,9205.0,9468.0,9731.0,9994.0,10257.0,10520.0,10783.0,11046.0,11309.0,11572.0,11835.0,12098.0,12361.0,12624.0,12887.0,13150.0,13413.0,13676.0,13939.0,14202.0,14465.0,14728.0,14991.0,15254.0,15517.0,15780.0,16043.0,16306.0,16569.0,16832.0,17095.0,17358.0,17621.0,17884.0,18147.0,18410.0,18673.0,18936.0,19199.0,19462.0,19725.0,19988.0,20251.0,20514.0,20777.0,21040.0,21303.0,21566.0,21829.0,22092.0,22355.0,22618.0,22881.0,23144.0,23407.0,23670.0,23933.0,24196.0,24459.0,24722.0,24985.0,25248.0,25511.0,25774.0,26037.0,26300.0],[981443.0,1914339.0,3302702.0,3848864.0,4861071.0,6300286.0,7082054.0,7910909.0,9183558.0,9810416.0,10893912.0,12085930.0,13013615.0,13995625.0,14940037.0,15776319.0,16790205.0,17745286.0,18757078.0,19579149.0,20769101.0,22683917.0,23462211.0,23547534.0,25051483.0,25705981.0,26915684.0,27292407.0,28276623.0,29386801.0,30481809.0,32694296.0,34391613.0,34136953.0,34373420.0,35808914.0,36982784.0,37653439.0,39136277.0,39584713.0,40282687.0,41004807.0,42812923.0,43549651.0,44062929.0,45013270.0,46931232.0,46700890.0,48266003.0,50989291.0,51140853.0,51431935.0,52340978.0,52616501.0,53680701.0,55237671.0,57055959.0,59499765.0,58669307.0,58975758.0,60529070.0,61600167.0,61884838.0,62529857.0,63527683.0,65588780.0,65527228.0,66302862.0,67922582.0,69468964.0,69913089.0,70421841.0,72919352.0,73473351.0,73906616.0,75356547.0,76785717.0,76906681.0,78282923.0,79858906.0,79973280.0,82016640.0,82336528.0,83876554.0,85323433.0,85572718.0,86586340.0,86560468.0,88469661.0,88225886.0,90198715.0,90706909.0,92047506.0,94309054.0,92967906.0,95082520.0,94969790.0,97665107.0,98018987.0,100007433.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/134217728/base/sample.json: -------------------------------------------------------------------------------- 1 | [[267.0,534.0,801.0,1068.0,1335.0,1602.0,1869.0,2136.0,2403.0,2670.0,2937.0,3204.0,3471.0,3738.0,4005.0,4272.0,4539.0,4806.0,5073.0,5340.0,5607.0,5874.0,6141.0,6408.0,6675.0,6942.0,7209.0,7476.0,7743.0,8010.0,8277.0,8544.0,8811.0,9078.0,9345.0,9612.0,9879.0,10146.0,10413.0,10680.0,10947.0,11214.0,11481.0,11748.0,12015.0,12282.0,12549.0,12816.0,13083.0,13350.0,13617.0,13884.0,14151.0,14418.0,14685.0,14952.0,15219.0,15486.0,15753.0,16020.0,16287.0,16554.0,16821.0,17088.0,17355.0,17622.0,17889.0,18156.0,18423.0,18690.0,18957.0,19224.0,19491.0,19758.0,20025.0,20292.0,20559.0,20826.0,21093.0,21360.0,21627.0,21894.0,22161.0,22428.0,22695.0,22962.0,23229.0,23496.0,23763.0,24030.0,24297.0,24564.0,24831.0,25098.0,25365.0,25632.0,25899.0,26166.0,26433.0,26700.0],[1056688.0,2027760.0,2949892.0,3846772.0,4851748.0,5828202.0,6776879.0,8109012.0,8758385.0,9982253.0,11027625.0,11692055.0,12934167.0,14083719.0,14533901.0,15789337.0,16520628.0,17874972.0,18329220.0,19538162.0,20512889.0,21799144.0,23078409.0,23325389.0,24369148.0,25394145.0,26429083.0,27357226.0,28508024.0,29737844.0,30301060.0,31309977.0,32863717.0,33420176.0,34217319.0,35462708.0,36138889.0,37348187.0,38298678.0,39188846.0,40166418.0,41788123.0,42222071.0,43309224.0,44320677.0,45218025.0,46230852.0,48911093.0,48662899.0,49410848.0,50400495.0,51126843.0,52370120.0,53950815.0,54443464.0,55646103.0,55938159.0,57346290.0,58286962.0,58918586.0,59887178.0,61020424.0,61963027.0,63447795.0,64382782.0,65136248.0,65791666.0,67713691.0,68599155.0,68879269.0,69818488.0,71161637.0,73266880.0,73145494.0,73655514.0,74128590.0,76546696.0,78267892.0,77791504.0,79442990.0,80451641.0,80395257.0,81344293.0,82314959.0,83751824.0,84863403.0,85096882.0,87107711.0,87337355.0,89904907.0,90998034.0,91534901.0,92014638.0,92759725.0,93465027.0,94169564.0,95971325.0,96289834.0,97207498.0,98698913.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/134217728/new/sample.json: -------------------------------------------------------------------------------- 1 | [[267.0,534.0,801.0,1068.0,1335.0,1602.0,1869.0,2136.0,2403.0,2670.0,2937.0,3204.0,3471.0,3738.0,4005.0,4272.0,4539.0,4806.0,5073.0,5340.0,5607.0,5874.0,6141.0,6408.0,6675.0,6942.0,7209.0,7476.0,7743.0,8010.0,8277.0,8544.0,8811.0,9078.0,9345.0,9612.0,9879.0,10146.0,10413.0,10680.0,10947.0,11214.0,11481.0,11748.0,12015.0,12282.0,12549.0,12816.0,13083.0,13350.0,13617.0,13884.0,14151.0,14418.0,14685.0,14952.0,15219.0,15486.0,15753.0,16020.0,16287.0,16554.0,16821.0,17088.0,17355.0,17622.0,17889.0,18156.0,18423.0,18690.0,18957.0,19224.0,19491.0,19758.0,20025.0,20292.0,20559.0,20826.0,21093.0,21360.0,21627.0,21894.0,22161.0,22428.0,22695.0,22962.0,23229.0,23496.0,23763.0,24030.0,24297.0,24564.0,24831.0,25098.0,25365.0,25632.0,25899.0,26166.0,26433.0,26700.0],[1056688.0,2027760.0,2949892.0,3846772.0,4851748.0,5828202.0,6776879.0,8109012.0,8758385.0,9982253.0,11027625.0,11692055.0,12934167.0,14083719.0,14533901.0,15789337.0,16520628.0,17874972.0,18329220.0,19538162.0,20512889.0,21799144.0,23078409.0,23325389.0,24369148.0,25394145.0,26429083.0,27357226.0,28508024.0,29737844.0,30301060.0,31309977.0,32863717.0,33420176.0,34217319.0,35462708.0,36138889.0,37348187.0,38298678.0,39188846.0,40166418.0,41788123.0,42222071.0,43309224.0,44320677.0,45218025.0,46230852.0,48911093.0,48662899.0,49410848.0,50400495.0,51126843.0,52370120.0,53950815.0,54443464.0,55646103.0,55938159.0,57346290.0,58286962.0,58918586.0,59887178.0,61020424.0,61963027.0,63447795.0,64382782.0,65136248.0,65791666.0,67713691.0,68599155.0,68879269.0,69818488.0,71161637.0,73266880.0,73145494.0,73655514.0,74128590.0,76546696.0,78267892.0,77791504.0,79442990.0,80451641.0,80395257.0,81344293.0,82314959.0,83751824.0,84863403.0,85096882.0,87107711.0,87337355.0,89904907.0,90998034.0,91534901.0,92014638.0,92759725.0,93465027.0,94169564.0,95971325.0,96289834.0,97207498.0,98698913.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/67108864/base/sample.json: -------------------------------------------------------------------------------- 1 | [[277.0,554.0,831.0,1108.0,1385.0,1662.0,1939.0,2216.0,2493.0,2770.0,3047.0,3324.0,3601.0,3878.0,4155.0,4432.0,4709.0,4986.0,5263.0,5540.0,5817.0,6094.0,6371.0,6648.0,6925.0,7202.0,7479.0,7756.0,8033.0,8310.0,8587.0,8864.0,9141.0,9418.0,9695.0,9972.0,10249.0,10526.0,10803.0,11080.0,11357.0,11634.0,11911.0,12188.0,12465.0,12742.0,13019.0,13296.0,13573.0,13850.0,14127.0,14404.0,14681.0,14958.0,15235.0,15512.0,15789.0,16066.0,16343.0,16620.0,16897.0,17174.0,17451.0,17728.0,18005.0,18282.0,18559.0,18836.0,19113.0,19390.0,19667.0,19944.0,20221.0,20498.0,20775.0,21052.0,21329.0,21606.0,21883.0,22160.0,22437.0,22714.0,22991.0,23268.0,23545.0,23822.0,24099.0,24376.0,24653.0,24930.0,25207.0,25484.0,25761.0,26038.0,26315.0,26592.0,26869.0,27146.0,27423.0,27700.0],[1004155.0,1954651.0,2922891.0,3920861.0,4884984.0,5875378.0,6924401.0,7820595.0,8651172.0,9642487.0,11720836.0,11512040.0,12573625.0,13593701.0,14544364.0,15773908.0,16626041.0,17513871.0,18518156.0,19778578.0,21065987.0,21259328.0,22612267.0,23277330.0,24286649.0,25187085.0,26719633.0,27304621.0,28329954.0,28999667.0,30469537.0,31518203.0,32149136.0,33009014.0,33832837.0,35886969.0,35991882.0,37190447.0,38319537.0,39123755.0,39845317.0,40897107.0,41626042.0,42654850.0,43824916.0,44574379.0,46374739.0,47055998.0,47657086.0,48797119.0,50552171.0,50877398.0,53259464.0,52866863.0,54253172.0,54487518.0,55217489.0,57518646.0,58523862.0,58500710.0,59818460.0,60726530.0,61434541.0,63297060.0,63661032.0,64743857.0,65310179.0,66910939.0,67106490.0,68210431.0,69341892.0,70472702.0,73382313.0,73308546.0,75403009.0,75352961.0,75519319.0,75906342.0,77376474.0,78340581.0,79309153.0,80427109.0,81455800.0,82686929.0,83301252.0,85145003.0,84971157.0,86114632.0,87461272.0,88631931.0,90609517.0,90198897.0,91113778.0,93095277.0,94160730.0,95297953.0,95559789.0,95302424.0,96445172.0,97705806.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/67108864/new/sample.json: -------------------------------------------------------------------------------- 1 | [[277.0,554.0,831.0,1108.0,1385.0,1662.0,1939.0,2216.0,2493.0,2770.0,3047.0,3324.0,3601.0,3878.0,4155.0,4432.0,4709.0,4986.0,5263.0,5540.0,5817.0,6094.0,6371.0,6648.0,6925.0,7202.0,7479.0,7756.0,8033.0,8310.0,8587.0,8864.0,9141.0,9418.0,9695.0,9972.0,10249.0,10526.0,10803.0,11080.0,11357.0,11634.0,11911.0,12188.0,12465.0,12742.0,13019.0,13296.0,13573.0,13850.0,14127.0,14404.0,14681.0,14958.0,15235.0,15512.0,15789.0,16066.0,16343.0,16620.0,16897.0,17174.0,17451.0,17728.0,18005.0,18282.0,18559.0,18836.0,19113.0,19390.0,19667.0,19944.0,20221.0,20498.0,20775.0,21052.0,21329.0,21606.0,21883.0,22160.0,22437.0,22714.0,22991.0,23268.0,23545.0,23822.0,24099.0,24376.0,24653.0,24930.0,25207.0,25484.0,25761.0,26038.0,26315.0,26592.0,26869.0,27146.0,27423.0,27700.0],[1004155.0,1954651.0,2922891.0,3920861.0,4884984.0,5875378.0,6924401.0,7820595.0,8651172.0,9642487.0,11720836.0,11512040.0,12573625.0,13593701.0,14544364.0,15773908.0,16626041.0,17513871.0,18518156.0,19778578.0,21065987.0,21259328.0,22612267.0,23277330.0,24286649.0,25187085.0,26719633.0,27304621.0,28329954.0,28999667.0,30469537.0,31518203.0,32149136.0,33009014.0,33832837.0,35886969.0,35991882.0,37190447.0,38319537.0,39123755.0,39845317.0,40897107.0,41626042.0,42654850.0,43824916.0,44574379.0,46374739.0,47055998.0,47657086.0,48797119.0,50552171.0,50877398.0,53259464.0,52866863.0,54253172.0,54487518.0,55217489.0,57518646.0,58523862.0,58500710.0,59818460.0,60726530.0,61434541.0,63297060.0,63661032.0,64743857.0,65310179.0,66910939.0,67106490.0,68210431.0,69341892.0,70472702.0,73382313.0,73308546.0,75403009.0,75352961.0,75519319.0,75906342.0,77376474.0,78340581.0,79309153.0,80427109.0,81455800.0,82686929.0,83301252.0,85145003.0,84971157.0,86114632.0,87461272.0,88631931.0,90609517.0,90198897.0,91113778.0,93095277.0,94160730.0,95297953.0,95559789.0,95302424.0,96445172.0,97705806.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/4096/new/sample.json: -------------------------------------------------------------------------------- 1 | [[12017.0,24034.0,36051.0,48068.0,60085.0,72102.0,84119.0,96136.0,108153.0,120170.0,132187.0,144204.0,156221.0,168238.0,180255.0,192272.0,204289.0,216306.0,228323.0,240340.0,252357.0,264374.0,276391.0,288408.0,300425.0,312442.0,324459.0,336476.0,348493.0,360510.0,372527.0,384544.0,396561.0,408578.0,420595.0,432612.0,444629.0,456646.0,468663.0,480680.0,492697.0,504714.0,516731.0,528748.0,540765.0,552782.0,564799.0,576816.0,588833.0,600850.0,612867.0,624884.0,636901.0,648918.0,660935.0,672952.0,684969.0,696986.0,709003.0,721020.0,733037.0,745054.0,757071.0,769088.0,781105.0,793122.0,805139.0,817156.0,829173.0,841190.0,853207.0,865224.0,877241.0,889258.0,901275.0,913292.0,925309.0,937326.0,949343.0,961360.0,973377.0,985394.0,997411.0,1009428.0,1021445.0,1033462.0,1045479.0,1057496.0,1069513.0,1081530.0,1093547.0,1105564.0,1117581.0,1129598.0,1141615.0,1153632.0,1165649.0,1177666.0,1189683.0,1201700.0],[722340.0,1546412.0,2269985.0,2984165.0,3945901.0,5308324.0,5193767.0,6302091.0,7243555.0,7617802.0,8723234.0,9179086.0,10193144.0,10597250.0,10711616.0,11923716.0,12557385.0,14357260.0,20012466.0,18347496.0,15818877.0,15771413.0,16359955.0,17531979.0,19031744.0,19486474.0,20315944.0,21190677.0,21982224.0,23198436.0,23477854.0,25074944.0,24253455.0,25789127.0,25594177.0,27780310.0,27590530.0,32762227.0,29832145.0,37108802.0,35443529.0,32090775.0,32564079.0,33577210.0,33044763.0,34119567.0,33949003.0,34449926.0,35273064.0,36045901.0,36409141.0,37118677.0,38732989.0,38968394.0,39498935.0,39826708.0,41557423.0,41782435.0,42461906.0,45808154.0,48489863.0,51436605.0,52956940.0,56475514.0,56018690.0,53214078.0,55514566.0,56096333.0,57109990.0,59398372.0,59323263.0,62032918.0,71282329.0,74014734.0,73420560.0,73924063.0,73354501.0,79095847.0,77077391.0,84460143.0,82787931.0,90980656.0,93983361.0,87686795.0,88965859.0,88428420.0,90725888.0,91611418.0,105456803.0,128818909.0,125454496.0,89368788.0,77318261.0,75058804.0,71541017.0,69809807.0,71337549.0,70232787.0,72315002.0,70304368.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/4096/base/sample.json: -------------------------------------------------------------------------------- 1 | [[12017.0,24034.0,36051.0,48068.0,60085.0,72102.0,84119.0,96136.0,108153.0,120170.0,132187.0,144204.0,156221.0,168238.0,180255.0,192272.0,204289.0,216306.0,228323.0,240340.0,252357.0,264374.0,276391.0,288408.0,300425.0,312442.0,324459.0,336476.0,348493.0,360510.0,372527.0,384544.0,396561.0,408578.0,420595.0,432612.0,444629.0,456646.0,468663.0,480680.0,492697.0,504714.0,516731.0,528748.0,540765.0,552782.0,564799.0,576816.0,588833.0,600850.0,612867.0,624884.0,636901.0,648918.0,660935.0,672952.0,684969.0,696986.0,709003.0,721020.0,733037.0,745054.0,757071.0,769088.0,781105.0,793122.0,805139.0,817156.0,829173.0,841190.0,853207.0,865224.0,877241.0,889258.0,901275.0,913292.0,925309.0,937326.0,949343.0,961360.0,973377.0,985394.0,997411.0,1009428.0,1021445.0,1033462.0,1045479.0,1057496.0,1069513.0,1081530.0,1093547.0,1105564.0,1117581.0,1129598.0,1141615.0,1153632.0,1165649.0,1177666.0,1189683.0,1201700.0],[722340.0,1546412.0,2269985.0,2984165.0,3945901.0,5308324.0,5193767.0,6302091.0,7243555.0,7617802.0,8723234.0,9179086.0,10193144.0,10597250.0,10711616.0,11923716.0,12557385.0,14357260.0,20012466.0,18347496.0,15818877.0,15771413.0,16359955.0,17531979.0,19031744.0,19486474.0,20315944.0,21190677.0,21982224.0,23198436.0,23477854.0,25074944.0,24253455.0,25789127.0,25594177.0,27780310.0,27590530.0,32762227.0,29832145.0,37108802.0,35443529.0,32090775.0,32564079.0,33577210.0,33044763.0,34119567.0,33949003.0,34449926.0,35273064.0,36045901.0,36409141.0,37118677.0,38732989.0,38968394.0,39498935.0,39826708.0,41557423.0,41782435.0,42461906.0,45808154.0,48489863.0,51436605.0,52956940.0,56475514.0,56018690.0,53214078.0,55514566.0,56096333.0,57109990.0,59398372.0,59323263.0,62032918.0,71282329.0,74014734.0,73420560.0,73924063.0,73354501.0,79095847.0,77077391.0,84460143.0,82787931.0,90980656.0,93983361.0,87686795.0,88965859.0,88428420.0,90725888.0,91611418.0,105456803.0,128818909.0,125454496.0,89368788.0,77318261.0,75058804.0,71541017.0,69809807.0,71337549.0,70232787.0,72315002.0,70304368.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/65536/base/sample.json: -------------------------------------------------------------------------------- 1 | [[15700.0,31400.0,47100.0,62800.0,78500.0,94200.0,109900.0,125600.0,141300.0,157000.0,172700.0,188400.0,204100.0,219800.0,235500.0,251200.0,266900.0,282600.0,298300.0,314000.0,329700.0,345400.0,361100.0,376800.0,392500.0,408200.0,423900.0,439600.0,455300.0,471000.0,486700.0,502400.0,518100.0,533800.0,549500.0,565200.0,580900.0,596600.0,612300.0,628000.0,643700.0,659400.0,675100.0,690800.0,706500.0,722200.0,737900.0,753600.0,769300.0,785000.0,800700.0,816400.0,832100.0,847800.0,863500.0,879200.0,894900.0,910600.0,926300.0,942000.0,957700.0,973400.0,989100.0,1004800.0,1020500.0,1036200.0,1051900.0,1067600.0,1083300.0,1099000.0,1114700.0,1130400.0,1146100.0,1161800.0,1177500.0,1193200.0,1208900.0,1224600.0,1240300.0,1256000.0,1271700.0,1287400.0,1303100.0,1318800.0,1334500.0,1350200.0,1365900.0,1381600.0,1397300.0,1413000.0,1428700.0,1444400.0,1460100.0,1475800.0,1491500.0,1507200.0,1522900.0,1538600.0,1554300.0,1570000.0],[872258.0,1930147.0,2797301.0,4546798.0,4363484.0,5239954.0,6132850.0,6992042.0,9194657.0,8720672.0,9653217.0,10510589.0,12692011.0,12116840.0,14631890.0,14123490.0,15434373.0,16686394.0,17946609.0,17260084.0,19662330.0,19101449.0,29441252.0,21587694.0,22007447.0,22703852.0,23502268.0,25800070.0,25081763.0,26280218.0,26749989.0,28303404.0,28778822.0,29655078.0,30838573.0,31339970.0,32872950.0,34617326.0,34756769.0,35589422.0,36665412.0,36766987.0,37986472.0,39002436.0,38890256.0,39800920.0,41059993.0,41580455.0,44096293.0,44316515.0,44918464.0,45658522.0,46505301.0,47074944.0,48967323.0,48856247.0,50191250.0,51534261.0,52884559.0,52217297.0,54355914.0,54255860.0,55345315.0,55725998.0,56582660.0,57632486.0,60797570.0,63501240.0,61756536.0,63716001.0,62950081.0,63406407.0,72382528.0,70926514.0,74594770.0,67725244.0,68223945.0,68587213.0,69396824.0,72191973.0,75207812.0,74524457.0,78934579.0,77692258.0,75250587.0,75542237.0,79706521.0,79166302.0,79582435.0,79450727.0,79819097.0,80486640.0,81642486.0,82249571.0,84149936.0,90175002.0,87773188.0,87385266.0,96292872.0,88796252.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/65536/new/sample.json: -------------------------------------------------------------------------------- 1 | [[15700.0,31400.0,47100.0,62800.0,78500.0,94200.0,109900.0,125600.0,141300.0,157000.0,172700.0,188400.0,204100.0,219800.0,235500.0,251200.0,266900.0,282600.0,298300.0,314000.0,329700.0,345400.0,361100.0,376800.0,392500.0,408200.0,423900.0,439600.0,455300.0,471000.0,486700.0,502400.0,518100.0,533800.0,549500.0,565200.0,580900.0,596600.0,612300.0,628000.0,643700.0,659400.0,675100.0,690800.0,706500.0,722200.0,737900.0,753600.0,769300.0,785000.0,800700.0,816400.0,832100.0,847800.0,863500.0,879200.0,894900.0,910600.0,926300.0,942000.0,957700.0,973400.0,989100.0,1004800.0,1020500.0,1036200.0,1051900.0,1067600.0,1083300.0,1099000.0,1114700.0,1130400.0,1146100.0,1161800.0,1177500.0,1193200.0,1208900.0,1224600.0,1240300.0,1256000.0,1271700.0,1287400.0,1303100.0,1318800.0,1334500.0,1350200.0,1365900.0,1381600.0,1397300.0,1413000.0,1428700.0,1444400.0,1460100.0,1475800.0,1491500.0,1507200.0,1522900.0,1538600.0,1554300.0,1570000.0],[872258.0,1930147.0,2797301.0,4546798.0,4363484.0,5239954.0,6132850.0,6992042.0,9194657.0,8720672.0,9653217.0,10510589.0,12692011.0,12116840.0,14631890.0,14123490.0,15434373.0,16686394.0,17946609.0,17260084.0,19662330.0,19101449.0,29441252.0,21587694.0,22007447.0,22703852.0,23502268.0,25800070.0,25081763.0,26280218.0,26749989.0,28303404.0,28778822.0,29655078.0,30838573.0,31339970.0,32872950.0,34617326.0,34756769.0,35589422.0,36665412.0,36766987.0,37986472.0,39002436.0,38890256.0,39800920.0,41059993.0,41580455.0,44096293.0,44316515.0,44918464.0,45658522.0,46505301.0,47074944.0,48967323.0,48856247.0,50191250.0,51534261.0,52884559.0,52217297.0,54355914.0,54255860.0,55345315.0,55725998.0,56582660.0,57632486.0,60797570.0,63501240.0,61756536.0,63716001.0,62950081.0,63406407.0,72382528.0,70926514.0,74594770.0,67725244.0,68223945.0,68587213.0,69396824.0,72191973.0,75207812.0,74524457.0,78934579.0,77692258.0,75250587.0,75542237.0,79706521.0,79166302.0,79582435.0,79450727.0,79819097.0,80486640.0,81642486.0,82249571.0,84149936.0,90175002.0,87773188.0,87385266.0,96292872.0,88796252.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/131072/new/sample.json: -------------------------------------------------------------------------------- 1 | [[16948.0,33896.0,50844.0,67792.0,84740.0,101688.0,118636.0,135584.0,152532.0,169480.0,186428.0,203376.0,220324.0,237272.0,254220.0,271168.0,288116.0,305064.0,322012.0,338960.0,355908.0,372856.0,389804.0,406752.0,423700.0,440648.0,457596.0,474544.0,491492.0,508440.0,525388.0,542336.0,559284.0,576232.0,593180.0,610128.0,627076.0,644024.0,660972.0,677920.0,694868.0,711816.0,728764.0,745712.0,762660.0,779608.0,796556.0,813504.0,830452.0,847400.0,864348.0,881296.0,898244.0,915192.0,932140.0,949088.0,966036.0,982984.0,999932.0,1016880.0,1033828.0,1050776.0,1067724.0,1084672.0,1101620.0,1118568.0,1135516.0,1152464.0,1169412.0,1186360.0,1203308.0,1220256.0,1237204.0,1254152.0,1271100.0,1288048.0,1304996.0,1321944.0,1338892.0,1355840.0,1372788.0,1389736.0,1406684.0,1423632.0,1440580.0,1457528.0,1474476.0,1491424.0,1508372.0,1525320.0,1542268.0,1559216.0,1576164.0,1593112.0,1610060.0,1627008.0,1643956.0,1660904.0,1677852.0,1694800.0],[909829.0,1819061.0,2812443.0,3780159.0,4748942.0,5714964.0,6477643.0,7508744.0,8587826.0,9646205.0,10349789.0,11851320.0,12402829.0,13454892.0,14262859.0,15430915.0,16015997.0,17284589.0,17918109.0,18734801.0,19891428.0,20608905.0,21941308.0,22737346.0,24781817.0,28073391.0,32472203.0,27523326.0,29110730.0,28638489.0,29160899.0,30062939.0,31401896.0,31680411.0,33436674.0,37157656.0,35857774.0,36507799.0,37998305.0,38050764.0,38799411.0,39537695.0,40903886.0,43692101.0,43116575.0,43274646.0,44809095.0,45744237.0,47258571.0,55243693.0,48766993.0,49535871.0,51970216.0,51348502.0,54312776.0,55238144.0,54482554.0,55518829.0,55658294.0,56920608.0,57366775.0,59546822.0,60404610.0,62598517.0,62386937.0,63046727.0,65892805.0,65527477.0,65662048.0,67349054.0,67981676.0,69191891.0,70452472.0,69846165.0,70363812.0,73691821.0,73419056.0,73948748.0,95740196.0,90568147.0,89338596.0,80601951.0,88645442.0,84360936.0,84630705.0,84044132.0,107712413.0,88878054.0,83063564.0,83965425.0,87858357.0,86434748.0,87484817.0,98074079.0,114257223.0,91743853.0,92561100.0,93388424.0,93769109.0,96534833.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/16384/base/sample.json: -------------------------------------------------------------------------------- 1 | [[15100.0,30200.0,45300.0,60400.0,75500.0,90600.0,105700.0,120800.0,135900.0,151000.0,166100.0,181200.0,196300.0,211400.0,226500.0,241600.0,256700.0,271800.0,286900.0,302000.0,317100.0,332200.0,347300.0,362400.0,377500.0,392600.0,407700.0,422800.0,437900.0,453000.0,468100.0,483200.0,498300.0,513400.0,528500.0,543600.0,558700.0,573800.0,588900.0,604000.0,619100.0,634200.0,649300.0,664400.0,679500.0,694600.0,709700.0,724800.0,739900.0,755000.0,770100.0,785200.0,800300.0,815400.0,830500.0,845600.0,860700.0,875800.0,890900.0,906000.0,921100.0,936200.0,951300.0,966400.0,981500.0,996600.0,1011700.0,1026800.0,1041900.0,1057000.0,1072100.0,1087200.0,1102300.0,1117400.0,1132500.0,1147600.0,1162700.0,1177800.0,1192900.0,1208000.0,1223100.0,1238200.0,1253300.0,1268400.0,1283500.0,1298600.0,1313700.0,1328800.0,1343900.0,1359000.0,1374100.0,1389200.0,1404300.0,1419400.0,1434500.0,1449600.0,1464700.0,1479800.0,1494900.0,1510000.0],[957201.0,1935997.0,3112643.0,4237501.0,4849432.0,5723821.0,6827571.0,7720921.0,8926213.0,9700934.0,11942349.0,12013987.0,12472184.0,14554953.0,14152338.0,16631263.0,18306273.0,18772636.0,18425290.0,20615140.0,20984867.0,20707324.0,22317046.0,23265826.0,23621891.0,24542396.0,27137488.0,28682881.0,27197648.0,36030978.0,35093803.0,33500620.0,33755991.0,35034258.0,35565344.0,35750857.0,36203234.0,36826648.0,41155027.0,39511092.0,39640620.0,39519941.0,41777031.0,45614536.0,42112019.0,41633168.0,43082013.0,50504509.0,76156934.0,105766514.0,95538304.0,70309800.0,59033676.0,52874200.0,51317106.0,50358461.0,50838493.0,87053882.0,109417786.0,115021028.0,111414969.0,101235681.0,96179275.0,111331653.0,98039648.0,120956160.0,134679080.0,84097971.0,65649315.0,67748793.0,63946832.0,65691156.0,71163382.0,71164118.0,67912248.0,72130607.0,69608802.0,69554248.0,69827673.0,70277940.0,71642623.0,73177674.0,75443496.0,75012877.0,75957951.0,77350044.0,78535502.0,79305305.0,83114985.0,81902289.0,80647542.0,82605883.0,83069591.0,83738158.0,85977373.0,86522485.0,90224088.0,92122461.0,91807966.0,92621859.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/16384/new/sample.json: -------------------------------------------------------------------------------- 1 | [[15100.0,30200.0,45300.0,60400.0,75500.0,90600.0,105700.0,120800.0,135900.0,151000.0,166100.0,181200.0,196300.0,211400.0,226500.0,241600.0,256700.0,271800.0,286900.0,302000.0,317100.0,332200.0,347300.0,362400.0,377500.0,392600.0,407700.0,422800.0,437900.0,453000.0,468100.0,483200.0,498300.0,513400.0,528500.0,543600.0,558700.0,573800.0,588900.0,604000.0,619100.0,634200.0,649300.0,664400.0,679500.0,694600.0,709700.0,724800.0,739900.0,755000.0,770100.0,785200.0,800300.0,815400.0,830500.0,845600.0,860700.0,875800.0,890900.0,906000.0,921100.0,936200.0,951300.0,966400.0,981500.0,996600.0,1011700.0,1026800.0,1041900.0,1057000.0,1072100.0,1087200.0,1102300.0,1117400.0,1132500.0,1147600.0,1162700.0,1177800.0,1192900.0,1208000.0,1223100.0,1238200.0,1253300.0,1268400.0,1283500.0,1298600.0,1313700.0,1328800.0,1343900.0,1359000.0,1374100.0,1389200.0,1404300.0,1419400.0,1434500.0,1449600.0,1464700.0,1479800.0,1494900.0,1510000.0],[957201.0,1935997.0,3112643.0,4237501.0,4849432.0,5723821.0,6827571.0,7720921.0,8926213.0,9700934.0,11942349.0,12013987.0,12472184.0,14554953.0,14152338.0,16631263.0,18306273.0,18772636.0,18425290.0,20615140.0,20984867.0,20707324.0,22317046.0,23265826.0,23621891.0,24542396.0,27137488.0,28682881.0,27197648.0,36030978.0,35093803.0,33500620.0,33755991.0,35034258.0,35565344.0,35750857.0,36203234.0,36826648.0,41155027.0,39511092.0,39640620.0,39519941.0,41777031.0,45614536.0,42112019.0,41633168.0,43082013.0,50504509.0,76156934.0,105766514.0,95538304.0,70309800.0,59033676.0,52874200.0,51317106.0,50358461.0,50838493.0,87053882.0,109417786.0,115021028.0,111414969.0,101235681.0,96179275.0,111331653.0,98039648.0,120956160.0,134679080.0,84097971.0,65649315.0,67748793.0,63946832.0,65691156.0,71163382.0,71164118.0,67912248.0,72130607.0,69608802.0,69554248.0,69827673.0,70277940.0,71642623.0,73177674.0,75443496.0,75012877.0,75957951.0,77350044.0,78535502.0,79305305.0,83114985.0,81902289.0,80647542.0,82605883.0,83069591.0,83738158.0,85977373.0,86522485.0,90224088.0,92122461.0,91807966.0,92621859.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/131072/base/sample.json: -------------------------------------------------------------------------------- 1 | [[16948.0,33896.0,50844.0,67792.0,84740.0,101688.0,118636.0,135584.0,152532.0,169480.0,186428.0,203376.0,220324.0,237272.0,254220.0,271168.0,288116.0,305064.0,322012.0,338960.0,355908.0,372856.0,389804.0,406752.0,423700.0,440648.0,457596.0,474544.0,491492.0,508440.0,525388.0,542336.0,559284.0,576232.0,593180.0,610128.0,627076.0,644024.0,660972.0,677920.0,694868.0,711816.0,728764.0,745712.0,762660.0,779608.0,796556.0,813504.0,830452.0,847400.0,864348.0,881296.0,898244.0,915192.0,932140.0,949088.0,966036.0,982984.0,999932.0,1016880.0,1033828.0,1050776.0,1067724.0,1084672.0,1101620.0,1118568.0,1135516.0,1152464.0,1169412.0,1186360.0,1203308.0,1220256.0,1237204.0,1254152.0,1271100.0,1288048.0,1304996.0,1321944.0,1338892.0,1355840.0,1372788.0,1389736.0,1406684.0,1423632.0,1440580.0,1457528.0,1474476.0,1491424.0,1508372.0,1525320.0,1542268.0,1559216.0,1576164.0,1593112.0,1610060.0,1627008.0,1643956.0,1660904.0,1677852.0,1694800.0],[909829.0,1819061.0,2812443.0,3780159.0,4748942.0,5714964.0,6477643.0,7508744.0,8587826.0,9646205.0,10349789.0,11851320.0,12402829.0,13454892.0,14262859.0,15430915.0,16015997.0,17284589.0,17918109.0,18734801.0,19891428.0,20608905.0,21941308.0,22737346.0,24781817.0,28073391.0,32472203.0,27523326.0,29110730.0,28638489.0,29160899.0,30062939.0,31401896.0,31680411.0,33436674.0,37157656.0,35857774.0,36507799.0,37998305.0,38050764.0,38799411.0,39537695.0,40903886.0,43692101.0,43116575.0,43274646.0,44809095.0,45744237.0,47258571.0,55243693.0,48766993.0,49535871.0,51970216.0,51348502.0,54312776.0,55238144.0,54482554.0,55518829.0,55658294.0,56920608.0,57366775.0,59546822.0,60404610.0,62598517.0,62386937.0,63046727.0,65892805.0,65527477.0,65662048.0,67349054.0,67981676.0,69191891.0,70452472.0,69846165.0,70363812.0,73691821.0,73419056.0,73948748.0,95740196.0,90568147.0,89338596.0,80601951.0,88645442.0,84360936.0,84630705.0,84044132.0,107712413.0,88878054.0,83063564.0,83965425.0,87858357.0,86434748.0,87484817.0,98074079.0,114257223.0,91743853.0,92561100.0,93388424.0,93769109.0,96534833.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/524288/base/sample.json: -------------------------------------------------------------------------------- 1 | [[18194.0,36388.0,54582.0,72776.0,90970.0,109164.0,127358.0,145552.0,163746.0,181940.0,200134.0,218328.0,236522.0,254716.0,272910.0,291104.0,309298.0,327492.0,345686.0,363880.0,382074.0,400268.0,418462.0,436656.0,454850.0,473044.0,491238.0,509432.0,527626.0,545820.0,564014.0,582208.0,600402.0,618596.0,636790.0,654984.0,673178.0,691372.0,709566.0,727760.0,745954.0,764148.0,782342.0,800536.0,818730.0,836924.0,855118.0,873312.0,891506.0,909700.0,927894.0,946088.0,964282.0,982476.0,1000670.0,1018864.0,1037058.0,1055252.0,1073446.0,1091640.0,1109834.0,1128028.0,1146222.0,1164416.0,1182610.0,1200804.0,1218998.0,1237192.0,1255386.0,1273580.0,1291774.0,1309968.0,1328162.0,1346356.0,1364550.0,1382744.0,1400938.0,1419132.0,1437326.0,1455520.0,1473714.0,1491908.0,1510102.0,1528296.0,1546490.0,1564684.0,1582878.0,1601072.0,1619266.0,1637460.0,1655654.0,1673848.0,1692042.0,1710236.0,1728430.0,1746624.0,1764818.0,1783012.0,1801206.0,1819400.0],[989847.0,2273180.0,2980828.0,5319862.0,4849965.0,6170511.0,6891417.0,8176625.0,9762237.0,9891962.0,11882295.0,11596626.0,13237836.0,14030376.0,15041056.0,15701917.0,16982122.0,17908827.0,18946652.0,19761881.0,20556025.0,21763992.0,22525894.0,23474822.0,24941017.0,31864559.0,27040558.0,27286027.0,28142112.0,29764263.0,30522469.0,31582977.0,32541533.0,33868267.0,34884093.0,36006061.0,36469628.0,37337960.0,38136478.0,39608845.0,40693333.0,41671067.0,42589551.0,43217367.0,44217862.0,44881907.0,46101354.0,46370967.0,48557333.0,49294459.0,50208732.0,50524800.0,52054445.0,52615304.0,54273851.0,55267938.0,56886425.0,57418958.0,56941572.0,59143866.0,59539455.0,60754325.0,61534886.0,62774048.0,63640821.0,63759156.0,66583197.0,66323516.0,67443884.0,68829493.0,71376624.0,69882044.0,71119762.0,71762414.0,73389138.0,73995494.0,75551087.0,77181079.0,76843001.0,78902512.0,82058527.0,81295421.0,81964330.0,84161364.0,88224375.0,84111973.0,84406528.0,87151883.0,86867879.0,88067772.0,89328776.0,93158441.0,90232887.0,91597882.0,93053503.0,93768682.0,94959191.0,95872259.0,97202420.0,98009493.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/524288/new/sample.json: -------------------------------------------------------------------------------- 1 | [[18194.0,36388.0,54582.0,72776.0,90970.0,109164.0,127358.0,145552.0,163746.0,181940.0,200134.0,218328.0,236522.0,254716.0,272910.0,291104.0,309298.0,327492.0,345686.0,363880.0,382074.0,400268.0,418462.0,436656.0,454850.0,473044.0,491238.0,509432.0,527626.0,545820.0,564014.0,582208.0,600402.0,618596.0,636790.0,654984.0,673178.0,691372.0,709566.0,727760.0,745954.0,764148.0,782342.0,800536.0,818730.0,836924.0,855118.0,873312.0,891506.0,909700.0,927894.0,946088.0,964282.0,982476.0,1000670.0,1018864.0,1037058.0,1055252.0,1073446.0,1091640.0,1109834.0,1128028.0,1146222.0,1164416.0,1182610.0,1200804.0,1218998.0,1237192.0,1255386.0,1273580.0,1291774.0,1309968.0,1328162.0,1346356.0,1364550.0,1382744.0,1400938.0,1419132.0,1437326.0,1455520.0,1473714.0,1491908.0,1510102.0,1528296.0,1546490.0,1564684.0,1582878.0,1601072.0,1619266.0,1637460.0,1655654.0,1673848.0,1692042.0,1710236.0,1728430.0,1746624.0,1764818.0,1783012.0,1801206.0,1819400.0],[989847.0,2273180.0,2980828.0,5319862.0,4849965.0,6170511.0,6891417.0,8176625.0,9762237.0,9891962.0,11882295.0,11596626.0,13237836.0,14030376.0,15041056.0,15701917.0,16982122.0,17908827.0,18946652.0,19761881.0,20556025.0,21763992.0,22525894.0,23474822.0,24941017.0,31864559.0,27040558.0,27286027.0,28142112.0,29764263.0,30522469.0,31582977.0,32541533.0,33868267.0,34884093.0,36006061.0,36469628.0,37337960.0,38136478.0,39608845.0,40693333.0,41671067.0,42589551.0,43217367.0,44217862.0,44881907.0,46101354.0,46370967.0,48557333.0,49294459.0,50208732.0,50524800.0,52054445.0,52615304.0,54273851.0,55267938.0,56886425.0,57418958.0,56941572.0,59143866.0,59539455.0,60754325.0,61534886.0,62774048.0,63640821.0,63759156.0,66583197.0,66323516.0,67443884.0,68829493.0,71376624.0,69882044.0,71119762.0,71762414.0,73389138.0,73995494.0,75551087.0,77181079.0,76843001.0,78902512.0,82058527.0,81295421.0,81964330.0,84161364.0,88224375.0,84111973.0,84406528.0,87151883.0,86867879.0,88067772.0,89328776.0,93158441.0,90232887.0,91597882.0,93053503.0,93768682.0,94959191.0,95872259.0,97202420.0,98009493.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/1048576/base/sample.json: -------------------------------------------------------------------------------- 1 | [[22922.0,45844.0,68766.0,91688.0,114610.0,137532.0,160454.0,183376.0,206298.0,229220.0,252142.0,275064.0,297986.0,320908.0,343830.0,366752.0,389674.0,412596.0,435518.0,458440.0,481362.0,504284.0,527206.0,550128.0,573050.0,595972.0,618894.0,641816.0,664738.0,687660.0,710582.0,733504.0,756426.0,779348.0,802270.0,825192.0,848114.0,871036.0,893958.0,916880.0,939802.0,962724.0,985646.0,1008568.0,1031490.0,1054412.0,1077334.0,1100256.0,1123178.0,1146100.0,1169022.0,1191944.0,1214866.0,1237788.0,1260710.0,1283632.0,1306554.0,1329476.0,1352398.0,1375320.0,1398242.0,1421164.0,1444086.0,1467008.0,1489930.0,1512852.0,1535774.0,1558696.0,1581618.0,1604540.0,1627462.0,1650384.0,1673306.0,1696228.0,1719150.0,1742072.0,1764994.0,1787916.0,1810838.0,1833760.0,1856682.0,1879604.0,1902526.0,1925448.0,1948370.0,1971292.0,1994214.0,2017136.0,2040058.0,2062980.0,2085902.0,2108824.0,2131746.0,2154668.0,2177590.0,2200512.0,2223434.0,2246356.0,2269278.0,2292200.0],[1003656.0,1916632.0,2942054.0,3852878.0,4816207.0,5760562.0,6859880.0,7957379.0,8692732.0,9775589.0,11361113.0,11737397.0,13047383.0,16202065.0,14521016.0,17573885.0,16552273.0,20032555.0,19631840.0,20905933.0,22421202.0,21467717.0,25916315.0,25186973.0,24398342.0,25308405.0,26537179.0,27262920.0,28171233.0,29702848.0,30426374.0,31295301.0,32105561.0,33809638.0,34056878.0,35960078.0,37239027.0,37707179.0,38516749.0,39116097.0,40386909.0,41428383.0,42137880.0,43181672.0,44004841.0,45163604.0,45705453.0,47079830.0,47857287.0,49509963.0,49967177.0,51537668.0,51853401.0,52858555.0,54936251.0,55720382.0,59475867.0,59248656.0,60312803.0,59811943.0,61892059.0,61514925.0,61512033.0,62663151.0,63726595.0,64440936.0,68905868.0,71931091.0,68364075.0,69739093.0,70538000.0,71038308.0,72198616.0,72878949.0,74123873.0,75261916.0,76336546.0,76961514.0,77877310.0,77891262.0,80085639.0,80540131.0,81478563.0,82068112.0,86948626.0,86781714.0,86538890.0,88141398.0,88561055.0,88684108.0,89011963.0,90453120.0,92618750.0,92084956.0,93092467.0,94554093.0,96088151.0,95626904.0,100017278.0,97978974.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/1048576/new/sample.json: -------------------------------------------------------------------------------- 1 | [[22922.0,45844.0,68766.0,91688.0,114610.0,137532.0,160454.0,183376.0,206298.0,229220.0,252142.0,275064.0,297986.0,320908.0,343830.0,366752.0,389674.0,412596.0,435518.0,458440.0,481362.0,504284.0,527206.0,550128.0,573050.0,595972.0,618894.0,641816.0,664738.0,687660.0,710582.0,733504.0,756426.0,779348.0,802270.0,825192.0,848114.0,871036.0,893958.0,916880.0,939802.0,962724.0,985646.0,1008568.0,1031490.0,1054412.0,1077334.0,1100256.0,1123178.0,1146100.0,1169022.0,1191944.0,1214866.0,1237788.0,1260710.0,1283632.0,1306554.0,1329476.0,1352398.0,1375320.0,1398242.0,1421164.0,1444086.0,1467008.0,1489930.0,1512852.0,1535774.0,1558696.0,1581618.0,1604540.0,1627462.0,1650384.0,1673306.0,1696228.0,1719150.0,1742072.0,1764994.0,1787916.0,1810838.0,1833760.0,1856682.0,1879604.0,1902526.0,1925448.0,1948370.0,1971292.0,1994214.0,2017136.0,2040058.0,2062980.0,2085902.0,2108824.0,2131746.0,2154668.0,2177590.0,2200512.0,2223434.0,2246356.0,2269278.0,2292200.0],[1003656.0,1916632.0,2942054.0,3852878.0,4816207.0,5760562.0,6859880.0,7957379.0,8692732.0,9775589.0,11361113.0,11737397.0,13047383.0,16202065.0,14521016.0,17573885.0,16552273.0,20032555.0,19631840.0,20905933.0,22421202.0,21467717.0,25916315.0,25186973.0,24398342.0,25308405.0,26537179.0,27262920.0,28171233.0,29702848.0,30426374.0,31295301.0,32105561.0,33809638.0,34056878.0,35960078.0,37239027.0,37707179.0,38516749.0,39116097.0,40386909.0,41428383.0,42137880.0,43181672.0,44004841.0,45163604.0,45705453.0,47079830.0,47857287.0,49509963.0,49967177.0,51537668.0,51853401.0,52858555.0,54936251.0,55720382.0,59475867.0,59248656.0,60312803.0,59811943.0,61892059.0,61514925.0,61512033.0,62663151.0,63726595.0,64440936.0,68905868.0,71931091.0,68364075.0,69739093.0,70538000.0,71038308.0,72198616.0,72878949.0,74123873.0,75261916.0,76336546.0,76961514.0,77877310.0,77891262.0,80085639.0,80540131.0,81478563.0,82068112.0,86948626.0,86781714.0,86538890.0,88141398.0,88561055.0,88684108.0,89011963.0,90453120.0,92618750.0,92084956.0,93092467.0,94554093.0,96088151.0,95626904.0,100017278.0,97978974.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/16777216/base/sample.json: -------------------------------------------------------------------------------- 1 | [[22549.0,45098.0,67647.0,90196.0,112745.0,135294.0,157843.0,180392.0,202941.0,225490.0,248039.0,270588.0,293137.0,315686.0,338235.0,360784.0,383333.0,405882.0,428431.0,450980.0,473529.0,496078.0,518627.0,541176.0,563725.0,586274.0,608823.0,631372.0,653921.0,676470.0,699019.0,721568.0,744117.0,766666.0,789215.0,811764.0,834313.0,856862.0,879411.0,901960.0,924509.0,947058.0,969607.0,992156.0,1014705.0,1037254.0,1059803.0,1082352.0,1104901.0,1127450.0,1149999.0,1172548.0,1195097.0,1217646.0,1240195.0,1262744.0,1285293.0,1307842.0,1330391.0,1352940.0,1375489.0,1398038.0,1420587.0,1443136.0,1465685.0,1488234.0,1510783.0,1533332.0,1555881.0,1578430.0,1600979.0,1623528.0,1646077.0,1668626.0,1691175.0,1713724.0,1736273.0,1758822.0,1781371.0,1803920.0,1826469.0,1849018.0,1871567.0,1894116.0,1916665.0,1939214.0,1961763.0,1984312.0,2006861.0,2029410.0,2051959.0,2074508.0,2097057.0,2119606.0,2142155.0,2164704.0,2187253.0,2209802.0,2232351.0,2254900.0],[945225.0,1935480.0,2832198.0,3785825.0,4927233.0,5700902.0,6826791.0,7683476.0,8657564.0,9636220.0,10676742.0,11568325.0,12433573.0,13395451.0,14678552.0,15380522.0,16566093.0,17256196.0,18587998.0,19561162.0,20369918.0,21533931.0,22215273.0,23307655.0,24222884.0,25180033.0,25981263.0,27192214.0,27775552.0,30049550.0,30338396.0,30737319.0,32180867.0,33782120.0,34325500.0,36012405.0,36420250.0,37393155.0,38443508.0,40013556.0,39925183.0,41599043.0,41938907.0,42736057.0,43883868.0,44967583.0,46191904.0,47770614.0,48864445.0,48956988.0,50733470.0,52651683.0,53621964.0,54700846.0,55343490.0,55297037.0,56933376.0,58388721.0,58752618.0,59711704.0,60825729.0,61854940.0,64324621.0,64216916.0,64788312.0,65877260.0,66190106.0,67578507.0,68446326.0,71873309.0,71009314.0,71944366.0,72281312.0,74079202.0,74045193.0,75133259.0,75939275.0,78072902.0,78507409.0,79953246.0,80888785.0,81036924.0,83221937.0,82841254.0,84536331.0,85230262.0,87081547.0,87551586.0,87956442.0,89651117.0,90884061.0,91396294.0,92593465.0,93120188.0,94169550.0,96939222.0,95862852.0,96077914.0,98610006.0,99033958.0]] -------------------------------------------------------------------------------- /benches/criterion/alloc/16777216/new/sample.json: -------------------------------------------------------------------------------- 1 | [[22549.0,45098.0,67647.0,90196.0,112745.0,135294.0,157843.0,180392.0,202941.0,225490.0,248039.0,270588.0,293137.0,315686.0,338235.0,360784.0,383333.0,405882.0,428431.0,450980.0,473529.0,496078.0,518627.0,541176.0,563725.0,586274.0,608823.0,631372.0,653921.0,676470.0,699019.0,721568.0,744117.0,766666.0,789215.0,811764.0,834313.0,856862.0,879411.0,901960.0,924509.0,947058.0,969607.0,992156.0,1014705.0,1037254.0,1059803.0,1082352.0,1104901.0,1127450.0,1149999.0,1172548.0,1195097.0,1217646.0,1240195.0,1262744.0,1285293.0,1307842.0,1330391.0,1352940.0,1375489.0,1398038.0,1420587.0,1443136.0,1465685.0,1488234.0,1510783.0,1533332.0,1555881.0,1578430.0,1600979.0,1623528.0,1646077.0,1668626.0,1691175.0,1713724.0,1736273.0,1758822.0,1781371.0,1803920.0,1826469.0,1849018.0,1871567.0,1894116.0,1916665.0,1939214.0,1961763.0,1984312.0,2006861.0,2029410.0,2051959.0,2074508.0,2097057.0,2119606.0,2142155.0,2164704.0,2187253.0,2209802.0,2232351.0,2254900.0],[945225.0,1935480.0,2832198.0,3785825.0,4927233.0,5700902.0,6826791.0,7683476.0,8657564.0,9636220.0,10676742.0,11568325.0,12433573.0,13395451.0,14678552.0,15380522.0,16566093.0,17256196.0,18587998.0,19561162.0,20369918.0,21533931.0,22215273.0,23307655.0,24222884.0,25180033.0,25981263.0,27192214.0,27775552.0,30049550.0,30338396.0,30737319.0,32180867.0,33782120.0,34325500.0,36012405.0,36420250.0,37393155.0,38443508.0,40013556.0,39925183.0,41599043.0,41938907.0,42736057.0,43883868.0,44967583.0,46191904.0,47770614.0,48864445.0,48956988.0,50733470.0,52651683.0,53621964.0,54700846.0,55343490.0,55297037.0,56933376.0,58388721.0,58752618.0,59711704.0,60825729.0,61854940.0,64324621.0,64216916.0,64788312.0,65877260.0,66190106.0,67578507.0,68446326.0,71873309.0,71009314.0,71944366.0,72281312.0,74079202.0,74045193.0,75133259.0,75939275.0,78072902.0,78507409.0,79953246.0,80888785.0,81036924.0,83221937.0,82841254.0,84536331.0,85230262.0,87081547.0,87551586.0,87956442.0,89651117.0,90884061.0,91396294.0,92593465.0,93120188.0,94169550.0,96939222.0,95862852.0,96077914.0,98610006.0,99033958.0]] -------------------------------------------------------------------------------- /benches/criterion/pulling_from_pool/65536/new/sample.json: -------------------------------------------------------------------------------- 1 | [[38449.0,76898.0,115347.0,153796.0,192245.0,230694.0,269143.0,307592.0,346041.0,384490.0,422939.0,461388.0,499837.0,538286.0,576735.0,615184.0,653633.0,692082.0,730531.0,768980.0,807429.0,845878.0,884327.0,922776.0,961225.0,999674.0,1038123.0,1076572.0,1115021.0,1153470.0,1191919.0,1230368.0,1268817.0,1307266.0,1345715.0,1384164.0,1422613.0,1461062.0,1499511.0,1537960.0,1576409.0,1614858.0,1653307.0,1691756.0,1730205.0,1768654.0,1807103.0,1845552.0,1884001.0,1922450.0,1960899.0,1999348.0,2037797.0,2076246.0,2114695.0,2153144.0,2191593.0,2230042.0,2268491.0,2306940.0,2345389.0,2383838.0,2422287.0,2460736.0,2499185.0,2537634.0,2576083.0,2614532.0,2652981.0,2691430.0,2729879.0,2768328.0,2806777.0,2845226.0,2883675.0,2922124.0,2960573.0,2999022.0,3037471.0,3075920.0,3114369.0,3152818.0,3191267.0,3229716.0,3268165.0,3306614.0,3345063.0,3383512.0,3421961.0,3460410.0,3498859.0,3537308.0,3575757.0,3614206.0,3652655.0,3691104.0,3729553.0,3768002.0,3806451.0,3844900.0],[941545.0,1939550.0,2834329.0,3856063.0,4819108.0,6309985.0,6807717.0,7635974.0,8604127.0,9859809.0,10801263.0,11442484.0,12773026.0,13514135.0,14432766.0,15591369.0,16145389.0,17548185.0,18165867.0,19255241.0,20316207.0,21028513.0,22045520.0,23300659.0,23873484.0,25242851.0,26095773.0,26910426.0,28046099.0,28861988.0,29819664.0,31219698.0,31989676.0,32574403.0,33664907.0,34781327.0,35516308.0,36764635.0,37386345.0,38716015.0,39580386.0,40190812.0,41327315.0,42430619.0,43400507.0,44047941.0,45425817.0,46559988.0,47216261.0,48351418.0,48788797.0,50317695.0,51458396.0,52660301.0,53064147.0,54450730.0,55451140.0,55392981.0,56722111.0,57979589.0,58443657.0,59159632.0,60362759.0,61761010.0,62581785.0,62971123.0,64111955.0,65456520.0,66603151.0,68120759.0,68525167.0,69013137.0,70871362.0,71618597.0,71801119.0,73071182.0,73928874.0,75034557.0,77381742.0,77346456.0,78786925.0,82364256.0,80294158.0,81955087.0,82202001.0,82308603.0,83262755.0,85452526.0,85499040.0,86255864.0,87593729.0,88865079.0,89459290.0,90371308.0,91925600.0,92071143.0,95096596.0,94231931.0,95368148.0,95742189.0]] --------------------------------------------------------------------------------