diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d0b1731c9ae..e1b03fb2b03 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -122,8 +122,12 @@ jobs: args: -p fuel-core-client --no-default-features - command: test args: -p fuel-core-chain-config --no-default-features - - command: test - args: --manifest-path version-compatibility/Cargo.toml --workspace + # Don't split this command; this is a workaround. + # We need to run `cargo check` first to fetch the locked dependencies + # for `fuel-core 0.26.0`(because of the bug with `--offline` + # and `--locked` when we build `fuel-core-wasm-executor 0.26.0`). + - command: check + args: --manifest-path version-compatibility/Cargo.toml --workspace && cargo test --manifest-path version-compatibility/Cargo.toml --workspace - command: build args: -p fuel-core-bin --no-default-features --features production diff --git a/CHANGELOG.md b/CHANGELOG.md index 04b09469ea9..b931ffc5701 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Version 0.27.0] ### Added + +- [#1895](https://github.com/FuelLabs/fuel-core/pull/1895): Added backward and forward compatibility integration tests for forkless upgrades. - [#1898](https://github.com/FuelLabs/fuel-core/pull/1898): Enforce increasing of the `Executor::VERSION` on each release. ### Changed diff --git a/ci_checks.sh b/ci_checks.sh index d2fb5297857..77d5ec59bc9 100755 --- a/ci_checks.sh +++ b/ci_checks.sh @@ -17,6 +17,7 @@ cargo sort -w --check && source .github/workflows/scripts/verify_openssl.sh && cargo clippy -p fuel-core-wasm-executor --target wasm32-unknown-unknown --no-default-features && cargo clippy --all-targets --all-features && +cargo clippy --manifest-path version-compatibility/Cargo.toml --workspace && cargo doc --all-features --workspace --no-deps && cargo make check --locked && FUEL_ALWAYS_USE_WASM=true cargo make check --all-features --locked && diff --git a/crates/fuel-core/src/service.rs b/crates/fuel-core/src/service.rs index 761941766c8..a27ec9843ff 100644 --- a/crates/fuel-core/src/service.rs +++ b/crates/fuel-core/src/service.rs @@ -70,6 +70,12 @@ pub struct FuelService { pub bound_address: SocketAddr, } +impl Drop for FuelService { + fn drop(&mut self) { + self.stop(); + } +} + impl FuelService { /// Creates a `FuelService` instance from service config #[tracing::instrument(skip_all, fields(name = %config.name))] diff --git a/crates/services/importer/src/importer.rs b/crates/services/importer/src/importer.rs index 17056db3b1c..247d1ee139e 100644 --- a/crates/services/importer/src/importer.rs +++ b/crates/services/importer/src/importer.rs @@ -91,6 +91,8 @@ pub enum Error { ExecuteGenesis, #[display(fmt = "The database already contains the data at the height {_0}.")] NotUnique(BlockHeight), + #[display(fmt = "The previous block processing is not finished yet.")] + PreviousBlockProcessingNotFinished, #[from] StorageError(StorageError), UnsupportedConsensusVariant(String), @@ -204,7 +206,18 @@ where // Await until all receivers of the notification process the result. if let Some(channel) = previous_block_result { - let _ = channel.await; + const TIMEOUT: u64 = 20; + let result = + tokio::time::timeout(tokio::time::Duration::from_secs(TIMEOUT), channel) + .await; + + if result.is_err() { + tracing::error!( + "The previous block processing \ + was not finished for {TIMEOUT} seconds." + ); + return Err(Error::PreviousBlockProcessingNotFinished) + } } let mut guard = self .database diff --git a/tests/tests/node_info.rs b/tests/tests/node_info.rs index b5afb7dc911..f84b767e4df 100644 --- a/tests/tests/node_info.rs +++ b/tests/tests/node_info.rs @@ -82,6 +82,7 @@ async fn test_peer_info() { .shared .config .p2p + .as_ref() .unwrap() .keypair .public() diff --git a/version-compatibility/Cargo.toml b/version-compatibility/Cargo.toml index 792fe5d51bf..e562a8ee52e 100644 --- a/version-compatibility/Cargo.toml +++ b/version-compatibility/Cargo.toml @@ -3,6 +3,7 @@ resolver = "2" members = [ # Add new versions here when testing backwards compatibility between fuel-core-client and fuel-core "placeholder", + "forkless-upgrade", ] # exclude previous versions no longer maintained diff --git a/version-compatibility/forkless-upgrade/Cargo.toml b/version-compatibility/forkless-upgrade/Cargo.toml new file mode 100644 index 00000000000..76f81dc2af2 --- /dev/null +++ b/version-compatibility/forkless-upgrade/Cargo.toml @@ -0,0 +1,40 @@ +[package] +edition = "2021" +license = "BUSL-1.1" +name = "forkless-upgrade" +publish = false +version = "0.0.0" +build = "build.rs" + +[dev-dependencies] +anyhow = "1.0" +clap = "4.4" +libp2p = "0.53.2" +hex = "0.4.3" +rand = "0.8" +tempfile = "3.4" +tokio = { version = "1.37.0", features = ["rt-multi-thread"] } + +# Neutral deps +fuel-core-trace = { path = "../../crates/trace" } +fuel-crypto = { version = "0.49.0" } +fuel-tx = { version = "0.49.0", features = ["random"] } + +# Latest fuel-core +latest-fuel-core-bin = { path = "../../bin/fuel-core", package = "fuel-core-bin", features = [ + "parquet", + "p2p", +] } +latest-fuel-core-client = { path = "../../crates/client", package = "fuel-core-client" } +latest-fuel-core-services = { path = "../../crates/services", package = "fuel-core-services" } +latest-fuel-core-upgradable-executor = { path = "../../crates/services/upgradable-executor", package = "fuel-core-upgradable-executor", features = [ + "wasm-executor", +] } + +# Genesis fuel-core +genesis-fuel-core-bin = { version = "0.26.0", package = "fuel-core-bin", features = [ + "parquet", + "p2p", +] } +genesis-fuel-core-client = { version = "0.26.0", package = "fuel-core-client" } +genesis-fuel-core-services = { version = "0.26.0", package = "fuel-core-services" } diff --git a/version-compatibility/forkless-upgrade/README.md b/version-compatibility/forkless-upgrade/README.md new file mode 100644 index 00000000000..7ae89cae816 --- /dev/null +++ b/version-compatibility/forkless-upgrade/README.md @@ -0,0 +1,15 @@ +# Forkless upgrade tests + +This crate tests that state transition functions for all releases of `fuel-core` are backward compatible. + +In addition, we also test that releases are forward-compatible unless we introduce a breaking change in the API. + +## Adding new test + +We need to add a new backward compatibility test for each new release. To add tests, we need to duplicate tests that are using the latest `fuel-core` and replace usage of the latest crate with a new release. + +## Forward compatibility + +If the forward compatibility test fails after your changes, it usually means that the change breaks a WASM API, and the network first must upgrade the binary before performing an upgrade of the network. + +In the case of breaking API, we need to remove old tests(usually, we need to create a new test per each release) and write a new test(only one) to track new forward compatibility. \ No newline at end of file diff --git a/version-compatibility/forkless-upgrade/build.rs b/version-compatibility/forkless-upgrade/build.rs new file mode 100644 index 00000000000..9ee7c331dc5 --- /dev/null +++ b/version-compatibility/forkless-upgrade/build.rs @@ -0,0 +1,58 @@ +use std::{ + env, + path::{ + Path, + PathBuf, + }, + process::Command, +}; + +fn main() { + // It only forces a rerun of the build when `build.rs` is changed. + println!("cargo:rerun-if-changed=build.rs"); + // Because `fuel-core-wasm-executor 0.26.0` is using `--offline` flag, + // we need to download all dependencies before building the WASM executor. + // This is a workaround specifically for `fuel-core 0.26.0`. + // Future version of the `fuel-core` will not use `--offline` flag. + build_fuel_core_26() +} + +fn build_fuel_core_26() { + let cargo = env::var("CARGO").unwrap_or_else(|_| "cargo".to_string()); + let args = vec![ + "install".to_owned(), + "fuel-core-wasm-executor".to_owned(), + "--target=wasm32-unknown-unknown".to_owned(), + "--no-default-features".to_owned(), + "--locked".to_owned(), + "--version".to_owned(), + "0.26.0".to_owned(), + ]; + + let mut cargo = Command::new(cargo); + cargo.current_dir(project_root()).args(args); + + let output = cargo.output(); + + match output { + Ok(output) => { + if !output.status.success() { + panic!( + "Got an error status during compiling WASM executor: \n{:#?}", + output + ); + } + } + Err(err) => { + panic!("\n{:#?}", err); + } + } +} + +fn project_root() -> PathBuf { + Path::new(&env!("CARGO_MANIFEST_DIR")) + .ancestors() + .nth(1) + .unwrap() + .to_path_buf() +} diff --git a/version-compatibility/forkless-upgrade/chain-configurations/ignition/README.md b/version-compatibility/forkless-upgrade/chain-configurations/ignition/README.md new file mode 100644 index 00000000000..bcd2425d66c --- /dev/null +++ b/version-compatibility/forkless-upgrade/chain-configurations/ignition/README.md @@ -0,0 +1,7 @@ +# The configuration of the Ignition network + +This configuration is copy of [this](https://github.com/FuelLabs/chain-configuration/tree/master/ignition) repository. + +With modifications: +- PoA Key: `{"address":"3ba3b213c8d5ec4d4901ac34b0e924d635384a8b0a5df6e116bce9a783da8e02","secret":"e3d6eb39607650e22f0befa26d52e921d2e7924d0e165f38ffa8d9d0ac73de93","type":"block_production"}` +- Privileged Key: `{"address":"f034f7859dbf1d775cba16fc175eef249a045d6484a8b9388c9e280267125b73","secret":"dcbe36d8e890d7489b6e1be442eab98ae2fdbb5c7d77e1f9e1e12a545852304f","type":"block_production"}` \ No newline at end of file diff --git a/version-compatibility/forkless-upgrade/chain-configurations/ignition/benchmarks_fuel_core_0_26_0.json b/version-compatibility/forkless-upgrade/chain-configurations/ignition/benchmarks_fuel_core_0_26_0.json new file mode 100644 index 00000000000..fd0b7eb7954 --- /dev/null +++ b/version-compatibility/forkless-upgrade/chain-configurations/ignition/benchmarks_fuel_core_0_26_0.json @@ -0,0 +1,416 @@ +{"reason":"benchmark-complete","id":"add/add","report_directory":"/root/fuel-core/target/criterion/reports/add/add","iteration_count":[31375,62750,94125,125500,156875,188250,219625,251000,282375,313750,345125,376500,407875,439250,470625,502000,533375,564750,596125,627500,658875,690250,721625,753000,784375,815750,847125,878500,909875,941250,972625,1004000,1035375,1066750,1098125,1129500,1160875,1192250,1223625,1255000,1286375,1317750,1349125,1380500,1411875,1443250,1474625,1506000,1537375,1568750,1600125,1631500,1662875,1694250,1725625,1757000,1788375,1819750,1851125,1882500,1913875,1945250,1976625,2008000,2039375,2070750,2102125,2133500,2164875,2196250,2227625,2259000,2290375,2321750,2353125,2384500,2415875,2447250,2478625,2510000,2541375,2572750,2604125,2635500,2666875,2698250,2729625,2761000,2792375,2823750,2855125,2886500,2917875,2949250,2980625,3012000,3043375,3074750,3106125,3137500],"measured_values":[602949.0,1144457.0,1769564.0,2295491.0,2918715.0,3460824.0,4096092.0,4579969.0,5229519.0,5807779.0,6383509.0,7038970.0,7569335.0,8064114.0,8721644.0,9193421.0,9865367.0,10306664.0,11046146.0,11615404.0,12126225.0,12791865.0,13297737.0,13834183.0,14454881.0,14916323.0,15482789.0,16129305.0,16713132.0,17258854.0,17951826.0,18422464.0,19206460.0,19756869.0,20200421.0,20883743.0,21632353.0,21930060.0,22511135.0,23121804.0,23746406.0,24224803.0,24698205.0,25495998.0,26255619.0,26784998.0,27248302.0,28177055.0,28368129.0,28957708.0,29732005.0,30413086.0,30612357.0,31202796.0,32015661.0,32524300.0,33241073.0,33501878.0,34309187.0,34672668.0,35185220.0,35889645.0,36470877.0,37068590.0,37327980.0,38282532.0,38979943.0,39554963.0,39864293.0,40471245.0,40932978.0,41543100.0,42139883.0,43053273.0,43077564.0,44440305.0,44884260.0,45007170.0,45889967.0,46288266.0,47019716.0,47522840.0,47722050.0,48473175.0,49145714.0,50225890.0,50102690.0,51013481.0,51229668.0,52347304.0,52539240.0,53364649.0,53683653.0,54815754.0,55154120.0,55334719.0,55704646.0,56778219.0,57300611.0,57561777.0],"unit":"ns","throughput":[],"typical":{"estimate":18.45134005083258,"lower_bound":18.428767106587102,"upper_bound":18.474830939202715,"unit":"ns"},"mean":{"estimate":18.46345108099141,"lower_bound":18.43878669471659,"upper_bound":18.49065347117961,"unit":"ns"},"median":{"estimate":18.451700680272108,"lower_bound":18.41841593625498,"upper_bound":18.481864722926478,"unit":"ns"},"median_abs_dev":{"estimate":0.10782377718442877,"lower_bound":0.08633047873978386,"upper_bound":0.13101263132815205,"unit":"ns"},"slope":{"estimate":18.45134005083258,"lower_bound":18.428767106587102,"upper_bound":18.474830939202715,"unit":"ns"},"change":{"mean":{"estimate":0.05162515870938833,"lower_bound":0.049317547315136996,"upper_bound":0.05400597866534652,"unit":"%"},"median":{"estimate":0.050687161226124156,"lower_bound":0.04768442580298449,"upper_bound":0.052667845172019945,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"add","benchmarks":["add/add"],"report_directory":"/root/fuel-core/target/criterion/reports/add"} +{"reason":"benchmark-complete","id":"addi/addi","report_directory":"/root/fuel-core/target/criterion/reports/addi/addi","iteration_count":[31395,62790,94185,125580,156975,188370,219765,251160,282555,313950,345345,376740,408135,439530,470925,502320,533715,565110,596505,627900,659295,690690,722085,753480,784875,816270,847665,879060,910455,941850,973245,1004640,1036035,1067430,1098825,1130220,1161615,1193010,1224405,1255800,1287195,1318590,1349985,1381380,1412775,1444170,1475565,1506960,1538355,1569750,1601145,1632540,1663935,1695330,1726725,1758120,1789515,1820910,1852305,1883700,1915095,1946490,1977885,2009280,2040675,2072070,2103465,2134860,2166255,2197650,2229045,2260440,2291835,2323230,2354625,2386020,2417415,2448810,2480205,2511600,2542995,2574390,2605785,2637180,2668575,2699970,2731365,2762760,2794155,2825550,2856945,2888340,2919735,2951130,2982525,3013920,3045315,3076710,3108105,3139500],"measured_values":[600547.0,1165703.0,1716784.0,2259796.0,2834800.0,3541362.0,4052867.0,4625522.0,5258074.0,5784167.0,6285319.0,6838852.0,7513031.0,7986547.0,8692001.0,9144366.0,9738685.0,10412252.0,10884482.0,11483302.0,12039060.0,12660008.0,13311791.0,13895065.0,14585883.0,14928099.0,15478277.0,16112363.0,16818277.0,17284180.0,17814922.0,18499198.0,18975057.0,19499656.0,20076275.0,20733161.0,21128468.0,21839940.0,22479839.0,23092992.0,23487491.0,24172942.0,24674693.0,25293604.0,26073390.0,26544297.0,26894135.0,27720367.0,28331774.0,28696960.0,29111457.0,29835256.0,30426811.0,31036365.0,31623754.0,32150960.0,32878113.0,33414571.0,33932904.0,34584458.0,34919049.0,35711445.0,36057175.0,36760148.0,37334756.0,37885821.0,38429651.0,39230341.0,39912865.0,40175306.0,40801407.0,41394653.0,41799226.0,42418692.0,43245116.0,43690339.0,44098391.0,44959619.0,45568175.0,46059951.0,46477384.0,47207022.0,47567693.0,48251769.0,48889745.0,49322055.0,50083720.0,50493834.0,51285822.0,51760337.0,52244870.0,52973307.0,53539486.0,54082749.0,54605626.0,55034452.0,55814260.0,56399844.0,57101791.0,57661416.0],"unit":"ns","throughput":[],"typical":{"estimate":18.3162437569712,"lower_bound":18.305077513668145,"upper_bound":18.32723067114815,"unit":"ns"},"mean":{"estimate":18.331931064892093,"lower_bound":18.307939165825136,"upper_bound":18.358991404066867,"unit":"ns"},"median":{"estimate":18.314685025119807,"lower_bound":18.296729461015175,"upper_bound":18.333867730110427,"unit":"ns"},"median_abs_dev":{"estimate":0.06959675075244236,"lower_bound":0.054773436976434386,"upper_bound":0.09119589851945481,"unit":"ns"},"slope":{"estimate":18.3162437569712,"lower_bound":18.305077513668145,"upper_bound":18.32723067114815,"unit":"ns"},"change":{"mean":{"estimate":0.04378534929742739,"lower_bound":0.040827858322540767,"upper_bound":0.04618820796859561,"unit":"%"},"median":{"estimate":0.04384612024304868,"lower_bound":0.04272560374758849,"upper_bound":0.04527075532822278,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"addi","benchmarks":["addi/addi"],"report_directory":"/root/fuel-core/target/criterion/reports/addi"} +{"reason":"benchmark-complete","id":"aloc/aloc","report_directory":"/root/fuel-core/target/criterion/reports/aloc/aloc","iteration_count":[31860,63720,95580,127440,159300,191160,223020,254880,286740,318600,350460,382320,414180,446040,477900,509760,541620,573480,605340,637200,669060,700920,732780,764640,796500,828360,860220,892080,923940,955800,987660,1019520,1051380,1083240,1115100,1146960,1178820,1210680,1242540,1274400,1306260,1338120,1369980,1401840,1433700,1465560,1497420,1529280,1561140,1593000,1624860,1656720,1688580,1720440,1752300,1784160,1816020,1847880,1879740,1911600,1943460,1975320,2007180,2039040,2070900,2102760,2134620,2166480,2198340,2230200,2262060,2293920,2325780,2357640,2389500,2421360,2453220,2485080,2516940,2548800,2580660,2612520,2644380,2676240,2708100,2739960,2771820,2803680,2835540,2867400,2899260,2931120,2962980,2994840,3026700,3058560,3090420,3122280,3154140,3186000],"measured_values":[629495.0,1121481.0,1684798.0,2244676.0,2930997.0,3430926.0,3926738.0,4497998.0,5097117.0,5623166.0,6152012.0,6730384.0,7294094.0,7866531.0,8426963.0,9017794.0,9546998.0,10099059.0,10700644.0,11259439.0,11816985.0,12428696.0,12798308.0,13419079.0,14205384.0,14769480.0,15114557.0,15961528.0,16388590.0,17096209.0,17962901.0,18116525.0,18460264.0,19349203.0,19713845.0,20359655.0,20784293.0,21496224.0,22215197.0,22956487.0,23178830.0,23586284.0,24051938.0,24678476.0,25287079.0,25829486.0,26429818.0,26774087.0,27657960.0,28139878.0,28735374.0,29233467.0,29872494.0,30345745.0,30930867.0,31332647.0,32171317.0,32590393.0,33299341.0,33947322.0,34378326.0,34896775.0,35798508.0,35990494.0,36620283.0,37129446.0,38153045.0,38240484.0,38845840.0,39283985.0,39980902.0,40504456.0,41515827.0,42788500.0,42470069.0,42620603.0,43759056.0,44211321.0,44449308.0,44963411.0,45612971.0,46093839.0,46746910.0,47432352.0,47945776.0,48337357.0,49464431.0,49491440.0,50304801.0,51483868.0,51863138.0,51722028.0,52363685.0,53007635.0,53587816.0,54249934.0,54779502.0,55247216.0,55814628.0,57462820.0],"unit":"ns","throughput":[],"typical":{"estimate":17.72818944360074,"lower_bound":17.698781115512887,"upper_bound":17.76085407344161,"unit":"ns"},"mean":{"estimate":17.736056967481726,"lower_bound":17.69493760836213,"upper_bound":17.791716478776472,"unit":"ns"},"median":{"estimate":17.67600264028745,"lower_bound":17.657481595617188,"upper_bound":17.697082747632052,"unit":"ns"},"median_abs_dev":{"estimate":0.07507393004922791,"lower_bound":0.05474760228899103,"upper_bound":0.10476901255637769,"unit":"ns"},"slope":{"estimate":17.72818944360074,"lower_bound":17.698781115512887,"upper_bound":17.76085407344161,"unit":"ns"},"change":{"mean":{"estimate":0.0072293213303527,"lower_bound":0.0037032261878221172,"upper_bound":0.011265472578894731,"unit":"%"},"median":{"estimate":0.004494384899966342,"lower_bound":0.0033609199692448133,"upper_bound":0.006086984507703175,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"aloc","benchmarks":["aloc/aloc"],"report_directory":"/root/fuel-core/target/criterion/reports/aloc"} +{"reason":"benchmark-complete","id":"and/and","report_directory":"/root/fuel-core/target/criterion/reports/and/and","iteration_count":[33753,67506,101259,135012,168765,202518,236271,270024,303777,337530,371283,405036,438789,472542,506295,540048,573801,607554,641307,675060,708813,742566,776319,810072,843825,877578,911331,945084,978837,1012590,1046343,1080096,1113849,1147602,1181355,1215108,1248861,1282614,1316367,1350120,1383873,1417626,1451379,1485132,1518885,1552638,1586391,1620144,1653897,1687650,1721403,1755156,1788909,1822662,1856415,1890168,1923921,1957674,1991427,2025180,2058933,2092686,2126439,2160192,2193945,2227698,2261451,2295204,2328957,2362710,2396463,2430216,2463969,2497722,2531475,2565228,2598981,2632734,2666487,2700240,2733993,2767746,2801499,2835252,2869005,2902758,2936511,2970264,3004017,3037770,3071523,3105276,3139029,3172782,3206535,3240288,3274041,3307794,3341547,3375300],"measured_values":[606388.0,1147607.0,1722976.0,2296800.0,2869050.0,3444329.0,4016777.0,4618331.0,5168294.0,5762118.0,6358658.0,6897325.0,7477002.0,8048770.0,8621788.0,9195809.0,9839957.0,10336941.0,10921410.0,11490454.0,12023149.0,12587225.0,13262344.0,13811664.0,14377033.0,14964690.0,15563641.0,16049137.0,16689297.0,17307525.0,17855449.0,18398842.0,18984465.0,19561151.0,20120231.0,20610940.0,21257365.0,21836246.0,22447835.0,22936620.0,23594408.0,24137500.0,24737669.0,25299863.0,25934185.0,26469560.0,26888660.0,27507262.0,28186769.0,28909422.0,29434900.0,29900416.0,30519814.0,30938431.0,31577016.0,32063125.0,32691599.0,33364855.0,33969862.0,34524745.0,35096858.0,35653046.0,36182967.0,36746806.0,37343381.0,38054979.0,38321652.0,38783473.0,39393230.0,40099175.0,40697043.0,41303953.0,41884388.0,42523280.0,42958467.0,43606137.0,44278186.0,44846761.0,45290312.0,45919119.0,46449667.0,47153445.0,47718434.0,48290157.0,48860167.0,49359664.0,49708667.0,50626926.0,51212999.0,51639594.0,52208225.0,52917827.0,53788076.0,54052135.0,54282131.0,55055227.0,55795697.0,56226251.0,56830914.0,57530273.0],"unit":"ns","throughput":[],"typical":{"estimate":17.01542806309439,"lower_bound":17.00382084677879,"upper_bound":17.027162674917836,"unit":"ns"},"mean":{"estimate":17.033031728632547,"lower_bound":17.01691754034145,"upper_bound":17.056503352664112,"unit":"ns"},"median":{"estimate":17.029551733153284,"lower_bound":17.01575591869788,"upper_bound":17.03581310001472,"unit":"ns"},"median_abs_dev":{"estimate":0.03328116148766574,"lower_bound":0.025049459079385796,"upper_bound":0.045440155694427865,"unit":"ns"},"slope":{"estimate":17.01542806309439,"lower_bound":17.00382084677879,"upper_bound":17.027162674917836,"unit":"ns"},"change":{"mean":{"estimate":-0.019612263113202966,"lower_bound":-0.021578433092527858,"upper_bound":-0.017673836255243477,"unit":"%"},"median":{"estimate":-0.01774854409190596,"lower_bound":-0.019349252435834963,"upper_bound":-0.016241400748418844,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"and","benchmarks":["and/and"],"report_directory":"/root/fuel-core/target/criterion/reports/and"} +{"reason":"benchmark-complete","id":"andi/andi","report_directory":"/root/fuel-core/target/criterion/reports/andi/andi","iteration_count":[33509,67018,100527,134036,167545,201054,234563,268072,301581,335090,368599,402108,435617,469126,502635,536144,569653,603162,636671,670180,703689,737198,770707,804216,837725,871234,904743,938252,971761,1005270,1038779,1072288,1105797,1139306,1172815,1206324,1239833,1273342,1306851,1340360,1373869,1407378,1440887,1474396,1507905,1541414,1574923,1608432,1641941,1675450,1708959,1742468,1775977,1809486,1842995,1876504,1910013,1943522,1977031,2010540,2044049,2077558,2111067,2144576,2178085,2211594,2245103,2278612,2312121,2345630,2379139,2412648,2446157,2479666,2513175,2546684,2580193,2613702,2647211,2680720,2714229,2747738,2781247,2814756,2848265,2881774,2915283,2948792,2982301,3015810,3049319,3082828,3116337,3149846,3183355,3216864,3250373,3283882,3317391,3350900],"measured_values":[603049.0,1170486.0,1729067.0,2283745.0,2938527.0,3461607.0,4038618.0,4658754.0,5270417.0,5817778.0,6346115.0,7014246.0,7572096.0,8071759.0,8745215.0,9271244.0,9893688.0,10382120.0,11047484.0,11688461.0,12345071.0,12867918.0,13423419.0,13927971.0,14484502.0,15172377.0,15581195.0,16375991.0,16947379.0,17476711.0,18064371.0,18505259.0,19343443.0,19754837.0,20402034.0,20885969.0,21487795.0,22111750.0,22803904.0,23319576.0,23910475.0,24702196.0,24828649.0,25740913.0,26078734.0,26831825.0,27368902.0,27936059.0,28607920.0,29120932.0,29648550.0,30218393.0,30918505.0,31415487.0,31893164.0,32744530.0,33121947.0,33885816.0,34682981.0,34754008.0,35625009.0,36142510.0,36496115.0,37497624.0,37826525.0,38467544.0,38907433.0,39551814.0,40078218.0,40815166.0,41295945.0,41866403.0,42424301.0,43205961.0,43717496.0,44684807.0,44834172.0,45531283.0,45893047.0,46613842.0,47116662.0,47509003.0,48443238.0,49140732.0,49804693.0,50011570.0,50679192.0,51290732.0,51698265.0,52212641.0,53129754.0,53309640.0,54099419.0,54411714.0,55221348.0,55875490.0,56572827.0,57194262.0,57599261.0,58027199.0],"unit":"ns","throughput":[],"typical":{"estimate":17.376132129473447,"lower_bound":17.361534697020574,"upper_bound":17.391402668512953,"unit":"ns"},"mean":{"estimate":17.37678889259282,"lower_bound":17.356954882383143,"upper_bound":17.398259408796463,"unit":"ns"},"median":{"estimate":17.37710820758246,"lower_bound":17.359938607409916,"upper_bound":17.39445406344926,"unit":"ns"},"median_abs_dev":{"estimate":0.06601511011163494,"lower_bound":0.05061323319782902,"upper_bound":0.09042528391138413,"unit":"ns"},"slope":{"estimate":17.376132129473447,"lower_bound":17.361534697020574,"upper_bound":17.391402668512953,"unit":"ns"},"change":{"mean":{"estimate":0.019693750946953026,"lower_bound":0.01624259725593617,"upper_bound":0.022839581874647217,"unit":"%"},"median":{"estimate":0.019781137044584396,"lower_bound":0.01612283675748527,"upper_bound":0.02300651002242241,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"andi","benchmarks":["andi/andi"],"report_directory":"/root/fuel-core/target/criterion/reports/andi"} +{"reason":"benchmark-complete","id":"div/div","report_directory":"/root/fuel-core/target/criterion/reports/div/div","iteration_count":[28851,57702,86553,115404,144255,173106,201957,230808,259659,288510,317361,346212,375063,403914,432765,461616,490467,519318,548169,577020,605871,634722,663573,692424,721275,750126,778977,807828,836679,865530,894381,923232,952083,980934,1009785,1038636,1067487,1096338,1125189,1154040,1182891,1211742,1240593,1269444,1298295,1327146,1355997,1384848,1413699,1442550,1471401,1500252,1529103,1557954,1586805,1615656,1644507,1673358,1702209,1731060,1759911,1788762,1817613,1846464,1875315,1904166,1933017,1961868,1990719,2019570,2048421,2077272,2106123,2134974,2163825,2192676,2221527,2250378,2279229,2308080,2336931,2365782,2394633,2423484,2452335,2481186,2510037,2538888,2567739,2596590,2625441,2654292,2683143,2711994,2740845,2769696,2798547,2827398,2856249,2885100],"measured_values":[624855.0,1200118.0,1800319.0,2367919.0,2977941.0,3601995.0,4186031.0,4767017.0,5382100.0,5952511.0,6614076.0,7111799.0,7713587.0,8397445.0,9016353.0,9575765.0,10112598.0,10709599.0,11352676.0,11945578.0,12490032.0,13144575.0,13678064.0,14352806.0,14879372.0,15535446.0,16082585.0,16646511.0,17330644.0,17839764.0,18437474.0,19090298.0,19597253.0,20174495.0,20756862.0,21511319.0,22085781.0,22657851.0,23204922.0,23876466.0,24430483.0,25067390.0,25597927.0,26274399.0,26767246.0,27360269.0,27993469.0,28640510.0,29188841.0,29789855.0,30431564.0,30968620.0,31551181.0,32196403.0,32790388.0,33371742.0,33949996.0,34670126.0,35124843.0,35881382.0,36313124.0,37019563.0,37911035.0,38196875.0,38725280.0,39267757.0,39908699.0,40556474.0,41126394.0,41694062.0,42283960.0,43014712.0,43458642.0,44198510.0,44648479.0,45224905.0,45782268.0,46358397.0,47101198.0,47612099.0,48579285.0,49003890.0,49400988.0,50043062.0,50631296.0,51403549.0,51787975.0,52427023.0,53122759.0,53600124.0,54356734.0,54691001.0,55406684.0,56022834.0,56574253.0,57105917.0,57767778.0,58416175.0,59018637.0,59405485.0],"unit":"ns","throughput":[],"typical":{"estimate":20.657282767490578,"lower_bound":20.64685705180609,"upper_bound":20.668856191576918,"unit":"ns"},"mean":{"estimate":20.675001553767515,"lower_bound":20.655968110546752,"upper_bound":20.701110129492427,"unit":"ns"},"median":{"estimate":20.649965931171593,"lower_bound":20.64419685294289,"upper_bound":20.664409300449645,"unit":"ns"},"median_abs_dev":{"estimate":0.048038799419807876,"lower_bound":0.03240632402529763,"upper_bound":0.06154518181555837,"unit":"ns"},"slope":{"estimate":20.657282767490578,"lower_bound":20.64685705180609,"upper_bound":20.668856191576918,"unit":"ns"},"change":{"mean":{"estimate":0.0365213908555877,"lower_bound":0.03371722036538732,"upper_bound":0.0389493510633385,"unit":"%"},"median":{"estimate":0.0364735673654597,"lower_bound":0.03378977581030762,"upper_bound":0.03850537342940874,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"div","benchmarks":["div/div"],"report_directory":"/root/fuel-core/target/criterion/reports/div"} +{"reason":"benchmark-complete","id":"divi/divi","report_directory":"/root/fuel-core/target/criterion/reports/divi/divi","iteration_count":[29095,58190,87285,116380,145475,174570,203665,232760,261855,290950,320045,349140,378235,407330,436425,465520,494615,523710,552805,581900,610995,640090,669185,698280,727375,756470,785565,814660,843755,872850,901945,931040,960135,989230,1018325,1047420,1076515,1105610,1134705,1163800,1192895,1221990,1251085,1280180,1309275,1338370,1367465,1396560,1425655,1454750,1483845,1512940,1542035,1571130,1600225,1629320,1658415,1687510,1716605,1745700,1774795,1803890,1832985,1862080,1891175,1920270,1949365,1978460,2007555,2036650,2065745,2094840,2123935,2153030,2182125,2211220,2240315,2269410,2298505,2327600,2356695,2385790,2414885,2443980,2473075,2502170,2531265,2560360,2589455,2618550,2647645,2676740,2705835,2734930,2764025,2793120,2822215,2851310,2880405,2909500],"measured_values":[622226.0,1184453.0,1747047.0,2298148.0,2939374.0,3516024.0,4087850.0,4645776.0,5304989.0,5810922.0,6410056.0,7031948.0,7661732.0,8272988.0,8793119.0,9281032.0,10022410.0,10578275.0,11242863.0,11773657.0,12340229.0,12914442.0,13571645.0,14154771.0,14698582.0,15098592.0,15867703.0,16478520.0,16821399.0,17564031.0,18272527.0,18763661.0,19337816.0,20233215.0,20693607.0,21128302.0,21828565.0,22340528.0,22987178.0,23615142.0,23958848.0,24637904.0,25126116.0,26104585.0,26518938.0,26944047.0,27571074.0,28079485.0,29167860.0,29419688.0,30350785.0,30532078.0,30987092.0,31779638.0,32472730.0,32609289.0,33752765.0,34150000.0,35038011.0,35175378.0,35678742.0,36569491.0,37021281.0,37581204.0,38135480.0,38520779.0,39607572.0,40430446.0,40710721.0,41024591.0,41727551.0,42307868.0,42821821.0,43703067.0,43979489.0,44853853.0,45090633.0,45682313.0,46062962.0,47332509.0,47998103.0,48102032.0,48788496.0,49100087.0,49978237.0,50818702.0,51228773.0,51764547.0,51890952.0,53181768.0,53195161.0,53767349.0,54748418.0,55036404.0,55811268.0,56143258.0,56705115.0,57734802.0,58047432.0,58442828.0],"unit":"ns","throughput":[],"typical":{"estimate":20.19344064613272,"lower_bound":20.169433567294497,"upper_bound":20.219109133861213,"unit":"ns"},"mean":{"estimate":20.201863646672273,"lower_bound":20.17096206148717,"upper_bound":20.2375857105455,"unit":"ns"},"median":{"estimate":20.19710144927536,"lower_bound":20.162033718613923,"upper_bound":20.21768306019466,"unit":"ns"},"median_abs_dev":{"estimate":0.10992552657566883,"lower_bound":0.08588249209739698,"upper_bound":0.14050554927689218,"unit":"ns"},"slope":{"estimate":20.19344064613272,"lower_bound":20.169433567294497,"upper_bound":20.219109133861213,"unit":"ns"},"change":{"mean":{"estimate":-0.0011691266683815371,"lower_bound":-0.002674244896944586,"upper_bound":0.0008059747022465808,"unit":"%"},"median":{"estimate":-0.0011466994503024353,"lower_bound":-0.003045033636146041,"upper_bound":0.00009006633715302748,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"divi","benchmarks":["divi/divi"],"report_directory":"/root/fuel-core/target/criterion/reports/divi"} +{"reason":"benchmark-complete","id":"eq/eq","report_directory":"/root/fuel-core/target/criterion/reports/eq/eq","iteration_count":[33187,66374,99561,132748,165935,199122,232309,265496,298683,331870,365057,398244,431431,464618,497805,530992,564179,597366,630553,663740,696927,730114,763301,796488,829675,862862,896049,929236,962423,995610,1028797,1061984,1095171,1128358,1161545,1194732,1227919,1261106,1294293,1327480,1360667,1393854,1427041,1460228,1493415,1526602,1559789,1592976,1626163,1659350,1692537,1725724,1758911,1792098,1825285,1858472,1891659,1924846,1958033,1991220,2024407,2057594,2090781,2123968,2157155,2190342,2223529,2256716,2289903,2323090,2356277,2389464,2422651,2455838,2489025,2522212,2555399,2588586,2621773,2654960,2688147,2721334,2754521,2787708,2820895,2854082,2887269,2920456,2953643,2986830,3020017,3053204,3086391,3119578,3152765,3185952,3219139,3252326,3285513,3318700],"measured_values":[615714.0,1188124.0,1758843.0,2435128.0,2956741.0,3553445.0,4110724.0,4718706.0,5295063.0,5842336.0,6462232.0,7013535.0,7595889.0,8255489.0,8811090.0,9405596.0,9968353.0,10574454.0,11128911.0,11687809.0,12325433.0,12876014.0,13545850.0,14092693.0,14755679.0,15213492.0,16030147.0,16426643.0,17102144.0,17596153.0,18190447.0,18790353.0,19428748.0,19992042.0,20658883.0,21256673.0,21749840.0,22324089.0,22994590.0,23580807.0,24132604.0,24797486.0,25240653.0,25960501.0,26534941.0,27073195.0,27505263.0,28166596.0,28849923.0,29329194.0,30119343.0,30593054.0,31154079.0,31744984.0,32363964.0,32933620.0,33366798.0,34116563.0,34730474.0,35238839.0,35748212.0,36417677.0,37140708.0,37724428.0,38365941.0,38929100.0,39422298.0,40144257.0,40424368.0,41085906.0,41674658.0,42234594.0,42847904.0,43788174.0,44106053.0,44569661.0,45213101.0,45907434.0,46613642.0,47008620.0,47700165.0,48209198.0,48921800.0,49439348.0,49999248.0,50787757.0,51142261.0,51818646.0,52443849.0,52799602.0,53502721.0,54175721.0,54757861.0,55123314.0,55712474.0,56309233.0,56958215.0,58079331.0,58280645.0,58874421.0],"unit":"ns","throughput":[],"typical":{"estimate":17.72625317014013,"lower_bound":17.71430854934447,"upper_bound":17.73911792891534,"unit":"ns"},"mean":{"estimate":17.73719873177364,"lower_bound":17.716946758341575,"upper_bound":17.7627542756361,"unit":"ns"},"median":{"estimate":17.72050899161605,"lower_bound":17.705961671738933,"upper_bound":17.73521173524003,"unit":"ns"},"median_abs_dev":{"estimate":0.058761302338242685,"lower_bound":0.041482590103990066,"upper_bound":0.06873709779831028,"unit":"ns"},"slope":{"estimate":17.72625317014013,"lower_bound":17.71430854934447,"upper_bound":17.73911792891534,"unit":"ns"},"change":{"mean":{"estimate":0.004971282062500748,"lower_bound":0.0023779913296467004,"upper_bound":0.007529704639607564,"unit":"%"},"median":{"estimate":0.006167984188429676,"lower_bound":0.005081283255536695,"upper_bound":0.007042441059015303,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"eq","benchmarks":["eq/eq"],"report_directory":"/root/fuel-core/target/criterion/reports/eq"} +{"reason":"benchmark-complete","id":"exp/exp","report_directory":"/root/fuel-core/target/criterion/reports/exp/exp","iteration_count":[27089,54178,81267,108356,135445,162534,189623,216712,243801,270890,297979,325068,352157,379246,406335,433424,460513,487602,514691,541780,568869,595958,623047,650136,677225,704314,731403,758492,785581,812670,839759,866848,893937,921026,948115,975204,1002293,1029382,1056471,1083560,1110649,1137738,1164827,1191916,1219005,1246094,1273183,1300272,1327361,1354450,1381539,1408628,1435717,1462806,1489895,1516984,1544073,1571162,1598251,1625340,1652429,1679518,1706607,1733696,1760785,1787874,1814963,1842052,1869141,1896230,1923319,1950408,1977497,2004586,2031675,2058764,2085853,2112942,2140031,2167120,2194209,2221298,2248387,2275476,2302565,2329654,2356743,2383832,2410921,2438010,2465099,2492188,2519277,2546366,2573455,2600544,2627633,2654722,2681811,2708900],"measured_values":[673057.0,1259659.0,1892258.0,2486889.0,3122056.0,3773266.0,4427741.0,4977788.0,5710927.0,6288428.0,6893888.0,7505501.0,8105506.0,8844934.0,9399093.0,9935687.0,10664484.0,11260909.0,11913351.0,12475615.0,13143466.0,13767023.0,14448264.0,15079585.0,15558205.0,16263371.0,16943189.0,17473708.0,18124662.0,18721992.0,19424814.0,20134668.0,20718083.0,21452858.0,21980699.0,22667219.0,23248203.0,23783308.0,24390418.0,24980408.0,25729270.0,26335549.0,26999717.0,27594645.0,28211676.0,28859972.0,29307321.0,30183336.0,30797921.0,31344452.0,32036827.0,32771748.0,33254900.0,33780284.0,34368991.0,35176263.0,35801451.0,36376297.0,37069079.0,37653889.0,38319068.0,38831109.0,39478558.0,40148517.0,40627730.0,41284622.0,41884174.0,42616488.0,43223772.0,43713465.0,44438219.0,45322655.0,45814525.0,46331132.0,47137950.0,47760623.0,48202397.0,48759243.0,49531454.0,50250525.0,50982229.0,51487429.0,52228109.0,52912917.0,53396327.0,54023785.0,54607047.0,55264911.0,56084232.0,56227139.0,57149247.0,57558621.0,58119278.0,58976717.0,59520728.0,60211203.0,60816971.0,61524990.0,61971538.0,62975350.0],"unit":"ns","throughput":[],"typical":{"estimate":23.155564547280438,"lower_bound":23.14068492077284,"upper_bound":23.17038648779601,"unit":"ns"},"mean":{"estimate":23.165716314579992,"lower_bound":23.136456053519723,"upper_bound":23.2079155385492,"unit":"ns"},"median":{"estimate":23.155535630237367,"lower_bound":23.135482701801134,"upper_bound":23.171808728356076,"unit":"ns"},"median_abs_dev":{"estimate":0.06988751242072758,"lower_bound":0.049190801033983864,"upper_bound":0.09117720793516912,"unit":"ns"},"slope":{"estimate":23.155564547280438,"lower_bound":23.14068492077284,"upper_bound":23.17038648779601,"unit":"ns"},"change":{"mean":{"estimate":0.012581518369417122,"lower_bound":0.008640957601740674,"upper_bound":0.01557242330064003,"unit":"%"},"median":{"estimate":0.012797277741754431,"lower_bound":0.011833217353179437,"upper_bound":0.014457754993149052,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"exp","benchmarks":["exp/exp"],"report_directory":"/root/fuel-core/target/criterion/reports/exp"} +{"reason":"benchmark-complete","id":"expi/expi","report_directory":"/root/fuel-core/target/criterion/reports/expi/expi","iteration_count":[31339,62678,94017,125356,156695,188034,219373,250712,282051,313390,344729,376068,407407,438746,470085,501424,532763,564102,595441,626780,658119,689458,720797,752136,783475,814814,846153,877492,908831,940170,971509,1002848,1034187,1065526,1096865,1128204,1159543,1190882,1222221,1253560,1284899,1316238,1347577,1378916,1410255,1441594,1472933,1504272,1535611,1566950,1598289,1629628,1660967,1692306,1723645,1754984,1786323,1817662,1849001,1880340,1911679,1943018,1974357,2005696,2037035,2068374,2099713,2131052,2162391,2193730,2225069,2256408,2287747,2319086,2350425,2381764,2413103,2444442,2475781,2507120,2538459,2569798,2601137,2632476,2663815,2695154,2726493,2757832,2789171,2820510,2851849,2883188,2914527,2945866,2977205,3008544,3039883,3071222,3102561,3133900],"measured_values":[588599.0,1156097.0,1711306.0,2352052.0,2853627.0,3460890.0,4013107.0,4565923.0,5144197.0,5699842.0,6411364.0,6922144.0,7426879.0,7986620.0,8559970.0,9130787.0,9718735.0,10359220.0,10952679.0,11413535.0,12020170.0,12663874.0,13271930.0,13889695.0,14390950.0,14940643.0,15572983.0,16124087.0,16585778.0,17291916.0,17908266.0,18455491.0,18981552.0,19774956.0,20104801.0,20761230.0,21280801.0,21745993.0,22341976.0,23027084.0,23571493.0,24214961.0,24737594.0,25344379.0,25977696.0,26436047.0,27012857.0,27574831.0,28369606.0,28785039.0,29411690.0,30015733.0,30715742.0,31243930.0,31594787.0,32210750.0,32693605.0,33442451.0,33814390.0,34650092.0,35046212.0,35771738.0,36305123.0,37008183.0,37238709.0,37883905.0,38472605.0,39202722.0,39722683.0,40089507.0,40915408.0,41529446.0,42112572.0,42773653.0,43244712.0,43798745.0,44239868.0,44880322.0,45337700.0,45834124.0,46520478.0,46932061.0,47861332.0,48246218.0,48796808.0,49696109.0,50058403.0,50492884.0,51251287.0,52036580.0,52381728.0,52914544.0,53682946.0,54178646.0,54594093.0,55117751.0,56063663.0,56312427.0,56605121.0,57858874.0],"unit":"ns","throughput":[],"typical":{"estimate":18.365243585741727,"lower_bound":18.349603513025478,"upper_bound":18.38083659151289,"unit":"ns"},"mean":{"estimate":18.363226523788644,"lower_bound":18.344688942135722,"upper_bound":18.383123738504423,"unit":"ns"},"median":{"estimate":18.36586372950009,"lower_bound":18.33950152518818,"upper_bound":18.388327440275493,"unit":"ns"},"median_abs_dev":{"estimate":0.06494342941694436,"lower_bound":0.05431833052983338,"upper_bound":0.09193784861716425,"unit":"ns"},"slope":{"estimate":18.365243585741727,"lower_bound":18.349603513025478,"upper_bound":18.38083659151289,"unit":"ns"},"change":{"mean":{"estimate":-0.008868551144713632,"lower_bound":-0.0107523351190403,"upper_bound":-0.007053997639632866,"unit":"%"},"median":{"estimate":-0.00743504406340223,"lower_bound":-0.009004096486350588,"upper_bound":-0.006080599943179443,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"expi","benchmarks":["expi/expi"],"report_directory":"/root/fuel-core/target/criterion/reports/expi"} +{"reason":"benchmark-complete","id":"gt/gt","report_directory":"/root/fuel-core/target/criterion/reports/gt/gt","iteration_count":[31403,62806,94209,125612,157015,188418,219821,251224,282627,314030,345433,376836,408239,439642,471045,502448,533851,565254,596657,628060,659463,690866,722269,753672,785075,816478,847881,879284,910687,942090,973493,1004896,1036299,1067702,1099105,1130508,1161911,1193314,1224717,1256120,1287523,1318926,1350329,1381732,1413135,1444538,1475941,1507344,1538747,1570150,1601553,1632956,1664359,1695762,1727165,1758568,1789971,1821374,1852777,1884180,1915583,1946986,1978389,2009792,2041195,2072598,2104001,2135404,2166807,2198210,2229613,2261016,2292419,2323822,2355225,2386628,2418031,2449434,2480837,2512240,2543643,2575046,2606449,2637852,2669255,2700658,2732061,2763464,2794867,2826270,2857673,2889076,2920479,2951882,2983285,3014688,3046091,3077494,3108897,3140300],"measured_values":[577481.0,1162004.0,1732240.0,2316189.0,2858590.0,3511802.0,4069408.0,4582114.0,5162518.0,5810566.0,6474206.0,7008053.0,7530619.0,8011736.0,8711594.0,9301177.0,9850716.0,10334654.0,10986239.0,11566063.0,12080541.0,12773182.0,13384876.0,14019894.0,14481316.0,15103008.0,15681396.0,16112436.0,16765678.0,17184794.0,17878525.0,18757059.0,19158211.0,19582595.0,20323579.0,20753956.0,21324046.0,21734515.0,22486077.0,23163845.0,23777272.0,24216899.0,24844378.0,25259078.0,25983820.0,26771749.0,27303557.0,27596119.0,28330489.0,28917844.0,29271262.0,29863531.0,30612715.0,31320679.0,31674218.0,32580297.0,33000351.0,33668216.0,34209050.0,34773810.0,35374449.0,35942757.0,36555894.0,36911149.0,37642912.0,38181926.0,38795346.0,39302230.0,40143226.0,40514834.0,41022454.0,41883945.0,42276830.0,42956216.0,43198641.0,44013874.0,44638131.0,44993325.0,45453596.0,46329113.0,46616260.0,47515104.0,47991930.0,48528004.0,49277123.0,49811337.0,50308097.0,50845912.0,51255901.0,51998739.0,52599912.0,52852787.0,53692025.0,54263829.0,55011671.0,55470360.0,56213637.0,56608309.0,57059715.0,57646677.0],"unit":"ns","throughput":[],"typical":{"estimate":18.409330566848684,"lower_bound":18.395463725168316,"upper_bound":18.42325017245344,"unit":"ns"},"mean":{"estimate":18.418639806629486,"lower_bound":18.40053256278153,"upper_bound":18.43696708088459,"unit":"ns"},"median":{"estimate":18.416393815877463,"lower_bound":18.399339379850797,"upper_bound":18.441605040184793,"unit":"ns"},"median_abs_dev":{"estimate":0.08072648365139795,"lower_bound":0.0600794628582221,"upper_bound":0.1033729454725335,"unit":"ns"},"slope":{"estimate":18.409330566848684,"lower_bound":18.395463725168316,"upper_bound":18.42325017245344,"unit":"ns"},"change":{"mean":{"estimate":0.011319415932200538,"lower_bound":0.008941397057781237,"upper_bound":0.013162105908254429,"unit":"%"},"median":{"estimate":0.011953331014352697,"lower_bound":0.010970904394180137,"upper_bound":0.013737038162708881,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"gt","benchmarks":["gt/gt"],"report_directory":"/root/fuel-core/target/criterion/reports/gt"} +{"reason":"benchmark-complete","id":"gtf/gtf","report_directory":"/root/fuel-core/target/criterion/reports/gtf/gtf","iteration_count":[5674,11348,17022,22696,28370,34044,39718,45392,51066,56740,62414,68088,73762,79436,85110,90784,96458,102132,107806,113480,119154,124828,130502,136176,141850,147524,153198,158872,164546,170220,175894,181568,187242,192916,198590,204264,209938,215612,221286,226960,232634,238308,243982,249656,255330,261004,266678,272352,278026,283700,289374,295048,300722,306396,312070,317744,323418,329092,334766,340440,346114,351788,357462,363136,368810,374484,380158,385832,391506,397180,402854,408528,414202,419876,425550,431224,436898,442572,448246,453920,459594,465268,470942,476616,482290,487964,493638,499312,504986,510660,516334,522008,527682,533356,539030,544704,550378,556052,561726,567400],"measured_values":[1010920.0,1917840.0,2917598.0,3731854.0,4401373.0,5283739.0,6168801.0,7046391.0,8488704.0,9460276.0,9686228.0,10866531.0,12477014.0,13428447.0,14393005.0,15349199.0,15679575.0,16071262.0,17047062.0,17612891.0,19510623.0,20507412.0,20875811.0,21121804.0,21993317.0,22885930.0,24431986.0,26898279.0,26337935.0,26401809.0,29372493.0,28265891.0,29374480.0,31441290.0,33596567.0,33279678.0,32629068.0,33468343.0,34319994.0,38143034.0,39199288.0,39952517.0,41239490.0,39901044.0,40527398.0,40790123.0,42932707.0,44691541.0,43784229.0,44050473.0,45223449.0,45783414.0,46953958.0,47543537.0,48422150.0,53511618.0,52389586.0,51096915.0,53530709.0,54059327.0,54004850.0,54612397.0,57683492.0,60558433.0,57966521.0,58415548.0,61418181.0,61712368.0,60778809.0,62642972.0,64004413.0,63382497.0,65486302.0,65148207.0,66026013.0,67687573.0,67807118.0,68939876.0,71394501.0,70483895.0,73744975.0,73532978.0,76658671.0,74571926.0,76119975.0,76647271.0,76624735.0,78457360.0,78967825.0,82404880.0,84189228.0,85341224.0,83410582.0,86790691.0,85490923.0,88244180.0,86195753.0,86766377.0,87199723.0,92007151.0],"unit":"ns","throughput":[],"typical":{"estimate":158.7444639584198,"lower_bound":157.95050605888707,"upper_bound":159.57277882216644,"unit":"ns"},"mean":{"estimate":159.99775229692605,"lower_bound":159.02330878944105,"upper_bound":161.02045775968458,"unit":"ns"},"median":{"estimate":158.11477085042918,"lower_bound":157.0485433219268,"upper_bound":159.90485592921624,"unit":"ns"},"median_abs_dev":{"estimate":4.313846326725518,"lower_bound":2.7760653801319317,"upper_bound":6.310721035671774,"unit":"ns"},"slope":{"estimate":158.7444639584198,"lower_bound":157.95050605888707,"upper_bound":159.57277882216644,"unit":"ns"},"change":{"mean":{"estimate":-0.06282540970853645,"lower_bound":-0.06855410004883741,"upper_bound":-0.05710528568483926,"unit":"%"},"median":{"estimate":-0.07331942901077815,"lower_bound":-0.07925167672172218,"upper_bound":-0.06281916934328913,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"gtf","benchmarks":["gtf/gtf"],"report_directory":"/root/fuel-core/target/criterion/reports/gtf"} +{"reason":"benchmark-complete","id":"lt/lt","report_directory":"/root/fuel-core/target/criterion/reports/lt/lt","iteration_count":[33484,66968,100452,133936,167420,200904,234388,267872,301356,334840,368324,401808,435292,468776,502260,535744,569228,602712,636196,669680,703164,736648,770132,803616,837100,870584,904068,937552,971036,1004520,1038004,1071488,1104972,1138456,1171940,1205424,1238908,1272392,1305876,1339360,1372844,1406328,1439812,1473296,1506780,1540264,1573748,1607232,1640716,1674200,1707684,1741168,1774652,1808136,1841620,1875104,1908588,1942072,1975556,2009040,2042524,2076008,2109492,2142976,2176460,2209944,2243428,2276912,2310396,2343880,2377364,2410848,2444332,2477816,2511300,2544784,2578268,2611752,2645236,2678720,2712204,2745688,2779172,2812656,2846140,2879624,2913108,2946592,2980076,3013560,3047044,3080528,3114012,3147496,3180980,3214464,3247948,3281432,3314916,3348400],"measured_values":[611385.0,1153028.0,1762954.0,2314132.0,2860525.0,3495813.0,4043225.0,4597558.0,5169929.0,5745746.0,6343196.0,7000972.0,7555719.0,8025870.0,8722098.0,9190436.0,9866111.0,10464150.0,10878442.0,11634137.0,12064563.0,12762804.0,13213737.0,13862205.0,14432141.0,15143653.0,15682583.0,16208469.0,16735891.0,17496596.0,18031099.0,18494710.0,18985360.0,19683540.0,20285674.0,20856238.0,21637777.0,21840608.0,22584911.0,23194882.0,23791476.0,24254688.0,24610005.0,25433075.0,26006815.0,26521595.0,27135802.0,27709277.0,28456603.0,28722779.0,29505000.0,30018770.0,30801058.0,31243175.0,31818735.0,32431789.0,32952883.0,33530343.0,33988599.0,34674028.0,35418728.0,36084448.0,36503978.0,37079652.0,37724219.0,38229261.0,38683378.0,39194569.0,39915399.0,40463076.0,41231645.0,41700713.0,42172415.0,42872533.0,43231538.0,43958089.0,44766709.0,44935765.0,45775465.0,46102003.0,46696018.0,47455600.0,47923215.0,48486296.0,49410692.0,49500770.0,50335868.0,50820811.0,51452330.0,52004878.0,52648898.0,53117049.0,53861183.0,54118364.0,54936683.0,55414510.0,56313985.0,56721082.0,57342121.0,58001371.0],"unit":"ns","throughput":[],"typical":{"estimate":17.272917190624664,"lower_bound":17.26084793994418,"upper_bound":17.285161694818918,"unit":"ns"},"mean":{"estimate":17.282918613747132,"lower_bound":17.26116308570401,"upper_bound":17.310398842655925,"unit":"ns"},"median":{"estimate":17.275115747416642,"lower_bound":17.258409986859395,"upper_bound":17.288074688123967,"unit":"ns"},"median_abs_dev":{"estimate":0.06654539169866763,"lower_bound":0.04718996559075769,"upper_bound":0.08993934354717115,"unit":"ns"},"slope":{"estimate":17.272917190624664,"lower_bound":17.26084793994418,"upper_bound":17.285161694818918,"unit":"ns"},"change":{"mean":{"estimate":-0.01650267649889492,"lower_bound":-0.018944009955297818,"upper_bound":-0.014127606428830378,"unit":"%"},"median":{"estimate":-0.01773093909617318,"lower_bound":-0.019295673941055802,"upper_bound":-0.01598137820542178,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"lt","benchmarks":["lt/lt"],"report_directory":"/root/fuel-core/target/criterion/reports/lt"} +{"reason":"benchmark-complete","id":"mldv/mldv","report_directory":"/root/fuel-core/target/criterion/reports/mldv/mldv","iteration_count":[17382,34764,52146,69528,86910,104292,121674,139056,156438,173820,191202,208584,225966,243348,260730,278112,295494,312876,330258,347640,365022,382404,399786,417168,434550,451932,469314,486696,504078,521460,538842,556224,573606,590988,608370,625752,643134,660516,677898,695280,712662,730044,747426,764808,782190,799572,816954,834336,851718,869100,886482,903864,921246,938628,956010,973392,990774,1008156,1025538,1042920,1060302,1077684,1095066,1112448,1129830,1147212,1164594,1181976,1199358,1216740,1234122,1251504,1268886,1286268,1303650,1321032,1338414,1355796,1373178,1390560,1407942,1425324,1442706,1460088,1477470,1494852,1512234,1529616,1546998,1564380,1581762,1599144,1616526,1633908,1651290,1668672,1686054,1703436,1720818,1738200],"measured_values":[764722.0,1489663.0,2229633.0,2975597.0,3731361.0,4467764.0,5240603.0,5980227.0,6713859.0,7474262.0,8250336.0,8954343.0,9704104.0,10447615.0,11207609.0,11945580.0,12690999.0,13565145.0,14187877.0,14880138.0,15648504.0,16439735.0,17182696.0,17920523.0,18666320.0,19417381.0,20158072.0,20908936.0,21650686.0,22390107.0,23134778.0,23910276.0,24620301.0,25386018.0,26071462.0,26797920.0,27650684.0,28429669.0,29006865.0,29785430.0,30557011.0,31270544.0,31980728.0,32751695.0,33477508.0,34289410.0,35002997.0,35728741.0,36464038.0,37231824.0,38000229.0,38752422.0,39536858.0,40243087.0,40980094.0,41671230.0,42686012.0,43499297.0,43988801.0,44711161.0,45408398.0,46281699.0,47059653.0,47726621.0,48445781.0,49436354.0,50122124.0,50791337.0,51518135.0,52313407.0,52900388.0,53647199.0,54462816.0,55192793.0,55990138.0,56745681.0,57506217.0,58379585.0,58924048.0,59557962.0,60400971.0,61037485.0,61990097.0,62667126.0,63457932.0,64288114.0,64989691.0,65765145.0,66394868.0,67145840.0,67943450.0,68682137.0,69420963.0,70097501.0,70800476.0,71483330.0,72363150.0,73194704.0,73949290.0,74516572.0],"unit":"ns","throughput":[],"typical":{"estimate":42.92565624952338,"lower_bound":42.90984288047995,"upper_bound":42.94127921881343,"unit":"ns"},"mean":{"estimate":42.93707714720631,"lower_bound":42.91322725441765,"upper_bound":42.967142497305446,"unit":"ns"},"median":{"estimate":42.931005185988795,"lower_bound":42.91071368751903,"upper_bound":42.94940912505838,"unit":"ns"},"median_abs_dev":{"estimate":0.08127623428791057,"lower_bound":0.05327368781085484,"upper_bound":0.09437758312758814,"unit":"ns"},"slope":{"estimate":42.92565624952338,"lower_bound":42.90984288047995,"upper_bound":42.94127921881343,"unit":"ns"},"change":{"mean":{"estimate":-0.006674701232119551,"lower_bound":-0.008447309702624,"upper_bound":-0.005397654829891099,"unit":"%"},"median":{"estimate":-0.005602470818588334,"lower_bound":-0.006140004672755883,"upper_bound":-0.005023067353836508,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"mldv","benchmarks":["mldv/mldv"],"report_directory":"/root/fuel-core/target/criterion/reports/mldv"} +{"reason":"benchmark-complete","id":"mlog/mlog","report_directory":"/root/fuel-core/target/criterion/reports/mlog/mlog","iteration_count":[23248,46496,69744,92992,116240,139488,162736,185984,209232,232480,255728,278976,302224,325472,348720,371968,395216,418464,441712,464960,488208,511456,534704,557952,581200,604448,627696,650944,674192,697440,720688,743936,767184,790432,813680,836928,860176,883424,906672,929920,953168,976416,999664,1022912,1046160,1069408,1092656,1115904,1139152,1162400,1185648,1208896,1232144,1255392,1278640,1301888,1325136,1348384,1371632,1394880,1418128,1441376,1464624,1487872,1511120,1534368,1557616,1580864,1604112,1627360,1650608,1673856,1697104,1720352,1743600,1766848,1790096,1813344,1836592,1859840,1883088,1906336,1929584,1952832,1976080,1999328,2022576,2045824,2069072,2092320,2115568,2138816,2162064,2185312,2208560,2231808,2255056,2278304,2301552,2324800],"measured_values":[666880.0,1156002.0,1735120.0,2340793.0,2920009.0,3556209.0,4150147.0,4741962.0,5215056.0,5798089.0,6335730.0,7001825.0,7642552.0,8307126.0,8851043.0,9454496.0,9938777.0,10568370.0,11095241.0,11783763.0,12209004.0,12828115.0,13645776.0,13922618.0,14516196.0,15103792.0,15855816.0,16325505.0,16871116.0,17416029.0,18187709.0,18729169.0,19136479.0,19734406.0,20390806.0,20966245.0,21484999.0,22276501.0,22925540.0,23414826.0,23915219.0,24720469.0,25177931.0,25789218.0,26241873.0,27088982.0,27641677.0,27893021.0,28498518.0,29238771.0,29779470.0,30603912.0,30956362.0,31754151.0,32152921.0,32872061.0,33657754.0,33910231.0,34476776.0,34995927.0,35671670.0,36312503.0,36790960.0,37410225.0,37855314.0,38715932.0,39401734.0,39940318.0,40441536.0,41024889.0,41635692.0,41883443.0,42583056.0,43378578.0,43960526.0,44831093.0,45400789.0,45657186.0,46465276.0,46882364.0,47718285.0,48122492.0,48374634.0,49191621.0,49614820.0,50395166.0,51098894.0,51816652.0,52062889.0,52636511.0,53556857.0,53881309.0,54456745.0,55145591.0,55056271.0,56242880.0,57050751.0,57394675.0,57825775.0,58171922.0],"unit":"ns","throughput":[],"typical":{"estimate":25.187622691814077,"lower_bound":25.16015839364541,"upper_bound":25.21369940007312,"unit":"ns"},"mean":{"estimate":25.209139016735797,"lower_bound":25.15186768933831,"upper_bound":25.29566414530611,"unit":"ns"},"median":{"estimate":25.18289592803182,"lower_bound":25.147490511200477,"upper_bound":25.20947362599548,"unit":"ns"},"median_abs_dev":{"estimate":0.14843407827731936,"lower_bound":0.10514051392095315,"upper_bound":0.18362503438938185,"unit":"ns"},"slope":{"estimate":25.187622691814077,"lower_bound":25.16015839364541,"upper_bound":25.21369940007312,"unit":"ns"},"change":{"mean":{"estimate":0.008066093824337095,"lower_bound":0.005099262223215767,"upper_bound":0.012070416131648448,"unit":"%"},"median":{"estimate":0.007646718927777352,"lower_bound":0.006030248602802768,"upper_bound":0.008802625591714543,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"mlog","benchmarks":["mlog/mlog"],"report_directory":"/root/fuel-core/target/criterion/reports/mlog"} +{"reason":"benchmark-complete","id":"mod/mod","report_directory":"/root/fuel-core/target/criterion/reports/mod/mod","iteration_count":[28873,57746,86619,115492,144365,173238,202111,230984,259857,288730,317603,346476,375349,404222,433095,461968,490841,519714,548587,577460,606333,635206,664079,692952,721825,750698,779571,808444,837317,866190,895063,923936,952809,981682,1010555,1039428,1068301,1097174,1126047,1154920,1183793,1212666,1241539,1270412,1299285,1328158,1357031,1385904,1414777,1443650,1472523,1501396,1530269,1559142,1588015,1616888,1645761,1674634,1703507,1732380,1761253,1790126,1818999,1847872,1876745,1905618,1934491,1963364,1992237,2021110,2049983,2078856,2107729,2136602,2165475,2194348,2223221,2252094,2280967,2309840,2338713,2367586,2396459,2425332,2454205,2483078,2511951,2540824,2569697,2598570,2627443,2656316,2685189,2714062,2742935,2771808,2800681,2829554,2858427,2887300],"measured_values":[659166.0,1178026.0,1791273.0,2403295.0,2985535.0,3547919.0,4176943.0,4717533.0,5421170.0,5963580.0,6511891.0,7133331.0,7729621.0,8319028.0,8917475.0,9594151.0,10071480.0,10644049.0,11398953.0,11898535.0,12460798.0,13121256.0,13747010.0,14348557.0,14920621.0,15397759.0,16112707.0,16779066.0,17243789.0,17860116.0,18414091.0,19050479.0,19651705.0,20090217.0,20780884.0,21427278.0,22063428.0,22548870.0,23118236.0,23786124.0,24383977.0,25005731.0,25601262.0,26168505.0,26889574.0,27241105.0,28136752.0,28626291.0,29167906.0,29816389.0,30298241.0,31040924.0,31666875.0,32181561.0,32740454.0,33405835.0,33984463.0,34590965.0,35170901.0,35434642.0,36334511.0,37198957.0,37575657.0,38097658.0,38625474.0,39302478.0,39873447.0,40635449.0,41160579.0,41687827.0,42362648.0,42861421.0,43179660.0,44126209.0,44670342.0,45426132.0,45705629.0,46418096.0,47334738.0,47977405.0,48031180.0,48739809.0,49455677.0,50022058.0,50396591.0,51221231.0,51804145.0,52372319.0,52959845.0,53719439.0,54052773.0,54844272.0,55470824.0,56035330.0,56488247.0,57144915.0,57796203.0,58379945.0,58962929.0,59721390.0],"unit":"ns","throughput":[],"typical":{"estimate":20.62890004432358,"lower_bound":20.615126745615306,"upper_bound":20.642580891789045,"unit":"ns"},"mean":{"estimate":20.64598465956947,"lower_bound":20.6121828365113,"upper_bound":20.699579657218628,"unit":"ns"},"median":{"estimate":20.624924715086806,"lower_bound":20.616914930441656,"upper_bound":20.641576840338324,"unit":"ns"},"median_abs_dev":{"estimate":0.05362166245328317,"lower_bound":0.043653077360283184,"upper_bound":0.07271695117995174,"unit":"ns"},"slope":{"estimate":20.62890004432358,"lower_bound":20.615126745615306,"upper_bound":20.642580891789045,"unit":"ns"},"change":{"mean":{"estimate":0.03369976867865376,"lower_bound":0.03002632687474982,"upper_bound":0.037400786403858674,"unit":"%"},"median":{"estimate":0.03347442343752549,"lower_bound":0.031766548863613187,"upper_bound":0.03595456872094527,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"mod","benchmarks":["mod/mod"],"report_directory":"/root/fuel-core/target/criterion/reports/mod"} +{"reason":"benchmark-complete","id":"modi/modi","report_directory":"/root/fuel-core/target/criterion/reports/modi/modi","iteration_count":[28859,57718,86577,115436,144295,173154,202013,230872,259731,288590,317449,346308,375167,404026,432885,461744,490603,519462,548321,577180,606039,634898,663757,692616,721475,750334,779193,808052,836911,865770,894629,923488,952347,981206,1010065,1038924,1067783,1096642,1125501,1154360,1183219,1212078,1240937,1269796,1298655,1327514,1356373,1385232,1414091,1442950,1471809,1500668,1529527,1558386,1587245,1616104,1644963,1673822,1702681,1731540,1760399,1789258,1818117,1846976,1875835,1904694,1933553,1962412,1991271,2020130,2048989,2077848,2106707,2135566,2164425,2193284,2222143,2251002,2279861,2308720,2337579,2366438,2395297,2424156,2453015,2481874,2510733,2539592,2568451,2597310,2626169,2655028,2683887,2712746,2741605,2770464,2799323,2828182,2857041,2885900],"measured_values":[617236.0,1183220.0,1774851.0,2367806.0,2992820.0,3552623.0,4144691.0,4749858.0,5405303.0,5997778.0,6574702.0,7206208.0,7752971.0,8365173.0,8910738.0,9504721.0,10167977.0,10808433.0,11412354.0,11934203.0,12440049.0,13227843.0,13739328.0,14292874.0,14891184.0,15616378.0,16117307.0,16743696.0,17352171.0,18252724.0,18557153.0,19217326.0,19744380.0,20271291.0,20837006.0,21470651.0,22127647.0,22700035.0,23274419.0,24021228.0,24602523.0,25181504.0,25818743.0,26482607.0,27020392.0,27574597.0,28177464.0,28694788.0,29218957.0,29831899.0,30431911.0,31086081.0,31774273.0,32180133.0,32809186.0,33395299.0,33956926.0,34647126.0,35110826.0,35934051.0,36529098.0,36960204.0,37748484.0,38433580.0,39055186.0,39355217.0,39920922.0,40845540.0,41429445.0,41884402.0,42382544.0,42972824.0,43654370.0,44307257.0,44824694.0,45410639.0,45716660.0,46435583.0,47206164.0,47798629.0,48231766.0,49289124.0,49738502.0,50244343.0,51018348.0,51737309.0,52112694.0,52402070.0,53256009.0,53839251.0,54590099.0,54952078.0,55638399.0,56304896.0,56721643.0,57191133.0,57863911.0,58569971.0,59279994.0,59921490.0],"unit":"ns","throughput":[],"typical":{"estimate":20.72226577888703,"lower_bound":20.706781734902442,"upper_bound":20.7376431175991,"unit":"ns"},"mean":{"estimate":20.719123700416876,"lower_bound":20.69834817531124,"upper_bound":20.742034996970123,"unit":"ns"},"median":{"estimate":20.714808782933112,"lower_bound":20.699408897720307,"upper_bound":20.73351813992169,"unit":"ns"},"median_abs_dev":{"estimate":0.07993076908173906,"lower_bound":0.06312829346809981,"upper_bound":0.10396372950954876,"unit":"ns"},"slope":{"estimate":20.72226577888703,"lower_bound":20.706781734902442,"upper_bound":20.7376431175991,"unit":"ns"},"change":{"mean":{"estimate":0.013142866824251254,"lower_bound":0.009930947678425705,"upper_bound":0.015730453843088903,"unit":"%"},"median":{"estimate":0.014878819621616524,"lower_bound":0.012688056218812749,"upper_bound":0.017070300002801853,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"modi","benchmarks":["modi/modi"],"report_directory":"/root/fuel-core/target/criterion/reports/modi"} +{"reason":"benchmark-complete","id":"move/move","report_directory":"/root/fuel-core/target/criterion/reports/move/move","iteration_count":[32981,65962,98943,131924,164905,197886,230867,263848,296829,329810,362791,395772,428753,461734,494715,527696,560677,593658,626639,659620,692601,725582,758563,791544,824525,857506,890487,923468,956449,989430,1022411,1055392,1088373,1121354,1154335,1187316,1220297,1253278,1286259,1319240,1352221,1385202,1418183,1451164,1484145,1517126,1550107,1583088,1616069,1649050,1682031,1715012,1747993,1780974,1813955,1846936,1879917,1912898,1945879,1978860,2011841,2044822,2077803,2110784,2143765,2176746,2209727,2242708,2275689,2308670,2341651,2374632,2407613,2440594,2473575,2506556,2539537,2572518,2605499,2638480,2671461,2704442,2737423,2770404,2803385,2836366,2869347,2902328,2935309,2968290,3001271,3034252,3067233,3100214,3133195,3166176,3199157,3232138,3265119,3298100],"measured_values":[584475.0,1097843.0,1661096.0,2211957.0,2758825.0,3067025.0,3653209.0,4485445.0,4761564.0,5266658.0,5903352.0,6158060.0,7027413.0,7059568.0,8152583.0,8539763.0,9539445.0,9712564.0,10208074.0,11167306.0,11243834.0,11859127.0,12342082.0,12759516.0,13733235.0,14360424.0,15458320.0,15399770.0,15794010.0,16935767.0,16904075.0,17326381.0,17878562.0,19026383.0,18545541.0,19431449.0,19865343.0,21267484.0,20964066.0,21620621.0,22778133.0,22585825.0,23296174.0,23900100.0,24789025.0,24523047.0,25213303.0,26297927.0,26750080.0,27341257.0,27071576.0,28353452.0,28733532.0,29153510.0,29701103.0,30559676.0,30879980.0,31497470.0,33264316.0,33030131.0,32241295.0,34105454.0,34789576.0,34898625.0,35321389.0,36302621.0,35382232.0,37233964.0,37999271.0,37176683.0,38310979.0,38587602.0,40358800.0,40634576.0,40948380.0,41288090.0,41187793.0,42980773.0,43162268.0,43718583.0,44319822.0,45035156.0,45519542.0,45374085.0,45742991.0,45912998.0,47989218.0,48650094.0,48457446.0,48403025.0,49944511.0,49453365.0,50062378.0,51514910.0,50819825.0,52802889.0,52762634.0,54030895.0,53537885.0,54430409.0],"unit":"ns","throughput":[],"typical":{"estimate":16.49651360687103,"lower_bound":16.44549666560239,"upper_bound":16.547184658991537,"unit":"ns"},"mean":{"estimate":16.48058924739476,"lower_bound":16.413079056694528,"upper_bound":16.547956360161162,"unit":"ns"},"median":{"estimate":16.486010335431075,"lower_bound":16.411581702486835,"upper_bound":16.557878589187712,"unit":"ns"},"median_abs_dev":{"estimate":0.2825680128477673,"lower_bound":0.22069264006141676,"upper_bound":0.3300485342823492,"unit":"ns"},"slope":{"estimate":16.49651360687103,"lower_bound":16.44549666560239,"upper_bound":16.547184658991537,"unit":"ns"},"change":{"mean":{"estimate":0.023015261475528348,"lower_bound":0.017889227486969455,"upper_bound":0.02784151660072938,"unit":"%"},"median":{"estimate":0.024853594283170022,"lower_bound":0.02000205356685436,"upper_bound":0.029828157909667936,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"move","benchmarks":["move/move"],"report_directory":"/root/fuel-core/target/criterion/reports/move"} +{"reason":"benchmark-complete","id":"movi/movi","report_directory":"/root/fuel-core/target/criterion/reports/movi/movi","iteration_count":[32954,65908,98862,131816,164770,197724,230678,263632,296586,329540,362494,395448,428402,461356,494310,527264,560218,593172,626126,659080,692034,724988,757942,790896,823850,856804,889758,922712,955666,988620,1021574,1054528,1087482,1120436,1153390,1186344,1219298,1252252,1285206,1318160,1351114,1384068,1417022,1449976,1482930,1515884,1548838,1581792,1614746,1647700,1680654,1713608,1746562,1779516,1812470,1845424,1878378,1911332,1944286,1977240,2010194,2043148,2076102,2109056,2142010,2174964,2207918,2240872,2273826,2306780,2339734,2372688,2405642,2438596,2471550,2504504,2537458,2570412,2603366,2636320,2669274,2702228,2735182,2768136,2801090,2834044,2866998,2899952,2932906,2965860,2998814,3031768,3064722,3097676,3130630,3163584,3196538,3229492,3262446,3295400],"measured_values":[558925.0,1148554.0,1520497.0,2183956.0,2855438.0,3082036.0,3902787.0,4183055.0,5045854.0,5605649.0,5869008.0,6899965.0,6956434.0,7312509.0,8305650.0,9107736.0,9053848.0,9826929.0,9776047.0,10936546.0,11723929.0,11867404.0,13068276.0,12715421.0,13684483.0,14200864.0,14661919.0,14970391.0,16063595.0,16333633.0,16659534.0,17236205.0,17944877.0,18672525.0,19435055.0,19007928.0,20472082.0,20500394.0,21597464.0,21285666.0,22847780.0,22506780.0,23357366.0,24258513.0,24877999.0,24724109.0,26366739.0,26141244.0,27059856.0,27310330.0,28128420.0,27641409.0,29639426.0,29638171.0,30510884.0,30954520.0,31246238.0,32229084.0,32724131.0,32997635.0,33476652.0,34066191.0,33757265.0,34987508.0,34625078.0,34575276.0,36931446.0,36421040.0,38077005.0,38838028.0,38893141.0,39743962.0,39358715.0,39919191.0,40726161.0,41754408.0,43328932.0,42873770.0,44066155.0,43285979.0,43122401.0,44229916.0,45046778.0,45492246.0,45500767.0,46893144.0,46934638.0,47862640.0,48386366.0,49202520.0,48796404.0,49681306.0,49924906.0,51202103.0,51884053.0,52697592.0,52923275.0,53184784.0,54119667.0,55747068.0],"unit":"ns","throughput":[],"typical":{"estimate":16.5425822057766,"lower_bound":16.48724885623115,"upper_bound":16.599441809072147,"unit":"ns"},"mean":{"estimate":16.554983168770743,"lower_bound":16.48251428543004,"upper_bound":16.626517599067878,"unit":"ns"},"median":{"estimate":16.573632992032323,"lower_bound":16.501193634634667,"upper_bound":16.65344339899532,"unit":"ns"},"median_abs_dev":{"estimate":0.31805746688352354,"lower_bound":0.2513866888915297,"upper_bound":0.4028117017766092,"unit":"ns"},"slope":{"estimate":16.5425822057766,"lower_bound":16.48724885623115,"upper_bound":16.599441809072147,"unit":"ns"},"change":{"mean":{"estimate":0.02041252813306982,"lower_bound":0.014552165960010495,"upper_bound":0.026303183416931594,"unit":"%"},"median":{"estimate":0.0213181301746197,"lower_bound":0.016460188443839213,"upper_bound":0.027508161524677943,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"movi","benchmarks":["movi/movi"],"report_directory":"/root/fuel-core/target/criterion/reports/movi"} +{"reason":"benchmark-complete","id":"mroo/mroo","report_directory":"/root/fuel-core/target/criterion/reports/mroo/mroo","iteration_count":[14499,28998,43497,57996,72495,86994,101493,115992,130491,144990,159489,173988,188487,202986,217485,231984,246483,260982,275481,289980,304479,318978,333477,347976,362475,376974,391473,405972,420471,434970,449469,463968,478467,492966,507465,521964,536463,550962,565461,579960,594459,608958,623457,637956,652455,666954,681453,695952,710451,724950,739449,753948,768447,782946,797445,811944,826443,840942,855441,869940,884439,898938,913437,927936,942435,956934,971433,985932,1000431,1014930,1029429,1043928,1058427,1072926,1087425,1101924,1116423,1130922,1145421,1159920,1174419,1188918,1203417,1217916,1232415,1246914,1261413,1275912,1290411,1304910,1319409,1333908,1348407,1362906,1377405,1391904,1406403,1420902,1435401,1449900],"measured_values":[835948.0,1555790.0,2339969.0,3095706.0,3916973.0,4690868.0,5462006.0,6214553.0,6980682.0,7800411.0,8561399.0,9348311.0,10256488.0,10888641.0,11664497.0,12435037.0,13253621.0,14016502.0,14801270.0,15580920.0,16356275.0,17112055.0,17940827.0,18730911.0,19444543.0,20251860.0,21025540.0,21810228.0,22618065.0,23404752.0,24091387.0,24898937.0,25719888.0,26463386.0,27263090.0,28056131.0,28813513.0,29537519.0,30401407.0,31199125.0,31912264.0,32670846.0,33450560.0,34244771.0,35045897.0,35889069.0,36654012.0,37395478.0,38162449.0,38966445.0,39669479.0,40471608.0,41208381.0,42049209.0,42787912.0,43525192.0,44283009.0,45259028.0,46006501.0,46768232.0,47623288.0,48427439.0,49045958.0,49830189.0,50689830.0,51493382.0,52134998.0,53082448.0,53711341.0,54605554.0,55380263.0,56012995.0,57011385.0,57752471.0,58359636.0,59388744.0,59904485.0,60818950.0,61600295.0,62340038.0,63097234.0,63996729.0,64629938.0,65300419.0,66140991.0,67061716.0,67836070.0,68519320.0,69620657.0,70102485.0,70836933.0,71640605.0,72392957.0,73151954.0,74059224.0,74758437.0,75668737.0,76247303.0,77044924.0,77800449.0],"unit":"ns","throughput":[],"typical":{"estimate":53.73362016283528,"lower_bound":53.71452570007441,"upper_bound":53.7542083459705,"unit":"ns"},"mean":{"estimate":53.77141007806722,"lower_bound":53.71554114121151,"upper_bound":53.86461853210971,"unit":"ns"},"median":{"estimate":53.72048893355535,"lower_bound":53.70431381195917,"upper_bound":53.745118628870955,"unit":"ns"},"median_abs_dev":{"estimate":0.09115578395949675,"lower_bound":0.07014624755200093,"upper_bound":0.10524264245186307,"unit":"ns"},"slope":{"estimate":53.73362016283528,"lower_bound":53.71452570007441,"upper_bound":53.7542083459705,"unit":"ns"},"change":{"mean":{"estimate":0.0073506581874753785,"lower_bound":0.005224060578426731,"upper_bound":0.009627795279604478,"unit":"%"},"median":{"estimate":0.007411760238933418,"lower_bound":0.00698220366922131,"upper_bound":0.007985511502885068,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"mroo","benchmarks":["mroo/mroo"],"report_directory":"/root/fuel-core/target/criterion/reports/mroo"} +{"reason":"benchmark-complete","id":"mul/mul","report_directory":"/root/fuel-core/target/criterion/reports/mul/mul","iteration_count":[31396,62792,94188,125584,156980,188376,219772,251168,282564,313960,345356,376752,408148,439544,470940,502336,533732,565128,596524,627920,659316,690712,722108,753504,784900,816296,847692,879088,910484,941880,973276,1004672,1036068,1067464,1098860,1130256,1161652,1193048,1224444,1255840,1287236,1318632,1350028,1381424,1412820,1444216,1475612,1507008,1538404,1569800,1601196,1632592,1663988,1695384,1726780,1758176,1789572,1820968,1852364,1883760,1915156,1946552,1977948,2009344,2040740,2072136,2103532,2134928,2166324,2197720,2229116,2260512,2291908,2323304,2354700,2386096,2417492,2448888,2480284,2511680,2543076,2574472,2605868,2637264,2668660,2700056,2731452,2762848,2794244,2825640,2857036,2888432,2919828,2951224,2982620,3014016,3045412,3076808,3108204,3139600],"measured_values":[609104.0,1127123.0,1704069.0,2287820.0,2858401.0,3478145.0,4001823.0,4599350.0,5142950.0,5686520.0,6253860.0,6922126.0,7571877.0,8043430.0,8563179.0,9214377.0,9661081.0,10271456.0,10825503.0,11419757.0,12259827.0,12725706.0,13225629.0,13692405.0,14324135.0,15033598.0,15390574.0,16145579.0,16534046.0,17224509.0,17828582.0,18500303.0,19141010.0,19687493.0,20213962.0,20820836.0,21172163.0,21765874.0,22344986.0,22990385.0,23459897.0,23910149.0,24432360.0,25107954.0,25638942.0,26266971.0,26816079.0,27593223.0,28330458.0,28717253.0,29439081.0,29916920.0,30462681.0,30901058.0,31322836.0,31997924.0,32565517.0,33162794.0,33729564.0,34294481.0,34848696.0,35376534.0,36117774.0,36631109.0,37123627.0,37944502.0,38171260.0,38867981.0,39418325.0,40111899.0,40482640.0,41021521.0,41597352.0,42326862.0,43227280.0,43345581.0,44178133.0,44878608.0,45569811.0,45779499.0,46338414.0,46928368.0,47762470.0,48113056.0,48606560.0,49145245.0,49847324.0,50493755.0,51151554.0,51412901.0,52361759.0,52772102.0,53530469.0,53928251.0,54444414.0,55142174.0,55795498.0,56287582.0,56765115.0,57172619.0],"unit":"ns","throughput":[],"typical":{"estimate":18.254088312438128,"lower_bound":18.238717053994424,"upper_bound":18.269269770072203,"unit":"ns"},"mean":{"estimate":18.26703664351759,"lower_bound":18.240284786250736,"upper_bound":18.300107135415374,"unit":"ns"},"median":{"estimate":18.23696576499357,"lower_bound":18.213845150749815,"upper_bound":18.270155572296666,"unit":"ns"},"median_abs_dev":{"estimate":0.09595171541350986,"lower_bound":0.07123160665238769,"upper_bound":0.11587931202553345,"unit":"ns"},"slope":{"estimate":18.254088312438128,"lower_bound":18.238717053994424,"upper_bound":18.269269770072203,"unit":"ns"},"change":{"mean":{"estimate":0.0023969055149752894,"lower_bound":0.000854176094266729,"upper_bound":0.004268304425835823,"unit":"%"},"median":{"estimate":0.001154990900386954,"lower_bound":-0.00023413652203863045,"upper_bound":0.0028327911356185176,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"mul","benchmarks":["mul/mul"],"report_directory":"/root/fuel-core/target/criterion/reports/mul"} +{"reason":"benchmark-complete","id":"muli/muli","report_directory":"/root/fuel-core/target/criterion/reports/muli/muli","iteration_count":[31356,62712,94068,125424,156780,188136,219492,250848,282204,313560,344916,376272,407628,438984,470340,501696,533052,564408,595764,627120,658476,689832,721188,752544,783900,815256,846612,877968,909324,940680,972036,1003392,1034748,1066104,1097460,1128816,1160172,1191528,1222884,1254240,1285596,1316952,1348308,1379664,1411020,1442376,1473732,1505088,1536444,1567800,1599156,1630512,1661868,1693224,1724580,1755936,1787292,1818648,1850004,1881360,1912716,1944072,1975428,2006784,2038140,2069496,2100852,2132208,2163564,2194920,2226276,2257632,2288988,2320344,2351700,2383056,2414412,2445768,2477124,2508480,2539836,2571192,2602548,2633904,2665260,2696616,2727972,2759328,2790684,2822040,2853396,2884752,2916108,2947464,2978820,3010176,3041532,3072888,3104244,3135600],"measured_values":[597512.0,1172735.0,1761109.0,2351036.0,2926241.0,3447731.0,4118123.0,4700784.0,5145784.0,5751963.0,6330594.0,6874727.0,7420212.0,7992300.0,8722455.0,9208800.0,9800708.0,10418295.0,10891344.0,11677395.0,12029386.0,12615142.0,13291040.0,13757789.0,14260348.0,14915512.0,15555388.0,16088113.0,16522782.0,17298125.0,17997595.0,18269231.0,18931615.0,19668922.0,20093309.0,20763935.0,21473734.0,21802790.0,22540742.0,23053522.0,23487417.0,24069968.0,24720274.0,25262353.0,25842788.0,26493220.0,27169134.0,27324966.0,28151247.0,28752895.0,29371998.0,29980904.0,30381048.0,30869640.0,31721060.0,31965812.0,32767745.0,33782064.0,33850593.0,34862468.0,35015060.0,35638311.0,36077869.0,36687491.0,37487055.0,37994449.0,38430115.0,38945382.0,39648129.0,40355146.0,40659245.0,41816652.0,41871542.0,42421916.0,42862770.0,43774053.0,44014507.0,44679777.0,45293752.0,45989717.0,46653032.0,47132750.0,47822275.0,48736538.0,48837122.0,49438653.0,50069897.0,50365163.0,51092412.0,51769536.0,52439764.0,53160838.0,53399843.0,53810885.0,54600591.0,55109543.0,55559211.0,56132288.0,56769833.0,57590316.0],"unit":"ns","throughput":[],"typical":{"estimate":18.32982612495189,"lower_bound":18.31313736079338,"upper_bound":18.348103650002372,"unit":"ns"},"mean":{"estimate":18.364791242631973,"lower_bound":18.33788849737693,"upper_bound":18.39443438344007,"unit":"ns"},"median":{"estimate":18.33034662112891,"lower_bound":18.30892150966778,"upper_bound":18.354016630136034,"unit":"ns"},"median_abs_dev":{"estimate":0.08056068679530026,"lower_bound":0.06300460707815948,"upper_bound":0.1015609952442161,"unit":"ns"},"slope":{"estimate":18.32982612495189,"lower_bound":18.31313736079338,"upper_bound":18.348103650002372,"unit":"ns"},"change":{"mean":{"estimate":0.0535802762835107,"lower_bound":0.05100958972890169,"upper_bound":0.056010541111213924,"unit":"%"},"median":{"estimate":0.05176143962758051,"lower_bound":0.04975524914466001,"upper_bound":0.05362918404856443,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"muli","benchmarks":["muli/muli"],"report_directory":"/root/fuel-core/target/criterion/reports/muli"} +{"reason":"benchmark-complete","id":"noop/noop","report_directory":"/root/fuel-core/target/criterion/reports/noop/noop","iteration_count":[36987,73974,110961,147948,184935,221922,258909,295896,332883,369870,406857,443844,480831,517818,554805,591792,628779,665766,702753,739740,776727,813714,850701,887688,924675,961662,998649,1035636,1072623,1109610,1146597,1183584,1220571,1257558,1294545,1331532,1368519,1405506,1442493,1479480,1516467,1553454,1590441,1627428,1664415,1701402,1738389,1775376,1812363,1849350,1886337,1923324,1960311,1997298,2034285,2071272,2108259,2145246,2182233,2219220,2256207,2293194,2330181,2367168,2404155,2441142,2478129,2515116,2552103,2589090,2626077,2663064,2700051,2737038,2774025,2811012,2847999,2884986,2921973,2958960,2995947,3032934,3069921,3106908,3143895,3180882,3217869,3254856,3291843,3328830,3365817,3402804,3439791,3476778,3513765,3550752,3587739,3624726,3661713,3698700],"measured_values":[587962.0,1085586.0,1626013.0,2170090.0,2707860.0,3259442.0,3789555.0,4331877.0,4854957.0,5450142.0,5949628.0,6489639.0,7059217.0,7570670.0,8093928.0,8672287.0,9173946.0,9758316.0,10279569.0,10815806.0,11385090.0,11918822.0,12463840.0,12976694.0,13478101.0,14089445.0,14617799.0,15166247.0,15607205.0,16269124.0,16786364.0,17305307.0,17854826.0,18376501.0,18905741.0,19467026.0,19966952.0,20583586.0,21045550.0,21707415.0,22144190.0,22631462.0,23056020.0,23717763.0,24395672.0,24933971.0,25473546.0,25963444.0,26587292.0,27099075.0,27580476.0,27967197.0,28629687.0,29245349.0,29743683.0,30247202.0,30719880.0,31477943.0,31884777.0,32347829.0,32926051.0,33547501.0,33980408.0,34660056.0,35176381.0,35681336.0,36143876.0,36916903.0,37530615.0,37798673.0,38305193.0,38909868.0,39324542.0,39862192.0,40401946.0,41089388.0,41648468.0,42141615.0,42715359.0,43379518.0,43758762.0,44325369.0,44763859.0,45329130.0,46025090.0,46603369.0,47269265.0,47454465.0,48201561.0,48624446.0,49100913.0,49758563.0,50183994.0,50714187.0,51472955.0,51940528.0,52369599.0,52919924.0,53657421.0,53820793.0],"unit":"ns","throughput":[],"typical":{"estimate":14.613821089688356,"lower_bound":14.604882487641618,"upper_bound":14.623058512544365,"unit":"ns"},"mean":{"estimate":14.633933499124,"lower_bound":14.615428626146144,"upper_bound":14.664090965556294,"unit":"ns"},"median":{"estimate":14.621189653424985,"lower_bound":14.61468300991713,"upper_bound":14.629875708235673,"unit":"ns"},"median_abs_dev":{"estimate":0.04449231540311452,"lower_bound":0.031751798448633205,"upper_bound":0.048365552184290415,"unit":"ns"},"slope":{"estimate":14.613821089688356,"lower_bound":14.604882487641618,"upper_bound":14.623058512544365,"unit":"ns"},"change":{"mean":{"estimate":-0.006188094179914505,"lower_bound":-0.007868188749748695,"upper_bound":-0.003960614107813035,"unit":"%"},"median":{"estimate":-0.006072824186421966,"lower_bound":-0.006784171540686668,"upper_bound":-0.005013775216408707,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"noop","benchmarks":["noop/noop"],"report_directory":"/root/fuel-core/target/criterion/reports/noop"} +{"reason":"benchmark-complete","id":"not/not","report_directory":"/root/fuel-core/target/criterion/reports/not/not","iteration_count":[32658,65316,97974,130632,163290,195948,228606,261264,293922,326580,359238,391896,424554,457212,489870,522528,555186,587844,620502,653160,685818,718476,751134,783792,816450,849108,881766,914424,947082,979740,1012398,1045056,1077714,1110372,1143030,1175688,1208346,1241004,1273662,1306320,1338978,1371636,1404294,1436952,1469610,1502268,1534926,1567584,1600242,1632900,1665558,1698216,1730874,1763532,1796190,1828848,1861506,1894164,1926822,1959480,1992138,2024796,2057454,2090112,2122770,2155428,2188086,2220744,2253402,2286060,2318718,2351376,2384034,2416692,2449350,2482008,2514666,2547324,2579982,2612640,2645298,2677956,2710614,2743272,2775930,2808588,2841246,2873904,2906562,2939220,2971878,3004536,3037194,3069852,3102510,3135168,3167826,3200484,3233142,3265800],"measured_values":[581649.0,1090817.0,1637884.0,2181591.0,2748163.0,3273948.0,3860959.0,4410160.0,5020805.0,5577516.0,6078680.0,6555480.0,7156417.0,7679453.0,8356561.0,8883038.0,9441054.0,9918263.0,10474257.0,11059617.0,11663983.0,12083620.0,12623356.0,13168372.0,13695239.0,14226792.0,14700627.0,15317430.0,15902914.0,16434190.0,16968420.0,17669012.0,18274919.0,18679866.0,19362223.0,19876280.0,20475795.0,20861616.0,21460320.0,21980439.0,22772676.0,23131189.0,23789493.0,24378249.0,24967665.0,25350956.0,25932015.0,26659238.0,27175266.0,27587204.0,28220381.0,28795826.0,29287523.0,29934813.0,30595733.0,30831946.0,31342799.0,32177948.0,32877228.0,32895121.0,33648579.0,34225176.0,34530709.0,35071568.0,35683238.0,36204930.0,36777118.0,37217962.0,38186937.0,38777602.0,39209601.0,39838806.0,40213569.0,40673191.0,41372161.0,41739719.0,42190771.0,43162590.0,43602040.0,44106287.0,44775470.0,45192724.0,45921061.0,46528049.0,46636894.0,47287896.0,47742310.0,48256009.0,48775866.0,49734599.0,50174804.0,51030268.0,51196108.0,52100833.0,52563218.0,53014658.0,53525265.0,53917348.0,54765154.0,55098170.0],"unit":"ns","throughput":[],"typical":{"estimate":16.88575656695594,"lower_bound":16.868748857798206,"upper_bound":16.902633067620517,"unit":"ns"},"mean":{"estimate":16.88845833605399,"lower_bound":16.86526881152694,"upper_bound":16.91605077097772,"unit":"ns"},"median":{"estimate":16.882541184816468,"lower_bound":16.858670594822534,"upper_bound":16.90608392702826,"unit":"ns"},"median_abs_dev":{"estimate":0.10222068626348692,"lower_bound":0.07910025932059599,"upper_bound":0.12136782710264467,"unit":"ns"},"slope":{"estimate":16.88575656695594,"lower_bound":16.868748857798206,"upper_bound":16.902633067620517,"unit":"ns"},"change":{"mean":{"estimate":0.049897519530956114,"lower_bound":0.04736696380982603,"upper_bound":0.0523730466690851,"unit":"%"},"median":{"estimate":0.05046521948044158,"lower_bound":0.047823320338354576,"upper_bound":0.05258217777327001,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"not","benchmarks":["not/not"],"report_directory":"/root/fuel-core/target/criterion/reports/not"} +{"reason":"benchmark-complete","id":"or/or","report_directory":"/root/fuel-core/target/criterion/reports/or/or","iteration_count":[32138,64276,96414,128552,160690,192828,224966,257104,289242,321380,353518,385656,417794,449932,482070,514208,546346,578484,610622,642760,674898,707036,739174,771312,803450,835588,867726,899864,932002,964140,996278,1028416,1060554,1092692,1124830,1156968,1189106,1221244,1253382,1285520,1317658,1349796,1381934,1414072,1446210,1478348,1510486,1542624,1574762,1606900,1639038,1671176,1703314,1735452,1767590,1799728,1831866,1864004,1896142,1928280,1960418,1992556,2024694,2056832,2088970,2121108,2153246,2185384,2217522,2249660,2281798,2313936,2346074,2378212,2410350,2442488,2474626,2506764,2538902,2571040,2603178,2635316,2667454,2699592,2731730,2763868,2796006,2828144,2860282,2892420,2924558,2956696,2988834,3020972,3053110,3085248,3117386,3149524,3181662,3213800],"measured_values":[582987.0,1118410.0,1677651.0,2236845.0,2796037.0,3355217.0,3915746.0,4458089.0,5000298.0,5561284.0,6120100.0,6686333.0,7243568.0,7823062.0,8405812.0,8950369.0,9501223.0,10043677.0,10686142.0,11208893.0,11724409.0,12310100.0,12881199.0,13406962.0,14166756.0,14683221.0,15210985.0,15709745.0,16307990.0,16831392.0,17413468.0,18020230.0,18463598.0,19119548.0,19621666.0,20178910.0,20650855.0,21375163.0,22014993.0,22465448.0,23049744.0,23611408.0,24171908.0,24646768.0,25233266.0,25840279.0,26496736.0,27013871.0,27523355.0,27980691.0,28461761.0,29176764.0,29621584.0,30506223.0,30786920.0,31389609.0,31990333.0,32589689.0,33160879.0,33646252.0,34397619.0,34933373.0,35475886.0,36117184.0,36490602.0,37185519.0,37536193.0,38131580.0,38587580.0,39132436.0,39921801.0,40501985.0,40797425.0,41539959.0,42109656.0,42696784.0,43022032.0,43840681.0,44290756.0,44995943.0,45580309.0,46186865.0,46652693.0,46998084.0,47581781.0,48461858.0,49019482.0,49540060.0,50048737.0,50326007.0,50929200.0,51747140.0,52283721.0,52807855.0,53405993.0,53984633.0,54736687.0,55131434.0,55683162.0,56427632.0],"unit":"ns","throughput":[],"typical":{"estimate":17.47996528216488,"lower_bound":17.466848286175384,"upper_bound":17.492306963958338,"unit":"ns"},"mean":{"estimate":17.464404733639466,"lower_bound":17.44746389307493,"upper_bound":17.484628789371946,"unit":"ns"},"median":{"estimate":17.46755669643995,"lower_bound":17.443076936267275,"upper_bound":17.48860528378149,"unit":"ns"},"median_abs_dev":{"estimate":0.07373864863371306,"lower_bound":0.050920858250594246,"upper_bound":0.08662299749776385,"unit":"ns"},"slope":{"estimate":17.47996528216488,"lower_bound":17.466848286175384,"upper_bound":17.492306963958338,"unit":"ns"},"change":{"mean":{"estimate":-0.007717672440923695,"lower_bound":-0.008893319391860952,"upper_bound":-0.006453663784533595,"unit":"%"},"median":{"estimate":-0.007848939979481218,"lower_bound":-0.009163264039760477,"upper_bound":-0.006781482573283482,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"or","benchmarks":["or/or"],"report_directory":"/root/fuel-core/target/criterion/reports/or"} +{"reason":"benchmark-complete","id":"ori/ori","report_directory":"/root/fuel-core/target/criterion/reports/ori/ori","iteration_count":[31897,63794,95691,127588,159485,191382,223279,255176,287073,318970,350867,382764,414661,446558,478455,510352,542249,574146,606043,637940,669837,701734,733631,765528,797425,829322,861219,893116,925013,956910,988807,1020704,1052601,1084498,1116395,1148292,1180189,1212086,1243983,1275880,1307777,1339674,1371571,1403468,1435365,1467262,1499159,1531056,1562953,1594850,1626747,1658644,1690541,1722438,1754335,1786232,1818129,1850026,1881923,1913820,1945717,1977614,2009511,2041408,2073305,2105202,2137099,2168996,2200893,2232790,2264687,2296584,2328481,2360378,2392275,2424172,2456069,2487966,2519863,2551760,2583657,2615554,2647451,2679348,2711245,2743142,2775039,2806936,2838833,2870730,2902627,2934524,2966421,2998318,3030215,3062112,3094009,3125906,3157803,3189700],"measured_values":[592334.0,1137966.0,1684172.0,2247142.0,2820865.0,3368336.0,3925959.0,4528931.0,5037626.0,5615436.0,6177910.0,6780352.0,7324916.0,7865433.0,8607701.0,9042702.0,9709878.0,10313068.0,10727315.0,11213666.0,11791989.0,12499967.0,13076947.0,13603583.0,14324323.0,15112762.0,15176092.0,15879190.0,16400993.0,16939155.0,17318315.0,18138859.0,18720062.0,19176937.0,19667481.0,20280912.0,20805896.0,21475631.0,22322416.0,22689182.0,23294134.0,23828959.0,24151448.0,24812538.0,25540046.0,26075857.0,26613492.0,27066958.0,27784353.0,28183357.0,28827422.0,29927928.0,30037202.0,30669850.0,31092051.0,31747210.0,32687077.0,33276083.0,33957406.0,34082442.0,34666015.0,35153538.0,35544446.0,36944243.0,36778422.0,37825467.0,38050414.0,38635205.0,39383901.0,39776487.0,40711487.0,40838068.0,41264139.0,41997932.0,42916894.0,43229168.0,43648686.0,44129813.0,44640032.0,45153019.0,45832258.0,46808676.0,47191860.0,47800735.0,48393477.0,49095060.0,49269985.0,50572496.0,50168208.0,51199846.0,51598786.0,52054357.0,53224928.0,53243832.0,54204491.0,55083578.0,54726825.0,55405982.0,56305748.0,56731880.0],"unit":"ns","throughput":[],"typical":{"estimate":17.812930076734585,"lower_bound":17.787313335092488,"upper_bound":17.83924268919078,"unit":"ns"},"mean":{"estimate":17.78796398494781,"lower_bound":17.759580532773292,"upper_bound":17.818664578462446,"unit":"ns"},"median":{"estimate":17.77253222571799,"lower_bound":17.739296663605113,"upper_bound":17.789422541643752,"unit":"ns"},"median_abs_dev":{"estimate":0.10567178188638876,"lower_bound":0.07989313348646823,"upper_bound":0.15266376458304215,"unit":"ns"},"slope":{"estimate":17.812930076734585,"lower_bound":17.787313335092488,"upper_bound":17.83924268919078,"unit":"ns"},"change":{"mean":{"estimate":0.04000949300416501,"lower_bound":0.03788933769569333,"upper_bound":0.04226394690683935,"unit":"%"},"median":{"estimate":0.03848279791792364,"lower_bound":0.03641814601132887,"upper_bound":0.04085081648603972,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"ori","benchmarks":["ori/ori"],"report_directory":"/root/fuel-core/target/criterion/reports/ori"} +{"reason":"benchmark-complete","id":"sll/sll","report_directory":"/root/fuel-core/target/criterion/reports/sll/sll","iteration_count":[31377,62754,94131,125508,156885,188262,219639,251016,282393,313770,345147,376524,407901,439278,470655,502032,533409,564786,596163,627540,658917,690294,721671,753048,784425,815802,847179,878556,909933,941310,972687,1004064,1035441,1066818,1098195,1129572,1160949,1192326,1223703,1255080,1286457,1317834,1349211,1380588,1411965,1443342,1474719,1506096,1537473,1568850,1600227,1631604,1662981,1694358,1725735,1757112,1788489,1819866,1851243,1882620,1913997,1945374,1976751,2008128,2039505,2070882,2102259,2133636,2165013,2196390,2227767,2259144,2290521,2321898,2353275,2384652,2416029,2447406,2478783,2510160,2541537,2572914,2604291,2635668,2667045,2698422,2729799,2761176,2792553,2823930,2855307,2886684,2918061,2949438,2980815,3012192,3043569,3074946,3106323,3137700],"measured_values":[613791.0,1146656.0,1719607.0,2359573.0,2879210.0,3460795.0,4036008.0,4601711.0,5129510.0,5815233.0,6389715.0,6940834.0,7497964.0,8017243.0,8637066.0,9220338.0,9780485.0,10234205.0,10827353.0,11539533.0,12016783.0,12744324.0,13246710.0,13768588.0,14317876.0,14879221.0,15552849.0,16131761.0,16768354.0,17132059.0,17840607.0,18421962.0,19101107.0,19588060.0,20090631.0,20749626.0,21300219.0,21867634.0,22485211.0,22976200.0,23667671.0,24126121.0,24790828.0,25352032.0,25929095.0,26676607.0,27177133.0,27718354.0,28262289.0,28800556.0,29440524.0,29949119.0,30319332.0,31152530.0,31766243.0,32186313.0,32625729.0,33464185.0,34096141.0,34556301.0,35157496.0,35747095.0,36480720.0,36934471.0,37437735.0,37947024.0,38512195.0,38941025.0,39962380.0,40231674.0,40682497.0,41381552.0,41924271.0,42741819.0,43220110.0,43821454.0,44452242.0,45088449.0,45357207.0,45836597.0,46551579.0,46885839.0,47639077.0,48207986.0,49063004.0,49482133.0,49842969.0,50676067.0,51384863.0,51831683.0,52452190.0,52955584.0,53619770.0,54125725.0,54632367.0,55362229.0,55711807.0,56441109.0,57066793.0,58107519.0],"unit":"ns","throughput":[],"typical":{"estimate":18.35155697054765,"lower_bound":18.336040796136633,"upper_bound":18.368087874456727,"unit":"ns"},"mean":{"estimate":18.363701823312027,"lower_bound":18.338996378148778,"upper_bound":18.396304848608075,"unit":"ns"},"median":{"estimate":18.355957389170413,"lower_bound":18.34739817382159,"upper_bound":18.36862649210004,"unit":"ns"},"median_abs_dev":{"estimate":0.0581354337520401,"lower_bound":0.0401532603963457,"upper_bound":0.07512105544868056,"unit":"ns"},"slope":{"estimate":18.35155697054765,"lower_bound":18.336040796136633,"upper_bound":18.368087874456727,"unit":"ns"},"change":{"mean":{"estimate":0.010771618635417646,"lower_bound":0.009191691844781974,"upper_bound":0.012808158743775253,"unit":"%"},"median":{"estimate":0.01080062061364373,"lower_bound":0.010123207024175712,"upper_bound":0.011581748545493653,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"sll","benchmarks":["sll/sll"],"report_directory":"/root/fuel-core/target/criterion/reports/sll"} +{"reason":"benchmark-complete","id":"slli/slli","report_directory":"/root/fuel-core/target/criterion/reports/slli/slli","iteration_count":[30060,60120,90180,120240,150300,180360,210420,240480,270540,300600,330660,360720,390780,420840,450900,480960,511020,541080,571140,601200,631260,661320,691380,721440,751500,781560,811620,841680,871740,901800,931860,961920,991980,1022040,1052100,1082160,1112220,1142280,1172340,1202400,1232460,1262520,1292580,1322640,1352700,1382760,1412820,1442880,1472940,1503000,1533060,1563120,1593180,1623240,1653300,1683360,1713420,1743480,1773540,1803600,1833660,1863720,1893780,1923840,1953900,1983960,2014020,2044080,2074140,2104200,2134260,2164320,2194380,2224440,2254500,2284560,2314620,2344680,2374740,2404800,2434860,2464920,2494980,2525040,2555100,2585160,2615220,2645280,2675340,2705400,2735460,2765520,2795580,2825640,2855700,2885760,2915820,2945880,2975940,3006000],"measured_values":[607357.0,1142316.0,1711092.0,2280256.0,2847251.0,3420754.0,3975882.0,4528571.0,5116312.0,5682772.0,6258798.0,6806210.0,7382030.0,7962456.0,8558706.0,9086907.0,9670844.0,10239811.0,10778755.0,11413827.0,11974762.0,12528895.0,13097257.0,13676341.0,14219981.0,14787915.0,15367290.0,15912541.0,16482286.0,17059981.0,17678302.0,18291915.0,18775885.0,19328379.0,19893223.0,20619779.0,21063911.0,21596109.0,22153786.0,22714451.0,23388099.0,23886236.0,24510988.0,25083934.0,25559469.0,26174523.0,26742597.0,27327639.0,27964945.0,28400174.0,29022242.0,29610795.0,30126451.0,30776501.0,31276336.0,31827674.0,32401127.0,32931079.0,33724004.0,34122479.0,34659949.0,35254788.0,35874875.0,36464273.0,36993423.0,37558125.0,38120774.0,38671465.0,39204644.0,39853214.0,40501079.0,41058744.0,41456110.0,42101309.0,42738080.0,43343785.0,43834489.0,44466016.0,45322946.0,45706810.0,46104103.0,46830705.0,47230073.0,47922001.0,48541702.0,49047784.0,49681283.0,50249619.0,50644933.0,51549323.0,51815869.0,52408011.0,53069574.0,53480105.0,54100781.0,54687245.0,55324703.0,55802257.0,56458981.0,56926743.0],"unit":"ns","throughput":[],"typical":{"estimate":18.954214223147222,"lower_bound":18.944592784809167,"upper_bound":18.964196905072487,"unit":"ns"},"mean":{"estimate":18.95502658291301,"lower_bound":18.93638686060803,"upper_bound":18.984874030473396,"unit":"ns"},"median":{"estimate":18.937899333367895,"lower_bound":18.928523803456915,"upper_bound":18.944242544658966,"unit":"ns"},"median_abs_dev":{"estimate":0.04065521257571358,"lower_bound":0.02898940609459532,"upper_bound":0.0480410828887042,"unit":"ns"},"slope":{"estimate":18.954214223147222,"lower_bound":18.944592784809167,"upper_bound":18.964196905072487,"unit":"ns"},"change":{"mean":{"estimate":0.021109607990599466,"lower_bound":0.01879335128743484,"upper_bound":0.023028727976257525,"unit":"%"},"median":{"estimate":0.02115985481368865,"lower_bound":0.020434604778091447,"upper_bound":0.021658517034230274,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"slli","benchmarks":["slli/slli"],"report_directory":"/root/fuel-core/target/criterion/reports/slli"} +{"reason":"benchmark-complete","id":"srl/srl","report_directory":"/root/fuel-core/target/criterion/reports/srl/srl","iteration_count":[32691,65382,98073,130764,163455,196146,228837,261528,294219,326910,359601,392292,424983,457674,490365,523056,555747,588438,621129,653820,686511,719202,751893,784584,817275,849966,882657,915348,948039,980730,1013421,1046112,1078803,1111494,1144185,1176876,1209567,1242258,1274949,1307640,1340331,1373022,1405713,1438404,1471095,1503786,1536477,1569168,1601859,1634550,1667241,1699932,1732623,1765314,1798005,1830696,1863387,1896078,1928769,1961460,1994151,2026842,2059533,2092224,2124915,2157606,2190297,2222988,2255679,2288370,2321061,2353752,2386443,2419134,2451825,2484516,2517207,2549898,2582589,2615280,2647971,2680662,2713353,2746044,2778735,2811426,2844117,2876808,2909499,2942190,2974881,3007572,3040263,3072954,3105645,3138336,3171027,3203718,3236409,3269100],"measured_values":[644432.0,1209838.0,1813699.0,2416613.0,2976325.0,3613930.0,4200760.0,4791620.0,5418712.0,5977746.0,6645159.0,7212654.0,7827691.0,8455037.0,9046608.0,9637071.0,10246762.0,10761015.0,11415619.0,11990965.0,12637573.0,13195747.0,13770656.0,14453000.0,15065860.0,15801092.0,16270169.0,16790603.0,17470959.0,18063245.0,18712669.0,19241317.0,19876486.0,20509254.0,20971254.0,21656795.0,22249631.0,23119305.0,23550113.0,24054964.0,24738664.0,25271522.0,25874384.0,26571974.0,27144156.0,27615184.0,28254782.0,28924842.0,29491681.0,30112544.0,30718156.0,31416153.0,31878424.0,32356891.0,33237541.0,33727686.0,34324181.0,34956270.0,35443108.0,36215208.0,36648873.0,37265363.0,37986761.0,38565668.0,39016387.0,39775160.0,40313180.0,40925247.0,41438666.0,42087073.0,42755064.0,43452469.0,43812073.0,44396614.0,45159398.0,45738848.0,46415239.0,47074094.0,47413684.0,48032476.0,48718222.0,49292736.0,49857491.0,50409295.0,51051831.0,51563847.0,52262865.0,53043834.0,53616242.0,54245516.0,54810566.0,55507807.0,55843595.0,56491413.0,57258559.0,57850213.0,58302697.0,58856193.0,59496281.0,60219914.0],"unit":"ns","throughput":[],"typical":{"estimate":18.405773090938066,"lower_bound":18.396812354661947,"upper_bound":18.415062116648922,"unit":"ns"},"mean":{"estimate":18.42247885120033,"lower_bound":18.40116339267279,"upper_bound":18.454781928935027,"unit":"ns"},"median":{"estimate":18.417718604169004,"lower_bound":18.398938488061166,"upper_bound":18.424456642131233,"unit":"ns"},"median_abs_dev":{"estimate":0.048735745769186455,"lower_bound":0.035729794078864494,"upper_bound":0.0606032634831553,"unit":"ns"},"slope":{"estimate":18.405773090938066,"lower_bound":18.396812354661947,"upper_bound":18.415062116648922,"unit":"ns"},"change":{"mean":{"estimate":0.012711145651044253,"lower_bound":0.0071166684035464944,"upper_bound":0.017609826935874998,"unit":"%"},"median":{"estimate":0.012429682322461444,"lower_bound":0.009015068428327,"upper_bound":0.015292298785504576,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"srl","benchmarks":["srl/srl"],"report_directory":"/root/fuel-core/target/criterion/reports/srl"} +{"reason":"benchmark-complete","id":"srli/srli","report_directory":"/root/fuel-core/target/criterion/reports/srli/srli","iteration_count":[33251,66502,99753,133004,166255,199506,232757,266008,299259,332510,365761,399012,432263,465514,498765,532016,565267,598518,631769,665020,698271,731522,764773,798024,831275,864526,897777,931028,964279,997530,1030781,1064032,1097283,1130534,1163785,1197036,1230287,1263538,1296789,1330040,1363291,1396542,1429793,1463044,1496295,1529546,1562797,1596048,1629299,1662550,1695801,1729052,1762303,1795554,1828805,1862056,1895307,1928558,1961809,1995060,2028311,2061562,2094813,2128064,2161315,2194566,2227817,2261068,2294319,2327570,2360821,2394072,2427323,2460574,2493825,2527076,2560327,2593578,2626829,2660080,2693331,2726582,2759833,2793084,2826335,2859586,2892837,2926088,2959339,2992590,3025841,3059092,3092343,3125594,3158845,3192096,3225347,3258598,3291849,3325100],"measured_values":[621948.0,1190382.0,1763319.0,2342454.0,2926112.0,3512672.0,4099171.0,4684738.0,5277951.0,5924763.0,6440315.0,7064263.0,7610719.0,8195916.0,8778922.0,9366160.0,10017188.0,10651413.0,11184493.0,11747395.0,12304880.0,12979573.0,13900746.0,14229785.0,14753914.0,15306205.0,15884214.0,16486879.0,17034819.0,17674774.0,18150051.0,18759752.0,19549287.0,19954234.0,20450589.0,21180973.0,21904808.0,22333851.0,22923472.0,23485426.0,24097003.0,24745015.0,25254473.0,25889540.0,26411548.0,27102388.0,27578996.0,28184038.0,28844066.0,29434440.0,29952763.0,30613343.0,31109443.0,31816584.0,32407727.0,32869871.0,33513833.0,34182676.0,34646623.0,35312452.0,35870787.0,36346825.0,37058197.0,37683574.0,38292717.0,38800738.0,39375849.0,40104382.0,40702131.0,41149522.0,41670140.0,42218108.0,42874887.0,43570516.0,44024980.0,44688756.0,45191786.0,45757776.0,46304934.0,46932016.0,47591582.0,48143151.0,48952754.0,49280891.0,50076720.0,50488851.0,51086444.0,51856811.0,52287315.0,52854258.0,53427811.0,54028279.0,54639333.0,55149387.0,55947958.0,56500325.0,56966000.0,57765738.0,58322184.0,58712162.0],"unit":"ns","throughput":[],"typical":{"estimate":17.680428950034145,"lower_bound":17.672209707499636,"upper_bound":17.6890640138493,"unit":"ns"},"mean":{"estimate":17.69615544498977,"lower_bound":17.675522831734884,"upper_bound":17.723851078104015,"unit":"ns"},"median":{"estimate":17.67512284282841,"lower_bound":17.66197559518402,"upper_bound":17.69045590226908,"unit":"ns"},"median_abs_dev":{"estimate":0.045884288854073293,"lower_bound":0.035656490241535256,"upper_bound":0.0603665674954974,"unit":"ns"},"slope":{"estimate":17.680428950034145,"lower_bound":17.672209707499636,"upper_bound":17.6890640138493,"unit":"ns"},"change":{"mean":{"estimate":0.002973471530780758,"lower_bound":0.0006539974863225338,"upper_bound":0.005190445377645436,"unit":"%"},"median":{"estimate":0.0035425374234192564,"lower_bound":0.0022583636298374454,"upper_bound":0.004413104350414754,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"srli","benchmarks":["srli/srli"],"report_directory":"/root/fuel-core/target/criterion/reports/srli"} +{"reason":"benchmark-complete","id":"sub/sub","report_directory":"/root/fuel-core/target/criterion/reports/sub/sub","iteration_count":[31132,62264,93396,124528,155660,186792,217924,249056,280188,311320,342452,373584,404716,435848,466980,498112,529244,560376,591508,622640,653772,684904,716036,747168,778300,809432,840564,871696,902828,933960,965092,996224,1027356,1058488,1089620,1120752,1151884,1183016,1214148,1245280,1276412,1307544,1338676,1369808,1400940,1432072,1463204,1494336,1525468,1556600,1587732,1618864,1649996,1681128,1712260,1743392,1774524,1805656,1836788,1867920,1899052,1930184,1961316,1992448,2023580,2054712,2085844,2116976,2148108,2179240,2210372,2241504,2272636,2303768,2334900,2366032,2397164,2428296,2459428,2490560,2521692,2552824,2583956,2615088,2646220,2677352,2708484,2739616,2770748,2801880,2833012,2864144,2895276,2926408,2957540,2988672,3019804,3050936,3082068,3113200],"measured_values":[612640.0,1158145.0,1729992.0,2316906.0,2881242.0,3486044.0,4045799.0,4627631.0,5242167.0,5792693.0,6409980.0,6948146.0,7582571.0,8176536.0,8677020.0,9267125.0,9838230.0,10445467.0,11004026.0,11667733.0,12198484.0,12717871.0,13326625.0,13915360.0,14478441.0,15052090.0,15612996.0,16268600.0,16831475.0,17397308.0,18037037.0,18584594.0,19080997.0,19800153.0,20388781.0,20883727.0,21447735.0,22242087.0,22749281.0,23280852.0,23711763.0,24311330.0,24908355.0,25669385.0,26182526.0,26642715.0,27243264.0,27789055.0,28371631.0,28946434.0,29591450.0,30057876.0,30775984.0,31309297.0,31822779.0,32562644.0,33056028.0,33654737.0,34388462.0,34784668.0,35343616.0,36070813.0,36694424.0,37283090.0,37660711.0,38288412.0,38959132.0,39308923.0,40146949.0,40381908.0,41020556.0,41800840.0,42352087.0,42831859.0,43409149.0,44174294.0,44635970.0,45138523.0,45708908.0,46237251.0,46893143.0,47379774.0,48088787.0,48592257.0,49296607.0,49928076.0,50398225.0,50972326.0,51794637.0,52172495.0,52637800.0,53371297.0,53867019.0,54504991.0,55014560.0,55693694.0,56167779.0,56823649.0,57322816.0,57830811.0],"unit":"ns","throughput":[],"typical":{"estimate":18.620435697981154,"lower_bound":18.611048901667044,"upper_bound":18.630615680387695,"unit":"ns"},"mean":{"estimate":18.638982292225915,"lower_bound":18.620473646461164,"upper_bound":18.66545762807706,"unit":"ns"},"median":{"estimate":18.619305351521433,"lower_bound":18.605393732128412,"upper_bound":18.628265916414108,"unit":"ns"},"median_abs_dev":{"estimate":0.04399916060125719,"lower_bound":0.03182512466094067,"upper_bound":0.060326296637348405,"unit":"ns"},"slope":{"estimate":18.620435697981154,"lower_bound":18.611048901667044,"upper_bound":18.630615680387695,"unit":"ns"},"change":{"mean":{"estimate":0.03919318472249067,"lower_bound":0.03549859466572992,"upper_bound":0.042177807084027824,"unit":"%"},"median":{"estimate":0.039802988019719265,"lower_bound":0.038015698846274315,"upper_bound":0.04101241287310642,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"sub","benchmarks":["sub/sub"],"report_directory":"/root/fuel-core/target/criterion/reports/sub"} +{"reason":"benchmark-complete","id":"subi/subi","report_directory":"/root/fuel-core/target/criterion/reports/subi/subi","iteration_count":[31633,63266,94899,126532,158165,189798,221431,253064,284697,316330,347963,379596,411229,442862,474495,506128,537761,569394,601027,632660,664293,695926,727559,759192,790825,822458,854091,885724,917357,948990,980623,1012256,1043889,1075522,1107155,1138788,1170421,1202054,1233687,1265320,1296953,1328586,1360219,1391852,1423485,1455118,1486751,1518384,1550017,1581650,1613283,1644916,1676549,1708182,1739815,1771448,1803081,1834714,1866347,1897980,1929613,1961246,1992879,2024512,2056145,2087778,2119411,2151044,2182677,2214310,2245943,2277576,2309209,2340842,2372475,2404108,2435741,2467374,2499007,2530640,2562273,2593906,2625539,2657172,2688805,2720438,2752071,2783704,2815337,2846970,2878603,2910236,2941869,2973502,3005135,3036768,3068401,3100034,3131667,3163300],"measured_values":[597873.0,1133534.0,1715578.0,2303020.0,2834803.0,3429236.0,3999792.0,4571214.0,5137360.0,5733555.0,6389353.0,6841052.0,7437314.0,7920335.0,8569908.0,9138046.0,9772738.0,10288329.0,10803217.0,11427421.0,11931321.0,12594413.0,13117843.0,13682158.0,14181030.0,14892351.0,15449660.0,15926527.0,16551493.0,17165777.0,17676541.0,18158321.0,18757171.0,19451370.0,20032983.0,20562903.0,21051043.0,21519340.0,22341793.0,22818754.0,23307187.0,23854378.0,24466559.0,25169021.0,25725636.0,26393411.0,26808106.0,27380097.0,28068828.0,28596736.0,29046924.0,29708373.0,30363967.0,30758834.0,31423753.0,32043877.0,32541935.0,33006588.0,33687766.0,34155030.0,34957490.0,35435253.0,35824775.0,36543321.0,37085819.0,37617304.0,38342727.0,38919309.0,39334371.0,40088813.0,40463809.0,41156103.0,41712009.0,42223392.0,42831934.0,43339656.0,43983061.0,44431463.0,45155658.0,45817919.0,46268761.0,46839665.0,47567203.0,48149950.0,48613818.0,49086153.0,49597399.0,50186911.0,50686451.0,51554963.0,52108824.0,52679533.0,53045734.0,53745670.0,54459297.0,54902407.0,55328208.0,56055204.0,56484004.0,56989876.0],"unit":"ns","throughput":[],"typical":{"estimate":18.056596680085473,"lower_bound":18.04648657886244,"upper_bound":18.066515163130376,"unit":"ns"},"mean":{"estimate":18.05962327497966,"lower_bound":18.041518901302926,"upper_bound":18.08281275467432,"unit":"ns"},"median":{"estimate":18.057471805469806,"lower_bound":18.040584189115968,"upper_bound":18.067724803517763,"unit":"ns"},"median_abs_dev":{"estimate":0.051311719668479534,"lower_bound":0.03987353860475034,"upper_bound":0.06382845761157124,"unit":"ns"},"slope":{"estimate":18.056596680085473,"lower_bound":18.04648657886244,"upper_bound":18.066515163130376,"unit":"ns"},"change":{"mean":{"estimate":0.009348368240879479,"lower_bound":0.006704212736136418,"upper_bound":0.01188040159334781,"unit":"%"},"median":{"estimate":0.010857407670006536,"lower_bound":0.0076433893399774355,"upper_bound":0.012809972701570027,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"subi","benchmarks":["subi/subi"],"report_directory":"/root/fuel-core/target/criterion/reports/subi"} +{"reason":"benchmark-complete","id":"xor/xor","report_directory":"/root/fuel-core/target/criterion/reports/xor/xor","iteration_count":[32166,64332,96498,128664,160830,192996,225162,257328,289494,321660,353826,385992,418158,450324,482490,514656,546822,578988,611154,643320,675486,707652,739818,771984,804150,836316,868482,900648,932814,964980,997146,1029312,1061478,1093644,1125810,1157976,1190142,1222308,1254474,1286640,1318806,1350972,1383138,1415304,1447470,1479636,1511802,1543968,1576134,1608300,1640466,1672632,1704798,1736964,1769130,1801296,1833462,1865628,1897794,1929960,1962126,1994292,2026458,2058624,2090790,2122956,2155122,2187288,2219454,2251620,2283786,2315952,2348118,2380284,2412450,2444616,2476782,2508948,2541114,2573280,2605446,2637612,2669778,2701944,2734110,2766276,2798442,2830608,2862774,2894940,2927106,2959272,2991438,3023604,3055770,3087936,3120102,3152268,3184434,3216600],"measured_values":[588453.0,1134373.0,1698387.0,2265801.0,2832135.0,3329205.0,3880947.0,4531713.0,5096456.0,5783989.0,6262846.0,6831035.0,7328508.0,7866155.0,8461704.0,9025465.0,9531602.0,10067568.0,10614055.0,11247352.0,11856523.0,12406073.0,12969010.0,13514615.0,14068618.0,14669187.0,15175728.0,15609515.0,16252266.0,16770927.0,17339092.0,17913259.0,18447029.0,19137596.0,19637579.0,20347468.0,20876877.0,21220645.0,21907390.0,22573764.0,22979281.0,23553377.0,24237128.0,24809197.0,25292074.0,26006929.0,26416632.0,26951788.0,27482144.0,28199269.0,28640434.0,29360987.0,29775768.0,30546570.0,30979822.0,31516668.0,32053983.0,32650935.0,33217166.0,33630697.0,34219375.0,34891806.0,35187685.0,35987890.0,36546580.0,37322762.0,37661078.0,38323250.0,39209760.0,39386196.0,39935357.0,40581243.0,41092742.0,41457666.0,42118868.0,42771572.0,43370152.0,44161434.0,44570725.0,44886982.0,45500786.0,46118119.0,46761793.0,47292119.0,47842731.0,48369018.0,48787316.0,49510002.0,50099597.0,50545289.0,51279134.0,51868684.0,52349691.0,52837017.0,53717954.0,54252399.0,54517244.0,55033633.0,55745467.0,56517342.0],"unit":"ns","throughput":[],"typical":{"estimate":17.49829016355519,"lower_bound":17.485866561293065,"upper_bound":17.51100895223652,"unit":"ns"},"mean":{"estimate":17.507559990721262,"lower_bound":17.4855817958666,"upper_bound":17.532865262438698,"unit":"ns"},"median":{"estimate":17.497564224346707,"lower_bound":17.48329291798794,"upper_bound":17.508149171877953,"unit":"ns"},"median_abs_dev":{"estimate":0.0581654958929045,"lower_bound":0.045566052208625585,"upper_bound":0.08174650424153322,"unit":"ns"},"slope":{"estimate":17.49829016355519,"lower_bound":17.485866561293065,"upper_bound":17.51100895223652,"unit":"ns"},"change":{"mean":{"estimate":0.013233603981142927,"lower_bound":0.011350226387452988,"upper_bound":0.015164380165644564,"unit":"%"},"median":{"estimate":0.012369024977078924,"lower_bound":0.010710974460369282,"upper_bound":0.014314293175857973,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"xor","benchmarks":["xor/xor"],"report_directory":"/root/fuel-core/target/criterion/reports/xor"} +{"reason":"benchmark-complete","id":"xori/xori","report_directory":"/root/fuel-core/target/criterion/reports/xori/xori","iteration_count":[31913,63826,95739,127652,159565,191478,223391,255304,287217,319130,351043,382956,414869,446782,478695,510608,542521,574434,606347,638260,670173,702086,733999,765912,797825,829738,861651,893564,925477,957390,989303,1021216,1053129,1085042,1116955,1148868,1180781,1212694,1244607,1276520,1308433,1340346,1372259,1404172,1436085,1467998,1499911,1531824,1563737,1595650,1627563,1659476,1691389,1723302,1755215,1787128,1819041,1850954,1882867,1914780,1946693,1978606,2010519,2042432,2074345,2106258,2138171,2170084,2201997,2233910,2265823,2297736,2329649,2361562,2393475,2425388,2457301,2489214,2521127,2553040,2584953,2616866,2648779,2680692,2712605,2744518,2776431,2808344,2840257,2872170,2904083,2935996,2967909,2999822,3031735,3063648,3095561,3127474,3159387,3191300],"measured_values":[592029.0,1131456.0,1685015.0,2247998.0,2821847.0,3356316.0,3924530.0,4494980.0,5165736.0,5699804.0,6227892.0,6681996.0,7328307.0,7826210.0,8532858.0,8971486.0,9549688.0,10181669.0,10715788.0,11267267.0,11877892.0,12388256.0,12961421.0,13503874.0,14089756.0,14654056.0,15382183.0,15679173.0,16303649.0,16963621.0,17538469.0,18140961.0,18686751.0,19046029.0,19787149.0,20288808.0,20829930.0,21453583.0,21948543.0,22578906.0,23222650.0,23643848.0,24357158.0,24826108.0,25620417.0,25944807.0,26461124.0,27123130.0,27614636.0,28269400.0,28954443.0,29442874.0,30041952.0,30589519.0,31096127.0,31479739.0,32326971.0,32939461.0,33494533.0,33751345.0,34581513.0,35072625.0,35652740.0,35922387.0,36438308.0,37290902.0,37732021.0,38397691.0,38845111.0,39314723.0,40068978.0,40551913.0,41079853.0,41978598.0,42299647.0,42906085.0,43449649.0,43902543.0,44636719.0,45210708.0,45763631.0,46263436.0,46717030.0,47387672.0,47935483.0,48705238.0,49021612.0,49606317.0,50283525.0,50973595.0,51360188.0,51840871.0,52295679.0,53111272.0,53540109.0,53943018.0,54865293.0,55553042.0,56077853.0,56482786.0],"unit":"ns","throughput":[],"typical":{"estimate":17.689021092150142,"lower_bound":17.67623115617038,"upper_bound":17.702008892619677,"unit":"ns"},"mean":{"estimate":17.693475111075514,"lower_bound":17.67292919995881,"upper_bound":17.71822270819383,"unit":"ns"},"median":{"estimate":17.682965541645366,"lower_bound":17.662605545364922,"upper_bound":17.703864474235957,"unit":"ns"},"median_abs_dev":{"estimate":0.06625093325068351,"lower_bound":0.05297791877339758,"upper_bound":0.08579419371788642,"unit":"ns"},"slope":{"estimate":17.689021092150142,"lower_bound":17.67623115617038,"upper_bound":17.702008892619677,"unit":"ns"},"change":{"mean":{"estimate":0.029401434356522982,"lower_bound":0.026847543199779257,"upper_bound":0.031664012890588275,"unit":"%"},"median":{"estimate":0.02917027170087838,"lower_bound":0.02724720619465093,"upper_bound":0.03134186602600675,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"xori","benchmarks":["xori/xori"],"report_directory":"/root/fuel-core/target/criterion/reports/xori"} +{"reason":"benchmark-complete","id":"wdcm/wdcm","report_directory":"/root/fuel-core/target/criterion/reports/wdcm/wdcm","iteration_count":[23950,47900,71850,95800,119750,143700,167650,191600,215550,239500,263450,287400,311350,335300,359250,383200,407150,431100,455050,479000,502950,526900,550850,574800,598750,622700,646650,670600,694550,718500,742450,766400,790350,814300,838250,862200,886150,910100,934050,958000,981950,1005900,1029850,1053800,1077750,1101700,1125650,1149600,1173550,1197500,1221450,1245400,1269350,1293300,1317250,1341200,1365150,1389100,1413050,1437000,1460950,1484900,1508850,1532800,1556750,1580700,1604650,1628600,1652550,1676500,1700450,1724400,1748350,1772300,1796250,1820200,1844150,1868100,1892050,1916000,1939950,1963900,1987850,2011800,2035750,2059700,2083650,2107600,2131550,2155500,2179450,2203400,2227350,2251300,2275250,2299200,2323150,2347100,2371050,2395000],"measured_values":[715309.0,1339493.0,2004641.0,2673202.0,3331919.0,4005972.0,4722683.0,5357526.0,6110277.0,6783081.0,7411043.0,8066081.0,8811227.0,9410770.0,10008550.0,10847879.0,11421874.0,12095956.0,12745028.0,13458499.0,14190082.0,14852395.0,15549961.0,16222560.0,16964330.0,17598265.0,18231833.0,18982137.0,19671408.0,20243467.0,20980460.0,21710224.0,22357135.0,23078968.0,23621135.0,24101407.0,24984060.0,25685551.0,26398533.0,27015926.0,27756938.0,28319514.0,29112581.0,29708770.0,30429715.0,31167229.0,31897066.0,32366366.0,33153144.0,33761963.0,34434779.0,35074297.0,35619316.0,36223673.0,37042580.0,37475009.0,38353041.0,39179496.0,39902612.0,40444565.0,41211075.0,41955169.0,42686625.0,43322784.0,43808729.0,44576627.0,45240763.0,45545544.0,46615378.0,47341152.0,48004911.0,48644883.0,49321080.0,50076150.0,50646224.0,51247533.0,51942608.0,52849043.0,53269184.0,54071452.0,54590943.0,55467453.0,56139372.0,56688355.0,57479517.0,57938126.0,58814131.0,59420202.0,60240782.0,60922442.0,61423877.0,62051852.0,62904323.0,63592150.0,64221923.0,64874620.0,65471373.0,66304548.0,66653043.0,67673379.0],"unit":"ns","throughput":[],"typical":{"estimate":28.20070867296869,"lower_bound":28.184793667928506,"upper_bound":28.21537610089058,"unit":"ns"},"mean":{"estimate":28.19511046782636,"lower_bound":28.160748028079183,"upper_bound":28.239816789821518,"unit":"ns"},"median":{"estimate":28.20275555570099,"lower_bound":28.189991831615927,"upper_bound":28.224546862982088,"unit":"ns"},"median_abs_dev":{"estimate":0.07820107000279804,"lower_bound":0.05907959707221236,"upper_bound":0.10068515696139593,"unit":"ns"},"slope":{"estimate":28.20070867296869,"lower_bound":28.184793667928506,"upper_bound":28.21537610089058,"unit":"ns"},"change":{"mean":{"estimate":0.009454181736166856,"lower_bound":0.0068816482884437044,"upper_bound":0.011887232730145287,"unit":"%"},"median":{"estimate":0.010518406825885451,"lower_bound":0.009450432716572976,"upper_bound":0.012655381180070702,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"wdcm","benchmarks":["wdcm/wdcm"],"report_directory":"/root/fuel-core/target/criterion/reports/wdcm"} +{"reason":"benchmark-complete","id":"wdop/wdop","report_directory":"/root/fuel-core/target/criterion/reports/wdop/wdop","iteration_count":[17829,35658,53487,71316,89145,106974,124803,142632,160461,178290,196119,213948,231777,249606,267435,285264,303093,320922,338751,356580,374409,392238,410067,427896,445725,463554,481383,499212,517041,534870,552699,570528,588357,606186,624015,641844,659673,677502,695331,713160,730989,748818,766647,784476,802305,820134,837963,855792,873621,891450,909279,927108,944937,962766,980595,998424,1016253,1034082,1051911,1069740,1087569,1105398,1123227,1141056,1158885,1176714,1194543,1212372,1230201,1248030,1265859,1283688,1301517,1319346,1337175,1355004,1372833,1390662,1408491,1426320,1444149,1461978,1479807,1497636,1515465,1533294,1551123,1568952,1586781,1604610,1622439,1640268,1658097,1675926,1693755,1711584,1729413,1747242,1765071,1782900],"measured_values":[735385.0,1390687.0,2083392.0,2782836.0,3466151.0,4140310.0,4813180.0,5535119.0,6131429.0,6780833.0,7422797.0,8240500.0,8849920.0,9623466.0,10194655.0,10944015.0,11633578.0,12261206.0,12917333.0,13652723.0,14270297.0,15093816.0,15689745.0,16570058.0,17049978.0,17697722.0,18471106.0,18999488.0,19729959.0,20429299.0,21233644.0,21825119.0,22413489.0,23107526.0,23714815.0,24562465.0,25201612.0,25831184.0,26588528.0,27233235.0,28023921.0,28660626.0,29361399.0,29972248.0,30545592.0,31394643.0,32015598.0,32585064.0,33441570.0,34079976.0,34843253.0,35268069.0,36029712.0,36924795.0,37512376.0,38168160.0,38950592.0,39587608.0,40144557.0,41145813.0,41334519.0,42276110.0,42876400.0,43680646.0,44259953.0,44826631.0,45608519.0,46286474.0,47022241.0,47745165.0,48326831.0,49027683.0,50097668.0,50753930.0,50967308.0,51994007.0,52856871.0,52900529.0,53806111.0,54579714.0,55214460.0,55983179.0,56410233.0,57252091.0,58032821.0,58878725.0,59436061.0,59888994.0,60816102.0,61599674.0,62172301.0,62933896.0,63298501.0,64091781.0,65003642.0,65270767.0,65958059.0,66768211.0,67814215.0,68009804.0],"unit":"ns","throughput":[],"typical":{"estimate":38.251800737285144,"lower_bound":38.22247253881376,"upper_bound":38.28131111789025,"unit":"ns"},"mean":{"estimate":38.31522404379804,"lower_bound":38.25562217751716,"upper_bound":38.394303172512544,"unit":"ns"},"median":{"estimate":38.243877934328694,"lower_bound":38.206711231446214,"upper_bound":38.27926526491465,"unit":"ns"},"median_abs_dev":{"estimate":0.13167251101353164,"lower_bound":0.09585778373843785,"upper_bound":0.17749261568422203,"unit":"ns"},"slope":{"estimate":38.251800737285144,"lower_bound":38.22247253881376,"upper_bound":38.28131111789025,"unit":"ns"},"change":{"mean":{"estimate":-0.02306437071186951,"lower_bound":-0.025116620818808232,"upper_bound":-0.02043765743211307,"unit":"%"},"median":{"estimate":-0.02388111271611626,"lower_bound":-0.024989307255459337,"upper_bound":-0.022816465362365833,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"wdop","benchmarks":["wdop/wdop"],"report_directory":"/root/fuel-core/target/criterion/reports/wdop"} +{"reason":"benchmark-complete","id":"wdml/wdml","report_directory":"/root/fuel-core/target/criterion/reports/wdml/wdml","iteration_count":[15132,30264,45396,60528,75660,90792,105924,121056,136188,151320,166452,181584,196716,211848,226980,242112,257244,272376,287508,302640,317772,332904,348036,363168,378300,393432,408564,423696,438828,453960,469092,484224,499356,514488,529620,544752,559884,575016,590148,605280,620412,635544,650676,665808,680940,696072,711204,726336,741468,756600,771732,786864,801996,817128,832260,847392,862524,877656,892788,907920,923052,938184,953316,968448,983580,998712,1013844,1028976,1044108,1059240,1074372,1089504,1104636,1119768,1134900,1150032,1165164,1180296,1195428,1210560,1225692,1240824,1255956,1271088,1286220,1301352,1316484,1331616,1346748,1361880,1377012,1392144,1407276,1422408,1437540,1452672,1467804,1482936,1498068,1513200],"measured_values":[673320.0,1259752.0,1904663.0,2473860.0,3054449.0,3665376.0,4335548.0,4910669.0,5516401.0,6132530.0,6710495.0,7391705.0,7910981.0,8549094.0,9166288.0,9739467.0,10404116.0,11063091.0,11741842.0,12265422.0,12889791.0,13591283.0,14047549.0,14826090.0,15389519.0,16154751.0,16592556.0,17247315.0,17798863.0,18482785.0,18935410.0,19588970.0,20225859.0,20776901.0,21500422.0,22205012.0,22612613.0,23353269.0,23777862.0,24506546.0,25116311.0,25691532.0,26587090.0,27581047.0,27447296.0,28243968.0,28956735.0,29559061.0,30209058.0,30853717.0,31269800.0,31942541.0,32438348.0,33199202.0,33963562.0,34387555.0,34858284.0,35472089.0,36250941.0,36652259.0,37404806.0,37912443.0,38630923.0,39368212.0,39838220.0,40562221.0,41271094.0,42459776.0,42834967.0,42939149.0,43792835.0,44322691.0,44769618.0,45482097.0,45825890.0,46570658.0,47260490.0,48123580.0,48439749.0,49051070.0,49840857.0,50389550.0,50973179.0,51922108.0,52310847.0,52848823.0,53440684.0,54323713.0,54888714.0,55507471.0,55878573.0,56908395.0,57035500.0,57772983.0,58314381.0,58979580.0,59773830.0,60143783.0,61067736.0,61532532.0],"unit":"ns","throughput":[],"typical":{"estimate":40.63821240508773,"lower_bound":40.60160683002274,"upper_bound":40.67605318493732,"unit":"ns"},"mean":{"estimate":40.66969989310464,"lower_bound":40.59375741673576,"upper_bound":40.77215252628101,"unit":"ns"},"median":{"estimate":40.59534119891475,"lower_bound":40.5612342983477,"upper_bound":40.61698167239404,"unit":"ns"},"median_abs_dev":{"estimate":0.17155445792090857,"lower_bound":0.12981634505218445,"upper_bound":0.24097773070394948,"unit":"ns"},"slope":{"estimate":40.63821240508773,"lower_bound":40.60160683002274,"upper_bound":40.67605318493732,"unit":"ns"},"change":{"mean":{"estimate":-0.04037735389972941,"lower_bound":-0.04271702511721744,"upper_bound":-0.037819105864692594,"unit":"%"},"median":{"estimate":-0.04221710060516615,"lower_bound":-0.043357138833915565,"upper_bound":-0.041205429133014504,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"wdml","benchmarks":["wdml/wdml"],"report_directory":"/root/fuel-core/target/criterion/reports/wdml"} +{"reason":"benchmark-complete","id":"wddv/wddv","report_directory":"/root/fuel-core/target/criterion/reports/wddv/wddv","iteration_count":[12754,25508,38262,51016,63770,76524,89278,102032,114786,127540,140294,153048,165802,178556,191310,204064,216818,229572,242326,255080,267834,280588,293342,306096,318850,331604,344358,357112,369866,382620,395374,408128,420882,433636,446390,459144,471898,484652,497406,510160,522914,535668,548422,561176,573930,586684,599438,612192,624946,637700,650454,663208,675962,688716,701470,714224,726978,739732,752486,765240,777994,790748,803502,816256,829010,841764,854518,867272,880026,892780,905534,918288,931042,943796,956550,969304,982058,994812,1007566,1020320,1033074,1045828,1058582,1071336,1084090,1096844,1109598,1122352,1135106,1147860,1160614,1173368,1186122,1198876,1211630,1224384,1237138,1249892,1262646,1275400],"measured_values":[840609.0,1617848.0,2451596.0,3246802.0,4035104.0,4897745.0,5668577.0,6527886.0,7266979.0,8082195.0,8953250.0,9729750.0,10545242.0,11380935.0,12151447.0,12947602.0,13763002.0,14608247.0,15395140.0,16193124.0,17030683.0,17824228.0,18678173.0,19453971.0,20304587.0,21177544.0,22012895.0,22757618.0,23642226.0,24402191.0,25128278.0,25964920.0,26782894.0,27589741.0,28424962.0,29152974.0,30059576.0,30923606.0,31641555.0,32522647.0,33227183.0,34221912.0,34890638.0,35698030.0,36481874.0,37222128.0,38048660.0,38888738.0,39676162.0,40611000.0,41306978.0,42127632.0,42928305.0,43868373.0,44562269.0,45383996.0,46143358.0,46937603.0,47998329.0,48750680.0,49499991.0,50299463.0,51101026.0,51709860.0,52703632.0,53506472.0,54406046.0,55065409.0,55954841.0,56857951.0,57680770.0,58380636.0,59262082.0,60019619.0,60991401.0,61463971.0,62427170.0,63294997.0,64185815.0,64918624.0,65640144.0,66461596.0,67216306.0,68122596.0,68987452.0,69704587.0,70574677.0,71324233.0,72303497.0,73010436.0,73945045.0,74583544.0,75498655.0,76235243.0,76882341.0,77887178.0,78524417.0,79463653.0,80284390.0,81121676.0],"unit":"ns","throughput":[],"typical":{"estimate":63.59290352741036,"lower_bound":63.57215391139128,"upper_bound":63.6138409342994,"unit":"ns"},"mean":{"estimate":63.631669407362416,"lower_bound":63.588046532124956,"upper_bound":63.69122517900897,"unit":"ns"},"median":{"estimate":63.59586518965929,"lower_bound":63.57094147815491,"upper_bound":63.619550729183004,"unit":"ns"},"median_abs_dev":{"estimate":0.11613030958815611,"lower_bound":0.08049996050561295,"upper_bound":0.1436691167636516,"unit":"ns"},"slope":{"estimate":63.59290352741036,"lower_bound":63.57215391139128,"upper_bound":63.6138409342994,"unit":"ns"},"change":{"mean":{"estimate":-0.001851185383019982,"lower_bound":-0.003334347757300277,"upper_bound":-0.0005786433573650956,"unit":"%"},"median":{"estimate":-0.0016736338487429725,"lower_bound":-0.002287355317995954,"upper_bound":-0.0012751191467739176,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"wddv","benchmarks":["wddv/wddv"],"report_directory":"/root/fuel-core/target/criterion/reports/wddv"} +{"reason":"benchmark-complete","id":"wdmd/wdmd","report_directory":"/root/fuel-core/target/criterion/reports/wdmd/wdmd","iteration_count":[6273,12546,18819,25092,31365,37638,43911,50184,56457,62730,69003,75276,81549,87822,94095,100368,106641,112914,119187,125460,131733,138006,144279,150552,156825,163098,169371,175644,181917,188190,194463,200736,207009,213282,219555,225828,232101,238374,244647,250920,257193,263466,269739,276012,282285,288558,294831,301104,307377,313650,319923,326196,332469,338742,345015,351288,357561,363834,370107,376380,382653,388926,395199,401472,407745,414018,420291,426564,432837,439110,445383,451656,457929,464202,470475,476748,483021,489294,495567,501840,508113,514386,520659,526932,533205,539478,545751,552024,558297,564570,570843,577116,583389,589662,595935,602208,608481,614754,621027,627300],"measured_values":[919924.0,1726527.0,2609862.0,3461063.0,4331123.0,5172323.0,6044647.0,6926334.0,7778495.0,8642239.0,9501741.0,10388995.0,11210837.0,12069327.0,12950192.0,13837734.0,14721331.0,15523941.0,16378047.0,17240671.0,18177175.0,19063988.0,19860587.0,20683247.0,21589642.0,22498766.0,23299281.0,24135862.0,25061021.0,25914922.0,26755372.0,27642041.0,28562632.0,29367502.0,30265942.0,31117164.0,31933745.0,32841066.0,33707319.0,34613570.0,35406945.0,36299286.0,37168099.0,38022118.0,38793104.0,39733838.0,40552459.0,41518791.0,42330053.0,43164519.0,44077992.0,44927306.0,45738698.0,46658306.0,47610033.0,48428374.0,49154127.0,50169464.0,50899771.0,51872015.0,52716843.0,53572187.0,54394636.0,55217702.0,56136866.0,56977290.0,57888713.0,58747112.0,59590556.0,60740378.0,61310610.0,62169407.0,63142320.0,63870853.0,64766340.0,65559224.0,66447230.0,67318312.0,68210947.0,69223353.0,70101613.0,70754101.0,71661149.0,72547662.0,73343302.0,74243990.0,75103414.0,76015945.0,76822799.0,77657277.0,78498430.0,79356565.0,80294979.0,81506742.0,81975701.0,83000044.0,83787457.0,84486584.0,85498851.0,86453317.0],"unit":"ns","throughput":[],"typical":{"estimate":137.6918969744466,"lower_bound":137.64781959284568,"upper_bound":137.74221513361397,"unit":"ns"},"mean":{"estimate":137.80752974079553,"lower_bound":137.68744029371564,"upper_bound":138.0113878802618,"unit":"ns"},"median":{"estimate":137.68633043844034,"lower_bound":137.65223865065448,"upper_bound":137.73101448209053,"unit":"ns"},"median_abs_dev":{"estimate":0.16308995141888757,"lower_bound":0.12423726412778885,"upper_bound":0.22202643992130522,"unit":"ns"},"slope":{"estimate":137.6918969744466,"lower_bound":137.64781959284568,"upper_bound":137.74221513361397,"unit":"ns"},"change":{"mean":{"estimate":-0.0005373223705213981,"lower_bound":-0.001718628026913321,"upper_bound":0.0009346328666114508,"unit":"%"},"median":{"estimate":-0.0010687287545797508,"lower_bound":-0.001385620896790396,"upper_bound":-0.0007213433739325925,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"wdmd","benchmarks":["wdmd/wdmd"],"report_directory":"/root/fuel-core/target/criterion/reports/wdmd"} +{"reason":"benchmark-complete","id":"wdam/wdam","report_directory":"/root/fuel-core/target/criterion/reports/wdam/wdam","iteration_count":[7217,14434,21651,28868,36085,43302,50519,57736,64953,72170,79387,86604,93821,101038,108255,115472,122689,129906,137123,144340,151557,158774,165991,173208,180425,187642,194859,202076,209293,216510,223727,230944,238161,245378,252595,259812,267029,274246,281463,288680,295897,303114,310331,317548,324765,331982,339199,346416,353633,360850,368067,375284,382501,389718,396935,404152,411369,418586,425803,433020,440237,447454,454671,461888,469105,476322,483539,490756,497973,505190,512407,519624,526841,534058,541275,548492,555709,562926,570143,577360,584577,591794,599011,606228,613445,620662,627879,635096,642313,649530,656747,663964,671181,678398,685615,692832,700049,707266,714483,721700],"measured_values":[899427.0,1690342.0,2536174.0,3380983.0,4224231.0,5067535.0,5913810.0,6754165.0,7597544.0,8445025.0,9298126.0,10131677.0,11005038.0,11846036.0,12679316.0,13523801.0,14366949.0,15217362.0,16059241.0,16893903.0,17966676.0,18636797.0,19445491.0,20287066.0,21450623.0,22023918.0,22809852.0,23649006.0,24526674.0,25376195.0,26209811.0,27019288.0,27905930.0,28716771.0,29569114.0,30426865.0,31249906.0,32110513.0,32951288.0,33800961.0,34635960.0,35492864.0,36341838.0,37189748.0,38366939.0,39143542.0,39761155.0,40571227.0,41382524.0,42313637.0,43172807.0,44361013.0,44764435.0,45659709.0,46461341.0,47286686.0,48136112.0,49024099.0,49864953.0,50715526.0,51596288.0,52378842.0,53516446.0,54123938.0,55019056.0,55842028.0,56570917.0,57455727.0,58399271.0,59176783.0,60034150.0,60867610.0,61701297.0,62543220.0,63386520.0,64268343.0,65684387.0,66062629.0,66924216.0,67609173.0,68457106.0,69352733.0,70159015.0,70969281.0,71813171.0,72683159.0,73510280.0,74330370.0,75323460.0,76004660.0,77028414.0,77981492.0,78632064.0,79431710.0,80347237.0,81134017.0,82017589.0,82883808.0,83739896.0,84520137.0],"unit":"ns","throughput":[],"typical":{"estimate":117.19894260098282,"lower_bound":117.15317520743406,"upper_bound":117.2554996178171,"unit":"ns"},"mean":{"estimate":117.28275935322961,"lower_bound":117.16501646105523,"upper_bound":117.46609871630179,"unit":"ns"},"median":{"estimate":117.11796097456676,"lower_bound":117.10752551308119,"upper_bound":117.13956437731899,"unit":"ns"},"median_abs_dev":{"estimate":0.09010209284751014,"lower_bound":0.06797909955416662,"upper_bound":0.12266731625387328,"unit":"ns"},"slope":{"estimate":117.19894260098282,"lower_bound":117.15317520743406,"upper_bound":117.2554996178171,"unit":"ns"},"change":{"mean":{"estimate":0.01368026819298862,"lower_bound":0.012162478503374263,"upper_bound":0.015428993992701034,"unit":"%"},"median":{"estimate":0.01284604808303591,"lower_bound":0.012649932415190968,"upper_bound":0.013381388558584817,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"wdam","benchmarks":["wdam/wdam"],"report_directory":"/root/fuel-core/target/criterion/reports/wdam"} +{"reason":"benchmark-complete","id":"wdmm/wdmm","report_directory":"/root/fuel-core/target/criterion/reports/wdmm/wdmm","iteration_count":[6621,13242,19863,26484,33105,39726,46347,52968,59589,66210,72831,79452,86073,92694,99315,105936,112557,119178,125799,132420,139041,145662,152283,158904,165525,172146,178767,185388,192009,198630,205251,211872,218493,225114,231735,238356,244977,251598,258219,264840,271461,278082,284703,291324,297945,304566,311187,317808,324429,331050,337671,344292,350913,357534,364155,370776,377397,384018,390639,397260,403881,410502,417123,423744,430365,436986,443607,450228,456849,463470,470091,476712,483333,489954,496575,503196,509817,516438,523059,529680,536301,542922,549543,556164,562785,569406,576027,582648,589269,595890,602511,609132,615753,622374,628995,635616,642237,648858,655479,662100],"measured_values":[942902.0,1795569.0,2710648.0,3651906.0,4565173.0,5379651.0,6307140.0,7258762.0,8073075.0,9031477.0,9868538.0,10810113.0,11706471.0,12580591.0,13453869.0,14358318.0,15249409.0,16144039.0,17041058.0,17944917.0,18840587.0,19805239.0,20683633.0,21628307.0,22474760.0,23323399.0,24232592.0,25206635.0,26012058.0,26981886.0,27811247.0,28765225.0,29600945.0,30523358.0,31434033.0,32354404.0,33208430.0,34153269.0,35028670.0,35955312.0,36801384.0,37699736.0,38621238.0,39468025.0,40510086.0,41428015.0,42481375.0,43103692.0,44010370.0,44879994.0,45845932.0,46685498.0,47702239.0,48478342.0,49423868.0,50229397.0,51509844.0,52201762.0,53018814.0,53868473.0,54785290.0,55722671.0,56513565.0,57577732.0,58357186.0,59251228.0,60112753.0,61154016.0,61928967.0,62802298.0,63708148.0,64606263.0,65626693.0,66498390.0,67274463.0,68174621.0,69202676.0,70069514.0,71198117.0,71762745.0,72689693.0,74096676.0,74562934.0,75508541.0,76591124.0,77155657.0,78185290.0,78948663.0,79961120.0,81241564.0,81744190.0,82770753.0,84030408.0,84485971.0,85411096.0,86190691.0,87040937.0,88060695.0,88920035.0,89919901.0],"unit":"ns","throughput":[],"typical":{"estimate":135.74604245569518,"lower_bound":135.6801900296765,"upper_bound":135.81983044916362,"unit":"ns"},"mean":{"estimate":135.8538277705883,"lower_bound":135.72765595878715,"upper_bound":136.0284720657535,"unit":"ns"},"median":{"estimate":135.67549499787833,"lower_bound":135.60004279313296,"upper_bound":135.7398345332192,"unit":"ns"},"median_abs_dev":{"estimate":0.22682431026414165,"lower_bound":0.16979450615123928,"upper_bound":0.3180605574965674,"unit":"ns"},"slope":{"estimate":135.74604245569518,"lower_bound":135.6801900296765,"upper_bound":135.81983044916362,"unit":"ns"},"change":{"mean":{"estimate":0.014877118366399378,"lower_bound":0.013351377350518856,"upper_bound":0.016333654854940705,"unit":"%"},"median":{"estimate":0.014309726794172306,"lower_bound":0.013825949317165964,"upper_bound":0.014950004005854327,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"wdmm","benchmarks":["wdmm/wdmm"],"report_directory":"/root/fuel-core/target/criterion/reports/wdmm"} +{"reason":"benchmark-complete","id":"wqcm/wqcm","report_directory":"/root/fuel-core/target/criterion/reports/wqcm/wqcm","iteration_count":[22092,44184,66276,88368,110460,132552,154644,176736,198828,220920,243012,265104,287196,309288,331380,353472,375564,397656,419748,441840,463932,486024,508116,530208,552300,574392,596484,618576,640668,662760,684852,706944,729036,751128,773220,795312,817404,839496,861588,883680,905772,927864,949956,972048,994140,1016232,1038324,1060416,1082508,1104600,1126692,1148784,1170876,1192968,1215060,1237152,1259244,1281336,1303428,1325520,1347612,1369704,1391796,1413888,1435980,1458072,1480164,1502256,1524348,1546440,1568532,1590624,1612716,1634808,1656900,1678992,1701084,1723176,1745268,1767360,1789452,1811544,1833636,1855728,1877820,1899912,1922004,1944096,1966188,1988280,2010372,2032464,2054556,2076648,2098740,2120832,2142924,2165016,2187108,2209200],"measured_values":[719229.0,1379141.0,2051284.0,2737560.0,3433457.0,4137984.0,4822475.0,5592943.0,6187304.0,6877321.0,7559167.0,8267665.0,8904776.0,9600128.0,10349212.0,11024772.0,11686585.0,12382086.0,13061898.0,13760575.0,14494101.0,15154225.0,15819249.0,16520386.0,17260055.0,17890159.0,18617403.0,19255295.0,19997430.0,20620682.0,21354594.0,22020741.0,22706317.0,23344209.0,24083479.0,24840631.0,25442054.0,26120635.0,26851236.0,27472442.0,28232863.0,28873205.0,29579054.0,30374775.0,30966609.0,31625999.0,32343207.0,33072829.0,33689547.0,34380629.0,35248250.0,35739588.0,36510785.0,37168852.0,37847090.0,38524033.0,39277298.0,39816528.0,40526911.0,41239128.0,41950097.0,42618379.0,43370960.0,44216677.0,44699134.0,45540131.0,46088736.0,46797349.0,47518395.0,48089450.0,48829431.0,49675121.0,50309726.0,50999220.0,51622563.0,52282650.0,53366470.0,54207820.0,54322305.0,55085169.0,55737688.0,56363797.0,57075569.0,57826293.0,58606908.0,59235528.0,59901950.0,60521167.0,61243509.0,62021656.0,62792743.0,63393503.0,64005489.0,64680041.0,65465236.0,66034853.0,66746196.0,67288594.0,68152713.0,68975917.0],"unit":"ns","throughput":[],"typical":{"estimate":31.168653834344983,"lower_bound":31.153426312531412,"upper_bound":31.186152390592166,"unit":"ns"},"mean":{"estimate":31.1759361861447,"lower_bound":31.150204897268594,"upper_bound":31.212351003468388,"unit":"ns"},"median":{"estimate":31.148745728621407,"lower_bound":31.139308585151092,"upper_bound":31.16142011832194,"unit":"ns"},"median_abs_dev":{"estimate":0.04736959587910298,"lower_bound":0.03439115793071222,"upper_bound":0.05782752934311372,"unit":"ns"},"slope":{"estimate":31.168653834344983,"lower_bound":31.153426312531412,"upper_bound":31.186152390592166,"unit":"ns"},"change":{"mean":{"estimate":0.015915139836863323,"lower_bound":0.01440334155922709,"upper_bound":0.017482858696688818,"unit":"%"},"median":{"estimate":0.015345635984489236,"lower_bound":0.014720452209791013,"upper_bound":0.015913840053770157,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"wqcm","benchmarks":["wqcm/wqcm"],"report_directory":"/root/fuel-core/target/criterion/reports/wqcm"} +{"reason":"benchmark-complete","id":"wqop/wqop","report_directory":"/root/fuel-core/target/criterion/reports/wqop/wqop","iteration_count":[16171,32342,48513,64684,80855,97026,113197,129368,145539,161710,177881,194052,210223,226394,242565,258736,274907,291078,307249,323420,339591,355762,371933,388104,404275,420446,436617,452788,468959,485130,501301,517472,533643,549814,565985,582156,598327,614498,630669,646840,663011,679182,695353,711524,727695,743866,760037,776208,792379,808550,824721,840892,857063,873234,889405,905576,921747,937918,954089,970260,986431,1002602,1018773,1034944,1051115,1067286,1083457,1099628,1115799,1131970,1148141,1164312,1180483,1196654,1212825,1228996,1245167,1261338,1277509,1293680,1309851,1326022,1342193,1358364,1374535,1390706,1406877,1423048,1439219,1455390,1471561,1487732,1503903,1520074,1536245,1552416,1568587,1584758,1600929,1617100],"measured_values":[737226.0,1404160.0,2072590.0,2766439.0,3493867.0,4145546.0,4821984.0,5490237.0,6184427.0,6904441.0,7610535.0,8262249.0,9014222.0,9634441.0,10326508.0,11028886.0,11728787.0,12386186.0,13076079.0,13853191.0,14556596.0,15230231.0,15866334.0,16578800.0,17243436.0,17924943.0,18566793.0,19428175.0,20016967.0,20741333.0,21419408.0,22048358.0,22833353.0,23409448.0,24189934.0,24902050.0,25468028.0,26318914.0,27020136.0,27735296.0,28361638.0,28965447.0,29769974.0,30406071.0,31162479.0,31658551.0,32381258.0,33153724.0,33854274.0,34561239.0,35156909.0,35916754.0,36595514.0,37317430.0,38057570.0,38581314.0,39372207.0,39929199.0,40752498.0,41360433.0,42054982.0,42850654.0,43483496.0,44188054.0,44944667.0,45575200.0,46231031.0,46944090.0,47598618.0,48505072.0,49044299.0,49523490.0,50352296.0,51366018.0,51779074.0,52524388.0,53064982.0,53952117.0,54724128.0,55465676.0,56045816.0,56647201.0,57323901.0,58250794.0,58682148.0,59400061.0,60172000.0,60827400.0,61621085.0,62280339.0,62937630.0,63667806.0,64372673.0,64986596.0,65527633.0,66462859.0,67010744.0,67832402.0,68420031.0,69145673.0],"unit":"ns","throughput":[],"typical":{"estimate":42.738406305551635,"lower_bound":42.71915916251876,"upper_bound":42.75673374466846,"unit":"ns"},"mean":{"estimate":42.75422666056499,"lower_bound":42.70661687114408,"upper_bound":42.826312142226705,"unit":"ns"},"median":{"estimate":42.72140701578342,"lower_bound":42.70705945996734,"upper_bound":42.741177058346814,"unit":"ns"},"median_abs_dev":{"estimate":0.10077474933164182,"lower_bound":0.07653461705627232,"upper_bound":0.1301311108033891,"unit":"ns"},"slope":{"estimate":42.738406305551635,"lower_bound":42.71915916251876,"upper_bound":42.75673374466846,"unit":"ns"},"change":{"mean":{"estimate":-0.006712128983175192,"lower_bound":-0.010194360197462218,"upper_bound":-0.004081530190668318,"unit":"%"},"median":{"estimate":-0.005872433663102972,"lower_bound":-0.006743014199216302,"upper_bound":-0.004949163868864348,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"wqop","benchmarks":["wqop/wqop"],"report_directory":"/root/fuel-core/target/criterion/reports/wqop"} +{"reason":"benchmark-complete","id":"wqml/wqml","report_directory":"/root/fuel-core/target/criterion/reports/wqml/wqml","iteration_count":[12966,25932,38898,51864,64830,77796,90762,103728,116694,129660,142626,155592,168558,181524,194490,207456,220422,233388,246354,259320,272286,285252,298218,311184,324150,337116,350082,363048,376014,388980,401946,414912,427878,440844,453810,466776,479742,492708,505674,518640,531606,544572,557538,570504,583470,596436,609402,622368,635334,648300,661266,674232,687198,700164,713130,726096,739062,752028,764994,777960,790926,803892,816858,829824,842790,855756,868722,881688,894654,907620,920586,933552,946518,959484,972450,985416,998382,1011348,1024314,1037280,1050246,1063212,1076178,1089144,1102110,1115076,1128042,1141008,1153974,1166940,1179906,1192872,1205838,1218804,1231770,1244736,1257702,1270668,1283634,1296600],"measured_values":[683353.0,1316529.0,2091231.0,2626761.0,3457872.0,4148181.0,4710797.0,5496572.0,5939900.0,6768105.0,7486062.0,7881776.0,8916375.0,9588608.0,10210432.0,10695115.0,11446542.0,11905202.0,12690141.0,13489520.0,14364747.0,14736064.0,15461734.0,16236618.0,17031607.0,17688513.0,18036432.0,18934161.0,19158896.0,20197644.0,20306426.0,21624570.0,21959295.0,22924687.0,23703028.0,23623185.0,25049400.0,25836946.0,26220342.0,27001021.0,27431106.0,28273887.0,28526046.0,29477673.0,30053145.0,30459701.0,31558906.0,32645150.0,32798938.0,33880162.0,34169608.0,34763070.0,35592744.0,35886955.0,37677891.0,37827240.0,38206174.0,39874833.0,40085400.0,40210908.0,41146699.0,41597671.0,42135198.0,42759826.0,43922049.0,43907557.0,44738068.0,45240531.0,46695832.0,46606802.0,47417914.0,48065719.0,48751732.0,50363429.0,51407397.0,50422845.0,52189996.0,51904074.0,53220253.0,53322032.0,54366506.0,54890598.0,55576985.0,56425762.0,57065589.0,57729613.0,58336381.0,59162205.0,59923684.0,60241114.0,60642736.0,61477001.0,62936657.0,63169802.0,62663739.0,65362432.0,65075766.0,66180557.0,66593279.0,66992484.0],"unit":"ns","throughput":[],"typical":{"estimate":51.7842774129955,"lower_bound":51.68046055555099,"upper_bound":51.889944650900304,"unit":"ns"},"mean":{"estimate":51.86230913419507,"lower_bound":51.7430945221665,"upper_bound":51.983557437015264,"unit":"ns"},"median":{"estimate":51.79034754949687,"lower_bound":51.67301509528692,"upper_bound":51.924633657257445,"unit":"ns"},"median_abs_dev":{"estimate":0.4839289680707339,"lower_bound":0.3717691026594296,"upper_bound":0.6441497731755563,"unit":"ns"},"slope":{"estimate":51.7842774129955,"lower_bound":51.68046055555099,"upper_bound":51.889944650900304,"unit":"ns"},"change":{"mean":{"estimate":0.018086073474583797,"lower_bound":0.015163888666488134,"upper_bound":0.020727099591306464,"unit":"%"},"median":{"estimate":0.017813591985415433,"lower_bound":0.015418259706916126,"upper_bound":0.02049545172233257,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"wqml","benchmarks":["wqml/wqml"],"report_directory":"/root/fuel-core/target/criterion/reports/wqml"} +{"reason":"benchmark-complete","id":"wqdv/wqdv","report_directory":"/root/fuel-core/target/criterion/reports/wqdv/wqdv","iteration_count":[10372,20744,31116,41488,51860,62232,72604,82976,93348,103720,114092,124464,134836,145208,155580,165952,176324,186696,197068,207440,217812,228184,238556,248928,259300,269672,280044,290416,300788,311160,321532,331904,342276,352648,363020,373392,383764,394136,404508,414880,425252,435624,445996,456368,466740,477112,487484,497856,508228,518600,528972,539344,549716,560088,570460,580832,591204,601576,611948,622320,632692,643064,653436,663808,674180,684552,694924,705296,715668,726040,736412,746784,757156,767528,777900,788272,798644,809016,819388,829760,840132,850504,860876,871248,881620,891992,902364,912736,923108,933480,943852,954224,964596,974968,985340,995712,1006084,1016456,1026828,1037200],"measured_values":[895408.0,1707109.0,2557688.0,3413221.0,4263512.0,5144807.0,5982399.0,6823265.0,7673579.0,8530988.0,9416343.0,10277170.0,11096698.0,11939371.0,12813564.0,13641291.0,14501722.0,15351621.0,16202537.0,17067114.0,17914557.0,18775912.0,19629362.0,20483087.0,21340281.0,22182091.0,23048430.0,23895080.0,24751247.0,25591435.0,26473070.0,27304108.0,28155015.0,29133908.0,29880038.0,30781733.0,31581033.0,32405683.0,33255590.0,34190388.0,34977376.0,35817421.0,36684218.0,37541239.0,38404539.0,39254614.0,40083125.0,40956285.0,41794987.0,42668434.0,43506138.0,44346561.0,45215305.0,46060215.0,46927091.0,47821346.0,48680527.0,50458675.0,50552948.0,51186680.0,52076849.0,52879774.0,53739485.0,54695471.0,55434638.0,56321502.0,57154856.0,58025528.0,58868932.0,59713432.0,60562080.0,61628561.0,62275826.0,63163089.0,63993599.0,64913783.0,65714134.0,66564571.0,67539837.0,68278264.0,69588696.0,69994369.0,70828402.0,71704149.0,72590651.0,73374570.0,74312478.0,75527216.0,75958432.0,76822475.0,77630807.0,78509785.0,79349012.0,80194899.0,81039979.0,81875457.0,82780880.0,83678821.0,84525531.0,85362822.0],"unit":"ns","throughput":[],"typical":{"estimate":82.32795720349732,"lower_bound":82.28966014568668,"upper_bound":82.3776367156009,"unit":"ns"},"mean":{"estimate":82.36132560505544,"lower_bound":82.2950946094859,"upper_bound":82.46350055170944,"unit":"ns"},"median":{"estimate":82.27522487572958,"lower_bound":82.26139440760691,"upper_bound":82.28408652666269,"unit":"ns"},"median_abs_dev":{"estimate":0.04340464778932452,"lower_bound":0.033634491946898784,"upper_bound":0.060955100179162613,"unit":"ns"},"slope":{"estimate":82.32795720349732,"lower_bound":82.28966014568668,"upper_bound":82.3776367156009,"unit":"ns"},"change":{"mean":{"estimate":0.019968835312589084,"lower_bound":0.018663042889288512,"upper_bound":0.021451272081790013,"unit":"%"},"median":{"estimate":0.02001589885876287,"lower_bound":0.019802382492043247,"upper_bound":0.020143646734251286,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"wqdv","benchmarks":["wqdv/wqdv"],"report_directory":"/root/fuel-core/target/criterion/reports/wqdv"} +{"reason":"benchmark-complete","id":"wqmd/wqmd","report_directory":"/root/fuel-core/target/criterion/reports/wqmd/wqmd","iteration_count":[3988,7976,11964,15952,19940,23928,27916,31904,35892,39880,43868,47856,51844,55832,59820,63808,67796,71784,75772,79760,83748,87736,91724,95712,99700,103688,107676,111664,115652,119640,123628,127616,131604,135592,139580,143568,147556,151544,155532,159520,163508,167496,171484,175472,179460,183448,187436,191424,195412,199400,203388,207376,211364,215352,219340,223328,227316,231304,235292,239280,243268,247256,251244,255232,259220,263208,267196,271184,275172,279160,283148,287136,291124,295112,299100,303088,307076,311064,315052,319040,323028,327016,331004,334992,338980,342968,346956,350944,354932,358920,362908,366896,370884,374872,378860,382848,386836,390824,394812,398800],"measured_values":[945349.0,1825479.0,2736428.0,3648292.0,4560520.0,5470799.0,6425228.0,7316949.0,8207200.0,9121324.0,10030651.0,10943750.0,11883153.0,12793677.0,13680654.0,14591106.0,15503569.0,16416993.0,17330056.0,18238566.0,19154286.0,20085066.0,21063746.0,21956470.0,22797819.0,23712165.0,24627634.0,25521062.0,26447076.0,27430027.0,28292165.0,29222352.0,30174673.0,31037104.0,31953795.0,32906561.0,33746610.0,34764122.0,35569424.0,36504692.0,37413291.0,38300604.0,39213814.0,40128640.0,41037013.0,41979555.0,42861114.0,43788864.0,44704469.0,45617864.0,46482431.0,47442364.0,48362312.0,49399494.0,50172626.0,51128053.0,51990481.0,52892028.0,54138275.0,54885333.0,55688914.0,56560934.0,57502432.0,58384160.0,59350971.0,60220209.0,61105422.0,62216644.0,62937675.0,63871694.0,64773718.0,65671590.0,66794946.0,67538619.0,68448783.0,69323037.0,70258000.0,71773080.0,72292072.0,72988677.0,74231948.0,74927853.0,75959459.0,76654387.0,77554625.0,78550266.0,79390096.0,80406325.0,81225422.0,82114245.0,83005859.0,83968302.0,84930309.0,85746935.0,86714378.0,87626255.0,88557187.0,89443407.0,90351806.0,91308771.0],"unit":"ns","throughput":[],"typical":{"estimate":228.961512791663,"lower_bound":228.8802066664786,"upper_bound":229.0613864590075,"unit":"ns"},"mean":{"estimate":229.00903158529383,"lower_bound":228.87611453012428,"upper_bound":229.20966608886064,"unit":"ns"},"median":{"estimate":228.8050682370562,"lower_bound":228.76244120775755,"upper_bound":228.85272179695463,"unit":"ns"},"median_abs_dev":{"estimate":0.16948640365410111,"lower_bound":0.11874899054632058,"upper_bound":0.2246322871944113,"unit":"ns"},"slope":{"estimate":228.961512791663,"lower_bound":228.8802066664786,"upper_bound":229.0613864590075,"unit":"ns"},"change":{"mean":{"estimate":0.0060687691893872575,"lower_bound":0.004700438566850357,"upper_bound":0.007277197419286735,"unit":"%"},"median":{"estimate":0.006300771907267855,"lower_bound":0.005960324870718886,"upper_bound":0.006662174113645891,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"wqmd","benchmarks":["wqmd/wqmd"],"report_directory":"/root/fuel-core/target/criterion/reports/wqmd"} +{"reason":"benchmark-complete","id":"wqam/wqam","report_directory":"/root/fuel-core/target/criterion/reports/wqam/wqam","iteration_count":[5924,11848,17772,23696,29620,35544,41468,47392,53316,59240,65164,71088,77012,82936,88860,94784,100708,106632,112556,118480,124404,130328,136252,142176,148100,154024,159948,165872,171796,177720,183644,189568,195492,201416,207340,213264,219188,225112,231036,236960,242884,248808,254732,260656,266580,272504,278428,284352,290276,296200,302124,308048,313972,319896,325820,331744,337668,343592,349516,355440,361364,367288,373212,379136,385060,390984,396908,402832,408756,414680,420604,426528,432452,438376,444300,450224,456148,462072,467996,473920,479844,485768,491692,497616,503540,509464,515388,521312,527236,533160,539084,545008,550932,556856,562780,568704,574628,580552,586476,592400],"measured_values":[940859.0,1775298.0,2645325.0,3505887.0,4370413.0,5318520.0,6139907.0,7017465.0,7865999.0,8746713.0,9622919.0,10495081.0,11365573.0,12246121.0,13149161.0,14051644.0,14948348.0,15740369.0,16617604.0,17490666.0,18424759.0,19245666.0,20109978.0,20987672.0,21866123.0,22829666.0,23618256.0,24526080.0,25353118.0,26224902.0,27073460.0,28002668.0,28854046.0,29724299.0,30612463.0,31468362.0,32292068.0,33258399.0,34104451.0,34979680.0,35852122.0,36753015.0,37628412.0,38488874.0,39369446.0,40239169.0,41106585.0,41996408.0,42840664.0,43730599.0,44607156.0,45480693.0,46359147.0,47184328.0,48209752.0,49030064.0,49848593.0,50699499.0,51570815.0,52475262.0,53360553.0,54281937.0,55101581.0,55967686.0,56992671.0,57711728.0,58580528.0,59535030.0,60376980.0,61217294.0,62111124.0,63086039.0,63802834.0,64776472.0,65752587.0,66406969.0,67269931.0,68326982.0,69200578.0,70024415.0,70854518.0,71734599.0,72582567.0,73574038.0,74305012.0,75179738.0,76146983.0,77035841.0,77821345.0,78766988.0,79551654.0,80521415.0,81335109.0,82684850.0,83102324.0,83871581.0,84979951.0,85731133.0,86633642.0,87444160.0],"unit":"ns","throughput":[],"typical":{"estimate":147.70494339960769,"lower_bound":147.65932742057555,"upper_bound":147.7611007939949,"unit":"ns"},"mean":{"estimate":147.87191631304543,"lower_bound":147.7101831359509,"upper_bound":148.13639994413307,"unit":"ns"},"median":{"estimate":147.65952602750656,"lower_bound":147.63843446061458,"upper_bound":147.67231907188017,"unit":"ns"},"median_abs_dev":{"estimate":0.11436209106338088,"lower_bound":0.07278305190545385,"upper_bound":0.1464831153994831,"unit":"ns"},"slope":{"estimate":147.70494339960769,"lower_bound":147.65932742057555,"upper_bound":147.7611007939949,"unit":"ns"},"change":{"mean":{"estimate":0.0037486262434447415,"lower_bound":0.0013715519952780368,"upper_bound":0.006079398955417553,"unit":"%"},"median":{"estimate":0.003295878053243495,"lower_bound":0.00295425834489782,"upper_bound":0.003557785423742965,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"wqam","benchmarks":["wqam/wqam"],"report_directory":"/root/fuel-core/target/criterion/reports/wqam"} +{"reason":"benchmark-complete","id":"wqmm/wqmm","report_directory":"/root/fuel-core/target/criterion/reports/wqmm/wqmm","iteration_count":[6623,13246,19869,26492,33115,39738,46361,52984,59607,66230,72853,79476,86099,92722,99345,105968,112591,119214,125837,132460,139083,145706,152329,158952,165575,172198,178821,185444,192067,198690,205313,211936,218559,225182,231805,238428,245051,251674,258297,264920,271543,278166,284789,291412,298035,304658,311281,317904,324527,331150,337773,344396,351019,357642,364265,370888,377511,384134,390757,397380,404003,410626,417249,423872,430495,437118,443741,450364,456987,463610,470233,476856,483479,490102,496725,503348,509971,516594,523217,529840,536463,543086,549709,556332,562955,569578,576201,582824,589447,596070,602693,609316,615939,622562,629185,635808,642431,649054,655677,662300],"measured_values":[983610.0,1795315.0,2725071.0,3592318.0,4485610.0,5384577.0,6279922.0,7198874.0,8096004.0,8995993.0,9891674.0,10772375.0,11667572.0,12566108.0,13458034.0,14357431.0,15298937.0,16187029.0,17058878.0,17964003.0,18849110.0,19773428.0,20665609.0,21540695.0,22454718.0,23328658.0,24275544.0,25177600.0,26018088.0,26948006.0,27815635.0,28718823.0,29661947.0,30519515.0,31409689.0,32337260.0,33234028.0,34096729.0,35043094.0,35967276.0,36835837.0,37730840.0,38617475.0,39707131.0,40383780.0,41284173.0,42177378.0,43076211.0,44003015.0,44913846.0,45850615.0,46706960.0,47678047.0,48563330.0,49401420.0,50256455.0,51242172.0,52097684.0,52966771.0,53900628.0,54769651.0,55673900.0,56541976.0,57512584.0,58363230.0,59243220.0,60217437.0,61072208.0,61924592.0,62858822.0,63715511.0,64618430.0,65507592.0,66417449.0,67393858.0,68443462.0,69102767.0,70047976.0,71167896.0,71835885.0,72734683.0,73598246.0,74532944.0,75411729.0,76370182.0,77173994.0,78137214.0,79013347.0,79896273.0,80775726.0,81659667.0,82579482.0,83500380.0,84452431.0,85315944.0,86150739.0,87048223.0,87991843.0,88925007.0,89875705.0],"unit":"ns","throughput":[],"typical":{"estimate":135.59845975311484,"lower_bound":135.57251967974918,"upper_bound":135.6288956109644,"unit":"ns"},"mean":{"estimate":135.75520721199726,"lower_bound":135.5982549661659,"upper_bound":136.0382989874668,"unit":"ns"},"median":{"estimate":135.58427453275175,"lower_bound":135.55166519272666,"upper_bound":135.61659670844028,"unit":"ns"},"median_abs_dev":{"estimate":0.11131643638619655,"lower_bound":0.0816149679780273,"upper_bound":0.14404266824459483,"unit":"ns"},"slope":{"estimate":135.59845975311484,"lower_bound":135.57251967974918,"upper_bound":135.6288956109644,"unit":"ns"},"change":{"mean":{"estimate":0.015161331323353844,"lower_bound":0.013313315227453187,"upper_bound":0.017602776675312567,"unit":"%"},"median":{"estimate":0.014926044955289486,"lower_bound":0.01463063605322712,"upper_bound":0.015154991634795372,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"wqmm","benchmarks":["wqmm/wqmm"],"report_directory":"/root/fuel-core/target/criterion/reports/wqmm"} +{"reason":"benchmark-complete","id":"eck1/eck1","report_directory":"/root/fuel-core/target/criterion/reports/eck1/eck1","iteration_count":[23,46,69,92,115,138,161,184,207,230,253,276,299,322,345,368,391,414,437,460,483,506,529,552,575,598,621,644,667,690,713,736,759,782,805,828,851,874,897,920,943,966,989,1012,1035,1058,1081,1104,1127,1150,1173,1196,1219,1242,1265,1288,1311,1334,1357,1380,1403,1426,1449,1472,1495,1518,1541,1564,1587,1610,1633,1656,1679,1702,1725,1748,1771,1794,1817,1840,1863,1886,1909,1932,1955,1978,2001,2024,2047,2070,2093,2116,2139,2162,2185,2208,2231,2254,2277,2300],"measured_values":[1065242.0,1999941.0,3003103.0,4001542.0,5001269.0,6002991.0,7003144.0,8003382.0,9026542.0,10028344.0,11048830.0,12026347.0,13046726.0,14006655.0,15006119.0,16035673.0,17049579.0,18049463.0,19081806.0,20007962.0,21007211.0,22009941.0,23076885.0,24009280.0,25008306.0,26071614.0,27192120.0,28079945.0,29013694.0,30055646.0,31055534.0,32015311.0,33098660.0,34104220.0,35060042.0,36073303.0,37057761.0,38015995.0,39084808.0,40107257.0,41018895.0,42094060.0,43063005.0,44133719.0,45068379.0,46101077.0,47059897.0,48097664.0,49122594.0,50024988.0,51136999.0,52023845.0,53107656.0,54026504.0,55198073.0,56048340.0,57073387.0,58115550.0,59122751.0,60166266.0,61098448.0,62093054.0,63160922.0,64067810.0,65092601.0,66043961.0,67207590.0,68123702.0,69216832.0,70102935.0,71128830.0,72096614.0,73157790.0,74148189.0,75097203.0,76337725.0,77286303.0,79130158.0,79406589.0,80157895.0,81215551.0,82470983.0,83118504.0,84078785.0,85118039.0,86146964.0,87198482.0,88298925.0,89120555.0,90220746.0,91115432.0,92211959.0,93157510.0,94117155.0,95149343.0,96212057.0,97214636.0,98188291.0,99336880.0,100063561.0],"unit":"ns","throughput":[],"typical":{"estimate":43578.74210432984,"lower_bound":43559.84721475676,"upper_bound":43604.15811218698,"unit":"ns"},"mean":{"estimate":43595.92436913754,"lower_bound":43557.52535935251,"upper_bound":43660.28834338716,"unit":"ns"},"median":{"estimate":43560.35224785566,"lower_bound":43545.46880244088,"upper_bound":43572.807134894094,"unit":"ns"},"median_abs_dev":{"estimate":55.230430178884326,"lower_bound":38.16888581065914,"upper_bound":72.05319844449933,"unit":"ns"},"slope":{"estimate":43578.74210432984,"lower_bound":43559.84721475676,"upper_bound":43604.15811218698,"unit":"ns"},"change":{"mean":{"estimate":-0.0003877341403363266,"lower_bound":-0.0018216039896586905,"upper_bound":0.0012525266358629158,"unit":"%"},"median":{"estimate":-0.0002365269615985932,"lower_bound":-0.0006466336200779965,"upper_bound":0.00008891780300953582,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"eck1","benchmarks":["eck1/eck1"],"report_directory":"/root/fuel-core/target/criterion/reports/eck1"} +{"reason":"benchmark-complete","id":"ecr1/ecr1","report_directory":"/root/fuel-core/target/criterion/reports/ecr1/ecr1","iteration_count":[2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112,114,116,118,120,122,124,126,128,130,132,134,136,138,140,142,144,146,148,150,152,154,156,158,160,162,164,166,168,170,172,174,176,178,180,182,184,186,188,190,192,194,196,198,200],"measured_values":[1227535.0,2365272.0,3584017.0,4728230.0,5907863.0,7092130.0,8273820.0,9455866.0,10637172.0,11820061.0,13000077.0,14183926.0,15365119.0,16547417.0,17748125.0,18912680.0,20092108.0,21273466.0,22456710.0,23638003.0,24826612.0,26100860.0,27185133.0,28390276.0,29571656.0,30734389.0,31915037.0,33094194.0,34277048.0,35478936.0,36642816.0,37843119.0,39004749.0,40186951.0,41368722.0,42662107.0,43732863.0,44912804.0,46094491.0,47852099.0,48790377.0,49700317.0,50840233.0,52027884.0,53198778.0,54397499.0,55631318.0,56990645.0,57920090.0,59102295.0,60349239.0,61470685.0,62651209.0,63829421.0,65030232.0,66193548.0,67378764.0,68576067.0,69740889.0,70924388.0,72122009.0,73346398.0,74524362.0,75718025.0,76901867.0,78036868.0,79201498.0,80380791.0,81611101.0,82855730.0,84023711.0,85298962.0,86503310.0,87473462.0,88653622.0,89858102.0,91093245.0,92221306.0,93426087.0,94650160.0,95846917.0,96937341.0,98335495.0,99482110.0,100580855.0,101757567.0,102846246.0,104124712.0,105356290.0,106640229.0,107665519.0,108904463.0,110096850.0,111295454.0,112381985.0,113786345.0,114723512.0,116033469.0,117208602.0,118383092.0],"unit":"ns","throughput":[],"typical":{"estimate":591644.0336205113,"lower_bound":591506.7227561283,"upper_bound":591785.3835275504,"unit":"ns"},"mean":{"estimate":591773.6744299774,"lower_bound":591399.100860261,"upper_bound":592333.2772716681,"unit":"ns"},"median":{"estimate":591178.4593260188,"lower_bound":591063.1672671128,"upper_bound":591395.7146391752,"unit":"ns"},"median_abs_dev":{"estimate":313.6093815724334,"lower_bound":157.64704608794855,"upper_bound":561.2020517719936,"unit":"ns"},"slope":{"estimate":591644.0336205113,"lower_bound":591506.7227561283,"upper_bound":591785.3835275504,"unit":"ns"},"change":{"mean":{"estimate":-0.0006952801130765129,"lower_bound":-0.0026883798082827197,"upper_bound":0.0008826240793863569,"unit":"%"},"median":{"estimate":0.000165105650903552,"lower_bound":-0.00006643364132197238,"upper_bound":0.00055310629676738,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"ecr1","benchmarks":["ecr1/ecr1"],"report_directory":"/root/fuel-core/target/criterion/reports/ecr1"} +{"reason":"benchmark-complete","id":"k256/1","report_directory":"/root/fuel-core/target/criterion/reports/k256/1","iteration_count":[1865,3730,5595,7460,9325,11190,13055,14920,16785,18650,20515,22380,24245,26110,27975,29840,31705,33570,35435,37300,39165,41030,42895,44760,46625,48490,50355,52220,54085,55950,57815,59680,61545,63410,65275,67140,69005,70870,72735,74600,76465,78330,80195,82060,83925,85790,87655,89520,91385,93250,95115,96980,98845,100710,102575,104440,106305,108170,110035,111900,113765,115630,117495,119360,121225,123090,124955,126820,128685,130550,132415,134280,136145,138010,139875,141740,143605,145470,147335,149200,151065,152930,154795,156660,158525,160390,162255,164120,165985,167850,169715,171580,173445,175310,177175,179040,180905,182770,184635,186500],"measured_values":[1032886.0,1904019.0,2887915.0,3829497.0,4787877.0,5718947.0,6665560.0,7618486.0,8571860.0,9524182.0,10497266.0,11450003.0,12421677.0,13356379.0,14288397.0,15307278.0,16191896.0,17193062.0,18120459.0,19068491.0,19999806.0,20951979.0,21949698.0,22888789.0,23809333.0,24764432.0,25717787.0,26730463.0,27620403.0,28595816.0,29571176.0,30477607.0,31518098.0,32447535.0,33396775.0,34309550.0,35353394.0,36256313.0,37141663.0,38196025.0,39133357.0,40027466.0,41062269.0,41915958.0,43070676.0,43807558.0,44878243.0,45867039.0,46889002.0,47678084.0,48682379.0,49683456.0,50520776.0,51497605.0,52426810.0,53398112.0,54343198.0,55301812.0,56309381.0,57433951.0,58193234.0,59073606.0,60125160.0,61131079.0,61911816.0,62942343.0,63882809.0,64791104.0,65782526.0,66667162.0,67626504.0,68571979.0,69630419.0,70672664.0,71549253.0,72545426.0,73331825.0,74683936.0,75240638.0,76201566.0,77184827.0,78118924.0,79096297.0,80103077.0,81079258.0,82015654.0,82899278.0,83815066.0,84783074.0,85768410.0,86670571.0,87698975.0,88576761.0,89566080.0,90532026.0,91427940.0,92435969.0,93388130.0,94288437.0,95239355.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":511.186758970259,"lower_bound":511.05560039936324,"upper_bound":511.3460092317378,"unit":"ns"},"mean":{"estimate":511.818191986147,"lower_bound":511.2696060447826,"upper_bound":512.7694133785069,"unit":"ns"},"median":{"estimate":511.1955444036131,"lower_bound":510.97517144066603,"upper_bound":511.3592324438348,"unit":"ns"},"median_abs_dev":{"estimate":0.7365211945770949,"lower_bound":0.46343710046441255,"upper_bound":0.9069997669343829,"unit":"ns"},"slope":{"estimate":511.186758970259,"lower_bound":511.05560039936324,"upper_bound":511.3460092317378,"unit":"ns"},"change":{"mean":{"estimate":0.01325470456326383,"lower_bound":0.010893916834261923,"upper_bound":0.015718171138477947,"unit":"%"},"median":{"estimate":0.013474922524540078,"lower_bound":0.012940362564788366,"upper_bound":0.013879713421629967,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"k256/10","report_directory":"/root/fuel-core/target/criterion/reports/k256/10","iteration_count":[1870,3740,5610,7480,9350,11220,13090,14960,16830,18700,20570,22440,24310,26180,28050,29920,31790,33660,35530,37400,39270,41140,43010,44880,46750,48620,50490,52360,54230,56100,57970,59840,61710,63580,65450,67320,69190,71060,72930,74800,76670,78540,80410,82280,84150,86020,87890,89760,91630,93500,95370,97240,99110,100980,102850,104720,106590,108460,110330,112200,114070,115940,117810,119680,121550,123420,125290,127160,129030,130900,132770,134640,136510,138380,140250,142120,143990,145860,147730,149600,151470,153340,155210,157080,158950,160820,162690,164560,166430,168300,170170,172040,173910,175780,177650,179520,181390,183260,185130,187000],"measured_values":[992814.0,1905047.0,2854857.0,3806952.0,4761530.0,5712339.0,6665507.0,7616124.0,8567732.0,9540689.0,10519329.0,11463075.0,12443600.0,13409905.0,14320681.0,15232851.0,16204355.0,17170165.0,18155571.0,19060445.0,19991385.0,20988107.0,21893669.0,22845329.0,23864559.0,24795285.0,25754633.0,26919562.0,28443867.0,29519610.0,30497927.0,30520111.0,31427733.0,32412625.0,33361616.0,34317374.0,35278000.0,36175225.0,37213557.0,38160233.0,39074594.0,40084273.0,40998460.0,41984719.0,42904581.0,43814677.0,44807799.0,45693144.0,46772506.0,47632578.0,48634471.0,49524377.0,50631728.0,51885221.0,54190054.0,54903798.0,56147326.0,56882456.0,57874387.0,58871676.0,58534267.0,59164524.0,59990385.0,61007164.0,61965046.0,62891809.0,63871866.0,64737279.0,65762054.0,66844032.0,67671263.0,68588802.0,69671214.0,70514713.0,71439304.0,73081406.0,73441785.0,74348305.0,75275818.0,78319712.0,79505568.0,80463500.0,79163148.0,80011963.0,81058299.0,82025425.0,82918522.0,83952984.0,84767453.0,85768248.0,86746352.0,87667694.0,88680838.0,91144970.0,92874044.0,91454170.0,92550916.0,93309761.0,94368712.0,95252817.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":512.3683797984716,"lower_bound":511.10834070771097,"upper_bound":513.8079901043568,"unit":"ns"},"mean":{"estimate":512.2382760878709,"lower_bound":511.21563833702845,"upper_bound":513.3721660752336,"unit":"ns"},"median":{"estimate":509.869523422191,"lower_bound":509.7417888880151,"upper_bound":510.0937413349178,"unit":"ns"},"median_abs_dev":{"estimate":0.7440046349855133,"lower_bound":0.5732189563288983,"upper_bound":1.1080256093253233,"unit":"ns"},"slope":{"estimate":512.3683797984716,"lower_bound":511.10834070771097,"upper_bound":513.8079901043568,"unit":"ns"},"change":{"mean":{"estimate":0.013990255646537664,"lower_bound":0.010762949280716643,"upper_bound":0.016818488073520037,"unit":"%"},"median":{"estimate":0.012886947718946606,"lower_bound":0.012616934966799276,"upper_bound":0.013293683465445733,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"k256/100","report_directory":"/root/fuel-core/target/criterion/reports/k256/100","iteration_count":[1878,3756,5634,7512,9390,11268,13146,15024,16902,18780,20658,22536,24414,26292,28170,30048,31926,33804,35682,37560,39438,41316,43194,45072,46950,48828,50706,52584,54462,56340,58218,60096,61974,63852,65730,67608,69486,71364,73242,75120,76998,78876,80754,82632,84510,86388,88266,90144,92022,93900,95778,97656,99534,101412,103290,105168,107046,108924,110802,112680,114558,116436,118314,120192,122070,123948,125826,127704,129582,131460,133338,135216,137094,138972,140850,142728,144606,146484,148362,150240,152118,153996,155874,157752,159630,161508,163386,165264,167142,169020,170898,172776,174654,176532,178410,180288,182166,184044,185922,187800],"measured_values":[1009638.0,1903713.0,2853588.0,3806440.0,4758678.0,5709422.0,6669076.0,7615064.0,8561374.0,9517580.0,10474352.0,11427888.0,12371836.0,13324597.0,14275114.0,15227555.0,16177560.0,17156435.0,18091323.0,19046071.0,19989695.0,20936555.0,21887735.0,22876142.0,23795219.0,24752671.0,25695734.0,26674238.0,27601454.0,28555510.0,29517154.0,30456803.0,31739963.0,32665795.0,33524385.0,34260171.0,35217679.0,36162748.0,37128032.0,38077957.0,39049264.0,39972870.0,40959675.0,41911985.0,43010142.0,43837439.0,44741118.0,45681275.0,46715038.0,47600306.0,48555683.0,49491734.0,50463045.0,51414891.0,52347233.0,53344389.0,54255460.0,55198677.0,56163539.0,57297731.0,58062174.0,59010736.0,60090483.0,60930443.0,61872229.0,62816411.0,63792845.0,64718893.0,65664110.0,66612300.0,67606771.0,68546160.0,69545559.0,70452610.0,71408598.0,72437791.0,73282113.0,74258962.0,75266332.0,76152590.0,77111554.0,78066514.0,79029007.0,79999926.0,80905488.0,81855833.0,82808766.0,83769216.0,84818868.0,85693337.0,86652330.0,87583696.0,88517783.0,89463276.0,90429969.0,91400150.0,92327225.0,93302471.0,94313111.0,95480089.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":507.0902889232703,"lower_bound":506.98745123987715,"upper_bound":507.21695265570537,"unit":"ns"},"mean":{"estimate":507.43597092138066,"lower_bound":507.01458645666673,"upper_bound":508.1498220030202,"unit":"ns"},"median":{"estimate":506.90719351095856,"lower_bound":506.84584664536743,"upper_bound":506.95542987076533,"unit":"ns"},"median_abs_dev":{"estimate":0.1807910011925422,"lower_bound":0.12973613238121007,"upper_bound":0.24642943048729887,"unit":"ns"},"slope":{"estimate":507.0902889232703,"lower_bound":506.98745123987715,"upper_bound":507.21695265570537,"unit":"ns"},"change":{"mean":{"estimate":0.012747932699394005,"lower_bound":0.011291403318159754,"upper_bound":0.014410068620688969,"unit":"%"},"median":{"estimate":0.012448181583293305,"lower_bound":0.012049150451983515,"upper_bound":0.012813925201670573,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"k256/1000","report_directory":"/root/fuel-core/target/criterion/reports/k256/1000","iteration_count":[270,540,810,1080,1350,1620,1890,2160,2430,2700,2970,3240,3510,3780,4050,4320,4590,4860,5130,5400,5670,5940,6210,6480,6750,7020,7290,7560,7830,8100,8370,8640,8910,9180,9450,9720,9990,10260,10530,10800,11070,11340,11610,11880,12150,12420,12690,12960,13230,13500,13770,14040,14310,14580,14850,15120,15390,15660,15930,16200,16470,16740,17010,17280,17550,17820,18090,18360,18630,18900,19170,19440,19710,19980,20250,20520,20790,21060,21330,21600,21870,22140,22410,22680,22950,23220,23490,23760,24030,24300,24570,24840,25110,25380,25650,25920,26190,26460,26730,27000],"measured_values":[1065852.0,1966099.0,2945814.0,3928137.0,4912144.0,5893191.0,6876031.0,7858194.0,8839384.0,9821165.0,10803691.0,11846674.0,12769607.0,13804111.0,14731119.0,15715782.0,16698111.0,17677756.0,18683067.0,19641470.0,20625886.0,21638822.0,22590556.0,23571412.0,24553104.0,25535337.0,26519754.0,27496173.0,28481700.0,29484772.0,30447699.0,31428971.0,32410533.0,33416189.0,34420063.0,35359510.0,36436868.0,37375996.0,38360343.0,39395200.0,40354873.0,41329505.0,42393830.0,43260670.0,44239711.0,45180377.0,46279513.0,47143644.0,48170896.0,49154684.0,50266682.0,51068438.0,52164081.0,53040438.0,54143800.0,55089526.0,56100962.0,57021598.0,58011632.0,58926813.0,60086964.0,60936894.0,62088821.0,62945586.0,64006328.0,64963422.0,65892834.0,66832671.0,67901843.0,68887218.0,69803578.0,70766279.0,71809623.0,72776475.0,73662691.0,74727563.0,75694973.0,76943033.0,77677064.0,78640441.0,79655064.0,80539813.0,81603804.0,82632828.0,83671555.0,84526267.0,85528759.0,86491236.0,87436565.0,88533076.0,89494740.0,90542365.0,91413668.0,92410827.0,93371312.0,94307747.0,95383840.0,96338122.0,97347526.0,98259782.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":3642.014847850954,"lower_bound":3641.2974458444214,"upper_bound":3642.817406014538,"unit":"ns"},"mean":{"estimate":3644.5143471783836,"lower_bound":3640.8630733522427,"upper_bound":3651.1344482643167,"unit":"ns"},"median":{"estimate":3640.9835326049615,"lower_bound":3640.1636140819965,"upper_bound":3641.659259259259,"unit":"ns"},"median_abs_dev":{"estimate":4.5697005904690196,"lower_bound":3.3058344264688544,"upper_bound":5.236013010533418,"unit":"ns"},"slope":{"estimate":3642.014847850954,"lower_bound":3641.2974458444214,"upper_bound":3642.817406014538,"unit":"ns"},"change":{"mean":{"estimate":0.008408159090110168,"lower_bound":0.006554892579079796,"upper_bound":0.010797154215611275,"unit":"%"},"median":{"estimate":0.008706160623247028,"lower_bound":0.008343262601490098,"upper_bound":0.008969339713907676,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"k256/10000","report_directory":"/root/fuel-core/target/criterion/reports/k256/10000","iteration_count":[30,60,90,120,150,180,210,240,270,300,330,360,390,420,450,480,510,540,570,600,630,660,690,720,750,780,810,840,870,900,930,960,990,1020,1050,1080,1110,1140,1170,1200,1230,1260,1290,1320,1350,1380,1410,1440,1470,1500,1530,1560,1590,1620,1650,1680,1710,1740,1770,1800,1830,1860,1890,1920,1950,1980,2010,2040,2070,2100,2130,2160,2190,2220,2250,2280,2310,2340,2370,2400,2430,2460,2490,2520,2550,2580,2610,2640,2670,2700,2730,2760,2790,2820,2850,2880,2910,2940,2970,3000],"measured_values":[1091343.0,1984214.0,2980736.0,3970099.0,4963495.0,5956231.0,6946883.0,7941720.0,8937550.0,9925353.0,10918291.0,11912290.0,12902413.0,13895777.0,14889032.0,15899952.0,16874588.0,17865896.0,18904382.0,19855679.0,20844808.0,21838124.0,22828117.0,23821877.0,24815885.0,25830933.0,26799822.0,27794578.0,28789301.0,29786534.0,30771248.0,31762478.0,32779814.0,33752131.0,34764901.0,35735839.0,36725769.0,37740857.0,38735776.0,39734160.0,40740443.0,41692847.0,42722580.0,43701029.0,44758817.0,45662568.0,46654744.0,47666970.0,48638510.0,49630995.0,50624134.0,51638851.0,52649448.0,53629166.0,54598080.0,55610335.0,56585058.0,57571819.0,58559900.0,59604206.0,60621183.0,61669286.0,62553921.0,63531079.0,64519014.0,65535001.0,66508680.0,67494203.0,68513201.0,69498145.0,70484170.0,71493928.0,72498913.0,73585201.0,74648947.0,75509826.0,76438177.0,77458225.0,78422272.0,79438898.0,80406862.0,81398871.0,82462311.0,83478402.0,84406918.0,85417863.0,86433951.0,87448173.0,88401552.0,89413820.0,90384884.0,91353358.0,92589503.0,93399185.0,94365276.0,95410063.0,96426095.0,97352844.0,98296002.0,99364731.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":33109.910281858036,"lower_bound":33104.30447605476,"upper_bound":33116.021324199326,"unit":"ns"},"mean":{"estimate":33135.461077919645,"lower_bound":33099.672431253864,"upper_bound":33203.51061331427,"unit":"ns"},"median":{"estimate":33096.804834054834,"lower_bound":33090.17222222222,"upper_bound":33101.92129629629,"unit":"ns"},"median_abs_dev":{"estimate":14.972809883360323,"lower_bound":7.922873264202049,"upper_bound":20.86639892856489,"unit":"ns"},"slope":{"estimate":33109.910281858036,"lower_bound":33104.30447605476,"upper_bound":33116.021324199326,"unit":"ns"},"change":{"mean":{"estimate":0.006078854596304417,"lower_bound":0.004286089132529825,"upper_bound":0.008680444464911485,"unit":"%"},"median":{"estimate":0.0058664032621231765,"lower_bound":0.005419010064550367,"upper_bound":0.006174776790870862,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"k256/19753","report_directory":"/root/fuel-core/target/criterion/reports/k256/19753","iteration_count":[16,32,48,64,80,96,112,128,144,160,176,192,208,224,240,256,272,288,304,320,336,352,368,384,400,416,432,448,464,480,496,512,528,544,560,576,592,608,624,640,656,672,688,704,720,736,752,768,784,800,816,832,848,864,880,896,912,928,944,960,976,992,1008,1024,1040,1056,1072,1088,1104,1120,1136,1152,1168,1184,1200,1216,1232,1248,1264,1280,1296,1312,1328,1344,1360,1376,1392,1408,1424,1440,1456,1472,1488,1504,1520,1536,1552,1568,1584,1600],"measured_values":[1144581.0,2086168.0,3133739.0,4174544.0,5221570.0,6258642.0,7303721.0,8345920.0,9394431.0,10439883.0,11481954.0,12522997.0,13566471.0,14610541.0,15647802.0,16698350.0,17751361.0,18780779.0,19819855.0,20904844.0,21936464.0,22983933.0,24002896.0,25035265.0,26099304.0,27138971.0,28167520.0,29208495.0,30251207.0,31313505.0,32337194.0,33390601.0,34447535.0,35472039.0,36530517.0,37642457.0,38645171.0,39718676.0,40709276.0,41732265.0,42778017.0,43812873.0,44862093.0,45923559.0,46982976.0,48156801.0,49034394.0,50086470.0,51108088.0,52183363.0,53245647.0,54278756.0,55296520.0,56347847.0,57447987.0,58450686.0,59505561.0,60512026.0,61706422.0,62703128.0,63648922.0,64686940.0,65735765.0,66821761.0,67803955.0,68936562.0,69925597.0,71004104.0,72011707.0,73100146.0,74146877.0,75117329.0,76170936.0,77252161.0,78232881.0,79447627.0,80401550.0,81410518.0,82420667.0,83547862.0,84511890.0,85631104.0,86619823.0,87689836.0,88722801.0,89749021.0,90766722.0,91843267.0,92845460.0,93940851.0,94946901.0,96215685.0,97079211.0,98099958.0,99217620.0,100198223.0,101258082.0,102256019.0,103364439.0,104387998.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":65242.270405645046,"lower_bound":65233.090061413604,"upper_bound":65252.75630954431,"unit":"ns"},"mean":{"estimate":65302.895932209285,"lower_bound":65233.64564664427,"upper_bound":65434.117986822086,"unit":"ns"},"median":{"estimate":65230.96058238637,"lower_bound":65225.104339701,"upper_bound":65238.375,"unit":"ns"},"median_abs_dev":{"estimate":34.07975165911053,"lower_bound":25.75982053645158,"upper_bound":43.010776418520194,"unit":"ns"},"slope":{"estimate":65242.270405645046,"lower_bound":65233.090061413604,"upper_bound":65252.75630954431,"unit":"ns"},"change":{"mean":{"estimate":0.008332251129931967,"lower_bound":0.006151154223874556,"upper_bound":0.011146129873843606,"unit":"%"},"median":{"estimate":0.008260298434383584,"lower_bound":0.007998549675727773,"upper_bound":0.008432697496462582,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"k256/29629","report_directory":"/root/fuel-core/target/criterion/reports/k256/29629","iteration_count":[11,22,33,44,55,66,77,88,99,110,121,132,143,154,165,176,187,198,209,220,231,242,253,264,275,286,297,308,319,330,341,352,363,374,385,396,407,418,429,440,451,462,473,484,495,506,517,528,539,550,561,572,583,594,605,616,627,638,649,660,671,682,693,704,715,726,737,748,759,770,781,792,803,814,825,836,847,858,869,880,891,902,913,924,935,946,957,968,979,990,1001,1012,1023,1034,1045,1056,1067,1078,1089,1100],"measured_values":[1164432.0,2142398.0,3210587.0,4280424.0,5350890.0,6421361.0,7490093.0,8565048.0,9630600.0,10701554.0,11773582.0,12841510.0,13910401.0,14982624.0,16133181.0,17152288.0,18194723.0,19261770.0,20332946.0,21547395.0,22478329.0,23690637.0,24696504.0,25691146.0,26773323.0,27826868.0,28906213.0,29964934.0,31032673.0,32128859.0,33173429.0,34264898.0,35316532.0,36487251.0,37462075.0,38526849.0,39615797.0,40667804.0,41746002.0,42813626.0,43880162.0,44964284.0,46017779.0,47085794.0,48160762.0,49248482.0,50300284.0,51367841.0,52458489.0,53602647.0,54580520.0,55651463.0,56741573.0,57811134.0,58855346.0,59928116.0,61019753.0,62067390.0,63136830.0,64207389.0,65300481.0,66346633.0,67515366.0,68511445.0,69562026.0,70707198.0,71804534.0,72853938.0,73858852.0,74994304.0,75981888.0,77082002.0,78120022.0,79207839.0,80284584.0,81335765.0,82423917.0,83471891.0,84542339.0,85628923.0,86703275.0,87771010.0,88840048.0,89914187.0,90958051.0,92051061.0,93100366.0,94276031.0,95321665.0,96316030.0,97407348.0,98456081.0,99542216.0,100592028.0,101694539.0,102763127.0,103830023.0,104884891.0,105994699.0,107136960.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":97320.10058573021,"lower_bound":97310.51159002035,"upper_bound":97330.79970472182,"unit":"ns"},"mean":{"estimate":97421.37385280023,"lower_bound":97320.82713159654,"upper_bound":97605.65948912423,"unit":"ns"},"median":{"estimate":97304.89013730705,"lower_bound":97293.34848484848,"upper_bound":97310.13753772002,"unit":"ns"},"median_abs_dev":{"estimate":26.96186705596929,"lower_bound":16.494806344507612,"upper_bound":33.4344314344068,"unit":"ns"},"slope":{"estimate":97320.10058573021,"lower_bound":97310.51159002035,"upper_bound":97330.79970472182,"unit":"ns"},"change":{"mean":{"estimate":0.007297284348253497,"lower_bound":0.005742960115514967,"upper_bound":0.009682412375901282,"unit":"%"},"median":{"estimate":0.00663580412658793,"lower_bound":0.006385438941746369,"upper_bound":0.006796843056324553,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"k256/44444","report_directory":"/root/fuel-core/target/criterion/reports/k256/44444","iteration_count":[7,14,21,28,35,42,49,56,63,70,77,84,91,98,105,112,119,126,133,140,147,154,161,168,175,182,189,196,203,210,217,224,231,238,245,252,259,266,273,280,287,294,301,308,315,322,329,336,343,350,357,364,371,378,385,392,399,406,413,420,427,434,441,448,455,462,469,476,483,490,497,504,511,518,525,532,539,546,553,560,567,574,581,588,595,602,609,616,623,630,637,644,651,658,665,672,679,686,693,700],"measured_values":[1123697.0,2042648.0,3065719.0,4086578.0,5107861.0,6130660.0,7155429.0,8173332.0,9195610.0,10218437.0,11237561.0,12260766.0,13283657.0,14327752.0,15324457.0,16430750.0,17369257.0,18392913.0,19412649.0,20436611.0,21456260.0,22475738.0,23501709.0,24522778.0,25547437.0,26562380.0,27591504.0,28632058.0,29677188.0,30651214.0,31675938.0,32694327.0,33718368.0,34738849.0,35759080.0,36785322.0,37804669.0,38830147.0,39848842.0,40869480.0,41888782.0,42910119.0,43980455.0,44968013.0,45978880.0,47004398.0,48090834.0,49044106.0,50067568.0,51089097.0,52108314.0,53127393.0,54145726.0,55174027.0,56192359.0,57218314.0,58244242.0,59259095.0,60277326.0,61303313.0,62330055.0,63346930.0,64371844.0,65471913.0,66409469.0,67433927.0,68453854.0,69470005.0,70494531.0,71517263.0,72546199.0,73583098.0,74585839.0,75621849.0,76628081.0,77708890.0,78697167.0,79699572.0,80708570.0,81786156.0,82753339.0,83813358.0,84806573.0,85826408.0,86886102.0,87877226.0,88924720.0,89911685.0,90951458.0,92078566.0,92991752.0,93996990.0,95036149.0,96041480.0,97079948.0,98102454.0,99101112.0,100221725.0,101160988.0,102180447.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":145988.41085182293,"lower_bound":145976.49063084263,"upper_bound":146002.36325968776,"unit":"ns"},"mean":{"estimate":146136.34642954206,"lower_bound":145978.70985599305,"upper_bound":146438.0772469092,"unit":"ns"},"median":{"estimate":145966.76193084026,"lower_bound":145962.0462184874,"upper_bound":145972.06451612903,"unit":"ns"},"median_abs_dev":{"estimate":16.72941286087677,"lower_bound":12.446732554946442,"upper_bound":23.72395910514693,"unit":"ns"},"slope":{"estimate":145988.41085182293,"lower_bound":145976.49063084263,"upper_bound":146002.36325968776,"unit":"ns"},"change":{"mean":{"estimate":0.00703592321294777,"lower_bound":0.0052381248333894185,"upper_bound":0.009415986200291238,"unit":"%"},"median":{"estimate":0.006528765402226799,"lower_bound":0.006339948628606973,"upper_bound":0.006703260491899699,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"k256/66666","report_directory":"/root/fuel-core/target/criterion/reports/k256/66666","iteration_count":[5,10,15,20,25,30,35,40,45,50,55,60,65,70,75,80,85,90,95,100,105,110,115,120,125,130,135,140,145,150,155,160,165,170,175,180,185,190,195,200,205,210,215,220,225,230,235,240,245,250,255,260,265,270,275,280,285,290,295,300,305,310,315,320,325,330,335,340,345,350,355,360,365,370,375,380,385,390,395,400,405,410,415,420,425,430,435,440,445,450,455,460,465,470,475,480,485,490,495,500],"measured_values":[1133121.0,2192119.0,3286448.0,4381366.0,5476525.0,6572655.0,7667390.0,8767214.0,9857972.0,10955104.0,12068403.0,13149682.0,14241942.0,15362440.0,16432736.0,17552064.0,18622068.0,19716012.0,20815757.0,21936377.0,23002145.0,24155577.0,25242518.0,26325956.0,27385424.0,28554822.0,29609048.0,30700557.0,31786743.0,32989410.0,33963253.0,35090785.0,36148485.0,37245153.0,38381585.0,39458734.0,40526558.0,41622000.0,42770191.0,43877706.0,44945901.0,46065599.0,47171364.0,48215328.0,49327261.0,50466578.0,51518842.0,53034693.0,53771877.0,54775376.0,55863758.0,56979241.0,58161836.0,59148380.0,60239066.0,61363146.0,62749864.0,63543661.0,64898224.0,65765488.0,66823934.0,67968711.0,69051118.0,70108956.0,71220045.0,72719277.0,73640132.0,74509303.0,75661407.0,76711782.0,77886377.0,78907472.0,79985458.0,81064252.0,82176622.0,83330673.0,84347922.0,85497856.0,86542685.0,87731367.0,88730489.0,89858873.0,91062795.0,92069094.0,93200054.0,94245442.0,95379484.0,96500451.0,97599085.0,98633350.0,99860015.0,100813644.0,101985398.0,103012528.0,104072720.0,105203881.0,106413531.0,107531539.0,108685487.0,109578654.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":219294.65512930398,"lower_bound":219241.04755424923,"upper_bound":219355.56634068,"unit":"ns"},"mean":{"estimate":219360.1375639491,"lower_bound":219245.79831576478,"upper_bound":219540.27450181366,"unit":"ns"},"median":{"estimate":219210.89920634922,"lower_bound":219161.36666666667,"upper_bound":219255.73958508548,"unit":"ns"},"median_abs_dev":{"estimate":171.63153703250276,"lower_bound":117.66865376361919,"upper_bound":216.14897494543567,"unit":"ns"},"slope":{"estimate":219294.65512930398,"lower_bound":219241.04755424923,"upper_bound":219355.56634068,"unit":"ns"},"change":{"mean":{"estimate":0.007930455610525522,"lower_bound":0.006426840117445631,"upper_bound":0.009093175295586542,"unit":"%"},"median":{"estimate":0.008038447742873656,"lower_bound":0.007813209861885273,"upper_bound":0.008288400001537966,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"k256/100000","report_directory":"/root/fuel-core/target/criterion/reports/k256/100000","iteration_count":[4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236,240,244,248,252,256,260,264,268,272,276,280,284,288,292,296,300,304,308,312,316,320,324,328,332,336,340,344,348,352,356,360,364,368,372,376,380,384,388,392,396,400],"measured_values":[1387499.0,2626066.0,3943694.0,5253438.0,6567533.0,7881133.0,9194087.0,10527917.0,11820740.0,13141727.0,14449450.0,15761025.0,17073999.0,18387779.0,19700965.0,21013202.0,22326253.0,23641620.0,24975818.0,26318643.0,27580963.0,28893672.0,30210388.0,31521845.0,32834635.0,34167928.0,35462570.0,36798328.0,38088308.0,39403070.0,40805439.0,42215043.0,43343823.0,44656333.0,45969464.0,47303071.0,48595702.0,49911074.0,51221934.0,52556780.0,53849226.0,55163810.0,56477072.0,57886203.0,59246609.0,60415374.0,61750267.0,63068211.0,64354864.0,65687617.0,66984363.0,68295437.0,69629560.0,70924781.0,72239854.0,73572892.0,74864796.0,76176890.0,77523069.0,78804585.0,80223250.0,81450595.0,82745615.0,84104621.0,85370166.0,86702128.0,87994497.0,89308097.0,90641940.0,91937773.0,93489831.0,94569826.0,95932443.0,97190296.0,98523727.0,99816288.0,101150916.0,102442798.0,103771114.0,105068833.0,106416599.0,107697605.0,109027889.0,110393683.0,111683056.0,113029630.0,114451393.0,115719007.0,117060644.0,119061750.0,119612418.0,121283087.0,122255620.0,123616669.0,124813391.0,126311653.0,127530109.0,128896628.0,130271372.0,131360662.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":328620.51623466826,"lower_bound":328511.3353426672,"upper_bound":328756.1823223813,"unit":"ns"},"mean":{"estimate":328712.85628940264,"lower_bound":328480.390729745,"upper_bound":329123.85646191007,"unit":"ns"},"median":{"estimate":328385.07146624476,"lower_bound":328357.1296296296,"upper_bound":328438.085,"unit":"ns"},"median_abs_dev":{"estimate":65.73528875232833,"lower_bound":26.48790187057992,"upper_bound":136.16597319799703,"unit":"ns"},"slope":{"estimate":328620.51623466826,"lower_bound":328511.3353426672,"upper_bound":328756.1823223813,"unit":"ns"},"change":{"mean":{"estimate":0.0076166397688910426,"lower_bound":0.006516841515639754,"upper_bound":0.008939796627369523,"unit":"%"},"median":{"estimate":0.007334132695125506,"lower_bound":0.007182134571203569,"upper_bound":0.007535436640490278,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"k256","benchmarks":["k256/1","k256/10","k256/100","k256/1000","k256/10000","k256/19753","k256/29629","k256/44444","k256/66666","k256/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/k256"} +{"reason":"benchmark-complete","id":"s256/1","report_directory":"/root/fuel-core/target/criterion/reports/s256/1","iteration_count":[2992,5984,8976,11968,14960,17952,20944,23936,26928,29920,32912,35904,38896,41888,44880,47872,50864,53856,56848,59840,62832,65824,68816,71808,74800,77792,80784,83776,86768,89760,92752,95744,98736,101728,104720,107712,110704,113696,116688,119680,122672,125664,128656,131648,134640,137632,140624,143616,146608,149600,152592,155584,158576,161568,164560,167552,170544,173536,176528,179520,182512,185504,188496,191488,194480,197472,200464,203456,206448,209440,212432,215424,218416,221408,224400,227392,230384,233376,236368,239360,242352,245344,248336,251328,254320,257312,260304,263296,266288,269280,272272,275264,278256,281248,284240,287232,290224,293216,296208,299200],"measured_values":[1043469.0,1860759.0,2804353.0,3755089.0,4652363.0,5620320.0,6540732.0,7443146.0,8409630.0,9338136.0,10249652.0,11246115.0,12165561.0,13058821.0,14022924.0,14945864.0,15868641.0,16769723.0,17684352.0,18653865.0,19558090.0,20522885.0,21420965.0,22387383.0,23343778.0,24293430.0,25235407.0,26080668.0,27104818.0,27932005.0,28890686.0,29915292.0,30736346.0,31747807.0,32665532.0,33523824.0,34476649.0,35486493.0,36370778.0,37275377.0,38253536.0,39110708.0,40116582.0,41056006.0,41880238.0,42921301.0,43747319.0,44778348.0,45647529.0,46689726.0,47556627.0,48890272.0,49454448.0,50414897.0,51235561.0,52236643.0,53122195.0,54265179.0,55088924.0,55991844.0,56917982.0,57786436.0,58787956.0,59664463.0,60695397.0,61638272.0,62461616.0,63406910.0,64351470.0,65297263.0,66182333.0,67152614.0,68070929.0,69032506.0,69931174.0,70766167.0,71734912.0,72813658.0,73704484.0,74513052.0,75631382.0,76369489.0,77362102.0,78343959.0,80310332.0,80183157.0,81151186.0,81960484.0,82974363.0,83879606.0,84866262.0,85789761.0,86678809.0,87563217.0,88574212.0,89398943.0,90386704.0,91267346.0,92279626.0,93238444.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":311.73569497972625,"lower_bound":311.5905618283832,"upper_bound":311.95783700190754,"unit":"ns"},"mean":{"estimate":312.18496821621824,"lower_bound":311.72069320187745,"upper_bound":313.0077439404174,"unit":"ns"},"median":{"estimate":311.7139335847976,"lower_bound":311.618412666335,"upper_bound":311.788670689406,"unit":"ns"},"median_abs_dev":{"estimate":0.48509707992018686,"lower_bound":0.31951690609207295,"upper_bound":0.5627440498388477,"unit":"ns"},"slope":{"estimate":311.73569497972625,"lower_bound":311.5905618283832,"upper_bound":311.95783700190754,"unit":"ns"},"change":{"mean":{"estimate":0.0007128205025372925,"lower_bound":-0.001367427513630584,"upper_bound":0.0038064790267906506,"unit":"%"},"median":{"estimate":-0.00007622906254789452,"lower_bound":-0.0004568982381155662,"upper_bound":0.0003675787504555661,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"s256/10","report_directory":"/root/fuel-core/target/criterion/reports/s256/10","iteration_count":[2992,5984,8976,11968,14960,17952,20944,23936,26928,29920,32912,35904,38896,41888,44880,47872,50864,53856,56848,59840,62832,65824,68816,71808,74800,77792,80784,83776,86768,89760,92752,95744,98736,101728,104720,107712,110704,113696,116688,119680,122672,125664,128656,131648,134640,137632,140624,143616,146608,149600,152592,155584,158576,161568,164560,167552,170544,173536,176528,179520,182512,185504,188496,191488,194480,197472,200464,203456,206448,209440,212432,215424,218416,221408,224400,227392,230384,233376,236368,239360,242352,245344,248336,251328,254320,257312,260304,263296,266288,269280,272272,275264,278256,281248,284240,287232,290224,293216,296208,299200],"measured_values":[976099.0,1864046.0,2790093.0,3719391.0,4653975.0,5604520.0,6535847.0,7462722.0,8379517.0,9302607.0,10240649.0,11165892.0,12092966.0,13029623.0,13952967.0,14932869.0,15892996.0,16753352.0,17696445.0,18610208.0,19593263.0,20527261.0,21417976.0,22392523.0,23308804.0,24261566.0,25146113.0,26044404.0,27006664.0,28002146.0,28850888.0,29856235.0,30791915.0,31696925.0,32587509.0,33566125.0,34445119.0,35367985.0,36373782.0,37228653.0,38240415.0,39188651.0,40099384.0,41043281.0,41952455.0,42823736.0,43828830.0,44716573.0,45701341.0,46580014.0,47486685.0,48470935.0,49409744.0,50292857.0,51267190.0,52429386.0,53117857.0,53993348.0,55077169.0,55898714.0,56786266.0,57925138.0,58659007.0,59617667.0,60557720.0,61406197.0,62510569.0,63445861.0,64214429.0,65262091.0,66277394.0,67045189.0,68221365.0,68974329.0,69783840.0,70814226.0,71774455.0,72690142.0,73479415.0,74533807.0,75503123.0,76445896.0,77237101.0,78262032.0,79233746.0,80201847.0,81012829.0,82001994.0,83160176.0,83902088.0,84835285.0,85753376.0,86704957.0,87563199.0,88629944.0,89471237.0,90431828.0,91317934.0,92258143.0,93253556.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":311.52168043505407,"lower_bound":311.44474012535534,"upper_bound":311.6020088037276,"unit":"ns"},"mean":{"estimate":311.6327701398078,"lower_bound":311.4269125850536,"upper_bound":311.97445385120267,"unit":"ns"},"median":{"estimate":311.4998415914661,"lower_bound":311.382764294529,"upper_bound":311.58284729975907,"unit":"ns"},"median_abs_dev":{"estimate":0.42832358127984566,"lower_bound":0.3082031319355088,"upper_bound":0.49968543295067935,"unit":"ns"},"slope":{"estimate":311.52168043505407,"lower_bound":311.44474012535534,"upper_bound":311.6020088037276,"unit":"ns"},"change":{"mean":{"estimate":0.0041675505397060775,"lower_bound":0.0026342436776609136,"upper_bound":0.005633690927790735,"unit":"%"},"median":{"estimate":0.004645961111029662,"lower_bound":0.00423168039441002,"upper_bound":0.004948306238287348,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"s256/100","report_directory":"/root/fuel-core/target/criterion/reports/s256/100","iteration_count":[1642,3284,4926,6568,8210,9852,11494,13136,14778,16420,18062,19704,21346,22988,24630,26272,27914,29556,31198,32840,34482,36124,37766,39408,41050,42692,44334,45976,47618,49260,50902,52544,54186,55828,57470,59112,60754,62396,64038,65680,67322,68964,70606,72248,73890,75532,77174,78816,80458,82100,83742,85384,87026,88668,90310,91952,93594,95236,96878,98520,100162,101804,103446,105088,106730,108372,110014,111656,113298,114940,116582,118224,119866,121508,123150,124792,126434,128076,129718,131360,133002,134644,136286,137928,139570,141212,142854,144496,146138,147780,149422,151064,152706,154348,155990,157632,159274,160916,162558,164200],"measured_values":[1015887.0,1908888.0,2885058.0,3838987.0,4771962.0,5731155.0,6677287.0,7632591.0,8587891.0,9544299.0,10503959.0,11459670.0,12412592.0,13366644.0,14323000.0,15291612.0,16231958.0,17195003.0,18142117.0,19097043.0,20051869.0,21007786.0,21994041.0,22918886.0,23872586.0,24876400.0,25782631.0,26725352.0,27667570.0,28623207.0,29577832.0,30532334.0,31552144.0,32464930.0,33438475.0,34467099.0,35336979.0,36326944.0,37246554.0,38371107.0,39507099.0,40222597.0,41100232.0,42054386.0,42968247.0,43899765.0,44841904.0,45807375.0,46750286.0,47767178.0,48685479.0,49635971.0,50604391.0,51562231.0,52583269.0,53487080.0,54424879.0,55379185.0,56335226.0,57302205.0,58242714.0,59201688.0,60166432.0,61105452.0,62087201.0,63031759.0,63997697.0,64967865.0,65901333.0,66838410.0,67795319.0,68777355.0,69710272.0,70619253.0,71611388.0,72703778.0,73528980.0,74492878.0,75422972.0,76350031.0,77420414.0,78291859.0,79269704.0,80247661.0,81214822.0,82117608.0,83074465.0,83986376.0,84925846.0,85898102.0,86915514.0,87874107.0,88809763.0,89778339.0,90704384.0,91650034.0,92713240.0,93635359.0,94564408.0,95676507.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":581.692223293993,"lower_bound":581.5891095090739,"upper_bound":581.810402607013,"unit":"ns"},"mean":{"estimate":582.1380362436759,"lower_bound":581.6489641260465,"upper_bound":582.9891049082215,"unit":"ns"},"median":{"estimate":581.5495747979182,"lower_bound":581.5169943738762,"upper_bound":581.6301766138855,"unit":"ns"},"median_abs_dev":{"estimate":0.2597099384285667,"lower_bound":0.15970051863247642,"upper_bound":0.42117860271816343,"unit":"ns"},"slope":{"estimate":581.692223293993,"lower_bound":581.5891095090739,"upper_bound":581.810402607013,"unit":"ns"},"change":{"mean":{"estimate":0.0009934846323016444,"lower_bound":-0.0010399297201013375,"upper_bound":0.002771801803991807,"unit":"%"},"median":{"estimate":0.0010395919223371575,"lower_bound":0.0008693379708564208,"upper_bound":0.0012446670526695457,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"s256/1000","report_directory":"/root/fuel-core/target/criterion/reports/s256/1000","iteration_count":[233,466,699,932,1165,1398,1631,1864,2097,2330,2563,2796,3029,3262,3495,3728,3961,4194,4427,4660,4893,5126,5359,5592,5825,6058,6291,6524,6757,6990,7223,7456,7689,7922,8155,8388,8621,8854,9087,9320,9553,9786,10019,10252,10485,10718,10951,11184,11417,11650,11883,12116,12349,12582,12815,13048,13281,13514,13747,13980,14213,14446,14679,14912,15145,15378,15611,15844,16077,16310,16543,16776,17009,17242,17475,17708,17941,18174,18407,18640,18873,19106,19339,19572,19805,20038,20271,20504,20737,20970,21203,21436,21669,21902,22135,22368,22601,22834,23067,23300],"measured_values":[1009567.0,1969451.0,2957676.0,3941419.0,4923571.0,5911574.0,6893390.0,7880054.0,8867317.0,9851707.0,10836181.0,11820931.0,12812895.0,13790900.0,14797493.0,15762276.0,16755499.0,17732496.0,18718691.0,19700676.0,20686929.0,21759043.0,22658646.0,23640144.0,24648390.0,25903028.0,26701347.0,27584954.0,28569465.0,29577062.0,30543372.0,31541244.0,32506141.0,33514578.0,34483182.0,35496912.0,36448217.0,37454180.0,38424786.0,39505516.0,40416940.0,41406323.0,42623697.0,43371619.0,44333346.0,45447785.0,46300699.0,47308593.0,48263516.0,49257029.0,50240745.0,51245624.0,52216288.0,53195844.0,54177967.0,55183852.0,56173958.0,57140007.0,58319924.0,59132857.0,60090886.0,61083337.0,62108019.0,63050819.0,64025815.0,65042979.0,66002175.0,67010586.0,67993716.0,68962061.0,69983956.0,70947027.0,72050103.0,73018170.0,74176471.0,75031471.0,75992447.0,77024266.0,77845603.0,78915067.0,79903610.0,80931585.0,81811425.0,82849062.0,83813278.0,84881865.0,85776924.0,86756209.0,87769409.0,88747757.0,89666251.0,90926117.0,91860351.0,92899805.0,93941675.0,94853743.0,95728868.0,96737351.0,97838003.0,98814247.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":4234.069178562209,"lower_bound":4232.671510888616,"upper_bound":4235.427303169061,"unit":"ns"},"mean":{"estimate":4233.3052103973505,"lower_bound":4231.32287325278,"upper_bound":4236.019191615312,"unit":"ns"},"median":{"estimate":4229.921253576538,"lower_bound":4228.990343347639,"upper_bound":4230.825008114834,"unit":"ns"},"median_abs_dev":{"estimate":2.9347681054547814,"lower_bound":1.8196748400992597,"upper_bound":4.224557718246245,"unit":"ns"},"slope":{"estimate":4234.069178562209,"lower_bound":4232.671510888616,"upper_bound":4235.427303169061,"unit":"ns"},"change":{"mean":{"estimate":-0.0014897572923510127,"lower_bound":-0.0032370972491674197,"upper_bound":-0.00028295504235601186,"unit":"%"},"median":{"estimate":-0.001378830114141305,"lower_bound":-0.0016027778968640272,"upper_bound":-0.0011733682980484827,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"s256/10000","report_directory":"/root/fuel-core/target/criterion/reports/s256/10000","iteration_count":[25,50,75,100,125,150,175,200,225,250,275,300,325,350,375,400,425,450,475,500,525,550,575,600,625,650,675,700,725,750,775,800,825,850,875,900,925,950,975,1000,1025,1050,1075,1100,1125,1150,1175,1200,1225,1250,1275,1300,1325,1350,1375,1400,1425,1450,1475,1500,1525,1550,1575,1600,1625,1650,1675,1700,1725,1750,1775,1800,1825,1850,1875,1900,1925,1950,1975,2000,2025,2050,2075,2100,2125,2150,2175,2200,2225,2250,2275,2300,2325,2350,2375,2400,2425,2450,2475,2500],"measured_values":[1102958.0,2039583.0,3054153.0,4074821.0,5093258.0,6111814.0,7131471.0,8150119.0,9168884.0,10188354.0,11221750.0,12221579.0,13240908.0,14295439.0,15283266.0,16299309.0,17317764.0,18337580.0,19354470.0,20372484.0,21392628.0,22410901.0,23447896.0,24448234.0,25467673.0,26487758.0,27505328.0,28566377.0,29542344.0,30583225.0,31600143.0,32627105.0,33645852.0,34645467.0,35694614.0,36692547.0,37725680.0,38734893.0,39756752.0,40768866.0,41819544.0,42790382.0,43815618.0,44824448.0,45854246.0,46879598.0,47887984.0,48904010.0,49933769.0,50952867.0,51963188.0,53013077.0,54001177.0,55032503.0,56054599.0,57077535.0,58105784.0,59238502.0,60107585.0,61122657.0,62165603.0,63171781.0,64635961.0,65261634.0,66260792.0,67264391.0,68297662.0,69286864.0,70376467.0,71531325.0,72349172.0,73368946.0,74397633.0,75399361.0,76474487.0,77521739.0,78750358.0,79522924.0,80491377.0,81573764.0,82545447.0,83595979.0,84626895.0,85633951.0,86603125.0,87753620.0,88633760.0,89801335.0,90662315.0,91722916.0,92740102.0,93791423.0,94732630.0,95770949.0,96767792.0,97791687.0,98849863.0,99908216.0,100916388.0,101898788.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":40776.35711056598,"lower_bound":40767.65344830431,"upper_bound":40787.16541076539,"unit":"ns"},"mean":{"estimate":40805.32734548519,"lower_bound":40766.41694435031,"upper_bound":40877.02544675942,"unit":"ns"},"median":{"estimate":40762.56185154639,"lower_bound":40756.41135135135,"upper_bound":40767.34615068493,"unit":"ns"},"median_abs_dev":{"estimate":20.794672222383543,"lower_bound":13.658521929274796,"upper_bound":24.397946396628853,"unit":"ns"},"slope":{"estimate":40776.35711056598,"lower_bound":40767.65344830431,"upper_bound":40787.16541076539,"unit":"ns"},"change":{"mean":{"estimate":0.006372869371314316,"lower_bound":0.002739238068273226,"upper_bound":0.00902161620428152,"unit":"%"},"median":{"estimate":0.007099880072265252,"lower_bound":0.006761305333021994,"upper_bound":0.007347674250794967,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"s256/19753","report_directory":"/root/fuel-core/target/criterion/reports/s256/19753","iteration_count":[13,26,39,52,65,78,91,104,117,130,143,156,169,182,195,208,221,234,247,260,273,286,299,312,325,338,351,364,377,390,403,416,429,442,455,468,481,494,507,520,533,546,559,572,585,598,611,624,637,650,663,676,689,702,715,728,741,754,767,780,793,806,819,832,845,858,871,884,897,910,923,936,949,962,975,988,1001,1014,1027,1040,1053,1066,1079,1092,1105,1118,1131,1144,1157,1170,1183,1196,1209,1222,1235,1248,1261,1274,1287,1300],"measured_values":[1099421.0,2085738.0,3163711.0,4167615.0,5305857.0,6321459.0,7353709.0,8420463.0,9458701.0,10475271.0,11528830.0,12495305.0,13538696.0,14607438.0,15618026.0,16712132.0,17766313.0,18745744.0,19784842.0,20828408.0,21869668.0,22953928.0,24174032.0,25077693.0,26107869.0,27166109.0,28142576.0,29242299.0,30248092.0,31284360.0,32350420.0,33368842.0,34451572.0,35541375.0,36547435.0,37575194.0,38859448.0,39668031.0,40637451.0,41917114.0,42939045.0,43741085.0,44846181.0,45818055.0,46949686.0,47906643.0,48959377.0,50053726.0,51072698.0,52136185.0,53178196.0,54193788.0,55290921.0,56407309.0,57510711.0,58320669.0,59405534.0,60448230.0,61486403.0,62609956.0,63528406.0,64750209.0,65685632.0,66687337.0,67790909.0,68931127.0,69873845.0,70942245.0,71957093.0,72969361.0,74079467.0,75135817.0,76110801.0,77083623.0,78208080.0,79281780.0,80222943.0,81309627.0,82326139.0,83406749.0,84497569.0,85496823.0,86482724.0,87543633.0,88577064.0,89755431.0,90906339.0,91840274.0,92709866.0,93824203.0,95062620.0,96670793.0,96876127.0,97952440.0,98985372.0,100038760.0,101051914.0,102119335.0,103131644.0,104550358.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":80235.57855179548,"lower_bound":80203.07399597636,"upper_bound":80277.21377080902,"unit":"ns"},"mean":{"estimate":80345.7291016663,"lower_bound":80266.6600357435,"upper_bound":80456.11611788992,"unit":"ns"},"median":{"estimate":80220.20847268673,"lower_bound":80200.51699481075,"upper_bound":80255.8735042735,"unit":"ns"},"median_abs_dev":{"estimate":112.06560881158791,"lower_bound":85.20442795162205,"upper_bound":152.79412257895723,"unit":"ns"},"slope":{"estimate":80235.57855179548,"lower_bound":80203.07399597636,"upper_bound":80277.21377080902,"unit":"ns"},"change":{"mean":{"estimate":0.00896027317574033,"lower_bound":0.007150051603316521,"upper_bound":0.010800102448791525,"unit":"%"},"median":{"estimate":0.008625330381052176,"lower_bound":0.008230495248284286,"upper_bound":0.009176713582082163,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"s256/29629","report_directory":"/root/fuel-core/target/criterion/reports/s256/29629","iteration_count":[9,18,27,36,45,54,63,72,81,90,99,108,117,126,135,144,153,162,171,180,189,198,207,216,225,234,243,252,261,270,279,288,297,306,315,324,333,342,351,360,369,378,387,396,405,414,423,432,441,450,459,468,477,486,495,504,513,522,531,540,549,558,567,576,585,594,603,612,621,630,639,648,657,666,675,684,693,702,711,720,729,738,747,756,765,774,783,792,801,810,819,828,837,846,855,864,873,882,891,900],"measured_values":[1177309.0,2163807.0,3247768.0,4328942.0,5413425.0,6499377.0,7580355.0,8658623.0,9742339.0,10821813.0,11908548.0,12995531.0,14071766.0,15224682.0,16241108.0,17356732.0,18425576.0,19482330.0,20567908.0,21651563.0,22763328.0,23821741.0,24901120.0,26006429.0,27066277.0,28195144.0,29262484.0,30343329.0,31398864.0,32470395.0,33589148.0,34713367.0,35719273.0,36799932.0,37968523.0,38982135.0,40055002.0,41138723.0,42379104.0,43345920.0,44383277.0,45543799.0,46543893.0,47682934.0,48809349.0,49823956.0,50885631.0,51960130.0,53116648.0,54156245.0,55267592.0,56323364.0,57417768.0,58512665.0,59540626.0,60705878.0,61696368.0,62792993.0,63888044.0,64949489.0,66285119.0,67124027.0,68301226.0,69293301.0,70382192.0,71474436.0,72571345.0,73650977.0,74748912.0,75774777.0,76899327.0,77947638.0,79083092.0,80152712.0,81297878.0,82318232.0,83379358.0,84480045.0,85568754.0,86602578.0,87766731.0,88778357.0,89857786.0,90924821.0,92175691.0,93141885.0,94295860.0,95462412.0,96365688.0,97462470.0,98621659.0,99680115.0,100684487.0,101845778.0,102869936.0,103964787.0,105069817.0,106151078.0,107333103.0,108714221.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":120374.92382838285,"lower_bound":120347.80960053783,"upper_bound":120408.72769994164,"unit":"ns"},"mean":{"estimate":120468.39803306604,"lower_bound":120347.58083598792,"upper_bound":120689.8760391871,"unit":"ns"},"median":{"estimate":120333.98364825582,"lower_bound":120311.82323232324,"upper_bound":120349.95331899062,"unit":"ns"},"median_abs_dev":{"estimate":78.02477807129965,"lower_bound":51.45190855720528,"upper_bound":96.833074240377,"unit":"ns"},"slope":{"estimate":120374.92382838285,"lower_bound":120347.80960053783,"upper_bound":120408.72769994164,"unit":"ns"},"change":{"mean":{"estimate":0.01002836629005266,"lower_bound":0.008420220585404987,"upper_bound":0.011931466045548027,"unit":"%"},"median":{"estimate":0.00986285034129808,"lower_bound":0.009638318138177393,"upper_bound":0.010013874427450182,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"s256/44444","report_directory":"/root/fuel-core/target/criterion/reports/s256/44444","iteration_count":[6,12,18,24,30,36,42,48,54,60,66,72,78,84,90,96,102,108,114,120,126,132,138,144,150,156,162,168,174,180,186,192,198,204,210,216,222,228,234,240,246,252,258,264,270,276,282,288,294,300,306,312,318,324,330,336,342,348,354,360,366,372,378,384,390,396,402,408,414,420,426,432,438,444,450,456,462,468,474,480,486,492,498,504,510,516,522,528,534,540,546,552,558,564,570,576,582,588,594,600],"measured_values":[1102420.0,2162663.0,3240209.0,4321953.0,5403522.0,6482262.0,7564131.0,8644045.0,9725951.0,10805273.0,11886243.0,12965537.0,14045507.0,15128001.0,16207695.0,17288417.0,18398062.0,19449751.0,20550044.0,21610929.0,22691864.0,23800535.0,24851868.0,25933328.0,27014068.0,28126788.0,29194155.0,30275316.0,31335052.0,32448483.0,33497702.0,34574633.0,35657119.0,36758367.0,37818032.0,38899572.0,39980507.0,41058951.0,42164318.0,43254686.0,44300793.0,45620800.0,46481780.0,47543673.0,48663532.0,49730804.0,50805323.0,51870284.0,52945315.0,54058754.0,55127531.0,56187889.0,57292401.0,58347332.0,59448798.0,60509666.0,61614020.0,62763768.0,63803852.0,64863852.0,65934706.0,67020595.0,68104902.0,69173631.0,70235173.0,71314073.0,72477466.0,73476671.0,74555822.0,75685743.0,76719581.0,77861415.0,78934783.0,80030099.0,81142067.0,82129423.0,83502099.0,84299056.0,85362019.0,86463452.0,87542768.0,88776925.0,89711896.0,90900331.0,91972653.0,92955787.0,94027682.0,95119504.0,96241434.0,97294184.0,98375880.0,99438111.0,100555039.0,101594730.0,102727287.0,103752859.0,104843635.0,105922900.0,107014174.0,108126155.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":180188.86497906508,"lower_bound":180162.87347428215,"upper_bound":180220.12909460466,"unit":"ns"},"mean":{"estimate":180205.77873981706,"lower_bound":180151.60545863566,"upper_bound":180293.23115964487,"unit":"ns"},"median":{"estimate":180141.24591467023,"lower_bound":180110.2037037037,"upper_bound":180159.33653726516,"unit":"ns"},"median_abs_dev":{"estimate":78.246054517397,"lower_bound":43.594725543807584,"upper_bound":99.05089392690725,"unit":"ns"},"slope":{"estimate":180188.86497906508,"lower_bound":180162.87347428215,"upper_bound":180220.12909460466,"unit":"ns"},"change":{"mean":{"estimate":0.008261182117411003,"lower_bound":0.006771837576186962,"upper_bound":0.009324637275782682,"unit":"%"},"median":{"estimate":0.008760970232235765,"lower_bound":0.00847150341088665,"upper_bound":0.009006662043195446,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"s256/66666","report_directory":"/root/fuel-core/target/criterion/reports/s256/66666","iteration_count":[4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236,240,244,248,252,256,260,264,268,272,276,280,284,288,292,296,300,304,308,312,316,320,324,328,332,336,340,344,348,352,356,360,364,368,372,376,380,384,388,392,396,400],"measured_values":[1101964.0,2161843.0,3240744.0,4320832.0,5399494.0,6481196.0,7560347.0,8639425.0,9719732.0,10800536.0,11880371.0,12959310.0,14068071.0,15118934.0,16201970.0,17279040.0,18359185.0,19440026.0,20540108.0,21600317.0,22680686.0,23758889.0,24841017.0,25919420.0,26999991.0,28079226.0,29179390.0,30267779.0,31319618.0,32427560.0,33672164.0,34625803.0,35640908.0,36739365.0,37799836.0,38908522.0,40020749.0,41039223.0,42194873.0,44149805.0,44462750.0,45383395.0,46568664.0,47521281.0,48630498.0,49737164.0,50758878.0,51916473.0,52919954.0,54000771.0,55128213.0,56159443.0,57241433.0,58320534.0,59417989.0,60480919.0,61559452.0,62691449.0,63747828.0,64840448.0,65898149.0,66960627.0,68044640.0,69236225.0,70200975.0,71280814.0,72406863.0,73438648.0,74571981.0,75870907.0,76700780.0,77786884.0,78949415.0,80077324.0,81041964.0,82152067.0,83338912.0,84259214.0,85318958.0,86484712.0,87479334.0,88741056.0,89700862.0,90804232.0,91883013.0,92982881.0,93974637.0,95130733.0,96230291.0,97250069.0,98339558.0,99374613.0,100601404.0,101581019.0,102704903.0,103848445.0,104866379.0,106387979.0,107015139.0,108095912.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":270280.32758681837,"lower_bound":270197.1697578832,"upper_bound":270384.16016560554,"unit":"ns"},"mean":{"estimate":270304.2562865226,"lower_bound":270168.3061740128,"upper_bound":270484.7746643593,"unit":"ns"},"median":{"estimate":270128.4979048964,"lower_bound":270042.0603448276,"upper_bound":270179.537037037,"unit":"ns"},"median_abs_dev":{"estimate":186.80415835929085,"lower_bound":79.15633157430516,"upper_bound":254.38357147421894,"unit":"ns"},"slope":{"estimate":270280.32758681837,"lower_bound":270197.1697578832,"upper_bound":270384.16016560554,"unit":"ns"},"change":{"mean":{"estimate":0.009706341880024949,"lower_bound":0.00858330126523959,"upper_bound":0.01068943999560603,"unit":"%"},"median":{"estimate":0.009679645659775638,"lower_bound":0.009342347059316358,"upper_bound":0.009911461328086624,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"s256/100000","report_directory":"/root/fuel-core/target/criterion/reports/s256/100000","iteration_count":[3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57,60,63,66,69,72,75,78,81,84,87,90,93,96,99,102,105,108,111,114,117,120,123,126,129,132,135,138,141,144,147,150,153,156,159,162,165,168,171,174,177,180,183,186,189,192,195,198,201,204,207,210,213,216,219,222,225,228,231,234,237,240,243,246,249,252,255,258,261,264,267,270,273,276,279,282,285,288,291,294,297,300],"measured_values":[1258656.0,2431446.0,3665323.0,4858983.0,6072885.0,7289470.0,8503182.0,9743220.0,10982981.0,12147871.0,13363747.0,14621148.0,15814457.0,17008593.0,18220861.0,19436703.0,20650690.0,21867418.0,23079917.0,24323659.0,25513071.0,26792127.0,27944703.0,29154873.0,30446204.0,31626599.0,32863892.0,34013726.0,35336175.0,36463025.0,37691860.0,38963801.0,40176187.0,41349030.0,42583819.0,43733044.0,45057992.0,46184611.0,47380194.0,48591824.0,49992712.0,51112396.0,52349182.0,53579211.0,54755826.0,55904894.0,57410250.0,58605093.0,59616137.0,60766403.0,62096529.0,63301889.0,64631384.0,65775806.0,66903493.0,68172406.0,69363538.0,70600966.0,71776550.0,73048176.0,74224132.0,75318748.0,76759948.0,78226349.0,79062737.0,80227853.0,81466124.0,82862619.0,83985714.0,85172381.0,86343340.0,87717398.0,88846059.0,90047210.0,91281245.0,92583125.0,93697284.0,94889046.0,96192366.0,97229490.0,98578048.0,99741890.0,101005312.0,102106279.0,103372185.0,104631378.0,105798584.0,107096832.0,108268454.0,109515147.0,110710539.0,111961903.0,113134058.0,114318784.0,115595496.0,116753245.0,117969236.0,119129341.0,120457121.0,121645642.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":405595.6342199892,"lower_bound":405519.65491927444,"upper_bound":405683.3642781982,"unit":"ns"},"mean":{"estimate":405704.0623849269,"lower_bound":405487.2770012963,"upper_bound":406046.13750876626,"unit":"ns"},"median":{"estimate":405540.543317148,"lower_bound":405454.837398374,"upper_bound":405615.94805194804,"unit":"ns"},"median_abs_dev":{"estimate":482.9622162970874,"lower_bound":313.26904892810734,"upper_bound":600.1699715230417,"unit":"ns"},"slope":{"estimate":405595.6342199892,"lower_bound":405519.65491927444,"upper_bound":405683.3642781982,"unit":"ns"},"change":{"mean":{"estimate":0.010740339971819335,"lower_bound":0.009654437616359686,"upper_bound":0.011849675649251329,"unit":"%"},"median":{"estimate":0.01121749760673807,"lower_bound":0.010950822129678128,"upper_bound":0.011447403696257944,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"s256","benchmarks":["s256/1","s256/10","s256/100","s256/1000","s256/10000","s256/19753","s256/29629","s256/44444","s256/66666","s256/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/s256"} +{"reason":"benchmark-complete","id":"ed19/ed19","report_directory":"/root/fuel-core/target/criterion/reports/ed19/ed19","iteration_count":[25,50,75,100,125,150,175,200,225,250,275,300,325,350,375,400,425,450,475,500,525,550,575,600,625,650,675,700,725,750,775,800,825,850,875,900,925,950,975,1000,1025,1050,1075,1100,1125,1150,1175,1200,1225,1250,1275,1300,1325,1350,1375,1400,1425,1450,1475,1500,1525,1550,1575,1600,1625,1650,1675,1700,1725,1750,1775,1800,1825,1850,1875,1900,1925,1950,1975,2000,2025,2050,2075,2100,2125,2150,2175,2200,2225,2250,2275,2300,2325,2350,2375,2400,2425,2450,2475,2500],"measured_values":[1096773.0,2010414.0,3074882.0,4068481.0,5030711.0,6035784.0,7041459.0,8049274.0,9050390.0,10058083.0,11060653.0,12066659.0,13071364.0,14078751.0,15123677.0,16115425.0,17140242.0,18102556.0,19105931.0,20113593.0,21121644.0,22124665.0,23150406.0,24139999.0,25163971.0,26153974.0,27180473.0,28154972.0,29158106.0,30171272.0,31193327.0,32168680.0,33209948.0,34189185.0,35198247.0,36198334.0,37204023.0,38211489.0,39374900.0,40378925.0,41241480.0,42252394.0,43234154.0,44245043.0,45254431.0,46252827.0,47256963.0,48266233.0,49267062.0,50270286.0,51282231.0,52285639.0,53298147.0,54299601.0,55305290.0,56307046.0,57306715.0,58312625.0,59327479.0,60634434.0,61489374.0,62344476.0,63390762.0,64357023.0,65357776.0,66356670.0,67382888.0,68377543.0,69373860.0,70394844.0,71386202.0,72395071.0,73390087.0,74413809.0,75537984.0,76419076.0,77469704.0,78437447.0,79430655.0,80446628.0,81454214.0,82451822.0,83465439.0,84465761.0,85469133.0,86478865.0,88250032.0,88544958.0,89756618.0,90504471.0,91555702.0,92612824.0,93530119.0,94512788.0,95527060.0,96649941.0,97536925.0,98654434.0,99542443.0,100606464.0],"unit":"ns","throughput":[],"typical":{"estimate":40245.05883375203,"lower_bound":40231.47302437082,"upper_bound":40264.27626283406,"unit":"ns"},"mean":{"estimate":40290.775687796246,"lower_bound":40240.8260579072,"upper_bound":40375.52512982483,"unit":"ns"},"median":{"estimate":40224.256271604936,"lower_bound":40222.48524381095,"upper_bound":40227.282929292924,"unit":"ns"},"median_abs_dev":{"estimate":8.608693575455865,"lower_bound":5.322346708536914,"upper_bound":13.721488647903776,"unit":"ns"},"slope":{"estimate":40245.05883375203,"lower_bound":40231.47302437082,"upper_bound":40264.27626283406,"unit":"ns"},"change":{"mean":{"estimate":-0.010736862016029636,"lower_bound":-0.012537628141230179,"upper_bound":-0.008346320201837305,"unit":"%"},"median":{"estimate":-0.011210445294715043,"lower_bound":-0.01147828292520825,"upper_bound":-0.01101250629971795,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"ed19","benchmarks":["ed19/ed19"],"report_directory":"/root/fuel-core/target/criterion/reports/ed19"} +{"reason":"benchmark-complete","id":"jmp/jmp","report_directory":"/root/fuel-core/target/criterion/reports/jmp/jmp","iteration_count":[33810,67620,101430,135240,169050,202860,236670,270480,304290,338100,371910,405720,439530,473340,507150,540960,574770,608580,642390,676200,710010,743820,777630,811440,845250,879060,912870,946680,980490,1014300,1048110,1081920,1115730,1149540,1183350,1217160,1250970,1284780,1318590,1352400,1386210,1420020,1453830,1487640,1521450,1555260,1589070,1622880,1656690,1690500,1724310,1758120,1791930,1825740,1859550,1893360,1927170,1960980,1994790,2028600,2062410,2096220,2130030,2163840,2197650,2231460,2265270,2299080,2332890,2366700,2400510,2434320,2468130,2501940,2535750,2569560,2603370,2637180,2670990,2704800,2738610,2772420,2806230,2840040,2873850,2907660,2941470,2975280,3009090,3042900,3076710,3110520,3144330,3178140,3211950,3245760,3279570,3313380,3347190,3381000],"measured_values":[617813.0,1172083.0,1759022.0,2381823.0,2935968.0,3509492.0,4097287.0,4680782.0,5296402.0,5953432.0,6513546.0,7025820.0,7613791.0,8191609.0,8783937.0,9395954.0,10076445.0,10587754.0,11220538.0,11764043.0,12341220.0,12968536.0,13494170.0,14151248.0,14635374.0,15387764.0,16033119.0,16547393.0,17152816.0,17732099.0,18195126.0,18924854.0,19310929.0,19897321.0,20479124.0,21220135.0,21649757.0,22233966.0,22938978.0,23460019.0,24259224.0,24576801.0,25162412.0,26054156.0,26627634.0,27120330.0,27962547.0,28465445.0,28705157.0,29348004.0,29876320.0,30478179.0,31139899.0,31707333.0,32260224.0,33079305.0,33694703.0,34104650.0,35062727.0,35431429.0,35946069.0,36391709.0,37056158.0,37448906.0,38109535.0,38814394.0,39832523.0,40103094.0,40724412.0,41152771.0,41883937.0,42591441.0,43275814.0,43940862.0,44374296.0,44602475.0,45488908.0,46082950.0,46854114.0,47413115.0,48100696.0,48492093.0,49019952.0,49486330.0,50148372.0,51004069.0,51672833.0,52106900.0,52696153.0,53379585.0,54028619.0,54206250.0,54798966.0,55340229.0,56201241.0,56525316.0,57312433.0,57950968.0,58538187.0,58777509.0],"unit":"ns","throughput":[],"typical":{"estimate":17.45967281018716,"lower_bound":17.44209713030302,"upper_bound":17.476261314850156,"unit":"ns"},"mean":{"estimate":17.440226264589278,"lower_bound":17.418228359782596,"upper_bound":17.465797127891832,"unit":"ns"},"median":{"estimate":17.434591889017355,"lower_bound":17.39724252710056,"upper_bound":17.469040322078488,"unit":"ns"},"median_abs_dev":{"estimate":0.10971448422203184,"lower_bound":0.08621070867712056,"upper_bound":0.13026268326160761,"unit":"ns"},"slope":{"estimate":17.45967281018716,"lower_bound":17.44209713030302,"upper_bound":17.476261314850156,"unit":"ns"},"change":{"mean":{"estimate":0.056016730349630395,"lower_bound":0.05393513797456655,"upper_bound":0.05805208067153266,"unit":"%"},"median":{"estimate":0.05708965990288761,"lower_bound":0.05480067049675097,"upper_bound":0.05913309194751837,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"jmp","benchmarks":["jmp/jmp"],"report_directory":"/root/fuel-core/target/criterion/reports/jmp"} +{"reason":"benchmark-complete","id":"ji/ji","report_directory":"/root/fuel-core/target/criterion/reports/ji/ji","iteration_count":[33249,66498,99747,132996,166245,199494,232743,265992,299241,332490,365739,398988,432237,465486,498735,531984,565233,598482,631731,664980,698229,731478,764727,797976,831225,864474,897723,930972,964221,997470,1030719,1063968,1097217,1130466,1163715,1196964,1230213,1263462,1296711,1329960,1363209,1396458,1429707,1462956,1496205,1529454,1562703,1595952,1629201,1662450,1695699,1728948,1762197,1795446,1828695,1861944,1895193,1928442,1961691,1994940,2028189,2061438,2094687,2127936,2161185,2194434,2227683,2260932,2294181,2327430,2360679,2393928,2427177,2460426,2493675,2526924,2560173,2593422,2626671,2659920,2693169,2726418,2759667,2792916,2826165,2859414,2892663,2925912,2959161,2992410,3025659,3058908,3092157,3125406,3158655,3191904,3225153,3258402,3291651,3324900],"measured_values":[620943.0,1190325.0,1785489.0,2380669.0,2979271.0,3532537.0,4170928.0,4799517.0,5370758.0,5955737.0,6559893.0,7155692.0,7741215.0,8336313.0,8932125.0,9526703.0,10121827.0,10723726.0,11271703.0,11929294.0,12517247.0,13098995.0,13704818.0,14249167.0,14885999.0,15479582.0,16106470.0,16673991.0,17265294.0,17860218.0,18467502.0,19017416.0,19668470.0,20178792.0,20842273.0,21393815.0,22034618.0,22629637.0,23218246.0,23815917.0,24341250.0,25110867.0,25668691.0,26159979.0,26793224.0,27385605.0,27863258.0,28502418.0,29053616.0,29712579.0,30325178.0,30959659.0,31556380.0,32153737.0,32767073.0,33435814.0,33838876.0,34616220.0,35010205.0,35723843.0,36303743.0,37046188.0,37534718.0,38131912.0,38812709.0,39117003.0,39826925.0,40589643.0,41155145.0,41676821.0,42291232.0,43241047.0,43511136.0,43852161.0,44527245.0,45217541.0,46013647.0,46463813.0,47072408.0,47677665.0,48196918.0,48853174.0,49414839.0,50191484.0,50806526.0,51176586.0,51885330.0,52441744.0,53064190.0,53480780.0,54100055.0,54787319.0,55336918.0,56043418.0,56606300.0,57258334.0,57664118.0,58366678.0,59018855.0,59548383.0],"unit":"ns","throughput":[],"typical":{"estimate":17.91324572714705,"lower_bound":17.904052636573955,"upper_bound":17.92265992737526,"unit":"ns"},"mean":{"estimate":17.91665401090745,"lower_bound":17.902478764494788,"upper_bound":17.936362397494204,"unit":"ns"},"median":{"estimate":17.909740246670232,"lower_bound":17.907349134978162,"upper_bound":17.916024850564234,"unit":"ns"},"median_abs_dev":{"estimate":0.02236603355368745,"lower_bound":0.015587882261734725,"upper_bound":0.03905406926448286,"unit":"ns"},"slope":{"estimate":17.91324572714705,"lower_bound":17.904052636573955,"upper_bound":17.92265992737526,"unit":"ns"},"change":{"mean":{"estimate":0.0392872181501287,"lower_bound":0.0364214322122143,"upper_bound":0.04132330219657317,"unit":"%"},"median":{"estimate":0.040257113819220036,"lower_bound":0.039250141071004,"upper_bound":0.04089665047839852,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"ji","benchmarks":["ji/ji"],"report_directory":"/root/fuel-core/target/criterion/reports/ji"} +{"reason":"benchmark-complete","id":"jne/jne","report_directory":"/root/fuel-core/target/criterion/reports/jne/jne","iteration_count":[31901,63802,95703,127604,159505,191406,223307,255208,287109,319010,350911,382812,414713,446614,478515,510416,542317,574218,606119,638020,669921,701822,733723,765624,797525,829426,861327,893228,925129,957030,988931,1020832,1052733,1084634,1116535,1148436,1180337,1212238,1244139,1276040,1307941,1339842,1371743,1403644,1435545,1467446,1499347,1531248,1563149,1595050,1626951,1658852,1690753,1722654,1754555,1786456,1818357,1850258,1882159,1914060,1945961,1977862,2009763,2041664,2073565,2105466,2137367,2169268,2201169,2233070,2264971,2296872,2328773,2360674,2392575,2424476,2456377,2488278,2520179,2552080,2583981,2615882,2647783,2679684,2711585,2743486,2775387,2807288,2839189,2871090,2902991,2934892,2966793,2998694,3030595,3062496,3094397,3126298,3158199,3190100],"measured_values":[633805.0,1208780.0,1819817.0,2421282.0,3006132.0,3622287.0,4242345.0,4888277.0,5435069.0,6024905.0,6644672.0,7264536.0,7837945.0,8461684.0,9040991.0,9637592.0,10237839.0,10829886.0,11508640.0,12105275.0,12697259.0,13296655.0,13871169.0,14491790.0,15121148.0,15899727.0,16312994.0,16878289.0,17482591.0,18149776.0,18689368.0,19334146.0,19891456.0,20545343.0,21137577.0,21723163.0,22303163.0,23002260.0,23571640.0,24080858.0,24684510.0,25449684.0,25941727.0,26520358.0,27093614.0,27706510.0,28276396.0,28967722.0,29561974.0,30177622.0,30890813.0,31585296.0,31980160.0,32592457.0,33243860.0,33841783.0,34366464.0,35069978.0,35686543.0,36223357.0,36806225.0,37470871.0,37999228.0,38621309.0,39252456.0,39886742.0,40483725.0,41023692.0,41646131.0,42221787.0,42835093.0,43347346.0,44070086.0,44576735.0,45362535.0,45922765.0,46536757.0,47132704.0,47712588.0,48261616.0,48840118.0,49412328.0,49995189.0,50750590.0,51342067.0,51991274.0,52514303.0,53143233.0,53735274.0,54360591.0,54879275.0,55473438.0,56103528.0,56776175.0,57319201.0,57995786.0,58547426.0,59154670.0,59572274.0,60357918.0],"unit":"ns","throughput":[],"typical":{"estimate":18.921609809852704,"lower_bound":18.915162473378707,"upper_bound":18.927952270301656,"unit":"ns"},"mean":{"estimate":18.938680393015584,"lower_bound":18.92241942718823,"upper_bound":18.962455538283148,"unit":"ns"},"median":{"estimate":18.92439591578913,"lower_bound":18.916584217579388,"upper_bound":18.933634108715328,"unit":"ns"},"median_abs_dev":{"estimate":0.031814502937083794,"lower_bound":0.02447097406560329,"upper_bound":0.03966080898345131,"unit":"ns"},"slope":{"estimate":18.921609809852704,"lower_bound":18.915162473378707,"upper_bound":18.927952270301656,"unit":"ns"},"change":{"mean":{"estimate":0.01599936233759891,"lower_bound":0.013996713157429659,"upper_bound":0.0179419044217303,"unit":"%"},"median":{"estimate":0.01566872345888659,"lower_bound":0.01414456848876422,"upper_bound":0.016755148909328055,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"jne","benchmarks":["jne/jne"],"report_directory":"/root/fuel-core/target/criterion/reports/jne"} +{"reason":"benchmark-complete","id":"jnei/jnei","report_directory":"/root/fuel-core/target/criterion/reports/jnei/jnei","iteration_count":[32158,64316,96474,128632,160790,192948,225106,257264,289422,321580,353738,385896,418054,450212,482370,514528,546686,578844,611002,643160,675318,707476,739634,771792,803950,836108,868266,900424,932582,964740,996898,1029056,1061214,1093372,1125530,1157688,1189846,1222004,1254162,1286320,1318478,1350636,1382794,1414952,1447110,1479268,1511426,1543584,1575742,1607900,1640058,1672216,1704374,1736532,1768690,1800848,1833006,1865164,1897322,1929480,1961638,1993796,2025954,2058112,2090270,2122428,2154586,2186744,2218902,2251060,2283218,2315376,2347534,2379692,2411850,2444008,2476166,2508324,2540482,2572640,2604798,2636956,2669114,2701272,2733430,2765588,2797746,2829904,2862062,2894220,2926378,2958536,2990694,3022852,3055010,3087168,3119326,3151484,3183642,3215800],"measured_values":[653630.0,1228002.0,1854945.0,2435796.0,3020837.0,3629144.0,4268111.0,4838617.0,5460198.0,6062503.0,6664648.0,7275311.0,7874701.0,8463597.0,9069542.0,9685582.0,10327953.0,10913328.0,11513648.0,12143117.0,12943519.0,13450064.0,14049631.0,14555909.0,15139780.0,15763563.0,16370207.0,17006650.0,17581910.0,18188162.0,18760419.0,19506157.0,19975946.0,20596965.0,21208173.0,21815095.0,22394351.0,23072463.0,23662987.0,24251118.0,24864024.0,25415137.0,26038296.0,26642681.0,27282053.0,27937400.0,28536557.0,29100891.0,29755076.0,30431880.0,30887256.0,31525267.0,32080151.0,32708578.0,33345949.0,33951783.0,34554054.0,35187764.0,35774610.0,36408863.0,37001758.0,37609690.0,38288363.0,38762975.0,39484332.0,40023316.0,40615373.0,41254689.0,41832927.0,42425073.0,43045659.0,43604708.0,44266713.0,44907711.0,45454988.0,46042706.0,46669846.0,47315801.0,47876717.0,48503445.0,49148252.0,49746278.0,50279177.0,50929938.0,51724161.0,52086934.0,52729277.0,53384468.0,54028271.0,54525949.0,55189725.0,55837488.0,56348488.0,57123534.0,57632215.0,58223680.0,58779428.0,59371220.0,60009868.0,60618410.0],"unit":"ns","throughput":[],"typical":{"estimate":18.858056927304027,"lower_bound":18.853172863938674,"upper_bound":18.863494105383342,"unit":"ns"},"mean":{"estimate":18.88230125253486,"lower_bound":18.858796870179148,"upper_bound":18.91892214426073,"unit":"ns"},"median":{"estimate":18.85315923387204,"lower_bound":18.851710434411267,"upper_bound":18.85740622120811,"unit":"ns"},"median_abs_dev":{"estimate":0.020883434174348098,"lower_bound":0.016179222548549733,"upper_bound":0.028584585929197708,"unit":"ns"},"slope":{"estimate":18.858056927304027,"lower_bound":18.853172863938674,"upper_bound":18.863494105383342,"unit":"ns"},"change":{"mean":{"estimate":0.03551632820458184,"lower_bound":0.0335551846124901,"upper_bound":0.037874558802300534,"unit":"%"},"median":{"estimate":0.03523181352283844,"lower_bound":0.03503364844137038,"upper_bound":0.03546790056097793,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"jnei","benchmarks":["jnei/jnei"],"report_directory":"/root/fuel-core/target/criterion/reports/jnei"} +{"reason":"benchmark-complete","id":"jnzi/jnzi","report_directory":"/root/fuel-core/target/criterion/reports/jnzi/jnzi","iteration_count":[32934,65868,98802,131736,164670,197604,230538,263472,296406,329340,362274,395208,428142,461076,494010,526944,559878,592812,625746,658680,691614,724548,757482,790416,823350,856284,889218,922152,955086,988020,1020954,1053888,1086822,1119756,1152690,1185624,1218558,1251492,1284426,1317360,1350294,1383228,1416162,1449096,1482030,1514964,1547898,1580832,1613766,1646700,1679634,1712568,1745502,1778436,1811370,1844304,1877238,1910172,1943106,1976040,2008974,2041908,2074842,2107776,2140710,2173644,2206578,2239512,2272446,2305380,2338314,2371248,2404182,2437116,2470050,2502984,2535918,2568852,2601786,2634720,2667654,2700588,2733522,2766456,2799390,2832324,2865258,2898192,2931126,2964060,2996994,3029928,3062862,3095796,3128730,3161664,3194598,3227532,3260466,3293400],"measured_values":[643600.0,1218362.0,1778441.0,2490309.0,2965451.0,3759371.0,4360641.0,4874154.0,5447011.0,6107453.0,6727776.0,7342161.0,7917813.0,8630042.0,8113282.0,9286428.0,9876813.0,10243636.0,11216007.0,12080351.0,12152813.0,13276650.0,14008625.0,14153986.0,15098214.0,15441091.0,15474205.0,16691875.0,17596421.0,17493469.0,18221012.0,19030635.0,20158630.0,20635963.0,20405925.0,21284323.0,22237710.0,22941857.0,23383908.0,23467496.0,24772606.0,25381802.0,25870070.0,26279116.0,26684043.0,27403802.0,27834091.0,28253691.0,29461589.0,30120584.0,30395875.0,31502182.0,31149087.0,32490088.0,33480812.0,33951369.0,33133537.0,34707011.0,35617988.0,35565270.0,35510771.0,36930453.0,37450875.0,38129155.0,39286732.0,39219301.0,40110387.0,40504059.0,41550609.0,42025811.0,42810269.0,43023878.0,43717999.0,44320440.0,44741892.0,46564067.0,46566389.0,46681034.0,46854555.0,47904522.0,48894489.0,49270478.0,50045509.0,50881198.0,50597832.0,51120515.0,52976271.0,52673143.0,53421508.0,53595986.0,54234212.0,54881273.0,55633846.0,56396266.0,57615699.0,57000911.0,57100432.0,59461294.0,59199728.0,60120764.0],"unit":"ns","throughput":[],"typical":{"estimate":18.179304399736775,"lower_bound":18.134591592342776,"upper_bound":18.223038557885065,"unit":"ns"},"mean":{"estimate":18.18031761324,"lower_bound":18.106615751477335,"upper_bound":18.251371399773472,"unit":"ns"},"median":{"estimate":18.183081672893316,"lower_bound":18.113759640493107,"upper_bound":18.258467299339742,"unit":"ns"},"median_abs_dev":{"estimate":0.24887045776181552,"lower_bound":0.20033390137833004,"upper_bound":0.3169858802423179,"unit":"ns"},"slope":{"estimate":18.179304399736775,"lower_bound":18.134591592342776,"upper_bound":18.223038557885065,"unit":"ns"},"change":{"mean":{"estimate":0.040689000180238466,"lower_bound":0.03650232334913333,"upper_bound":0.04546226114574717,"unit":"%"},"median":{"estimate":0.0417144991518148,"lower_bound":0.038983201492258646,"upper_bound":0.04631675361399323,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"jnzi","benchmarks":["jnzi/jnzi"],"report_directory":"/root/fuel-core/target/criterion/reports/jnzi"} +{"reason":"benchmark-complete","id":"ret_script/ret_script","report_directory":"/root/fuel-core/target/criterion/reports/ret_script/ret_script","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[3962.0,3004.0,3535.0,3590.0,2754.0,3130.0,2577.0,2818.0,2971.0,2566.0,2859.0,2789.0,3342.0,2771.0,2974.0,3067.0,3989.0,2855.0,3026.0,3461.0,2641.0,3808.0,3602.0,2539.0,3204.0,3019.0,2631.0,3029.0,2606.0,2768.0,3605.0,3425.0,2812.0,3399.0,3080.0,3008.0,3147.0,3339.0,2801.0,2731.0,3320.0,2959.0,2957.0,3103.0,3316.0,2698.0,3246.0,3389.0,2599.0,3017.0,3278.0,3464.0,3259.0,2507.0,2689.0,3029.0,3374.0,3183.0,3451.0,2698.0,2858.0,2939.0,2664.0,2936.0,3144.0,3177.0,2900.0,2514.0,2629.0,3469.0,3419.0,3417.0,2930.0,2853.0,2768.0,3039.0,2729.0,2604.0,3392.0,2886.0,2933.0,3149.0,3366.0,3222.0,3573.0,3634.0,3461.0,3050.0,3606.0,3179.0,2989.0,2919.0,2975.0,2873.0,2979.0,2641.0,3126.0,3064.0,2748.0,2893.0],"unit":"ns","throughput":[],"typical":{"estimate":3064.17,"lower_bound":3000.07,"upper_bound":3130.02,"unit":"ns"},"mean":{"estimate":3064.17,"lower_bound":3000.07,"upper_bound":3130.02,"unit":"ns"},"median":{"estimate":3018.0,"lower_bound":2949.0,"upper_bound":3103.0,"unit":"ns"},"median_abs_dev":{"estimate":368.42609345912933,"lower_bound":260.19629538059235,"upper_bound":457.38209187984467,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.38014302042137416,"lower_bound":-0.6640144666792168,"upper_bound":0.07406481766062474,"unit":"%"},"median":{"estimate":0.060249429123484965,"lower_bound":0.026179813985532263,"upper_bound":0.09415071139996489,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"ret_script","benchmarks":["ret_script/ret_script"],"report_directory":"/root/fuel-core/target/criterion/reports/ret_script"} +{"reason":"benchmark-complete","id":"ret_contract/ret_contract","report_directory":"/root/fuel-core/target/criterion/reports/ret_contract/ret_contract","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[2704.0,2151.0,1886.0,1657.0,2397.0,1776.0,1521.0,2121.0,2365.0,1682.0,1996.0,1609.0,1416.0,1795.0,1645.0,1579.0,2784.0,2445.0,2762.0,1689.0,2089.0,1703.0,1745.0,1529.0,2317.0,1778.0,1697.0,1705.0,1639.0,1500.0,1603.0,1380.0,1869.0,1540.0,1774.0,2066.0,1368.0,2213.0,2040.0,1414.0,1686.0,2134.0,1868.0,1280.0,1979.0,2137.0,1851.0,1492.0,1425.0,1625.0,1400.0,1346.0,2014.0,1867.0,1597.0,2502.0,1366.0,1399.0,1833.0,2337.0,2006.0,1487.0,2035.0,1944.0,2469.0,1342.0,2569.0,1629.0,1673.0,2119.0,1965.0,1627.0,1825.0,1764.0,1649.0,2044.0,1669.0,2315.0,2184.0,2110.0,1981.0,1939.0,2019.0,2597.0,2100.0,1721.0,1670.0,2079.0,1663.0,1384.0,2055.0,1660.0,1648.0,1978.0,2404.0,2432.0,1556.0,2339.0,1389.0,1429.0],"unit":"ns","throughput":[],"typical":{"estimate":1865.55,"lower_bound":1796.21,"upper_bound":1936.08,"unit":"ns"},"mean":{"estimate":1865.55,"lower_bound":1796.21,"upper_bound":1936.08,"unit":"ns"},"median":{"estimate":1786.5,"lower_bound":1689.0,"upper_bound":1952.0,"unit":"ns"},"median_abs_dev":{"estimate":372.1325933933258,"lower_bound":286.14179491996765,"upper_bound":452.1929919719696,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0826502362770023,"lower_bound":-0.12494034880776947,"upper_bound":-0.03808775635073359,"unit":"%"},"median":{"estimate":-0.1251224289911851,"lower_bound":-0.17755200774068702,"upper_bound":-0.04201270151441139,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"ret_contract","benchmarks":["ret_contract/ret_contract"],"report_directory":"/root/fuel-core/target/criterion/reports/ret_contract"} +{"reason":"benchmark-complete","id":"retd_contract/1","report_directory":"/root/fuel-core/target/criterion/reports/retd_contract/1","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[3676.0,2945.0,2619.0,2005.0,2098.0,3887.0,2489.0,2789.0,2604.0,2578.0,2620.0,2329.0,2321.0,2367.0,2253.0,3019.0,2564.0,2861.0,2327.0,3202.0,2460.0,2604.0,2104.0,3063.0,2809.0,2449.0,3030.0,2831.0,2736.0,2772.0,2879.0,2423.0,2347.0,3952.0,3439.0,2794.0,2370.0,2341.0,3229.0,3049.0,2477.0,2689.0,2604.0,2542.0,2659.0,2324.0,2891.0,2599.0,2458.0,3012.0,2885.0,2681.0,2574.0,3854.0,2375.0,3218.0,2326.0,2650.0,2776.0,2462.0,2872.0,2331.0,2246.0,2944.0,2894.0,2475.0,2705.0,2480.0,2479.0,2447.0,2176.0,2377.0,3122.0,2499.0,2767.0,2187.0,2969.0,3024.0,2869.0,2422.0,2813.0,2467.0,3130.0,2372.0,2935.0,2469.0,3104.0,2798.0,2669.0,2422.0,2229.0,2895.0,3659.0,2242.0,2411.0,3184.0,2857.0,2533.0,2345.0,2086.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":2691.95,"lower_bound":2616.49975,"upper_bound":2770.9,"unit":"ns"},"mean":{"estimate":2691.95,"lower_bound":2616.49975,"upper_bound":2770.9,"unit":"ns"},"median":{"estimate":2611.5,"lower_bound":2499.0,"upper_bound":2767.0,"unit":"ns"},"median_abs_dev":{"estimate":366.94349348545074,"lower_bound":275.76359510421753,"upper_bound":436.6256922483444,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.12792694146764982,"lower_bound":-0.15867845606418937,"upper_bound":-0.09448659821492934,"unit":"%"},"median":{"estimate":-0.1668527675865369,"lower_bound":-0.20648355158096454,"upper_bound":-0.12120728201852449,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"retd_contract/10","report_directory":"/root/fuel-core/target/criterion/reports/retd_contract/10","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[3727.0,3036.0,3812.0,3252.0,2679.0,2807.0,2807.0,2815.0,2713.0,2642.0,2449.0,2650.0,2884.0,2324.0,2394.0,2693.0,2480.0,2429.0,2814.0,2464.0,2298.0,3170.0,2874.0,3133.0,2962.0,2524.0,2701.0,4464.0,2879.0,3338.0,3320.0,2998.0,2852.0,2841.0,3177.0,2659.0,2374.0,3538.0,2688.0,2332.0,2640.0,2472.0,2373.0,2589.0,2871.0,2293.0,2375.0,2606.0,2926.0,2223.0,3095.0,3399.0,3189.0,2794.0,2613.0,2439.0,2378.0,2381.0,2384.0,2504.0,2401.0,2293.0,2224.0,2635.0,2438.0,2964.0,2574.0,2440.0,2563.0,2261.0,2442.0,2547.0,2556.0,2322.0,2276.0,2416.0,2279.0,2334.0,2254.0,2500.0,2865.0,2819.0,2639.0,2304.0,2359.0,3105.0,2409.0,3018.0,2975.0,2962.0,2304.0,2480.0,2918.0,3311.0,2298.0,2505.0,2735.0,2744.0,2959.0,2590.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":2705.55,"lower_bound":2631.97975,"upper_bound":2783.99025,"unit":"ns"},"mean":{"estimate":2705.55,"lower_bound":2631.97975,"upper_bound":2783.99025,"unit":"ns"},"median":{"estimate":2637.0,"lower_bound":2524.0,"upper_bound":2718.0,"unit":"ns"},"median_abs_dev":{"estimate":359.5304936170578,"lower_bound":271.31579518318176,"upper_bound":429.2126923799515,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.11193571787288659,"lower_bound":-0.17727257637158134,"upper_bound":-0.05813966562431835,"unit":"%"},"median":{"estimate":-0.11256940938919735,"lower_bound":-0.15462525320729237,"upper_bound":-0.06605568044267685,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"retd_contract/100","report_directory":"/root/fuel-core/target/criterion/reports/retd_contract/100","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[4069.0,3234.0,3037.0,3468.0,3469.0,3231.0,3185.0,2892.0,2832.0,3441.0,2949.0,11607.0,2933.0,3021.0,3070.0,2869.0,3404.0,3143.0,3212.0,3054.0,3099.0,3141.0,3042.0,3197.0,3209.0,3016.0,3336.0,3137.0,2897.0,2997.0,2515.0,2890.0,3015.0,3179.0,2927.0,2694.0,2603.0,2970.0,2784.0,2844.0,2784.0,2942.0,2684.0,2747.0,2980.0,2914.0,3286.0,4164.0,3668.0,3176.0,3197.0,3056.0,2807.0,2784.0,2732.0,2769.0,3052.0,2754.0,2672.0,2859.0,2683.0,2584.0,2662.0,3049.0,2988.0,2862.0,2984.0,2983.0,3069.0,2665.0,3119.0,3385.0,3045.0,2782.0,2952.0,3249.0,2952.0,2989.0,2599.0,2981.0,3006.0,2826.0,2963.0,2961.0,3439.0,3540.0,3093.0,3171.0,2970.0,4059.0,3169.0,3126.0,2929.0,2952.0,3144.0,2871.0,4010.0,3027.0,3202.0,2930.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":3136.09,"lower_bound":3006.51975,"upper_bound":3344.47025,"unit":"ns"},"mean":{"estimate":3136.09,"lower_bound":3006.51975,"upper_bound":3344.47025,"unit":"ns"},"median":{"estimate":3001.5,"lower_bound":2963.0,"upper_bound":3052.0,"unit":"ns"},"median_abs_dev":{"estimate":222.38999605178833,"lower_bound":166.79249703884125,"upper_bound":287.62439489364624,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.004233285407333698,"lower_bound":-0.04787398551298078,"upper_bound":0.07126374530406855,"unit":"%"},"median":{"estimate":-0.04562798092209852,"lower_bound":-0.08071472581638939,"upper_bound":0.003973509933774766,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_contract/1000","report_directory":"/root/fuel-core/target/criterion/reports/retd_contract/1000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[8195.0,7153.0,6759.0,6567.0,6437.0,6816.0,6462.0,7291.0,6938.0,6612.0,6687.0,6445.0,6663.0,6425.0,6704.0,6868.0,6573.0,6942.0,6597.0,6396.0,6448.0,6388.0,6640.0,6645.0,6543.0,6426.0,6670.0,6254.0,7607.0,7560.0,6974.0,6638.0,6851.0,7798.0,6953.0,7587.0,7039.0,7104.0,6964.0,6991.0,6488.0,6747.0,6916.0,7039.0,6664.0,6542.0,6582.0,7074.0,7158.0,6519.0,6863.0,6740.0,6548.0,6710.0,6446.0,6471.0,6607.0,6776.0,6380.0,6854.0,6595.0,6818.0,6790.0,7032.0,6991.0,6766.0,6811.0,6768.0,7018.0,6399.0,6810.0,7018.0,6655.0,6699.0,6977.0,6625.0,6858.0,6486.0,6884.0,6828.0,6577.0,6550.0,6558.0,6604.0,6618.0,6907.0,6820.0,6383.0,6597.0,7000.0,6892.0,7099.0,6427.0,7308.0,6762.0,6829.0,6522.0,6658.0,6962.0,6732.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":6783.67,"lower_bound":6723.89975,"upper_bound":6848.65,"unit":"ns"},"mean":{"estimate":6783.67,"lower_bound":6723.89975,"upper_bound":6848.65,"unit":"ns"},"median":{"estimate":6743.5,"lower_bound":6658.0,"upper_bound":6816.0,"unit":"ns"},"median_abs_dev":{"estimate":280.9526950120926,"lower_bound":209.78789627552032,"upper_bound":329.13719415664673,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.04378720411146397,"lower_bound":-0.056345028553592504,"upper_bound":-0.030386305579270582,"unit":"%"},"median":{"estimate":-0.05380945699452788,"lower_bound":-0.06900397295601868,"upper_bound":-0.03783157920720295,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"retd_contract/10000","report_directory":"/root/fuel-core/target/criterion/reports/retd_contract/10000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[79042.0,45654.0,44878.0,45893.0,47482.0,46080.0,45247.0,44910.0,45211.0,45379.0,44769.0,45401.0,46895.0,44842.0,45171.0,44606.0,45262.0,45447.0,45527.0,45117.0,45638.0,46295.0,45232.0,44853.0,45405.0,45025.0,45344.0,45017.0,45690.0,44817.0,45427.0,45705.0,44940.0,45013.0,45488.0,44956.0,45716.0,45447.0,44797.0,45017.0,44838.0,44674.0,45155.0,44917.0,44860.0,45124.0,45847.0,45234.0,45127.0,45228.0,44990.0,44629.0,45446.0,45215.0,45340.0,45157.0,45007.0,45160.0,45020.0,44742.0,45160.0,44797.0,45423.0,44766.0,45171.0,44834.0,44630.0,45181.0,47053.0,45062.0,44699.0,45503.0,44442.0,44942.0,45284.0,44619.0,45242.0,44557.0,46210.0,45318.0,44773.0,44781.0,45495.0,45289.0,44944.0,44637.0,44514.0,45131.0,45044.0,45017.0,44787.0,46767.0,45233.0,45067.0,45206.0,45937.0,45267.0,45004.0,45368.0,44897.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":45563.96,"lower_bound":45148.99975,"upper_bound":46306.010500000004,"unit":"ns"},"mean":{"estimate":45563.96,"lower_bound":45148.99975,"upper_bound":46306.010500000004,"unit":"ns"},"median":{"estimate":45158.5,"lower_bound":45025.0,"upper_bound":45232.0,"unit":"ns"},"median_abs_dev":{"estimate":389.9237930774689,"lower_bound":292.072194814682,"upper_bound":471.46679162979126,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.006045463297104536,"lower_bound":-0.008526928438373034,"upper_bound":0.025147642746007656,"unit":"%"},"median":{"estimate":0.0031432569918030673,"lower_bound":-0.0010872218154385216,"upper_bound":0.007579810950597565,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_contract/19753","report_directory":"/root/fuel-core/target/criterion/reports/retd_contract/19753","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[226664.0,85650.0,88045.0,85577.0,85737.0,88363.0,85917.0,85537.0,85399.0,85276.0,85408.0,85644.0,85266.0,87000.0,85980.0,85797.0,86055.0,85900.0,87409.0,85114.0,85835.0,86100.0,85821.0,87469.0,85615.0,85467.0,85544.0,85988.0,85523.0,85280.0,85685.0,86129.0,85641.0,85356.0,85960.0,87167.0,85340.0,85560.0,87023.0,85588.0,90894.0,85578.0,84798.0,86531.0,85275.0,85268.0,85685.0,85819.0,85676.0,85770.0,85300.0,85138.0,85602.0,84848.0,85850.0,85335.0,85199.0,85002.0,85414.0,85448.0,85328.0,86048.0,87277.0,85982.0,85469.0,85918.0,85756.0,85366.0,85636.0,86626.0,85603.0,86390.0,85362.0,86281.0,85816.0,85293.0,85055.0,85037.0,85247.0,85424.0,88790.0,85605.0,85745.0,85978.0,85945.0,86102.0,85455.0,84977.0,85540.0,89942.0,86040.0,86575.0,85546.0,85649.0,85617.0,85745.0,85785.0,85385.0,85400.0,87454.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":87324.48,"lower_bound":85779.15975,"upper_bound":90265.60225000001,"unit":"ns"},"mean":{"estimate":87324.48,"lower_bound":85779.15975,"upper_bound":90265.60225000001,"unit":"ns"},"median":{"estimate":85646.5,"lower_bound":85578.0,"upper_bound":85770.5,"unit":"ns"},"median_abs_dev":{"estimate":436.6256922483444,"lower_bound":327.65459418296814,"upper_bound":533.735990524292,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.008099593098219948,"lower_bound":-0.028583802959328972,"upper_bound":0.059082437332145916,"unit":"%"},"median":{"estimate":0.0076533013318274,"lower_bound":0.006067583363191575,"upper_bound":0.009549923800669546,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_contract/29629","report_directory":"/root/fuel-core/target/criterion/reports/retd_contract/29629","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[264033.0,127418.0,127080.0,127252.0,128718.0,126103.0,126416.0,128329.0,128595.0,127548.0,127173.0,126884.0,130243.0,127540.0,127410.0,130621.0,126857.0,126518.0,126626.0,126718.0,127037.0,126498.0,126277.0,126893.0,129638.0,126976.0,126763.0,126734.0,128151.0,126633.0,130613.0,129073.0,126737.0,126726.0,127122.0,126914.0,128135.0,126416.0,126835.0,127346.0,126551.0,126797.0,126393.0,126318.0,126898.0,126686.0,127110.0,127323.0,127219.0,127029.0,126791.0,127058.0,126563.0,126968.0,128356.0,126800.0,126989.0,127571.0,126353.0,127338.0,126353.0,128237.0,127460.0,126433.0,126623.0,126666.0,126643.0,126811.0,126239.0,127083.0,126548.0,127443.0,127081.0,127996.0,126754.0,126283.0,126763.0,127594.0,126848.0,126890.0,126517.0,126873.0,126780.0,127993.0,127795.0,127467.0,152421.0,126529.0,127001.0,149080.0,126947.0,126469.0,126818.0,127393.0,127165.0,127195.0,127577.0,126377.0,126680.0,126808.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":129013.43,"lower_bound":127178.13825,"upper_bound":132154.39200000002,"unit":"ns"},"mean":{"estimate":129013.43,"lower_bound":127178.13825,"upper_bound":132154.39200000002,"unit":"ns"},"median":{"estimate":126930.5,"lower_bound":126818.0,"upper_bound":127081.5,"unit":"ns"},"median_abs_dev":{"estimate":564.8705899715424,"lower_bound":370.6499934196472,"upper_bound":689.4089877605438,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.008623142880283874,"lower_bound":-0.01976773411776642,"upper_bound":0.04215060600759533,"unit":"%"},"median":{"estimate":0.009941836872717325,"lower_bound":0.008520040374818239,"upper_bound":0.011614022798191348,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_contract/44444","report_directory":"/root/fuel-core/target/criterion/reports/retd_contract/44444","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[244843.0,189148.0,190305.0,188158.0,187442.0,190785.0,187808.0,191048.0,190418.0,187442.0,188473.0,191430.0,187926.0,187909.0,192102.0,188212.0,187434.0,188820.0,188469.0,188008.0,188164.0,188155.0,188198.0,187428.0,188498.0,190797.0,187783.0,187327.0,187773.0,188529.0,188121.0,187640.0,187868.0,187265.0,187643.0,187658.0,189667.0,187588.0,189335.0,190376.0,188747.0,188132.0,187849.0,190443.0,190756.0,188115.0,191090.0,187897.0,187713.0,187582.0,187177.0,188339.0,188116.0,188059.0,187878.0,187903.0,187405.0,187643.0,187378.0,187903.0,187610.0,187974.0,187385.0,188840.0,189566.0,188226.0,187966.0,188750.0,187004.0,187857.0,189368.0,188122.0,187993.0,188423.0,187572.0,189953.0,230573.0,188463.0,187718.0,190632.0,188083.0,187330.0,187294.0,187633.0,187516.0,187517.0,187503.0,187977.0,187193.0,187587.0,187615.0,188148.0,187462.0,187405.0,187942.0,187809.0,187853.0,187808.0,188040.0,188085.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":189319.13,"lower_bound":188236.27,"upper_bound":190915.04075000001,"unit":"ns"},"mean":{"estimate":189319.13,"lower_bound":188236.27,"upper_bound":190915.04075000001,"unit":"ns"},"median":{"estimate":187975.5,"lower_bound":187868.0,"upper_bound":188121.5,"unit":"ns"},"median_abs_dev":{"estimate":590.8160895109177,"lower_bound":424.0235924720764,"upper_bound":833.221185207367,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0024340854994637784,"lower_bound":-0.013486741708488232,"upper_bound":0.015025226188676513,"unit":"%"},"median":{"estimate":0.005391311324160597,"lower_bound":0.004383151592901369,"upper_bound":0.007020184371042281,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_contract/66666","report_directory":"/root/fuel-core/target/criterion/reports/retd_contract/66666","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[325098.0,280704.0,280121.0,278506.0,281238.0,278998.0,279417.0,281852.0,279892.0,279223.0,279843.0,279863.0,278861.0,279500.0,279111.0,283408.0,278970.0,278975.0,280070.0,279284.0,279652.0,279398.0,279333.0,279183.0,280684.0,279395.0,279042.0,279837.0,278020.0,280372.0,279690.0,351020.0,282050.0,279593.0,279238.0,280811.0,281277.0,279272.0,284843.0,280382.0,280164.0,287649.0,279589.0,279132.0,278989.0,281890.0,282660.0,278770.0,281369.0,280374.0,279256.0,279573.0,279643.0,279320.0,280699.0,278840.0,278206.0,287107.0,282332.0,302124.0,280370.0,280694.0,280016.0,280942.0,283610.0,279513.0,278853.0,281825.0,280249.0,280188.0,279751.0,279581.0,278713.0,279411.0,279831.0,279038.0,279547.0,283235.0,284051.0,280288.0,279678.0,280982.0,279252.0,280688.0,279685.0,279704.0,280471.0,278873.0,279122.0,279200.0,282268.0,279093.0,279841.0,285171.0,281907.0,280023.0,282524.0,282837.0,279358.0,280097.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":281741.92,"lower_bound":280346.28875,"upper_bound":283690.97274999996,"unit":"ns"},"mean":{"estimate":281741.92,"lower_bound":280346.28875,"upper_bound":283690.97274999996,"unit":"ns"},"median":{"estimate":279839.0,"lower_bound":279593.0,"upper_bound":280164.0,"unit":"ns"},"median_abs_dev":{"estimate":1055.6111812591553,"lower_bound":747.9716867208481,"upper_bound":1412.9363074153619,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.009202254230263662,"lower_bound":0.0006084025177277964,"upper_bound":0.01750805420846933,"unit":"%"},"median":{"estimate":0.007958448219659742,"lower_bound":0.006757486517428246,"upper_bound":0.009347243888583323,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_contract/100000","report_directory":"/root/fuel-core/target/criterion/reports/retd_contract/100000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[498846.0,419606.0,416805.0,419692.0,418393.0,417635.0,420832.0,416410.0,416689.0,418767.0,417238.0,418011.0,418984.0,417792.0,418454.0,416425.0,422546.0,417674.0,417049.0,419461.0,418692.0,417870.0,418297.0,419358.0,418334.0,417818.0,417300.0,417155.0,418362.0,416788.0,418276.0,420901.0,417467.0,418076.0,417705.0,420833.0,419831.0,418105.0,416891.0,418080.0,416765.0,420718.0,417627.0,419001.0,420784.0,418444.0,417015.0,419206.0,417918.0,416532.0,421223.0,416839.0,421531.0,418944.0,417483.0,422928.0,419884.0,418362.0,421556.0,417383.0,418895.0,418596.0,417509.0,423938.0,418078.0,417998.0,417770.0,419929.0,420385.0,418407.0,417979.0,422177.0,418461.0,417929.0,419401.0,418149.0,416565.0,421909.0,417090.0,416990.0,417294.0,420204.0,419799.0,416980.0,419636.0,418245.0,417691.0,419798.0,419459.0,417877.0,416768.0,416720.0,420124.0,417364.0,418387.0,419591.0,417562.0,419272.0,419263.0,416987.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":419407.67,"lower_bound":418374.47825,"upper_bound":421206.83275,"unit":"ns"},"mean":{"estimate":419407.67,"lower_bound":418374.47825,"upper_bound":421206.83275,"unit":"ns"},"median":{"estimate":418286.5,"lower_bound":417963.5,"upper_bound":418525.0,"unit":"ns"},"median_abs_dev":{"estimate":1512.993273139,"lower_bound":1085.263180732727,"upper_bound":1881.4193665981293,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.011844150189377123,"lower_bound":0.006088852657067645,"upper_bound":0.017749904018717864,"unit":"%"},"median":{"estimate":0.012985424696282166,"lower_bound":0.012085846426837854,"upper_bound":0.013687227391322235,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"retd_contract","benchmarks":["retd_contract/1","retd_contract/10","retd_contract/100","retd_contract/1000","retd_contract/10000","retd_contract/19753","retd_contract/29629","retd_contract/44444","retd_contract/66666","retd_contract/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/retd_contract"} +{"reason":"benchmark-complete","id":"retd_script/1","report_directory":"/root/fuel-core/target/criterion/reports/retd_script/1","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[3801.0,2631.0,2457.0,2429.0,2569.0,2794.0,2818.0,2841.0,2325.0,2419.0,2366.0,2879.0,2449.0,2797.0,2337.0,2694.0,2546.0,2259.0,2672.0,2713.0,3293.0,2460.0,2297.0,2338.0,2465.0,3249.0,2545.0,2517.0,2394.0,2444.0,2569.0,2896.0,2334.0,2739.0,2444.0,2941.0,2407.0,2544.0,2809.0,2687.0,2414.0,3969.0,2333.0,2340.0,2434.0,2414.0,2893.0,2240.0,2615.0,2571.0,2517.0,2347.0,2256.0,2494.0,2939.0,2351.0,2952.0,2691.0,2509.0,2719.0,2524.0,2255.0,2684.0,3544.0,2657.0,2582.0,2374.0,2259.0,3161.0,2904.0,2356.0,2399.0,2609.0,3023.0,2812.0,2644.0,2699.0,2480.0,2364.0,2454.0,2354.0,2695.0,2634.0,2259.0,2497.0,2851.0,2278.0,2804.0,2277.0,2460.0,3057.0,2568.0,2330.0,2787.0,2720.0,2434.0,2328.0,2916.0,2686.0,2524.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":2614.09,"lower_bound":2555.50975,"upper_bound":2677.55,"unit":"ns"},"mean":{"estimate":2614.09,"lower_bound":2555.50975,"upper_bound":2677.55,"unit":"ns"},"median":{"estimate":2544.5,"lower_bound":2465.0,"upper_bound":2631.0,"unit":"ns"},"median_abs_dev":{"estimate":259.45499539375305,"lower_bound":194.96189653873444,"upper_bound":324.7079267352776,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.08896408955307111,"lower_bound":-0.11864557753184876,"upper_bound":-0.05824935258193879,"unit":"%"},"median":{"estimate":-0.09977003361047232,"lower_bound":-0.13994910941475824,"upper_bound":-0.05559465165376498,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"retd_script/10","report_directory":"/root/fuel-core/target/criterion/reports/retd_script/10","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[3429.0,3281.0,2345.0,2672.0,2417.0,2379.0,2509.0,3023.0,2571.0,2639.0,2571.0,2720.0,3290.0,2448.0,2821.0,3070.0,2888.0,2737.0,2279.0,2529.0,2769.0,2324.0,2279.0,2794.0,2555.0,2554.0,2556.0,2922.0,2899.0,2311.0,2971.0,2598.0,2895.0,3640.0,3182.0,2849.0,2712.0,3043.0,2794.0,2808.0,2928.0,2594.0,3630.0,2894.0,2144.0,2427.0,2963.0,2531.0,2589.0,2194.0,2688.0,2634.0,3242.0,2624.0,2255.0,2753.0,2506.0,2584.0,2979.0,2496.0,2451.0,3444.0,2541.0,2636.0,2414.0,2389.0,2719.0,2400.0,2604.0,2609.0,2376.0,2290.0,2871.0,2492.0,3198.0,2619.0,2589.0,3037.0,2904.0,2779.0,2700.0,2689.0,2572.0,2376.0,2588.0,2774.0,2559.0,2669.0,2610.0,2489.0,2891.0,2719.0,3101.0,2773.0,2855.0,2978.0,2427.0,2607.0,2673.0,2537.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":2706.77,"lower_bound":2649.4,"upper_bound":2766.48025,"unit":"ns"},"mean":{"estimate":2706.77,"lower_bound":2649.4,"upper_bound":2766.48025,"unit":"ns"},"median":{"estimate":2637.5,"lower_bound":2593.5,"upper_bound":2719.5,"unit":"ns"},"median_abs_dev":{"estimate":262.42019534111023,"lower_bound":183.84239673614502,"upper_bound":333.5849940776825,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.014345191475328756,"lower_bound":-0.022458367281620175,"upper_bound":0.05373253377932208,"unit":"%"},"median":{"estimate":0.028866783694168063,"lower_bound":-0.06719031310142169,"upper_bound":0.10024549918166947,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_script/100","report_directory":"/root/fuel-core/target/criterion/reports/retd_script/100","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[4307.0,3609.0,3585.0,3607.0,3609.0,3473.0,3435.0,3072.0,3304.0,3146.0,2660.0,2929.0,2809.0,3233.0,3054.0,2775.0,3176.0,2990.0,3089.0,3405.0,2978.0,2919.0,3049.0,2805.0,2871.0,3110.0,3282.0,3209.0,2911.0,2975.0,2815.0,2790.0,2991.0,3124.0,2857.0,3365.0,3214.0,2877.0,2998.0,2843.0,2928.0,3032.0,3003.0,3103.0,3101.0,2739.0,2839.0,2929.0,3392.0,3482.0,2673.0,2814.0,3651.0,2899.0,2898.0,2879.0,3355.0,2765.0,2997.0,2715.0,2746.0,2990.0,2829.0,2681.0,2742.0,3170.0,2797.0,3067.0,2984.0,2759.0,2617.0,2988.0,2820.0,2968.0,2913.0,2590.0,2924.0,3651.0,3464.0,3097.0,3144.0,2761.0,2649.0,3563.0,2737.0,2893.0,2846.0,3009.0,2687.0,3150.0,3239.0,2884.0,2814.0,4949.0,2777.0,2499.0,2755.0,2641.0,2896.0,2546.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":3036.8,"lower_bound":2970.46,"upper_bound":3110.44025,"unit":"ns"},"mean":{"estimate":3036.8,"lower_bound":2970.46,"upper_bound":3110.44025,"unit":"ns"},"median":{"estimate":2971.5,"lower_bound":2897.5,"upper_bound":3003.5,"unit":"ns"},"median_abs_dev":{"estimate":257.23109543323517,"lower_bound":186.8075966835022,"upper_bound":323.2067942619324,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.05732183544107328,"lower_bound":-0.08855433151090462,"upper_bound":-0.022463309315646048,"unit":"%"},"median":{"estimate":-0.0753072973393496,"lower_bound":-0.11264156718702178,"upper_bound":-0.04985618408437198,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"retd_script/1000","report_directory":"/root/fuel-core/target/criterion/reports/retd_script/1000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[8006.0,6973.0,6519.0,7626.0,6960.0,6828.0,6631.0,7108.0,7138.0,7329.0,6748.0,6764.0,7070.0,6833.0,6513.0,6423.0,6736.0,6732.0,6859.0,6473.0,6708.0,6404.0,6685.0,6472.0,6975.0,6531.0,6582.0,6464.0,6420.0,6463.0,6729.0,6655.0,6879.0,7087.0,7928.0,7030.0,6569.0,6451.0,7072.0,8951.0,7045.0,7170.0,6993.0,6585.0,6624.0,6467.0,7144.0,6867.0,6548.0,6663.0,6537.0,6756.0,6821.0,6653.0,6750.0,6327.0,6945.0,6850.0,6729.0,6720.0,6578.0,7097.0,6763.0,6443.0,6543.0,6872.0,6781.0,6558.0,7589.0,6606.0,6533.0,6705.0,6898.0,7404.0,7442.0,6823.0,7237.0,7134.0,7124.0,6802.0,6933.0,6830.0,7078.0,6925.0,6921.0,6655.0,6983.0,6795.0,6688.0,6754.0,6728.0,6763.0,7005.0,6718.0,6789.0,6788.0,6905.0,6613.0,6645.0,6922.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":6848.88,"lower_bound":6780.42,"upper_bound":6925.57,"unit":"ns"},"mean":{"estimate":6848.88,"lower_bound":6780.42,"upper_bound":6925.57,"unit":"ns"},"median":{"estimate":6772.5,"lower_bound":6729.0,"upper_bound":6840.0,"unit":"ns"},"median_abs_dev":{"estimate":277.9874950647354,"lower_bound":200.8922964334488,"upper_bound":338.77409398555756,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.020583970415368857,"lower_bound":-0.04264284732805454,"upper_bound":-0.0014968969691854157,"unit":"%"},"median":{"estimate":-0.01762402088772841,"lower_bound":-0.03451747447145115,"upper_bound":0.00021981242672919343,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_script/10000","report_directory":"/root/fuel-core/target/criterion/reports/retd_script/10000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[48755.0,48103.0,44778.0,44781.0,45187.0,45287.0,45576.0,75592.0,45317.0,46385.0,46584.0,45412.0,45482.0,44755.0,45568.0,45642.0,45078.0,45151.0,45409.0,45556.0,44842.0,45452.0,45530.0,45816.0,45705.0,45027.0,45382.0,45001.0,45372.0,45561.0,46507.0,44867.0,45548.0,45153.0,45018.0,45392.0,44687.0,45007.0,45495.0,44877.0,45217.0,45072.0,44938.0,46926.0,45258.0,45401.0,46004.0,44948.0,45464.0,45667.0,44387.0,45579.0,45107.0,44747.0,44854.0,47847.0,44876.0,47055.0,45307.0,45946.0,45119.0,44766.0,45781.0,45427.0,44598.0,45628.0,45866.0,45074.0,45165.0,44763.0,44955.0,45070.0,45455.0,45069.0,45524.0,45158.0,45387.0,45768.0,44565.0,45238.0,44589.0,46654.0,44786.0,45187.0,45336.0,45509.0,44963.0,45117.0,45335.0,45858.0,45572.0,45947.0,45473.0,46387.0,44863.0,44919.0,45432.0,44702.0,44894.0,44780.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":45719.16,"lower_bound":45313.80925,"upper_bound":46413.81175,"unit":"ns"},"mean":{"estimate":45719.16,"lower_bound":45313.80925,"upper_bound":46413.81175,"unit":"ns"},"median":{"estimate":45326.0,"lower_bound":45158.0,"upper_bound":45427.0,"unit":"ns"},"median_abs_dev":{"estimate":462.5711917877197,"lower_bound":361.7543935775757,"upper_bound":607.8659892082214,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0033864121927406066,"lower_bound":-0.017696627480749814,"upper_bound":0.014245668260445342,"unit":"%"},"median":{"estimate":-0.011934995149705196,"lower_bound":-0.02258413591602637,"upper_bound":0.002257386300763553,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_script/19753","report_directory":"/root/fuel-core/target/criterion/reports/retd_script/19753","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[189958.0,87355.0,86151.0,86326.0,85658.0,86389.0,85670.0,86263.0,85660.0,88305.0,87240.0,85493.0,85871.0,85422.0,85730.0,85754.0,85469.0,86415.0,85672.0,85497.0,85955.0,85834.0,85884.0,85489.0,86663.0,86006.0,85518.0,85921.0,86196.0,85972.0,86041.0,85777.0,85065.0,86824.0,85757.0,85647.0,85792.0,86350.0,85892.0,85890.0,86279.0,85492.0,86147.0,88356.0,85792.0,85925.0,86139.0,85989.0,85545.0,87264.0,86540.0,85669.0,86215.0,86316.0,85420.0,88057.0,85568.0,85915.0,86379.0,85652.0,85871.0,85465.0,86052.0,87854.0,85864.0,86438.0,85687.0,86002.0,85595.0,85985.0,85809.0,86278.0,86162.0,85457.0,85237.0,85876.0,85325.0,85880.0,85365.0,85456.0,85812.0,85263.0,86349.0,85909.0,85647.0,87190.0,86104.0,85561.0,85343.0,85733.0,85448.0,85886.0,85213.0,85446.0,86166.0,85568.0,85935.0,86497.0,86048.0,85896.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":87041.02,"lower_bound":85910.1395,"upper_bound":89200.49225000001,"unit":"ns"},"mean":{"estimate":87041.02,"lower_bound":85910.1395,"upper_bound":89200.49225000001,"unit":"ns"},"median":{"estimate":85885.0,"lower_bound":85792.0,"upper_bound":85955.0,"unit":"ns"},"median_abs_dev":{"estimate":445.52129209041595,"lower_bound":328.39589416980743,"upper_bound":571.542289853096,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.01852240389533444,"lower_bound":0.004170715103937095,"upper_bound":0.04504653387611457,"unit":"%"},"median":{"estimate":0.0071533274699502325,"lower_bound":0.005600074980083525,"upper_bound":0.00886005343040841,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_script/29629","report_directory":"/root/fuel-core/target/criterion/reports/retd_script/29629","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[161523.0,128464.0,127453.0,129460.0,127484.0,127073.0,127287.0,127031.0,126826.0,128868.0,127010.0,127292.0,129523.0,126725.0,126474.0,127318.0,127085.0,127420.0,128579.0,127844.0,127033.0,127643.0,127068.0,127722.0,126634.0,127315.0,127080.0,127041.0,127478.0,127610.0,126973.0,126753.0,126680.0,127283.0,126979.0,126976.0,126772.0,130364.0,127775.0,126597.0,129210.0,128017.0,126564.0,127493.0,126938.0,140573.0,127408.0,126829.0,130067.0,127828.0,126965.0,129291.0,127653.0,127719.0,127078.0,126769.0,127273.0,129789.0,126904.0,126888.0,126948.0,127401.0,126904.0,126956.0,126267.0,126696.0,126693.0,126633.0,126850.0,129640.0,127393.0,127133.0,128188.0,127560.0,127140.0,127606.0,127663.0,127074.0,127016.0,127635.0,128936.0,127234.0,127048.0,140212.0,127198.0,131648.0,126104.0,126278.0,129709.0,127366.0,127801.0,126150.0,127547.0,126558.0,128775.0,126797.0,127073.0,126851.0,126848.0,127502.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":128088.02,"lower_bound":127465.96975,"upper_bound":128961.03575,"unit":"ns"},"mean":{"estimate":128088.02,"lower_bound":127465.96975,"upper_bound":128961.03575,"unit":"ns"},"median":{"estimate":127253.5,"lower_bound":127070.5,"upper_bound":127410.5,"unit":"ns"},"median_abs_dev":{"estimate":594.5225894451141,"lower_bound":438.108292222023,"upper_bound":744.2651867866516,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.007620637277001796,"lower_bound":-0.006561812304044357,"upper_bound":0.019249045347892155,"unit":"%"},"median":{"estimate":0.012511835520086612,"lower_bound":0.010484672577631082,"upper_bound":0.013806054770648446,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_script/44444","report_directory":"/root/fuel-core/target/criterion/reports/retd_script/44444","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[241803.0,188263.0,188204.0,192708.0,188320.0,188987.0,190798.0,187428.0,188309.0,187550.0,188322.0,187916.0,188233.0,188664.0,189265.0,187539.0,188336.0,188079.0,188418.0,191153.0,186828.0,187671.0,188640.0,187682.0,188138.0,188990.0,189449.0,189500.0,188473.0,188106.0,188702.0,188694.0,188174.0,188387.0,190577.0,190996.0,188297.0,188108.0,191320.0,188969.0,187753.0,190442.0,189173.0,189259.0,188218.0,188153.0,186621.0,189616.0,187857.0,187953.0,187610.0,186998.0,187823.0,187660.0,187245.0,188084.0,187728.0,188080.0,187880.0,187752.0,187116.0,188102.0,187344.0,188268.0,201446.0,187930.0,187518.0,188240.0,188001.0,187598.0,187934.0,187206.0,188018.0,188220.0,187727.0,188371.0,186958.0,188012.0,189508.0,188819.0,187499.0,188464.0,190856.0,188714.0,187291.0,190038.0,188824.0,187397.0,189599.0,188343.0,187478.0,187637.0,188262.0,187412.0,188387.0,187698.0,186953.0,189228.0,188091.0,187190.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":189035.98,"lower_bound":188270.90975,"upper_bound":190303.2925,"unit":"ns"},"mean":{"estimate":189035.98,"lower_bound":188270.90975,"upper_bound":190303.2925,"unit":"ns"},"median":{"estimate":188189.0,"lower_bound":188049.0,"upper_bound":188309.0,"unit":"ns"},"median_abs_dev":{"estimate":764.2802864313126,"lower_bound":545.5967903137207,"upper_bound":1008.9092820882797,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.00534673526329188,"lower_bound":-0.004298179017472566,"upper_bound":0.015198605178834642,"unit":"%"},"median":{"estimate":0.007964563850413997,"lower_bound":0.006942883143300715,"upper_bound":0.00882468769339173,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_script/66666","report_directory":"/root/fuel-core/target/criterion/reports/retd_script/66666","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[305340.0,280187.0,279881.0,279897.0,280354.0,280112.0,280018.0,282583.0,281390.0,281920.0,279589.0,279592.0,290911.0,279757.0,279584.0,280368.0,280026.0,279643.0,279793.0,279680.0,279801.0,280087.0,280196.0,283683.0,280897.0,282533.0,280788.0,282110.0,279318.0,280214.0,279958.0,280127.0,284179.0,280297.0,279578.0,280084.0,282415.0,279862.0,279079.0,282223.0,281868.0,279953.0,280104.0,279901.0,280126.0,280393.0,279335.0,280743.0,279665.0,279874.0,279814.0,279083.0,280522.0,280110.0,280042.0,278643.0,279744.0,279841.0,279392.0,279162.0,279160.0,279335.0,279453.0,279695.0,279251.0,279429.0,279986.0,279498.0,279286.0,280417.0,289856.0,278988.0,278333.0,279707.0,279668.0,279378.0,279601.0,279563.0,279398.0,280394.0,280510.0,279675.0,279297.0,279492.0,279403.0,279846.0,280142.0,281265.0,280196.0,279492.0,279960.0,280503.0,279353.0,279495.0,279751.0,279875.0,279896.0,279752.0,279430.0,279432.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":280535.3,"lower_bound":280040.83975000004,"upper_bound":281211.54075,"unit":"ns"},"mean":{"estimate":280535.3,"lower_bound":280040.83975000004,"upper_bound":281211.54075,"unit":"ns"},"median":{"estimate":279874.5,"lower_bound":279748.0,"upper_bound":280018.0,"unit":"ns"},"median_abs_dev":{"estimate":564.8705899715424,"lower_bound":418.09319257736206,"upper_bound":719.0609872341156,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0071861678789255645,"lower_bound":0.00011863655331908796,"upper_bound":0.011983413931831938,"unit":"%"},"median":{"estimate":0.008607641466596538,"lower_bound":0.008049942796400256,"upper_bound":0.009279233008046672,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_script/100000","report_directory":"/root/fuel-core/target/criterion/reports/retd_script/100000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[489548.0,417546.0,416945.0,416972.0,456176.0,417481.0,417145.0,416812.0,416698.0,416422.0,417315.0,416980.0,420109.0,417951.0,418060.0,417310.0,417767.0,419933.0,417718.0,417150.0,417119.0,418264.0,417775.0,417423.0,417527.0,421158.0,420552.0,417785.0,416803.0,417745.0,417475.0,417710.0,417104.0,420194.0,417517.0,417546.0,416788.0,418124.0,416817.0,417618.0,416659.0,420625.0,417508.0,418062.0,418564.0,416995.0,417310.0,418138.0,417200.0,416819.0,417510.0,417341.0,417612.0,417536.0,416838.0,419292.0,417703.0,417906.0,417243.0,415871.0,417178.0,417649.0,416497.0,417037.0,416962.0,421609.0,417499.0,417913.0,418013.0,417491.0,417863.0,417282.0,417269.0,416610.0,417478.0,417295.0,421454.0,417651.0,417510.0,421204.0,417934.0,416797.0,417577.0,416142.0,419748.0,417449.0,417860.0,418159.0,417476.0,417758.0,417301.0,417239.0,417209.0,417290.0,417039.0,419930.0,417870.0,417735.0,418235.0,417032.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":418870.58,"lower_bound":417666.92975,"upper_bound":420726.43475,"unit":"ns"},"mean":{"estimate":418870.58,"lower_bound":417666.92975,"upper_bound":420726.43475,"unit":"ns"},"median":{"estimate":417510.0,"lower_bound":417395.0,"upper_bound":417649.0,"unit":"ns"},"median_abs_dev":{"estimate":583.4030896425247,"lower_bound":421.79969251155853,"upper_bound":762.0563864707947,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.009298025003096955,"lower_bound":0.002306409192011844,"upper_bound":0.015476967499586878,"unit":"%"},"median":{"estimate":0.011512799267367368,"lower_bound":0.011097010443105404,"upper_bound":0.011937007874015748,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"retd_script","benchmarks":["retd_script/1","retd_script/10","retd_script/100","retd_script/1000","retd_script/10000","retd_script/19753","retd_script/29629","retd_script/44444","retd_script/66666","retd_script/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/retd_script"} +{"reason":"benchmark-complete","id":"rvrt_script/rvrt_script","report_directory":"/root/fuel-core/target/criterion/reports/rvrt_script/rvrt_script","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[4291.0,2827.0,2620.0,2991.0,3032.0,2803.0,3831.0,3027.0,2714.0,2692.0,3240.0,2582.0,2523.0,2912.0,3044.0,2576.0,2669.0,2937.0,3021.0,2909.0,2621.0,2503.0,2499.0,2759.0,2834.0,3699.0,3210.0,3097.0,3179.0,3400.0,3384.0,2630.0,3223.0,2623.0,3040.0,2628.0,3599.0,3116.0,2570.0,2857.0,2520.0,2622.0,3077.0,3359.0,3002.0,3725.0,3167.0,2780.0,2444.0,2622.0,3460.0,3033.0,2875.0,2952.0,2641.0,2779.0,2698.0,2889.0,2647.0,2809.0,2881.0,2633.0,3081.0,3800.0,3037.0,2970.0,3149.0,2830.0,2696.0,2528.0,2649.0,3008.0,2597.0,2922.0,2886.0,3158.0,2517.0,2609.0,2702.0,2552.0,2545.0,2541.0,2541.0,2555.0,2630.0,2646.0,2609.0,2976.0,3690.0,3030.0,2656.0,2705.0,2654.0,2658.0,2648.0,2604.0,2516.0,2601.0,2856.0,2634.0],"unit":"ns","throughput":[],"typical":{"estimate":2883.13,"lower_bound":2817.39975,"upper_bound":2953.74,"unit":"ns"},"mean":{"estimate":2883.13,"lower_bound":2817.39975,"upper_bound":2953.74,"unit":"ns"},"median":{"estimate":2806.0,"lower_bound":2682.5,"upper_bound":2897.5,"unit":"ns"},"median_abs_dev":{"estimate":295.7786947488785,"lower_bound":200.1509964466095,"upper_bound":374.3564933538437,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.09746562723632324,"lower_bound":0.06604905757528917,"upper_bound":0.1308958060319884,"unit":"%"},"median":{"estimate":0.07860849509898138,"lower_bound":0.024677296886864042,"upper_bound":0.12417153996101371,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"rvrt_script","benchmarks":["rvrt_script/rvrt_script"],"report_directory":"/root/fuel-core/target/criterion/reports/rvrt_script"} +{"reason":"benchmark-complete","id":"rvrt_contract/rvrt_contract","report_directory":"/root/fuel-core/target/criterion/reports/rvrt_contract/rvrt_contract","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[3160.0,1945.0,2060.0,2613.0,1881.0,2513.0,2354.0,1994.0,1654.0,1706.0,2285.0,2320.0,2206.0,1885.0,2167.0,2655.0,2218.0,2060.0,2039.0,1840.0,2187.0,1634.0,2675.0,1960.0,1430.0,1709.0,2313.0,1947.0,2098.0,1739.0,2277.0,2072.0,2537.0,1835.0,2647.0,2188.0,1342.0,1878.0,1451.0,2190.0,2131.0,1943.0,1913.0,2357.0,2265.0,2125.0,1453.0,2735.0,2852.0,2437.0,2431.0,2554.0,2547.0,2344.0,1873.0,2364.0,2244.0,2472.0,2184.0,2598.0,2234.0,1503.0,3309.0,2614.0,1394.0,2961.0,2127.0,1894.0,2629.0,2279.0,1859.0,2289.0,2148.0,2645.0,1469.0,2807.0,1943.0,2321.0,1802.0,2115.0,1564.0,2014.0,1649.0,2530.0,2497.0,1456.0,2442.0,2225.0,1556.0,1475.0,2346.0,1559.0,2158.0,2130.0,2189.0,1874.0,1790.0,2059.0,2418.0,1424.0],"unit":"ns","throughput":[],"typical":{"estimate":2131.83,"lower_bound":2052.08,"upper_bound":2211.6905,"unit":"ns"},"mean":{"estimate":2131.83,"lower_bound":2052.08,"upper_bound":2211.6905,"unit":"ns"},"median":{"estimate":2153.0,"lower_bound":2059.5,"upper_bound":2226.0,"unit":"ns"},"median_abs_dev":{"estimate":409.9388927221298,"lower_bound":309.1220945119858,"upper_bound":503.3426910638809,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.19640041080437975,"lower_bound":0.13876177765875036,"upper_bound":0.2533020988066052,"unit":"%"},"median":{"estimate":0.24414908985842243,"lower_bound":0.16252759381898452,"upper_bound":0.30085621493947445,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"rvrt_contract","benchmarks":["rvrt_contract/rvrt_contract"],"report_directory":"/root/fuel-core/target/criterion/reports/rvrt_contract"} +{"reason":"benchmark-complete","id":"log/log","report_directory":"/root/fuel-core/target/criterion/reports/log/log","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[3559.0,2297.0,2126.0,2359.0,2482.0,2360.0,2454.0,2144.0,2231.0,2147.0,2272.0,2205.0,2158.0,2192.0,2214.0,2555.0,2420.0,2463.0,2299.0,3404.0,2590.0,2279.0,2313.0,2495.0,2143.0,2135.0,2324.0,2133.0,2174.0,2346.0,2514.0,2345.0,2159.0,2067.0,2105.0,2120.0,2589.0,2356.0,2199.0,2199.0,2215.0,2079.0,2125.0,2164.0,2099.0,2370.0,2104.0,2222.0,2102.0,2946.0,2159.0,2213.0,2149.0,2140.0,2147.0,2207.0,2156.0,2364.0,2105.0,2282.0,2226.0,2191.0,2099.0,2169.0,2101.0,2419.0,2295.0,2235.0,2104.0,2093.0,2164.0,2161.0,2478.0,2129.0,2161.0,2297.0,2337.0,2099.0,2225.0,2318.0,2111.0,2373.0,2356.0,2092.0,2530.0,2172.0,3147.0,3054.0,2290.0,2240.0,2479.0,2427.0,2316.0,2235.0,2165.0,2209.0,2658.0,2702.0,2107.0,2252.0],"unit":"ns","throughput":[],"typical":{"estimate":2304.9,"lower_bound":2257.76,"upper_bound":2358.83025,"unit":"ns"},"mean":{"estimate":2304.9,"lower_bound":2257.76,"upper_bound":2358.83025,"unit":"ns"},"median":{"estimate":2223.5,"lower_bound":2192.0,"upper_bound":2284.5,"unit":"ns"},"median_abs_dev":{"estimate":142.32959747314453,"lower_bound":108.22979807853699,"upper_bound":192.73799657821655,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.02594768203524489,"lower_bound":-0.05274439313062508,"upper_bound":0.004736340345389934,"unit":"%"},"median":{"estimate":-0.04693527646806683,"lower_bound":-0.06683640992998086,"upper_bound":-0.014912280701754432,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"log","benchmarks":["log/log"],"report_directory":"/root/fuel-core/target/criterion/reports/log"} +{"reason":"benchmark-complete","id":"logd/1","report_directory":"/root/fuel-core/target/criterion/reports/logd/1","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[4723.0,3882.0,3798.0,3339.0,3739.0,3791.0,3196.0,3459.0,3246.0,3555.0,4254.0,3586.0,3877.0,3769.0,3733.0,3627.0,3630.0,3985.0,3777.0,4845.0,4134.0,3345.0,3447.0,4197.0,3995.0,3691.0,3788.0,3775.0,3873.0,3661.0,3544.0,3984.0,3639.0,3749.0,3888.0,4569.0,3683.0,3729.0,3989.0,3779.0,4089.0,3226.0,3410.0,4047.0,3429.0,3522.0,3740.0,3418.0,3660.0,3565.0,3326.0,4158.0,4829.0,4586.0,3948.0,3694.0,3882.0,3574.0,3690.0,3446.0,3667.0,3769.0,3639.0,3695.0,5335.0,3935.0,3381.0,3361.0,3802.0,3587.0,3876.0,3759.0,3245.0,3328.0,4009.0,3442.0,3893.0,3824.0,4773.0,4113.0,4075.0,4318.0,3892.0,3779.0,4949.0,4169.0,3837.0,4063.0,3949.0,4602.0,4064.0,3721.0,3877.0,3869.0,4230.0,4116.0,3634.0,3978.0,3549.0,3997.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":3846.1,"lower_bound":3771.18975,"upper_bound":3926.12025,"unit":"ns"},"mean":{"estimate":3846.1,"lower_bound":3771.18975,"upper_bound":3926.12025,"unit":"ns"},"median":{"estimate":3779.0,"lower_bound":3733.0,"upper_bound":3876.0,"unit":"ns"},"median_abs_dev":{"estimate":304.67429459095,"lower_bound":215.71829617023468,"upper_bound":381.76949322223663,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.030070561414658026,"lower_bound":-0.06062792703484299,"upper_bound":0.002910843780800028,"unit":"%"},"median":{"estimate":-0.04425897824987357,"lower_bound":-0.07499379190464361,"upper_bound":-0.004367934224049352,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"logd/10","report_directory":"/root/fuel-core/target/criterion/reports/logd/10","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[4675.0,4157.0,4041.0,4039.0,3954.0,3960.0,4164.0,4383.0,3724.0,3930.0,3999.0,4429.0,4004.0,4286.0,4199.0,4059.0,5384.0,4076.0,3900.0,4558.0,4208.0,4230.0,3918.0,4187.0,4118.0,3534.0,3982.0,4165.0,3661.0,4409.0,4280.0,3999.0,3646.0,3793.0,4187.0,4468.0,4168.0,4355.0,4261.0,3789.0,4734.0,3634.0,4323.0,3909.0,4344.0,4109.0,4479.0,3966.0,4564.0,4255.0,4409.0,3984.0,3509.0,4773.0,4126.0,3909.0,4054.0,3990.0,3893.0,4354.0,3931.0,4738.0,4011.0,4129.0,3854.0,3878.0,3719.0,3799.0,3836.0,3939.0,4421.0,4403.0,4123.0,4524.0,4036.0,3887.0,4015.0,4043.0,3554.0,4279.0,4421.0,3822.0,4456.0,3880.0,3683.0,4135.0,3999.0,3789.0,3804.0,4429.0,3927.0,4341.0,3869.0,4157.0,3704.0,3780.0,3985.0,3589.0,3750.0,3898.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":4091.34,"lower_bound":4031.73,"upper_bound":4153.2,"unit":"ns"},"mean":{"estimate":4091.34,"lower_bound":4031.73,"upper_bound":4153.2,"unit":"ns"},"median":{"estimate":4040.0,"lower_bound":3985.0,"upper_bound":4130.5,"unit":"ns"},"median_abs_dev":{"estimate":278.7287950515747,"lower_bound":212.0117962360382,"upper_bound":366.94349348545074,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.13487244494620132,"lower_bound":0.11082545224801091,"upper_bound":0.1578799466035697,"unit":"%"},"median":{"estimate":0.13515032312447306,"lower_bound":0.115793895267432,"upper_bound":0.16525183927560838,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"logd/100","report_directory":"/root/fuel-core/target/criterion/reports/logd/100","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[5668.0,4951.0,5902.0,5005.0,4734.0,4764.0,5482.0,4630.0,4601.0,4984.0,4488.0,4590.0,4889.0,4478.0,4479.0,5034.0,5701.0,5030.0,5062.0,4642.0,4676.0,4570.0,4765.0,5642.0,4532.0,4668.0,5041.0,5068.0,4617.0,4925.0,4435.0,4618.0,5310.0,4920.0,4366.0,4668.0,4703.0,5455.0,4887.0,4423.0,5299.0,4950.0,4700.0,4466.0,4601.0,4405.0,4779.0,4787.0,4899.0,4522.0,4654.0,4559.0,4409.0,5366.0,5065.0,4438.0,4698.0,5329.0,5127.0,4647.0,4619.0,4953.0,4629.0,5037.0,4950.0,4637.0,5185.0,4449.0,4730.0,5194.0,4438.0,5276.0,5217.0,4778.0,4589.0,5080.0,4569.0,4880.0,4882.0,4554.0,4322.0,4503.0,4671.0,4776.0,4479.0,5357.0,4605.0,4884.0,5157.0,4478.0,4322.0,4799.0,4840.0,4619.0,4847.0,4649.0,4874.0,5031.0,5290.0,4538.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":4827.9,"lower_bound":4764.07975,"upper_bound":4894.95,"unit":"ns"},"mean":{"estimate":4827.9,"lower_bound":4764.07975,"upper_bound":4894.95,"unit":"ns"},"median":{"estimate":4764.5,"lower_bound":4661.0,"upper_bound":4880.0,"unit":"ns"},"median_abs_dev":{"estimate":308.3807945251465,"lower_bound":240.9224957227707,"upper_bound":393.63029301166534,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.2027952863798299,"lower_bound":0.1751896281057825,"upper_bound":0.22819392291650736,"unit":"%"},"median":{"estimate":0.20543959519291577,"lower_bound":0.17250945775535942,"upper_bound":0.23626234489744236,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"logd/1000","report_directory":"/root/fuel-core/target/criterion/reports/logd/1000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[9118.0,7979.0,7891.0,7844.0,8011.0,7813.0,7918.0,7401.0,7614.0,7642.0,8060.0,7458.0,7969.0,8386.0,7501.0,8159.0,7639.0,7376.0,7874.0,7493.0,7447.0,8461.0,7378.0,8577.0,10084.0,7906.0,7868.0,7778.0,7880.0,7768.0,7319.0,7574.0,7894.0,7569.0,7689.0,8396.0,7540.0,7811.0,7693.0,7758.0,7688.0,7542.0,7380.0,8247.0,7497.0,7749.0,7826.0,7733.0,7764.0,7583.0,7800.0,7651.0,7733.0,7524.0,8145.0,7328.0,7450.0,7853.0,7607.0,8223.0,8468.0,7959.0,7937.0,8226.0,7916.0,8100.0,7770.0,7596.0,7843.0,7733.0,8053.0,8083.0,7688.0,8866.0,7986.0,8112.0,7654.0,7991.0,8309.0,8480.0,7924.0,9078.0,7963.0,7384.0,8626.0,8518.0,7571.0,7929.0,7831.0,7968.0,8073.0,8015.0,7538.0,9330.0,7493.0,7938.0,7973.0,7946.0,7369.0,7378.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":7904.74,"lower_bound":7821.27,"upper_bound":7997.0202500000005,"unit":"ns"},"mean":{"estimate":7904.74,"lower_bound":7821.27,"upper_bound":7997.0202500000005,"unit":"ns"},"median":{"estimate":7843.5,"lower_bound":7763.0,"upper_bound":7920.0,"unit":"ns"},"median_abs_dev":{"estimate":330.6197941303253,"lower_bound":235.73339581489563,"upper_bound":419.57579255104065,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.20976702105857714,"lower_bound":-0.45034864283231274,"upper_bound":0.018234590175475008,"unit":"%"},"median":{"estimate":0.0035184237461616252,"lower_bound":-0.011836941384985478,"upper_bound":0.021284829721362142,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"logd/10000","report_directory":"/root/fuel-core/target/criterion/reports/logd/10000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[66321.0,48266.0,46859.0,46228.0,48660.0,47081.0,46842.0,48928.0,50766.0,47712.0,48565.0,48726.0,47692.0,46717.0,49950.0,48683.0,46644.0,48105.0,49541.0,46417.0,47895.0,46702.0,49486.0,48739.0,49563.0,47066.0,50793.0,46656.0,46932.0,49731.0,48868.0,46762.0,47974.0,47937.0,47357.0,46223.0,46305.0,47354.0,48306.0,47438.0,47417.0,46902.0,46047.0,48384.0,45662.0,46472.0,47230.0,46677.0,47486.0,48727.0,48537.0,48664.0,46147.0,46062.0,51368.0,46009.0,47567.0,48195.0,46770.0,46993.0,47061.0,47342.0,46443.0,46270.0,46167.0,46937.0,46436.0,46779.0,47547.0,46209.0,46657.0,48011.0,46349.0,47330.0,48806.0,46195.0,47607.0,46458.0,46533.0,47083.0,46146.0,49916.0,47519.0,46217.0,46097.0,47038.0,46048.0,48225.0,46611.0,46099.0,46812.0,45133.0,46902.0,46277.0,46318.0,45898.0,46044.0,45383.0,46217.0,46560.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":47537.86,"lower_bound":47164.85925,"upper_bound":48038.42175,"unit":"ns"},"mean":{"estimate":47537.86,"lower_bound":47164.85925,"upper_bound":48038.42175,"unit":"ns"},"median":{"estimate":47015.5,"lower_bound":46770.0,"upper_bound":47379.5,"unit":"ns"},"median_abs_dev":{"estimate":1171.2539792060852,"lower_bound":842.8580850362778,"upper_bound":1515.9584730863571,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.014012517667094437,"lower_bound":-0.014654202153777334,"upper_bound":0.03298984601154638,"unit":"%"},"median":{"estimate":0.01827967469109737,"lower_bound":0.012050538704512892,"upper_bound":0.02652180513087421,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"logd/19753","report_directory":"/root/fuel-core/target/criterion/reports/logd/19753","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[123129.0,89360.0,87906.0,90054.0,87900.0,86815.0,88152.0,88246.0,88485.0,88070.0,87308.0,89337.0,87763.0,87895.0,87495.0,88522.0,87603.0,87034.0,87330.0,87256.0,88046.0,87070.0,87725.0,87937.0,86810.0,87227.0,87193.0,87499.0,87055.0,89913.0,87029.0,88387.0,87326.0,87405.0,89840.0,88013.0,87463.0,86646.0,86965.0,87211.0,86915.0,86814.0,86491.0,86507.0,88409.0,87125.0,87186.0,88429.0,87476.0,87492.0,87030.0,87574.0,244364.0,86565.0,86840.0,86953.0,86745.0,86645.0,87378.0,86467.0,86841.0,86972.0,87017.0,86626.0,87037.0,86497.0,87053.0,86530.0,86385.0,86247.0,86492.0,86188.0,86772.0,86355.0,86975.0,86609.0,86702.0,86545.0,88156.0,86629.0,86635.0,86623.0,87055.0,86285.0,90212.0,86980.0,86639.0,86662.0,86840.0,86977.0,86850.0,89130.0,87009.0,87017.0,86570.0,86621.0,86584.0,86560.0,108690.0,86940.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":89453.32,"lower_bound":87316.51975,"upper_bound":93150.91125,"unit":"ns"},"mean":{"estimate":89453.32,"lower_bound":87316.51975,"upper_bound":93150.91125,"unit":"ns"},"median":{"estimate":87035.5,"lower_bound":86970.0,"upper_bound":87233.5,"unit":"ns"},"median_abs_dev":{"estimate":633.0701887607574,"lower_bound":513.720890879631,"upper_bound":879.1817843914032,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.03573782320883656,"lower_bound":0.008462166552389001,"upper_bound":0.08406091714676057,"unit":"%"},"median":{"estimate":0.014175182651860352,"lower_bound":0.012331381882936254,"upper_bound":0.016924293648938448,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"logd/29629","report_directory":"/root/fuel-core/target/criterion/reports/logd/29629","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[166156.0,127868.0,127776.0,128306.0,126676.0,127663.0,126957.0,128463.0,128648.0,129128.0,127397.0,127894.0,128214.0,127864.0,128068.0,127739.0,132879.0,127643.0,127987.0,128134.0,126976.0,126733.0,127878.0,127402.0,127554.0,127614.0,127995.0,126483.0,128344.0,126763.0,127405.0,128452.0,127204.0,128747.0,126958.0,127126.0,128772.0,126911.0,126915.0,128728.0,127843.0,127081.0,127918.0,129581.0,127973.0,126978.0,126970.0,129020.0,126893.0,126757.0,128813.0,127089.0,127339.0,128475.0,128326.0,126853.0,130310.0,127640.0,128098.0,128871.0,126699.0,127811.0,127494.0,127411.0,129105.0,127017.0,127769.0,128122.0,127111.0,127472.0,131000.0,128068.0,127846.0,127116.0,127035.0,127300.0,127109.0,126868.0,128544.0,127664.0,127225.0,128502.0,128419.0,128448.0,128038.0,128404.0,127594.0,128260.0,126833.0,128899.0,127592.0,128927.0,127233.0,127044.0,127213.0,128929.0,127408.0,127654.0,129547.0,127193.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":128251.71,"lower_bound":127728.49,"upper_bound":129137.51375,"unit":"ns"},"mean":{"estimate":128251.71,"lower_bound":127728.49,"upper_bound":129137.51375,"unit":"ns"},"median":{"estimate":127754.0,"lower_bound":127543.0,"upper_bound":127933.5,"unit":"ns"},"median_abs_dev":{"estimate":949.6052831411362,"lower_bound":687.9263877868652,"upper_bound":1077.850180864334,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.006434582153551416,"lower_bound":-0.004409647780331252,"upper_bound":0.015075719808250891,"unit":"%"},"median":{"estimate":0.008119944762280618,"lower_bound":0.006290101366796419,"upper_bound":0.010228983797855327,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"logd/44444","report_directory":"/root/fuel-core/target/criterion/reports/logd/44444","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[288156.0,189126.0,188761.0,191229.0,189310.0,188278.0,188643.0,190054.0,188263.0,187583.0,235990.0,190524.0,189114.0,188788.0,188377.0,189239.0,188762.0,188830.0,188343.0,188130.0,189377.0,188772.0,188205.0,188382.0,188585.0,188529.0,189024.0,188922.0,187530.0,189114.0,188445.0,188672.0,188812.0,187884.0,188306.0,188798.0,188497.0,188358.0,190823.0,187829.0,188718.0,188882.0,188968.0,189328.0,189018.0,188169.0,189232.0,193914.0,189533.0,189103.0,193736.0,190574.0,189925.0,188871.0,189648.0,189246.0,189229.0,191984.0,189117.0,188687.0,189965.0,188292.0,194349.0,190113.0,189144.0,188335.0,190030.0,188365.0,189335.0,188785.0,188294.0,189141.0,188518.0,187814.0,189687.0,188919.0,188045.0,188834.0,188194.0,188229.0,188910.0,190741.0,189317.0,189369.0,189757.0,189411.0,189092.0,190292.0,189195.0,208642.0,188764.0,188773.0,188362.0,189305.0,191446.0,189732.0,189234.0,189009.0,189092.0,189143.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":190842.2,"lower_bound":189178.16975,"upper_bound":193356.39225,"unit":"ns"},"mean":{"estimate":190842.2,"lower_bound":189178.16975,"upper_bound":193356.39225,"unit":"ns"},"median":{"estimate":189013.5,"lower_bound":188812.0,"upper_bound":189141.0,"unit":"ns"},"median_abs_dev":{"estimate":726.4739871025085,"lower_bound":475.17329156398773,"upper_bound":1000.7549822330475,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0109948930089534,"lower_bound":0.0004477917143028597,"upper_bound":0.02699458808469532,"unit":"%"},"median":{"estimate":0.005150362945039788,"lower_bound":0.003572415111980032,"upper_bound":0.006560562105767387,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"logd/66666","report_directory":"/root/fuel-core/target/criterion/reports/logd/66666","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[364266.0,281430.0,280950.0,280808.0,281170.0,281652.0,280668.0,305630.0,280195.0,280437.0,280409.0,279947.0,280222.0,280162.0,282348.0,281649.0,280314.0,280211.0,280064.0,281286.0,281357.0,281803.0,280450.0,280464.0,281264.0,280714.0,280469.0,280050.0,280642.0,280212.0,280301.0,280791.0,280553.0,280031.0,280632.0,280452.0,280164.0,280453.0,280731.0,280474.0,281062.0,279493.0,280064.0,280413.0,281958.0,280989.0,280233.0,279906.0,279679.0,280283.0,280524.0,279651.0,280068.0,281555.0,280063.0,279728.0,279868.0,280291.0,283875.0,281153.0,280451.0,281427.0,280181.0,279556.0,283900.0,282521.0,281718.0,283025.0,281178.0,280950.0,281290.0,280474.0,280922.0,280551.0,305131.0,281053.0,280541.0,280839.0,281557.0,281297.0,280385.0,281117.0,280002.0,279663.0,280049.0,279696.0,281777.0,285712.0,281402.0,281238.0,281302.0,280549.0,280807.0,282142.0,281709.0,280781.0,280378.0,283681.0,280903.0,280688.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":282192.24,"lower_bound":280865.6385,"upper_bound":284279.21150000003,"unit":"ns"},"mean":{"estimate":282192.24,"lower_bound":280865.6385,"upper_bound":284279.21150000003,"unit":"ns"},"median":{"estimate":280655.0,"lower_bound":280469.0,"upper_bound":280903.0,"unit":"ns"},"median_abs_dev":{"estimate":750.9368866682053,"lower_bound":558.940190076828,"upper_bound":931.8140834569931,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.006906167537665597,"lower_bound":-0.0034384776577216884,"upper_bound":0.015926330407938543,"unit":"%"},"median":{"estimate":0.008559939340144318,"lower_bound":0.007594481965799593,"upper_bound":0.009415997549760377,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"logd/100000","report_directory":"/root/fuel-core/target/criterion/reports/logd/100000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[490180.0,421185.0,420701.0,419093.0,419438.0,420999.0,419402.0,441152.0,419919.0,418696.0,419759.0,420119.0,422598.0,419423.0,419315.0,418691.0,418679.0,418642.0,423118.0,420821.0,423019.0,423261.0,419477.0,418534.0,419107.0,418955.0,421174.0,418235.0,418940.0,417845.0,418580.0,418627.0,418135.0,418681.0,419328.0,418619.0,418573.0,418938.0,418186.0,418300.0,418698.0,420826.0,419359.0,418275.0,418245.0,663161.0,421109.0,417725.0,418065.0,418508.0,420315.0,421945.0,417644.0,420532.0,419106.0,417700.0,420548.0,418141.0,417744.0,417935.0,422097.0,418810.0,418253.0,418633.0,418886.0,418810.0,418255.0,418210.0,418110.0,418323.0,417805.0,417638.0,417982.0,418936.0,420587.0,446151.0,418683.0,445229.0,419093.0,418354.0,420084.0,418055.0,422149.0,418450.0,418042.0,417345.0,417876.0,417446.0,418755.0,419041.0,428258.0,420628.0,419318.0,417931.0,418496.0,420884.0,417427.0,417828.0,418121.0,417061.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":423140.65,"lower_bound":419585.83675,"upper_bound":429044.36425000004,"unit":"ns"},"mean":{"estimate":423140.65,"lower_bound":419585.83675,"upper_bound":429044.36425000004,"unit":"ns"},"median":{"estimate":418782.5,"lower_bound":418626.0,"upper_bound":419099.5,"unit":"ns"},"median_abs_dev":{"estimate":1013.3570820093155,"lower_bound":801.3452857732773,"upper_bound":1584.1580718755722,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.020735857418129777,"lower_bound":0.011783748882541523,"upper_bound":0.034418155681046655,"unit":"%"},"median":{"estimate":0.012385805699863806,"lower_bound":0.0117816605702743,"upper_bound":0.013355073319871529,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"logd","benchmarks":["logd/1","logd/10","logd/100","logd/1000","logd/10000","logd/19753","logd/29629","logd/44444","logd/66666","logd/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/logd"} +{"reason":"benchmark-complete","id":"lb/lb","report_directory":"/root/fuel-core/target/criterion/reports/lb/lb","iteration_count":[30203,60406,90609,120812,151015,181218,211421,241624,271827,302030,332233,362436,392639,422842,453045,483248,513451,543654,573857,604060,634263,664466,694669,724872,755075,785278,815481,845684,875887,906090,936293,966496,996699,1026902,1057105,1087308,1117511,1147714,1177917,1208120,1238323,1268526,1298729,1328932,1359135,1389338,1419541,1449744,1479947,1510150,1540353,1570556,1600759,1630962,1661165,1691368,1721571,1751774,1781977,1812180,1842383,1872586,1902789,1932992,1963195,1993398,2023601,2053804,2084007,2114210,2144413,2174616,2204819,2235022,2265225,2295428,2325631,2355834,2386037,2416240,2446443,2476646,2506849,2537052,2567255,2597458,2627661,2657864,2688067,2718270,2748473,2778676,2808879,2839082,2869285,2899488,2929691,2959894,2990097,3020300],"measured_values":[578665.0,1147715.0,1721601.0,2290898.0,2864670.0,3444711.0,4019658.0,4593708.0,5161440.0,5740114.0,6314689.0,6881754.0,7463053.0,8038745.0,8610422.0,9184583.0,9761222.0,10334937.0,10904109.0,11483167.0,12058779.0,12632804.0,13203133.0,13776780.0,14353408.0,14928526.0,15501282.0,16093176.0,16673966.0,17211647.0,17801202.0,18405574.0,18938057.0,19539269.0,20106052.0,20664090.0,21237620.0,21813785.0,22383106.0,22949600.0,23534196.0,24102976.0,24684361.0,25262400.0,25920036.0,26469197.0,26963261.0,27553527.0,28133242.0,28697278.0,29277940.0,29939425.0,30451795.0,31004554.0,31572039.0,32220802.0,32783615.0,33359436.0,33883769.0,34466876.0,35023961.0,35580593.0,36182969.0,36811257.0,37310271.0,37938071.0,38514119.0,39106567.0,39667366.0,40212793.0,40776334.0,41384713.0,41964182.0,42492820.0,43112972.0,43697286.0,44258827.0,44811969.0,45479206.0,46013200.0,46551679.0,47190851.0,47694890.0,48405246.0,48911439.0,49370982.0,49936224.0,50515189.0,51080764.0,51810289.0,52259085.0,52799636.0,53406100.0,53943927.0,54540519.0,55102830.0,55838915.0,56338696.0,56872150.0,57402326.0],"unit":"ns","throughput":[],"typical":{"estimate":19.023994261655922,"lower_bound":19.018635768951683,"upper_bound":19.029653123056793,"unit":"ns"},"mean":{"estimate":19.01890124051331,"lower_bound":19.01429429578864,"upper_bound":19.023986962693993,"unit":"ns"},"median":{"estimate":19.010754003490412,"lower_bound":19.008579973369287,"upper_bound":19.014010351231196,"unit":"ns"},"median_abs_dev":{"estimate":0.013487904906734129,"lower_bound":0.007781138732335799,"upper_bound":0.018585444839057955,"unit":"ns"},"slope":{"estimate":19.023994261655922,"lower_bound":19.018635768951683,"upper_bound":19.029653123056793,"unit":"ns"},"change":{"mean":{"estimate":0.009358601942730527,"lower_bound":0.008077597142283044,"upper_bound":0.010192914860588936,"unit":"%"},"median":{"estimate":0.009373291659099614,"lower_bound":0.009119566737388318,"upper_bound":0.009744916426339234,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"lb","benchmarks":["lb/lb"],"report_directory":"/root/fuel-core/target/criterion/reports/lb"} +{"reason":"benchmark-complete","id":"lw/lw","report_directory":"/root/fuel-core/target/criterion/reports/lw/lw","iteration_count":[31381,62762,94143,125524,156905,188286,219667,251048,282429,313810,345191,376572,407953,439334,470715,502096,533477,564858,596239,627620,659001,690382,721763,753144,784525,815906,847287,878668,910049,941430,972811,1004192,1035573,1066954,1098335,1129716,1161097,1192478,1223859,1255240,1286621,1318002,1349383,1380764,1412145,1443526,1474907,1506288,1537669,1569050,1600431,1631812,1663193,1694574,1725955,1757336,1788717,1820098,1851479,1882860,1914241,1945622,1977003,2008384,2039765,2071146,2102527,2133908,2165289,2196670,2228051,2259432,2290813,2322194,2353575,2384956,2416337,2447718,2479099,2510480,2541861,2573242,2604623,2636004,2667385,2698766,2730147,2761528,2792909,2824290,2855671,2887052,2918433,2949814,2981195,3012576,3043957,3075338,3106719,3138100],"measured_values":[643641.0,1217583.0,1826387.0,2379302.0,2974177.0,3583204.0,4233335.0,4829042.0,5435103.0,6055132.0,6617500.0,7296878.0,7867682.0,8480975.0,8957505.0,9617486.0,10268245.0,10783450.0,11573520.0,11930598.0,12653609.0,13254739.0,13719339.0,14316582.0,15034114.0,15547681.0,16190473.0,16791286.0,17394111.0,17948676.0,18584044.0,19111961.0,19772287.0,20478013.0,21054798.0,21566120.0,22289690.0,22980876.0,23349415.0,23859720.0,24630968.0,25199840.0,25919069.0,26538012.0,26839588.0,27619810.0,28323976.0,28720987.0,29591198.0,30107774.0,30730203.0,31303183.0,31920373.0,32358145.0,33168772.0,33494994.0,33996837.0,34838277.0,35387710.0,36123366.0,36862011.0,37322481.0,37758944.0,38455107.0,38904607.0,39600135.0,40531397.0,40862822.0,41203660.0,41772815.0,42703699.0,43088725.0,43785767.0,44300285.0,45352945.0,45565935.0,46414185.0,46787640.0,47275621.0,47855942.0,48720719.0,49342505.0,49735961.0,50414677.0,51080831.0,51363561.0,52379122.0,53145344.0,53505877.0,53987935.0,54562029.0,54898718.0,55637252.0,56390854.0,57018366.0,57870709.0,58376118.0,59035359.0,59306605.0,59905659.0],"unit":"ns","throughput":[],"typical":{"estimate":19.131983467023396,"lower_bound":19.11557849990563,"upper_bound":19.148652651412498,"unit":"ns"},"mean":{"estimate":19.158307239656473,"lower_bound":19.13058455856015,"upper_bound":19.194960287069353,"unit":"ns"},"median":{"estimate":19.137226354319097,"lower_bound":19.113378510387903,"upper_bound":19.1680667671303,"unit":"ns"},"median_abs_dev":{"estimate":0.09331732643816325,"lower_bound":0.07353000341945432,"upper_bound":0.11639966230135279,"unit":"ns"},"slope":{"estimate":19.131983467023396,"lower_bound":19.11557849990563,"upper_bound":19.148652651412498,"unit":"ns"},"change":{"mean":{"estimate":0.009363431127839883,"lower_bound":0.0064360941273824196,"upper_bound":0.011912397879810997,"unit":"%"},"median":{"estimate":0.009260162229068447,"lower_bound":0.007846463398239134,"upper_bound":0.010962165326595663,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"lw","benchmarks":["lw/lw"],"report_directory":"/root/fuel-core/target/criterion/reports/lw"} +{"reason":"benchmark-complete","id":"sb/sb","report_directory":"/root/fuel-core/target/criterion/reports/sb/sb","iteration_count":[22962,45924,68886,91848,114810,137772,160734,183696,206658,229620,252582,275544,298506,321468,344430,367392,390354,413316,436278,459240,482202,505164,528126,551088,574050,597012,619974,642936,665898,688860,711822,734784,757746,780708,803670,826632,849594,872556,895518,918480,941442,964404,987366,1010328,1033290,1056252,1079214,1102176,1125138,1148100,1171062,1194024,1216986,1239948,1262910,1285872,1308834,1331796,1354758,1377720,1400682,1423644,1446606,1469568,1492530,1515492,1538454,1561416,1584378,1607340,1630302,1653264,1676226,1699188,1722150,1745112,1768074,1791036,1813998,1836960,1859922,1882884,1905846,1928808,1951770,1974732,1997694,2020656,2043618,2066580,2089542,2112504,2135466,2158428,2181390,2204352,2227314,2250276,2273238,2296200],"measured_values":[609036.0,1219299.0,1726771.0,2340545.0,2881967.0,3498615.0,4292842.0,5071286.0,5374102.0,5871939.0,6421045.0,7011930.0,7689431.0,8107479.0,9008917.0,9781713.0,10789843.0,10471481.0,11098802.0,11751523.0,12237355.0,12883820.0,13464370.0,14368429.0,15748831.0,15542287.0,15862943.0,17456123.0,16891730.0,18052313.0,18767845.0,19747766.0,19653625.0,20155132.0,21652269.0,22088351.0,22470016.0,23327305.0,23295757.0,24194972.0,24036024.0,25084594.0,25442774.0,26894293.0,26618774.0,27796398.0,27551551.0,28617324.0,28746339.0,30579762.0,29762422.0,31484358.0,31962489.0,32517161.0,32530384.0,32800695.0,36667802.0,33988804.0,35120756.0,35690847.0,35805916.0,37665276.0,38449902.0,38133136.0,39219491.0,38653301.0,39861906.0,40970604.0,40834423.0,41834624.0,43898017.0,43065571.0,44631276.0,44928459.0,45460547.0,45277458.0,45795389.0,46279901.0,47025198.0,48342921.0,50288383.0,47761321.0,49826597.0,49759822.0,51729983.0,51674646.0,53301282.0,51962798.0,53754234.0,53297982.0,55033368.0,54856619.0,55872183.0,55995272.0,57481374.0,57391593.0,58156308.0,58524481.0,59387941.0,59922084.0],"unit":"ns","throughput":[],"typical":{"estimate":26.125549725391675,"lower_bound":26.035750018143474,"upper_bound":26.220426430460346,"unit":"ns"},"mean":{"estimate":26.089543130147934,"lower_bound":25.981367368916594,"upper_bound":26.201888952862966,"unit":"ns"},"median":{"estimate":26.020481410120816,"lower_bound":25.933312294795336,"upper_bound":26.156017187817554,"unit":"ns"},"median_abs_dev":{"estimate":0.5373460092805918,"lower_bound":0.40087924135116815,"upper_bound":0.7051453898851398,"unit":"ns"},"slope":{"estimate":26.125549725391675,"lower_bound":26.035750018143474,"upper_bound":26.220426430460346,"unit":"ns"},"change":{"mean":{"estimate":-0.004367132437901988,"lower_bound":-0.008981295867291107,"upper_bound":-0.00007838725797965928,"unit":"%"},"median":{"estimate":-0.0061187220416819565,"lower_bound":-0.009423578925485065,"upper_bound":-0.001003160362400557,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"sb","benchmarks":["sb/sb"],"report_directory":"/root/fuel-core/target/criterion/reports/sb"} +{"reason":"benchmark-complete","id":"sw/sw","report_directory":"/root/fuel-core/target/criterion/reports/sw/sw","iteration_count":[22063,44126,66189,88252,110315,132378,154441,176504,198567,220630,242693,264756,286819,308882,330945,353008,375071,397134,419197,441260,463323,485386,507449,529512,551575,573638,595701,617764,639827,661890,683953,706016,728079,750142,772205,794268,816331,838394,860457,882520,904583,926646,948709,970772,992835,1014898,1036961,1059024,1081087,1103150,1125213,1147276,1169339,1191402,1213465,1235528,1257591,1279654,1301717,1323780,1345843,1367906,1389969,1412032,1434095,1456158,1478221,1500284,1522347,1544410,1566473,1588536,1610599,1632662,1654725,1676788,1698851,1720914,1742977,1765040,1787103,1809166,1831229,1853292,1875355,1897418,1919481,1941544,1963607,1985670,2007733,2029796,2051859,2073922,2095985,2118048,2140111,2162174,2184237,2206300],"measured_values":[620892.0,1194752.0,1672115.0,2233117.0,2781602.0,3589122.0,4393786.0,4662006.0,5460136.0,5619919.0,6164990.0,7283728.0,7480064.0,8159947.0,8341720.0,9319726.0,10153781.0,10365740.0,11143066.0,11320566.0,12257034.0,13564514.0,12796082.0,14019904.0,14924224.0,15784533.0,16549293.0,17478646.0,18210435.0,17425608.0,17594100.0,18818949.0,19697746.0,19260123.0,20427620.0,22190052.0,22054209.0,22360247.0,22009128.0,24243341.0,24458963.0,24592465.0,24923588.0,25867150.0,27243067.0,27444089.0,27883151.0,29698389.0,29507740.0,29811642.0,30205867.0,30198321.0,30975963.0,32309906.0,33593342.0,33391633.0,33396970.0,34187031.0,33623542.0,36866701.0,35031591.0,37072895.0,36990197.0,39219053.0,39824173.0,38779641.0,40321117.0,40344316.0,40036935.0,42021113.0,42451246.0,42150212.0,43697810.0,42660789.0,44844676.0,44815496.0,45606094.0,46160658.0,47153357.0,48080584.0,49949472.0,46483181.0,50705586.0,48457794.0,49705257.0,51599135.0,52211577.0,52077838.0,52081527.0,54544635.0,53431844.0,54677598.0,55198802.0,54405133.0,55916557.0,55584676.0,56908130.0,58808870.0,59034904.0,59134379.0],"unit":"ns","throughput":[],"typical":{"estimate":26.859248043277816,"lower_bound":26.734575788960086,"upper_bound":26.984491913795065,"unit":"ns"},"mean":{"estimate":26.795059260481953,"lower_bound":26.64930415613963,"upper_bound":26.94025803421345,"unit":"ns"},"median":{"estimate":26.833957522845758,"lower_bound":26.62949040489493,"upper_bound":27.032571134592246,"unit":"ns"},"median_abs_dev":{"estimate":0.5833168499984943,"lower_bound":0.4744811678288216,"upper_bound":0.8277080750482521,"unit":"ns"},"slope":{"estimate":26.859248043277816,"lower_bound":26.734575788960086,"upper_bound":26.984491913795065,"unit":"ns"},"change":{"mean":{"estimate":-0.07739798575553603,"lower_bound":-0.08591546052190116,"upper_bound":-0.06907408949316633,"unit":"%"},"median":{"estimate":-0.0742827302805168,"lower_bound":-0.08254870389400157,"upper_bound":-0.0638206648191657,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"sw","benchmarks":["sw/sw"],"report_directory":"/root/fuel-core/target/criterion/reports/sw"} +{"reason":"benchmark-complete","id":"cfei/cfei","report_directory":"/root/fuel-core/target/criterion/reports/cfei/cfei","iteration_count":[30630,61260,91890,122520,153150,183780,214410,245040,275670,306300,336930,367560,398190,428820,459450,490080,520710,551340,581970,612600,643230,673860,704490,735120,765750,796380,827010,857640,888270,918900,949530,980160,1010790,1041420,1072050,1102680,1133310,1163940,1194570,1225200,1255830,1286460,1317090,1347720,1378350,1408980,1439610,1470240,1500870,1531500,1562130,1592760,1623390,1654020,1684650,1715280,1745910,1776540,1807170,1837800,1868430,1899060,1929690,1960320,1990950,2021580,2052210,2082840,2113470,2144100,2174730,2205360,2235990,2266620,2297250,2327880,2358510,2389140,2419770,2450400,2481030,2511660,2542290,2572920,2603550,2634180,2664810,2695440,2726070,2756700,2787330,2817960,2848590,2879220,2909850,2940480,2971110,3001740,3032370,3063000],"measured_values":[590748.0,1157847.0,1736724.0,2315666.0,2894584.0,3474745.0,4055189.0,4671971.0,5238428.0,5789415.0,6416418.0,6976062.0,7528564.0,8174813.0,8763153.0,9276421.0,9864994.0,10421903.0,11021121.0,11763126.0,12282030.0,12871316.0,13433378.0,14009517.0,14522806.0,15054516.0,15737087.0,16241749.0,16794134.0,17374227.0,18057072.0,18548313.0,19155113.0,19785503.0,20339243.0,20883435.0,21431434.0,22008403.0,22613848.0,23379312.0,23929908.0,24405306.0,24903179.0,25544401.0,26137807.0,26755941.0,27298743.0,27827606.0,28437240.0,29067486.0,29681089.0,30291442.0,30936687.0,31368671.0,31889182.0,32646118.0,33161739.0,33719032.0,34207642.0,34886257.0,35402450.0,35935830.0,36710630.0,37115655.0,37832179.0,38433244.0,38899257.0,39426248.0,40146819.0,40689326.0,41279070.0,41788246.0,42537874.0,43264561.0,43524141.0,44079269.0,44821282.0,45339775.0,45881807.0,46472591.0,47096118.0,47675501.0,48261068.0,48725596.0,49674061.0,50078320.0,50592759.0,51079306.0,51668539.0,52443788.0,53013637.0,53362821.0,54014613.0,54652641.0,55400801.0,55842139.0,56375582.0,56863639.0,57464529.0,58183459.0],"unit":"ns","throughput":[],"typical":{"estimate":18.98013667545362,"lower_bound":18.970621963666126,"upper_bound":18.99004383437314,"unit":"ns"},"mean":{"estimate":18.980217756756584,"lower_bound":18.96814119373449,"upper_bound":18.993328358793885,"unit":"ns"},"median":{"estimate":18.97159554125274,"lower_bound":18.95378936277565,"upper_bound":18.981862678227742,"unit":"ns"},"median_abs_dev":{"estimate":0.05511835017518502,"lower_bound":0.04114146547709061,"upper_bound":0.06918884391258161,"unit":"ns"},"slope":{"estimate":18.98013667545362,"lower_bound":18.970621963666126,"upper_bound":18.99004383437314,"unit":"ns"},"change":{"mean":{"estimate":0.015298168492894337,"lower_bound":0.013700634845191411,"upper_bound":0.016670214965721984,"unit":"%"},"median":{"estimate":0.015357849213682329,"lower_bound":0.0140494995623762,"upper_bound":0.016267223089519778,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"cfei","benchmarks":["cfei/cfei"],"report_directory":"/root/fuel-core/target/criterion/reports/cfei"} +{"reason":"benchmark-complete","id":"mcl/1","report_directory":"/root/fuel-core/target/criterion/reports/mcl/1","iteration_count":[24699,49398,74097,98796,123495,148194,172893,197592,222291,246990,271689,296388,321087,345786,370485,395184,419883,444582,469281,493980,518679,543378,568077,592776,617475,642174,666873,691572,716271,740970,765669,790368,815067,839766,864465,889164,913863,938562,963261,987960,1012659,1037358,1062057,1086756,1111455,1136154,1160853,1185552,1210251,1234950,1259649,1284348,1309047,1333746,1358445,1383144,1407843,1432542,1457241,1481940,1506639,1531338,1556037,1580736,1605435,1630134,1654833,1679532,1704231,1728930,1753629,1778328,1803027,1827726,1852425,1877124,1901823,1926522,1951221,1975920,2000619,2025318,2050017,2074716,2099415,2124114,2148813,2173512,2198211,2222910,2247609,2272308,2297007,2321706,2346405,2371104,2395803,2420502,2445201,2469900],"measured_values":[773365.0,1466264.0,2104959.0,2763290.0,3412148.0,4138386.0,4807908.0,5452149.0,6149504.0,6894992.0,7555723.0,8219253.0,8965312.0,9547880.0,10285765.0,10953165.0,11633711.0,12364907.0,13045025.0,13735260.0,14398903.0,15078159.0,15741397.0,16358988.0,17089227.0,17822635.0,18439984.0,19206848.0,19902645.0,20639874.0,21213878.0,21992590.0,22618013.0,23314851.0,24003517.0,24575731.0,25256551.0,26123221.0,26748978.0,27379339.0,28112194.0,28839451.0,29468196.0,30501195.0,30878282.0,31573152.0,32229377.0,32928322.0,33548842.0,34466548.0,34912302.0,35549771.0,36375913.0,37010654.0,37688869.0,38292595.0,39082244.0,39704603.0,40361488.0,41312403.0,41847248.0,42468495.0,43138092.0,43885612.0,44601261.0,45203081.0,45908284.0,46590982.0,47075764.0,48013585.0,48632074.0,49388796.0,50136280.0,50768367.0,51594216.0,52425108.0,52971540.0,53678634.0,54335845.0,54799924.0,55580841.0,56059719.0,56921272.0,57626085.0,58180219.0,59034615.0,59524899.0,60364034.0,61172779.0,61851826.0,62545914.0,63097075.0,63837528.0,64501789.0,65177776.0,65906017.0,66598126.0,67141694.0,67880715.0,68755407.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":27.77596081715236,"lower_bound":27.762004773290354,"upper_bound":27.789664681557948,"unit":"ns"},"mean":{"estimate":27.82889232584346,"lower_bound":27.765360717588848,"upper_bound":27.922326344089644,"unit":"ns"},"median":{"estimate":27.768512946037518,"lower_bound":27.760570707345536,"upper_bound":27.779105625073072,"unit":"ns"},"median_abs_dev":{"estimate":0.058491037060286154,"lower_bound":0.04383654487702684,"upper_bound":0.08217581904484572,"unit":"ns"},"slope":{"estimate":27.77596081715236,"lower_bound":27.762004773290354,"upper_bound":27.789664681557948,"unit":"ns"},"change":{"mean":{"estimate":-0.014423398770882279,"lower_bound":-0.017586780803229018,"upper_bound":-0.010654970071406023,"unit":"%"},"median":{"estimate":-0.01585417705993275,"lower_bound":-0.016594838174362025,"upper_bound":-0.015179721523987865,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"mcl/10","report_directory":"/root/fuel-core/target/criterion/reports/mcl/10","iteration_count":[25025,50050,75075,100100,125125,150150,175175,200200,225225,250250,275275,300300,325325,350350,375375,400400,425425,450450,475475,500500,525525,550550,575575,600600,625625,650650,675675,700700,725725,750750,775775,800800,825825,850850,875875,900900,925925,950950,975975,1001000,1026025,1051050,1076075,1101100,1126125,1151150,1176175,1201200,1226225,1251250,1276275,1301300,1326325,1351350,1376375,1401400,1426425,1451450,1476475,1501500,1526525,1551550,1576575,1601600,1626625,1651650,1676675,1701700,1726725,1751750,1776775,1801800,1826825,1851850,1876875,1901900,1926925,1951950,1976975,2002000,2027025,2052050,2077075,2102100,2127125,2152150,2177175,2202200,2227225,2252250,2277275,2302300,2327325,2352350,2377375,2402400,2427425,2452450,2477475,2502500],"measured_values":[708448.0,1340367.0,2070104.0,2697373.0,3380780.0,4058671.0,4725460.0,5392272.0,6080470.0,6772585.0,7431875.0,8113846.0,8769654.0,9464584.0,10119657.0,10811875.0,11533466.0,12194070.0,12792919.0,13535056.0,14278065.0,14896283.0,15560384.0,16332856.0,17003346.0,17594175.0,18278218.0,18970046.0,19635090.0,20278507.0,20931809.0,21682688.0,22270535.0,22933995.0,23604058.0,24345963.0,25051160.0,25683245.0,26362576.0,27070571.0,27627856.0,28313345.0,29020997.0,29675980.0,30460347.0,31131215.0,31808796.0,32612221.0,33177991.0,33742126.0,34349260.0,35148575.0,35898458.0,36621140.0,37265658.0,37795781.0,38430177.0,39135842.0,39888644.0,40683108.0,41169576.0,41849858.0,42511124.0,43191672.0,44084035.0,44644480.0,45276469.0,45873696.0,46776489.0,47455058.0,48024537.0,48636915.0,49352095.0,49966836.0,50813735.0,51254184.0,51959905.0,52653432.0,53500319.0,54073225.0,54771315.0,55534282.0,56137882.0,56855611.0,57574992.0,58284612.0,59062314.0,59486929.0,60016392.0,60719770.0,61426476.0,62631217.0,62802841.0,63420270.0,64170685.0,64790966.0,65637478.0,66125404.0,66933476.0,67640160.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":27.018237623703325,"lower_bound":27.00373656525575,"upper_bound":27.03441141257588,"unit":"ns"},"mean":{"estimate":27.035830715310343,"lower_bound":27.010737744295724,"upper_bound":27.070397974014085,"unit":"ns"},"median":{"estimate":27.015680474621732,"lower_bound":27.002684815184814,"upper_bound":27.030230375684923,"unit":"ns"},"median_abs_dev":{"estimate":0.06878330609297319,"lower_bound":0.05423518704912245,"upper_bound":0.07886460915211171,"unit":"ns"},"slope":{"estimate":27.018237623703325,"lower_bound":27.00373656525575,"upper_bound":27.03441141257588,"unit":"ns"},"change":{"mean":{"estimate":-0.02326600691797054,"lower_bound":-0.025027796121065586,"upper_bound":-0.021326713830901015,"unit":"%"},"median":{"estimate":-0.024074554735155296,"lower_bound":-0.025562452745107024,"upper_bound":-0.022749561345129288,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"mcl/100","report_directory":"/root/fuel-core/target/criterion/reports/mcl/100","iteration_count":[24662,49324,73986,98648,123310,147972,172634,197296,221958,246620,271282,295944,320606,345268,369930,394592,419254,443916,468578,493240,517902,542564,567226,591888,616550,641212,665874,690536,715198,739860,764522,789184,813846,838508,863170,887832,912494,937156,961818,986480,1011142,1035804,1060466,1085128,1109790,1134452,1159114,1183776,1208438,1233100,1257762,1282424,1307086,1331748,1356410,1381072,1405734,1430396,1455058,1479720,1504382,1529044,1553706,1578368,1603030,1627692,1652354,1677016,1701678,1726340,1751002,1775664,1800326,1824988,1849650,1874312,1898974,1923636,1948298,1972960,1997622,2022284,2046946,2071608,2096270,2120932,2145594,2170256,2194918,2219580,2244242,2268904,2293566,2318228,2342890,2367552,2392214,2416876,2441538,2466200],"measured_values":[738740.0,1376415.0,2066372.0,2771497.0,3444358.0,4137108.0,4880973.0,5553570.0,6194931.0,6829214.0,7574244.0,8257928.0,8935260.0,9609062.0,10335977.0,10880105.0,11694307.0,12407603.0,13040116.0,13785642.0,14470719.0,15140872.0,15809099.0,16537411.0,17243245.0,17941019.0,18696326.0,19340512.0,20006801.0,20638771.0,21147715.0,21975356.0,22631201.0,23396364.0,23998400.0,24802479.0,25413655.0,26114890.0,26858329.0,27438937.0,28143133.0,28698839.0,29628010.0,30282573.0,30874269.0,31641211.0,32295892.0,33105272.0,33725198.0,34313795.0,35085107.0,35694898.0,36443662.0,37145187.0,37615589.0,38499147.0,39250761.0,39931560.0,40527752.0,41222397.0,41894135.0,42587804.0,43427510.0,44001225.0,44711189.0,45387351.0,46188251.0,46883218.0,47440692.0,48038523.0,48769006.0,49471403.0,50160476.0,50824164.0,51528645.0,52246108.0,52649172.0,53652187.0,54213643.0,55055298.0,55475504.0,56191145.0,57087499.0,57644403.0,58358712.0,58968809.0,59572948.0,60520214.0,61223407.0,61819328.0,62435880.0,63327765.0,63975545.0,64545847.0,65432647.0,65947491.0,66685986.0,67306196.0,68147790.0,68693710.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":27.86318423507575,"lower_bound":27.85061359640071,"upper_bound":27.875540257658855,"unit":"ns"},"mean":{"estimate":27.902285686166724,"lower_bound":27.868429165899094,"upper_bound":27.953935512381356,"unit":"ns"},"median":{"estimate":27.88304680306909,"lower_bound":27.862567443754454,"upper_bound":27.89406219990281,"unit":"ns"},"median_abs_dev":{"estimate":0.058670827905048954,"lower_bound":0.04516933789125692,"upper_bound":0.07562485763390171,"unit":"ns"},"slope":{"estimate":27.86318423507575,"lower_bound":27.85061359640071,"upper_bound":27.875540257658855,"unit":"ns"},"change":{"mean":{"estimate":-0.0041744206750879975,"lower_bound":-0.0066125924413563235,"upper_bound":-0.0017401693792491403,"unit":"%"},"median":{"estimate":-0.0030333743165360527,"lower_bound":-0.0051303190078588745,"upper_bound":-0.0020123530071042284,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcl/1000","report_directory":"/root/fuel-core/target/criterion/reports/mcl/1000","iteration_count":[22242,44484,66726,88968,111210,133452,155694,177936,200178,222420,244662,266904,289146,311388,333630,355872,378114,400356,422598,444840,467082,489324,511566,533808,556050,578292,600534,622776,645018,667260,689502,711744,733986,756228,778470,800712,822954,845196,867438,889680,911922,934164,956406,978648,1000890,1023132,1045374,1067616,1089858,1112100,1134342,1156584,1178826,1201068,1223310,1245552,1267794,1290036,1312278,1334520,1356762,1379004,1401246,1423488,1445730,1467972,1490214,1512456,1534698,1556940,1579182,1601424,1623666,1645908,1668150,1690392,1712634,1734876,1757118,1779360,1801602,1823844,1846086,1868328,1890570,1912812,1935054,1957296,1979538,2001780,2024022,2046264,2068506,2090748,2112990,2135232,2157474,2179716,2201958,2224200],"measured_values":[787061.0,1408229.0,2157683.0,2852608.0,3577691.0,4316064.0,5006480.0,5641184.0,6363243.0,7112699.0,7786996.0,8448415.0,9155427.0,9864044.0,10601678.0,11387256.0,12026852.0,12812448.0,13446122.0,14259778.0,14988641.0,15592439.0,16301764.0,17155147.0,17739261.0,18495498.0,19174440.0,20246186.0,20763198.0,21343400.0,22203733.0,22843939.0,23568504.0,24099482.0,24893905.0,25659483.0,26237414.0,27096360.0,27605205.0,28672816.0,29234911.0,29905655.0,30756785.0,31392080.0,32052873.0,32792664.0,33198350.0,34158781.0,35109623.0,35500542.0,36490707.0,36975657.0,37909363.0,38237379.0,38953369.0,39800489.0,40691025.0,41394113.0,41844029.0,42872602.0,43374700.0,44109698.0,44973994.0,45401421.0,46364712.0,46839795.0,47711100.0,48226052.0,49241347.0,49874113.0,50602945.0,51343265.0,51988893.0,52511639.0,53187309.0,54373879.0,54715148.0,55655562.0,56222888.0,57131418.0,57615570.0,58244928.0,59144274.0,59963079.0,60272219.0,61427045.0,62034811.0,62656647.0,63323461.0,64144210.0,64765565.0,65613948.0,66332764.0,66640360.0,67479790.0,68520585.0,69065450.0,69564528.0,70159683.0,71027160.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":32.002944135061895,"lower_bound":31.980706308413822,"upper_bound":32.02537591217875,"unit":"ns"},"mean":{"estimate":32.030710092011056,"lower_bound":31.97478411992184,"upper_bound":32.115081216493486,"unit":"ns"},"median":{"estimate":32.0072389834411,"lower_bound":31.980187633006626,"upper_bound":32.044709583470706,"unit":"ns"},"median_abs_dev":{"estimate":0.13118214962541416,"lower_bound":0.09709456507351542,"upper_bound":0.16589373756823553,"unit":"ns"},"slope":{"estimate":32.002944135061895,"lower_bound":31.980706308413822,"upper_bound":32.02537591217875,"unit":"ns"},"change":{"mean":{"estimate":0.010133547415406952,"lower_bound":0.007596028708069114,"upper_bound":0.013074048914886114,"unit":"%"},"median":{"estimate":0.010542408327826047,"lower_bound":0.008165144694703308,"upper_bound":0.012472407027559695,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcl/10000","report_directory":"/root/fuel-core/target/criterion/reports/mcl/10000","iteration_count":[5037,10074,15111,20148,25185,30222,35259,40296,45333,50370,55407,60444,65481,70518,75555,80592,85629,90666,95703,100740,105777,110814,115851,120888,125925,130962,135999,141036,146073,151110,156147,161184,166221,171258,176295,181332,186369,191406,196443,201480,206517,211554,216591,221628,226665,231702,236739,241776,246813,251850,256887,261924,266961,271998,277035,282072,287109,292146,297183,302220,307257,312294,317331,322368,327405,332442,337479,342516,347553,352590,357627,362664,367701,372738,377775,382812,387849,392886,397923,402960,407997,413034,418071,423108,428145,433182,438219,443256,448293,453330,458367,463404,468441,473478,478515,483552,488589,493626,498663,503700],"measured_values":[993781.0,1898959.0,2774989.0,3665025.0,4594503.0,5517839.0,6372574.0,7280130.0,8191036.0,9097301.0,10006375.0,10915287.0,11824682.0,12785833.0,13651627.0,14562437.0,15475405.0,16375396.0,17283014.0,18412897.0,19284239.0,20117896.0,20938929.0,21968657.0,22811711.0,23668530.0,24588797.0,25789187.0,26467273.0,27302012.0,28220535.0,29114710.0,30035471.0,30928613.0,31851526.0,32769529.0,33753839.0,34577925.0,35519460.0,36401514.0,37311588.0,38210962.0,39122702.0,40038419.0,40940611.0,41859281.0,42765792.0,43685964.0,44581440.0,45498793.0,46402273.0,47387606.0,48230861.0,49343925.0,50080885.0,51371542.0,52029050.0,52825728.0,53676730.0,54629646.0,55491278.0,56414267.0,57362719.0,58225827.0,59157098.0,60052274.0,60964046.0,61888014.0,62799604.0,63692524.0,64606522.0,65532737.0,66465039.0,67398216.0,68275132.0,69403541.0,70069134.0,71206984.0,71879382.0,72776966.0,73720515.0,74670359.0,75517117.0,76412637.0,77336554.0,78257682.0,79377284.0,80139100.0,81058865.0,82263293.0,82814255.0,83752502.0,84605366.0,85540937.0,86757206.0,87342265.0,88321815.0,89168360.0,90066230.0,91015028.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":180.79190693405522,"lower_bound":180.73097132241193,"upper_bound":180.8622466072798,"unit":"ns"},"mean":{"estimate":181.1591423487081,"lower_bound":180.8670622762953,"upper_bound":181.5832170003606,"unit":"ns"},"median":{"estimate":180.6883129655365,"lower_bound":180.6690341473099,"upper_bound":180.7296194824962,"unit":"ns"},"median_abs_dev":{"estimate":0.10165220164671385,"lower_bound":0.07159715690127978,"upper_bound":0.14225359562113166,"unit":"ns"},"slope":{"estimate":180.79190693405522,"lower_bound":180.73097132241193,"upper_bound":180.8622466072798,"unit":"ns"},"change":{"mean":{"estimate":0.014018021307539152,"lower_bound":0.0117598641303446,"upper_bound":0.01649278272878795,"unit":"%"},"median":{"estimate":0.012208217713240987,"lower_bound":0.012041203461330197,"upper_bound":0.012509260987147774,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcl/19753","report_directory":"/root/fuel-core/target/criterion/reports/mcl/19753","iteration_count":[2840,5680,8520,11360,14200,17040,19880,22720,25560,28400,31240,34080,36920,39760,42600,45440,48280,51120,53960,56800,59640,62480,65320,68160,71000,73840,76680,79520,82360,85200,88040,90880,93720,96560,99400,102240,105080,107920,110760,113600,116440,119280,122120,124960,127800,130640,133480,136320,139160,142000,144840,147680,150520,153360,156200,159040,161880,164720,167560,170400,173240,176080,178920,181760,184600,187440,190280,193120,195960,198800,201640,204480,207320,210160,213000,215840,218680,221520,224360,227200,230040,232880,235720,238560,241400,244240,247080,249920,252760,255600,258440,261280,264120,266960,269800,272640,275480,278320,281160,284000],"measured_values":[977574.0,1869130.0,2809474.0,3835215.0,4691337.0,5620443.0,6560744.0,7488173.0,8426112.0,9396512.0,10277855.0,11204518.0,12161137.0,13123886.0,14046326.0,14940100.0,15881040.0,16812778.0,17792289.0,18757069.0,19617550.0,20557515.0,21475703.0,22465329.0,23382733.0,24291542.0,25264018.0,26241423.0,27130974.0,28028469.0,28992098.0,29955985.0,31037296.0,31811157.0,32799128.0,33666379.0,34621650.0,35567767.0,36429435.0,37611566.0,38363379.0,39354992.0,40222860.0,41164317.0,42149278.0,43001143.0,43957951.0,44836098.0,45894391.0,46834371.0,47692698.0,48674911.0,49708831.0,50723559.0,51452785.0,52439627.0,53278355.0,54154032.0,55211494.0,56167521.0,57109695.0,57941725.0,58957178.0,59847341.0,60765558.0,61786596.0,62682514.0,63574532.0,64585594.0,65461927.0,66410179.0,67346164.0,68234523.0,69140228.0,70204642.0,71333895.0,71974279.0,73014178.0,73883295.0,74905365.0,75712139.0,76613627.0,77619962.0,78561693.0,79490910.0,80422579.0,81266424.0,82290906.0,83210605.0,84478290.0,85386280.0,86011745.0,87083187.0,88125380.0,88882772.0,89796924.0,90692419.0,91580316.0,92707695.0,93532991.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":329.47000267974033,"lower_bound":329.36675926684956,"upper_bound":329.58455569164107,"unit":"ns"},"mean":{"estimate":329.73052533590084,"lower_bound":329.45733808308665,"upper_bound":330.11901149298996,"unit":"ns"},"median":{"estimate":329.41962793611197,"lower_bound":329.32237788432724,"upper_bound":329.5753057820608,"unit":"ns"},"median_abs_dev":{"estimate":0.4300215276181684,"lower_bound":0.3112329336952335,"upper_bound":0.5216018820878037,"unit":"ns"},"slope":{"estimate":329.47000267974033,"lower_bound":329.36675926684956,"upper_bound":329.58455569164107,"unit":"ns"},"change":{"mean":{"estimate":-0.0075818747549230014,"lower_bound":-0.009590811807804342,"upper_bound":-0.005922357477367353,"unit":"%"},"median":{"estimate":-0.007230284598755188,"lower_bound":-0.007696514109149177,"upper_bound":-0.006734537546324147,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcl/29629","report_directory":"/root/fuel-core/target/criterion/reports/mcl/29629","iteration_count":[1941,3882,5823,7764,9705,11646,13587,15528,17469,19410,21351,23292,25233,27174,29115,31056,32997,34938,36879,38820,40761,42702,44643,46584,48525,50466,52407,54348,56289,58230,60171,62112,64053,65994,67935,69876,71817,73758,75699,77640,79581,81522,83463,85404,87345,89286,91227,93168,95109,97050,98991,100932,102873,104814,106755,108696,110637,112578,114519,116460,118401,120342,122283,124224,126165,128106,130047,131988,133929,135870,137811,139752,141693,143634,145575,147516,149457,151398,153339,155280,157221,159162,161103,163044,164985,166926,168867,170808,172749,174690,176631,178572,180513,182454,184395,186336,188277,190218,192159,194100],"measured_values":[990670.0,1882630.0,2823400.0,3807612.0,4704813.0,5644951.0,6587370.0,7554369.0,8489109.0,9452921.0,10342993.0,11295276.0,12230079.0,13164859.0,14113218.0,15075844.0,16016891.0,16936302.0,17903131.0,18836807.0,19751537.0,20692375.0,21635003.0,22581870.0,23519309.0,24538525.0,25400769.0,26344483.0,27326787.0,28270822.0,29170453.0,30113287.0,31057338.0,31984769.0,32933277.0,34049264.0,34813253.0,35757229.0,36715544.0,37640674.0,38570557.0,39555293.0,40454896.0,41401874.0,42348719.0,43289664.0,44546826.0,45161749.0,46114007.0,47184276.0,48042861.0,48939104.0,49906901.0,50806534.0,51752700.0,52708102.0,53633107.0,54565803.0,55510656.0,56450724.0,57481138.0,58329192.0,59283483.0,60226904.0,61195709.0,62102121.0,63036864.0,63977057.0,64922054.0,65855339.0,66889263.0,67743416.0,68763034.0,69652169.0,70558642.0,71482065.0,72421380.0,73366646.0,74310484.0,76065092.0,76667161.0,77242937.0,78321748.0,79185017.0,79980587.0,80923130.0,81885687.0,82896423.0,83761305.0,84719700.0,85676885.0,86660274.0,87499913.0,88452724.0,89390273.0,90462079.0,91413685.0,92232194.0,93157661.0,94143003.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":485.1522967134426,"lower_bound":484.9579785541023,"upper_bound":485.40684176075786,"unit":"ns"},"mean":{"estimate":485.4269381282062,"lower_bound":485.03880263044874,"upper_bound":486.0427238977089,"unit":"ns"},"median":{"estimate":484.823697514168,"lower_bound":484.78010397639457,"upper_bound":484.89217117157744,"unit":"ns"},"median_abs_dev":{"estimate":0.20180191633866584,"lower_bound":0.13051907657601358,"upper_bound":0.3159442875159253,"unit":"ns"},"slope":{"estimate":485.1522967134426,"lower_bound":484.9579785541023,"upper_bound":485.40684176075786,"unit":"ns"},"change":{"mean":{"estimate":-0.016282447527106392,"lower_bound":-0.01804871891704129,"upper_bound":-0.014681019962333584,"unit":"%"},"median":{"estimate":-0.016355835824277354,"lower_bound":-0.016739735867727944,"upper_bound":-0.0160603109723072,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"mcl/44444","report_directory":"/root/fuel-core/target/criterion/reports/mcl/44444","iteration_count":[865,1730,2595,3460,4325,5190,6055,6920,7785,8650,9515,10380,11245,12110,12975,13840,14705,15570,16435,17300,18165,19030,19895,20760,21625,22490,23355,24220,25085,25950,26815,27680,28545,29410,30275,31140,32005,32870,33735,34600,35465,36330,37195,38060,38925,39790,40655,41520,42385,43250,44115,44980,45845,46710,47575,48440,49305,50170,51035,51900,52765,53630,54495,55360,56225,57090,57955,58820,59685,60550,61415,62280,63145,64010,64875,65740,66605,67470,68335,69200,70065,70930,71795,72660,73525,74390,75255,76120,76985,77850,78715,79580,80445,81310,82175,83040,83905,84770,85635,86500],"measured_values":[1001283.0,1909626.0,2862699.0,3815400.0,4767085.0,5720249.0,6671603.0,7624538.0,8576149.0,9529979.0,10479526.0,11433350.0,12384345.0,13331799.0,14264481.0,15198637.0,16163452.0,17079206.0,18002368.0,18934936.0,19869649.0,20806573.0,21727099.0,22634482.0,23574296.0,24576373.0,25451020.0,26411466.0,27344446.0,28358299.0,29185697.0,30111480.0,31047926.0,31980149.0,32910811.0,33846336.0,34829166.0,35721280.0,36691299.0,37549642.0,38573130.0,39479591.0,40361558.0,41473537.0,42257393.0,43143342.0,44147490.0,45206079.0,46094667.0,46870647.0,47936771.0,48793119.0,49734977.0,50617565.0,51586146.0,52492418.0,53455108.0,54359471.0,55306176.0,56204480.0,57138259.0,59282932.0,59675330.0,60537562.0,61643583.0,62373850.0,63219637.0,64057318.0,64977003.0,66019197.0,66685518.0,67602561.0,68543054.0,69555063.0,70395462.0,71392949.0,72258125.0,73177205.0,74305317.0,75133074.0,76044036.0,76970676.0,77839916.0,78772343.0,79743011.0,80703749.0,81568250.0,82493762.0,83537742.0,84944435.0,85512804.0,86667650.0,88461059.0,88969469.0,89953883.0,90738204.0,91730550.0,92684689.0,93468701.0,94388031.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":1088.4973522543523,"lower_bound":1087.303699959624,"upper_bound":1089.7174127633264,"unit":"ns"},"mean":{"estimate":1091.2294291500473,"lower_bound":1089.6170899636338,"upper_bound":1093.1834953551754,"unit":"ns"},"median":{"estimate":1088.7219700301584,"lower_bound":1087.2263025210084,"upper_bound":1090.5826921133391,"unit":"ns"},"median_abs_dev":{"estimate":5.879334576590385,"lower_bound":4.095759684460131,"upper_bound":7.671318564865476,"unit":"ns"},"slope":{"estimate":1088.4973522543523,"lower_bound":1087.303699959624,"upper_bound":1089.7174127633264,"unit":"ns"},"change":{"mean":{"estimate":-0.002411036236536823,"lower_bound":-0.004748198991592774,"upper_bound":-0.00023274472224245693,"unit":"%"},"median":{"estimate":-0.003123483012707262,"lower_bound":-0.00469954535838768,"upper_bound":-0.0014235115105294405,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcl/66666","report_directory":"/root/fuel-core/target/criterion/reports/mcl/66666","iteration_count":[580,1160,1740,2320,2900,3480,4060,4640,5220,5800,6380,6960,7540,8120,8700,9280,9860,10440,11020,11600,12180,12760,13340,13920,14500,15080,15660,16240,16820,17400,17980,18560,19140,19720,20300,20880,21460,22040,22620,23200,23780,24360,24940,25520,26100,26680,27260,27840,28420,29000,29580,30160,30740,31320,31900,32480,33060,33640,34220,34800,35380,35960,36540,37120,37700,38280,38860,39440,40020,40600,41180,41760,42340,42920,43500,44080,44660,45240,45820,46400,46980,47560,48140,48720,49300,49880,50460,51040,51620,52200,52780,53360,53940,54520,55100,55680,56260,56840,57420,58000],"measured_values":[1016099.0,1936253.0,2905840.0,3873896.0,4858767.0,5804773.0,6769602.0,7736762.0,8702584.0,9667271.0,10635067.0,11600589.0,12560031.0,13521495.0,14464451.0,15387951.0,16346377.0,17304493.0,18250864.0,19212337.0,20178718.0,21112099.0,22068198.0,23002139.0,23960736.0,24919720.0,25911683.0,26780961.0,27760823.0,28636704.0,29584116.0,30524986.0,31539426.0,32433560.0,33387369.0,34378467.0,35282941.0,36231163.0,37179141.0,38132918.0,39117681.0,40057792.0,41024597.0,41976860.0,42911866.0,43873217.0,44790083.0,45732059.0,46694515.0,47657978.0,48586929.0,49528101.0,50491683.0,51542944.0,52565134.0,53388207.0,54441345.0,55317290.0,56164491.0,57141053.0,58096644.0,59159894.0,59954050.0,60915402.0,61806609.0,62830004.0,63880522.0,64772181.0,65586904.0,66737045.0,67606007.0,68539142.0,69403706.0,70435841.0,71316942.0,72352768.0,73185054.0,74219587.0,75190100.0,76063067.0,76919456.0,77960342.0,78927518.0,79976741.0,80815167.0,81824655.0,82669647.0,83727726.0,84560804.0,85585901.0,86573062.0,87366320.0,88343910.0,89469229.0,90613716.0,91313526.0,92242948.0,93110648.0,94204965.0,95107494.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":1641.3148311837874,"lower_bound":1640.750145610174,"upper_bound":1641.9799345166684,"unit":"ns"},"mean":{"estimate":1648.5215862441535,"lower_bound":1646.03622963063,"upper_bound":1651.5569228553384,"unit":"ns"},"median":{"estimate":1643.872659276214,"lower_bound":1642.5601419878296,"upper_bound":1644.779632781012,"unit":"ns"},"median_abs_dev":{"estimate":5.5691983959982725,"lower_bound":3.7239200013089095,"upper_bound":7.623447908617436,"unit":"ns"},"slope":{"estimate":1641.3148311837874,"lower_bound":1640.750145610174,"upper_bound":1641.9799345166684,"unit":"ns"},"change":{"mean":{"estimate":0.00047625680262219916,"lower_bound":-0.002267323231802071,"upper_bound":0.003076487736129124,"unit":"%"},"median":{"estimate":0.0015712965997278783,"lower_bound":0.0008155878434084052,"upper_bound":0.002362711088620628,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcl/100000","report_directory":"/root/fuel-core/target/criterion/reports/mcl/100000","iteration_count":[392,784,1176,1568,1960,2352,2744,3136,3528,3920,4312,4704,5096,5488,5880,6272,6664,7056,7448,7840,8232,8624,9016,9408,9800,10192,10584,10976,11368,11760,12152,12544,12936,13328,13720,14112,14504,14896,15288,15680,16072,16464,16856,17248,17640,18032,18424,18816,19208,19600,19992,20384,20776,21168,21560,21952,22344,22736,23128,23520,23912,24304,24696,25088,25480,25872,26264,26656,27048,27440,27832,28224,28616,29008,29400,29792,30184,30576,30968,31360,31752,32144,32536,32928,33320,33712,34104,34496,34888,35280,35672,36064,36456,36848,37240,37632,38024,38416,38808,39200],"measured_values":[1037828.0,1960566.0,2942139.0,3922418.0,4926953.0,5905727.0,6847168.0,7825920.0,8804764.0,9782785.0,10761074.0,11738810.0,12716975.0,13731841.0,14667431.0,15654223.0,16605304.0,17595774.0,18520554.0,19493959.0,20484310.0,21483547.0,22433311.0,23359633.0,24324801.0,25355342.0,26310870.0,27278842.0,28205810.0,29173386.0,30116361.0,31056097.0,32001663.0,32971712.0,33985779.0,34929358.0,35786953.0,36810543.0,37758115.0,38723283.0,39707697.0,40661680.0,41591423.0,42607441.0,43481540.0,44478168.0,45339432.0,46363853.0,47339079.0,48326044.0,49336013.0,50119125.0,51214157.0,52288684.0,53181379.0,54146106.0,55037236.0,56129544.0,56974884.0,57915662.0,58868024.0,59826282.0,60808875.0,61650191.0,62597893.0,63479438.0,64446097.0,65551142.0,66383702.0,67451652.0,68309943.0,69215236.0,70262124.0,71098188.0,72157659.0,73070076.0,74089285.0,75329234.0,76473244.0,77477877.0,78494729.0,79448742.0,80981835.0,81681645.0,82704708.0,83523488.0,84262153.0,85226527.0,86124058.0,87042596.0,87904043.0,88886281.0,89752157.0,90771839.0,91704094.0,92679302.0,94330556.0,95458157.0,95967923.0,96894837.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":2467.229105420061,"lower_bound":2464.854185274419,"upper_bound":2469.684438977467,"unit":"ns"},"mean":{"estimate":2475.9664545333994,"lower_bound":2472.061593739828,"upper_bound":2480.85250322128,"unit":"ns"},"median":{"estimate":2470.6044351200844,"lower_bound":2467.7877651060426,"upper_bound":2474.49911745001,"unit":"ns"},"median_abs_dev":{"estimate":14.621328619870173,"lower_bound":10.002583348045073,"upper_bound":19.114988199170647,"unit":"ns"},"slope":{"estimate":2467.229105420061,"lower_bound":2464.854185274419,"upper_bound":2469.684438977467,"unit":"ns"},"change":{"mean":{"estimate":-0.001431504748083845,"lower_bound":-0.004032908408135378,"upper_bound":0.0012089538309947522,"unit":"%"},"median":{"estimate":-0.0015259716736244489,"lower_bound":-0.0034071314815800058,"upper_bound":0.0005592065192103757,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"mcl","benchmarks":["mcl/1","mcl/10","mcl/100","mcl/1000","mcl/10000","mcl/19753","mcl/29629","mcl/44444","mcl/66666","mcl/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/mcl"} +{"reason":"benchmark-complete","id":"mcli/1","report_directory":"/root/fuel-core/target/criterion/reports/mcli/1","iteration_count":[24861,49722,74583,99444,124305,149166,174027,198888,223749,248610,273471,298332,323193,348054,372915,397776,422637,447498,472359,497220,522081,546942,571803,596664,621525,646386,671247,696108,720969,745830,770691,795552,820413,845274,870135,894996,919857,944718,969579,994440,1019301,1044162,1069023,1093884,1118745,1143606,1168467,1193328,1218189,1243050,1267911,1292772,1317633,1342494,1367355,1392216,1417077,1441938,1466799,1491660,1516521,1541382,1566243,1591104,1615965,1640826,1665687,1690548,1715409,1740270,1765131,1789992,1814853,1839714,1864575,1889436,1914297,1939158,1964019,1988880,2013741,2038602,2063463,2088324,2113185,2138046,2162907,2187768,2212629,2237490,2262351,2287212,2312073,2336934,2361795,2386656,2411517,2436378,2461239,2486100],"measured_values":[753433.0,1368884.0,2049713.0,2732829.0,3413282.0,4094456.0,4772089.0,5463135.0,6150506.0,6841870.0,7511594.0,8208447.0,8878441.0,9519388.0,10211032.0,10934494.0,11550949.0,12244148.0,12963647.0,13700876.0,14279879.0,15011556.0,15716217.0,16410561.0,17024678.0,17667332.0,18433705.0,19153470.0,19810992.0,20449683.0,21222990.0,21887602.0,22551242.0,23263487.0,23893313.0,24605345.0,25283343.0,26002514.0,26636332.0,27355154.0,27959669.0,28727370.0,29406854.0,30097697.0,30765812.0,31406002.0,32054275.0,32699272.0,33620836.0,34266336.0,34845666.0,35524589.0,36171660.0,36980337.0,37548187.0,38196276.0,38896049.0,39570488.0,40363244.0,40943672.0,41652437.0,42393452.0,43028949.0,43803581.0,44486238.0,45084950.0,45867628.0,46369841.0,47035788.0,47789708.0,48493335.0,49165413.0,49694872.0,50507388.0,51336772.0,51905272.0,52622409.0,53266022.0,54093896.0,54697227.0,55332100.0,55962150.0,56698530.0,57440329.0,58071885.0,58709519.0,59290345.0,60102425.0,60707619.0,61481732.0,62085107.0,62805584.0,63422576.0,64268175.0,64963754.0,65551411.0,66196136.0,66933680.0,67644916.0,68232129.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":27.47273423369742,"lower_bound":27.46432390749096,"upper_bound":27.481453728603373,"unit":"ns"},"mean":{"estimate":27.499159627809544,"lower_bound":27.463570711984502,"upper_bound":27.561266370756044,"unit":"ns"},"median":{"estimate":27.47266652930429,"lower_bound":27.465797752168726,"upper_bound":27.481084831664052,"unit":"ns"},"median_abs_dev":{"estimate":0.04194703077743028,"lower_bound":0.02969528072985183,"upper_bound":0.05232961390686984,"unit":"ns"},"slope":{"estimate":27.47273423369742,"lower_bound":27.46432390749096,"upper_bound":27.481453728603373,"unit":"ns"},"change":{"mean":{"estimate":0.03487660076161303,"lower_bound":0.03250299083563542,"upper_bound":0.03784244878385079,"unit":"%"},"median":{"estimate":0.034091865838817625,"lower_bound":0.03299478175855808,"upper_bound":0.03544611400752218,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcli/10","report_directory":"/root/fuel-core/target/criterion/reports/mcli/10","iteration_count":[25216,50432,75648,100864,126080,151296,176512,201728,226944,252160,277376,302592,327808,353024,378240,403456,428672,453888,479104,504320,529536,554752,579968,605184,630400,655616,680832,706048,731264,756480,781696,806912,832128,857344,882560,907776,932992,958208,983424,1008640,1033856,1059072,1084288,1109504,1134720,1159936,1185152,1210368,1235584,1260800,1286016,1311232,1336448,1361664,1386880,1412096,1437312,1462528,1487744,1512960,1538176,1563392,1588608,1613824,1639040,1664256,1689472,1714688,1739904,1765120,1790336,1815552,1840768,1865984,1891200,1916416,1941632,1966848,1992064,2017280,2042496,2067712,2092928,2118144,2143360,2168576,2193792,2219008,2244224,2269440,2294656,2319872,2345088,2370304,2395520,2420736,2445952,2471168,2496384,2521600],"measured_values":[762566.0,1343151.0,2020055.0,2687332.0,3341406.0,4042599.0,4702595.0,5391801.0,6028011.0,6693028.0,7388531.0,8054236.0,8711456.0,9394318.0,10075238.0,10747898.0,11420720.0,12407450.0,12811341.0,13442998.0,14088161.0,14795908.0,15453049.0,16124314.0,16780675.0,17431495.0,18107431.0,18763463.0,19489234.0,20180026.0,20953772.0,21515451.0,22168874.0,22881349.0,23518077.0,24258086.0,24872496.0,25540402.0,26219364.0,26866047.0,27601008.0,28168220.0,28822822.0,29492493.0,30168965.0,30896115.0,31590973.0,32255543.0,32984124.0,33515868.0,34255336.0,35141374.0,35655655.0,36329636.0,36887856.0,37556563.0,38260986.0,39124126.0,39577942.0,40307591.0,40968733.0,41553647.0,42259741.0,42957259.0,43650431.0,44444626.0,45263932.0,45767887.0,46350671.0,47076685.0,47856958.0,48415184.0,49337083.0,49847943.0,50394374.0,51143182.0,51731249.0,52450106.0,53539243.0,54054786.0,54481517.0,55133050.0,55876443.0,56470235.0,57149379.0,57853279.0,58467429.0,59162137.0,59856273.0,60485843.0,61108105.0,61808285.0,62583370.0,63194771.0,63817745.0,64618338.0,65117065.0,65744494.0,66463491.0,67240029.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":26.66704679741996,"lower_bound":26.654262363382806,"upper_bound":26.68150992171027,"unit":"ns"},"mean":{"estimate":26.698697415656934,"lower_bound":26.65042850221968,"upper_bound":26.781241952696877,"unit":"ns"},"median":{"estimate":26.650338930833005,"lower_bound":26.64178639412618,"upper_bound":26.6613017376025,"unit":"ns"},"median_abs_dev":{"estimate":0.04378396016790858,"lower_bound":0.029317910878904337,"upper_bound":0.060623732119671064,"unit":"ns"},"slope":{"estimate":26.66704679741996,"lower_bound":26.654262363382806,"upper_bound":26.68150992171027,"unit":"ns"},"change":{"mean":{"estimate":0.03263139643931523,"lower_bound":0.030192527782585642,"upper_bound":0.03593386795456845,"unit":"%"},"median":{"estimate":0.03187973196487137,"lower_bound":0.030998463774779106,"upper_bound":0.03248858362332552,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcli/100","report_directory":"/root/fuel-core/target/criterion/reports/mcli/100","iteration_count":[24687,49374,74061,98748,123435,148122,172809,197496,222183,246870,271557,296244,320931,345618,370305,394992,419679,444366,469053,493740,518427,543114,567801,592488,617175,641862,666549,691236,715923,740610,765297,789984,814671,839358,864045,888732,913419,938106,962793,987480,1012167,1036854,1061541,1086228,1110915,1135602,1160289,1184976,1209663,1234350,1259037,1283724,1308411,1333098,1357785,1382472,1407159,1431846,1456533,1481220,1505907,1530594,1555281,1579968,1604655,1629342,1654029,1678716,1703403,1728090,1752777,1777464,1802151,1826838,1851525,1876212,1900899,1925586,1950273,1974960,1999647,2024334,2049021,2073708,2098395,2123082,2147769,2172456,2197143,2221830,2246517,2271204,2295891,2320578,2345265,2369952,2394639,2419326,2444013,2468700],"measured_values":[712795.0,1351538.0,2079916.0,2780135.0,3456825.0,4108575.0,4722122.0,5433268.0,6060376.0,6865580.0,7504080.0,8251804.0,8860125.0,9561387.0,10275854.0,10978300.0,11616795.0,12254955.0,13024899.0,13586460.0,14309351.0,15125031.0,15727905.0,16542823.0,17150454.0,17647331.0,18414464.0,19127811.0,19940793.0,20659680.0,21167285.0,21883593.0,22469918.0,23133961.0,23898898.0,24642286.0,25397399.0,26093681.0,26607169.0,27434647.0,27800860.0,28548230.0,29404307.0,30063394.0,30703611.0,31214815.0,31996955.0,32659406.0,33572681.0,34323052.0,34912313.0,35567544.0,36269971.0,36651850.0,37462613.0,38078466.0,38994235.0,39513836.0,39805976.0,41010987.0,41661134.0,42271757.0,42988728.0,44001398.0,44357649.0,45063449.0,45680928.0,46506603.0,46894260.0,47880353.0,48436708.0,49460058.0,49647339.0,50719435.0,51032086.0,51948766.0,52392863.0,53093453.0,53795739.0,54694729.0,55331500.0,55756858.0,56388246.0,57281310.0,58040333.0,58817664.0,58947261.0,59872989.0,60597163.0,61284080.0,61866864.0,62961833.0,63107212.0,64378348.0,64780031.0,65292101.0,66391981.0,66937447.0,67505443.0,68317037.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":27.631422752779084,"lower_bound":27.608476918402538,"upper_bound":27.654403795544187,"unit":"ns"},"mean":{"estimate":27.669428010216663,"lower_bound":27.635356703344563,"upper_bound":27.708247563024322,"unit":"ns"},"median":{"estimate":27.65911820602235,"lower_bound":27.622649861986353,"upper_bound":27.682087830547545,"unit":"ns"},"median_abs_dev":{"estimate":0.12083824501469394,"lower_bound":0.09325852814897875,"upper_bound":0.1534011027118396,"unit":"ns"},"slope":{"estimate":27.631422752779084,"lower_bound":27.608476918402538,"upper_bound":27.654403795544187,"unit":"ns"},"change":{"mean":{"estimate":0.04877737275804783,"lower_bound":0.04593725037173334,"upper_bound":0.051099093053482245,"unit":"%"},"median":{"estimate":0.049225930590598876,"lower_bound":0.04746724888222764,"upper_bound":0.050639666825689635,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcli/1000","report_directory":"/root/fuel-core/target/criterion/reports/mcli/1000","iteration_count":[22610,45220,67830,90440,113050,135660,158270,180880,203490,226100,248710,271320,293930,316540,339150,361760,384370,406980,429590,452200,474810,497420,520030,542640,565250,587860,610470,633080,655690,678300,700910,723520,746130,768740,791350,813960,836570,859180,881790,904400,927010,949620,972230,994840,1017450,1040060,1062670,1085280,1107890,1130500,1153110,1175720,1198330,1220940,1243550,1266160,1288770,1311380,1333990,1356600,1379210,1401820,1424430,1447040,1469650,1492260,1514870,1537480,1560090,1582700,1605310,1627920,1650530,1673140,1695750,1718360,1740970,1763580,1786190,1808800,1831410,1854020,1876630,1899240,1921850,1944460,1967070,1989680,2012290,2034900,2057510,2080120,2102730,2125340,2147950,2170560,2193170,2215780,2238390,2261000],"measured_values":[754061.0,1419932.0,2130215.0,2841327.0,3592182.0,4269309.0,4970338.0,5696069.0,6425291.0,7121927.0,7813991.0,8522371.0,9235317.0,9930618.0,10758474.0,11422896.0,12068030.0,12847952.0,13563782.0,14287887.0,14967686.0,15653988.0,16374220.0,17052650.0,17773150.0,18614270.0,19186480.0,19940168.0,20693224.0,21466519.0,22085505.0,22729568.0,23587178.0,24152984.0,25253403.0,25863115.0,26512285.0,27176102.0,27829868.0,28444545.0,29182057.0,29897217.0,30593266.0,31437835.0,32370838.0,32852233.0,33467683.0,34203378.0,34862876.0,35646440.0,36273644.0,36963253.0,37894687.0,38565915.0,39269741.0,39926696.0,40510550.0,41359509.0,41948504.0,42834268.0,43477967.0,44075470.0,44879580.0,45740498.0,46381938.0,47071035.0,47718089.0,48511052.0,49177944.0,49913041.0,50764081.0,51357445.0,51940961.0,52813790.0,53364993.0,54173386.0,54935011.0,55537735.0,56179629.0,56940538.0,57694169.0,58460587.0,59156573.0,59800419.0,60546510.0,61220079.0,61905425.0,62753878.0,63416978.0,64112206.0,64805586.0,65542721.0,66148612.0,67008926.0,67603710.0,68312305.0,69111181.0,69759378.0,70491838.0,71247681.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":31.515309520465337,"lower_bound":31.504960976042213,"upper_bound":31.52702402422503,"unit":"ns"},"mean":{"estimate":31.540992507584612,"lower_bound":31.509356526769025,"upper_bound":31.5867819414515,"unit":"ns"},"median":{"estimate":31.50807532395109,"lower_bound":31.49220555845943,"upper_bound":31.524870917896244,"unit":"ns"},"median_abs_dev":{"estimate":0.07102524185806176,"lower_bound":0.05054733533385738,"upper_bound":0.09038348636664024,"unit":"ns"},"slope":{"estimate":31.515309520465337,"lower_bound":31.504960976042213,"upper_bound":31.52702402422503,"unit":"ns"},"change":{"mean":{"estimate":0.019655790019350805,"lower_bound":0.018411784845393585,"upper_bound":0.02116080783143004,"unit":"%"},"median":{"estimate":0.018616312923434686,"lower_bound":0.01786284062450938,"upper_bound":0.01936552832063687,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcli/10000","report_directory":"/root/fuel-core/target/criterion/reports/mcli/10000","iteration_count":[5066,10132,15198,20264,25330,30396,35462,40528,45594,50660,55726,60792,65858,70924,75990,81056,86122,91188,96254,101320,106386,111452,116518,121584,126650,131716,136782,141848,146914,151980,157046,162112,167178,172244,177310,182376,187442,192508,197574,202640,207706,212772,217838,222904,227970,233036,238102,243168,248234,253300,258366,263432,268498,273564,278630,283696,288762,293828,298894,303960,309026,314092,319158,324224,329290,334356,339422,344488,349554,354620,359686,364752,369818,374884,379950,385016,390082,395148,400214,405280,410346,415412,420478,425544,430610,435676,440742,445808,450874,455940,461006,466072,471138,476204,481270,486336,491402,496468,501534,506600],"measured_values":[926651.0,1793374.0,2698006.0,3594191.0,4479260.0,5370014.0,6256939.0,7185161.0,8079272.0,8963991.0,9847425.0,10748589.0,11673782.0,12546827.0,13514933.0,14371424.0,15526504.0,16266876.0,17219318.0,17991801.0,18879421.0,19789426.0,20667763.0,21622522.0,22453569.0,23382629.0,24254349.0,25166587.0,25976196.0,26988199.0,27837451.0,28937361.0,29859573.0,30529781.0,31458829.0,32426133.0,33264344.0,34153160.0,35062567.0,35958084.0,36801971.0,37722988.0,38637521.0,39511932.0,40557882.0,41564296.0,42225374.0,43139136.0,43965581.0,44932608.0,45827445.0,46704978.0,47620154.0,48545825.0,49387923.0,50355792.0,51225716.0,52204735.0,52953833.0,54056716.0,55003182.0,55693423.0,56648075.0,57434652.0,58438930.0,59329417.0,60173665.0,61094300.0,62027318.0,62832077.0,63874076.0,64728814.0,65588695.0,66496207.0,67365674.0,68256659.0,69178569.0,70211575.0,71082962.0,71839545.0,72752304.0,73917290.0,74596645.0,75446896.0,76437829.0,77209684.0,78143238.0,79004755.0,80464312.0,81173124.0,81894138.0,82738896.0,83484122.0,84526950.0,85440048.0,86160575.0,87304846.0,88087449.0,88989155.0,89852118.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":177.47514397130917,"lower_bound":177.40769940498245,"upper_bound":177.5528964570573,"unit":"ns"},"mean":{"estimate":177.52405927984125,"lower_bound":177.40065656485757,"upper_bound":177.6808606199143,"unit":"ns"},"median":{"estimate":177.3933016117079,"lower_bound":177.34812243097002,"upper_bound":177.44702678270025,"unit":"ns"},"median_abs_dev":{"estimate":0.19844552130583915,"lower_bound":0.1495104229756243,"upper_bound":0.2688526449529746,"unit":"ns"},"slope":{"estimate":177.47514397130917,"lower_bound":177.40769940498245,"upper_bound":177.5528964570573,"unit":"ns"},"change":{"mean":{"estimate":-0.0263424050092278,"lower_bound":-0.02765904339936986,"upper_bound":-0.02524115480063755,"unit":"%"},"median":{"estimate":-0.026393648182038487,"lower_bound":-0.0267017565908354,"upper_bound":-0.0260595038485526,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"mcli/19753","report_directory":"/root/fuel-core/target/criterion/reports/mcli/19753","iteration_count":[2847,5694,8541,11388,14235,17082,19929,22776,25623,28470,31317,34164,37011,39858,42705,45552,48399,51246,54093,56940,59787,62634,65481,68328,71175,74022,76869,79716,82563,85410,88257,91104,93951,96798,99645,102492,105339,108186,111033,113880,116727,119574,122421,125268,128115,130962,133809,136656,139503,142350,145197,148044,150891,153738,156585,159432,162279,165126,167973,170820,173667,176514,179361,182208,185055,187902,190749,193596,196443,199290,202137,204984,207831,210678,213525,216372,219219,222066,224913,227760,230607,233454,236301,239148,241995,244842,247689,250536,253383,256230,259077,261924,264771,267618,270465,273312,276159,279006,281853,284700],"measured_values":[986869.0,1876749.0,2816714.0,3780921.0,4694139.0,5636371.0,6570281.0,7510081.0,8447890.0,9385402.0,10336310.0,11263088.0,12204428.0,13141972.0,14079820.0,15019580.0,15959286.0,16937857.0,17832640.0,18773201.0,19716617.0,20650915.0,21599978.0,22527076.0,23468717.0,24528508.0,25366654.0,26282718.0,27221365.0,28161223.0,29129068.0,30035446.0,30979875.0,31945946.0,32859198.0,33793682.0,34739433.0,35672863.0,36603495.0,37597282.0,38511821.0,39439128.0,40360000.0,41303063.0,42240740.0,43201627.0,44125408.0,45054756.0,45997373.0,46937378.0,47907559.0,48811585.0,49744931.0,50714508.0,51635441.0,52694180.0,53506761.0,54444406.0,55390084.0,56564087.0,57512354.0,58274290.0,59165151.0,60074468.0,61058298.0,61983096.0,62911916.0,63910657.0,65149391.0,65822777.0,66708608.0,67608998.0,68529722.0,69630777.0,70542901.0,71344891.0,72291388.0,73256589.0,74203766.0,75121174.0,76118873.0,77031560.0,77908205.0,79196715.0,79833512.0,80872573.0,81742159.0,82608485.0,83577054.0,84483517.0,85423074.0,86368026.0,87293339.0,88388571.0,89333995.0,90148231.0,91130354.0,92028043.0,92932626.0,93901142.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":329.9813134714538,"lower_bound":329.8935050338993,"upper_bound":330.0834165220668,"unit":"ns"},"mean":{"estimate":330.1137681287612,"lower_bound":329.88559091957677,"upper_bound":330.5019821632185,"unit":"ns"},"median":{"estimate":329.774450055272,"lower_bound":329.7411672590167,"upper_bound":329.84252309986164,"unit":"ns"},"median_abs_dev":{"estimate":0.1189711883522747,"lower_bound":0.07464602319820697,"upper_bound":0.1997302756948347,"unit":"ns"},"slope":{"estimate":329.9813134714538,"lower_bound":329.8935050338993,"upper_bound":330.0834165220668,"unit":"ns"},"change":{"mean":{"estimate":-0.0004901377079159497,"lower_bound":-0.002137075139411612,"upper_bound":0.0010320882536054288,"unit":"%"},"median":{"estimate":-0.00035545066217468335,"lower_bound":-0.00055236258978697,"upper_bound":-0.00011889280811372416,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcli/29629","report_directory":"/root/fuel-core/target/criterion/reports/mcli/29629","iteration_count":[1943,3886,5829,7772,9715,11658,13601,15544,17487,19430,21373,23316,25259,27202,29145,31088,33031,34974,36917,38860,40803,42746,44689,46632,48575,50518,52461,54404,56347,58290,60233,62176,64119,66062,68005,69948,71891,73834,75777,77720,79663,81606,83549,85492,87435,89378,91321,93264,95207,97150,99093,101036,102979,104922,106865,108808,110751,112694,114637,116580,118523,120466,122409,124352,126295,128238,130181,132124,134067,136010,137953,139896,141839,143782,145725,147668,149611,151554,153497,155440,157383,159326,161269,163212,165155,167098,169041,170984,172927,174870,176813,178756,180699,182642,184585,186528,188471,190414,192357,194300],"measured_values":[1018879.0,1883355.0,2826977.0,3766879.0,4707185.0,5650388.0,6591141.0,7529677.0,8468700.0,9416157.0,10360751.0,11300978.0,12239410.0,13182690.0,14123350.0,15061887.0,16065029.0,16952205.0,17895689.0,18839144.0,19785221.0,20719470.0,21666807.0,22606315.0,23541457.0,24487343.0,25424373.0,26364458.0,27296143.0,28244539.0,29186427.0,30128864.0,31068714.0,32015630.0,32952825.0,34077706.0,34848578.0,35784828.0,36737967.0,37883064.0,38611729.0,39575198.0,40504151.0,41475145.0,42384446.0,43319230.0,44255148.0,45231097.0,46146542.0,47089487.0,48067536.0,49039032.0,49914725.0,50850372.0,51791315.0,52745097.0,53669433.0,54734584.0,55597918.0,56935476.0,57491289.0,58400414.0,59338266.0,60282364.0,61222226.0,62259687.0,63146898.0,64038924.0,64983852.0,65910669.0,66863751.0,67913635.0,68758647.0,69698202.0,70643148.0,71591739.0,72528032.0,73476877.0,74411517.0,75380616.0,76288206.0,77230359.0,78166586.0,79151432.0,80051403.0,80991983.0,81956207.0,82883913.0,83828987.0,84766592.0,85765550.0,86658879.0,87604123.0,88570621.0,89784636.0,90422098.0,91658389.0,92263860.0,93218791.0,94212082.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":484.9572377590652,"lower_bound":484.82730122898477,"upper_bound":485.11346435588257,"unit":"ns"},"mean":{"estimate":485.2954400929297,"lower_bound":484.815485434917,"upper_bound":486.15733280517543,"unit":"ns"},"median":{"estimate":484.7478750184939,"lower_bound":484.7087836678676,"upper_bound":484.7677226806687,"unit":"ns"},"median_abs_dev":{"estimate":0.15124123619280205,"lower_bound":0.09922172677600216,"upper_bound":0.21410478800172736,"unit":"ns"},"slope":{"estimate":484.9572377590652,"lower_bound":484.82730122898477,"upper_bound":485.11346435588257,"unit":"ns"},"change":{"mean":{"estimate":0.0013639118396147065,"lower_bound":-0.00029581945627908,"upper_bound":0.0034594407974147348,"unit":"%"},"median":{"estimate":0.0009053740855975434,"lower_bound":0.00046913657043560217,"upper_bound":0.0012729308455159405,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcli/44444","report_directory":"/root/fuel-core/target/criterion/reports/mcli/44444","iteration_count":[859,1718,2577,3436,4295,5154,6013,6872,7731,8590,9449,10308,11167,12026,12885,13744,14603,15462,16321,17180,18039,18898,19757,20616,21475,22334,23193,24052,24911,25770,26629,27488,28347,29206,30065,30924,31783,32642,33501,34360,35219,36078,36937,37796,38655,39514,40373,41232,42091,42950,43809,44668,45527,46386,47245,48104,48963,49822,50681,51540,52399,53258,54117,54976,55835,56694,57553,58412,59271,60130,60989,61848,62707,63566,64425,65284,66143,67002,67861,68720,69579,70438,71297,72156,73015,73874,74733,75592,76451,77310,78169,79028,79887,80746,81605,82464,83323,84182,85041,85900],"measured_values":[998639.0,1958957.0,2880916.0,3812831.0,4761373.0,5711319.0,6663166.0,7614090.0,8565815.0,9510653.0,10460112.0,11403418.0,12375422.0,13293104.0,14217127.0,15115198.0,16056674.0,17098872.0,18206286.0,18975343.0,19893896.0,20794346.0,21726938.0,22685256.0,23666763.0,24547116.0,25462974.0,26434141.0,27378466.0,28250341.0,29210015.0,30200009.0,31122648.0,32043624.0,33018757.0,33943004.0,34834776.0,35832233.0,36724062.0,37596858.0,38590409.0,39597338.0,40785602.0,41565839.0,42244905.0,43215633.0,44140984.0,45152917.0,46064382.0,47004305.0,47870215.0,48777598.0,49995858.0,50914699.0,51589390.0,52565507.0,53567055.0,54509686.0,55315406.0,56339267.0,57583087.0,58182005.0,59131907.0,60051230.0,61049759.0,61952845.0,62854578.0,63915195.0,64659934.0,65784299.0,66603315.0,67610354.0,68537579.0,69446035.0,70298011.0,71201921.0,72155164.0,73068208.0,74004398.0,75011066.0,76233183.0,76906030.0,77928731.0,78784567.0,79654859.0,80729551.0,81657904.0,82498370.0,83402647.0,84329215.0,85370919.0,86271327.0,87243164.0,88068519.0,89066305.0,90064069.0,91086308.0,92048389.0,92837143.0,93783036.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":1092.9691651517767,"lower_bound":1092.5555764054943,"upper_bound":1093.4700175109217,"unit":"ns"},"mean":{"estimate":1097.919015579072,"lower_bound":1096.1761786023735,"upper_bound":1100.015217709856,"unit":"ns"},"median":{"estimate":1094.3046788331164,"lower_bound":1093.1712492349052,"upper_bound":1097.2365019160993,"unit":"ns"},"median_abs_dev":{"estimate":4.5109248763186764,"lower_bound":2.863553632342904,"upper_bound":7.001839781810178,"unit":"ns"},"slope":{"estimate":1092.9691651517767,"lower_bound":1092.5555764054943,"upper_bound":1093.4700175109217,"unit":"ns"},"change":{"mean":{"estimate":0.0007458235307216121,"lower_bound":-0.0018691040400654801,"upper_bound":0.0033865925124931914,"unit":"%"},"median":{"estimate":0.0020928736466940823,"lower_bound":0.0006176105013369071,"upper_bound":0.004568944568721367,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcli/66666","report_directory":"/root/fuel-core/target/criterion/reports/mcli/66666","iteration_count":[580,1160,1740,2320,2900,3480,4060,4640,5220,5800,6380,6960,7540,8120,8700,9280,9860,10440,11020,11600,12180,12760,13340,13920,14500,15080,15660,16240,16820,17400,17980,18560,19140,19720,20300,20880,21460,22040,22620,23200,23780,24360,24940,25520,26100,26680,27260,27840,28420,29000,29580,30160,30740,31320,31900,32480,33060,33640,34220,34800,35380,35960,36540,37120,37700,38280,38860,39440,40020,40600,41180,41760,42340,42920,43500,44080,44660,45240,45820,46400,46980,47560,48140,48720,49300,49880,50460,51040,51620,52200,52780,53360,53940,54520,55100,55680,56260,56840,57420,58000],"measured_values":[1016757.0,1943295.0,2916253.0,3887855.0,4858915.0,5829596.0,6800595.0,7772964.0,8744632.0,9712409.0,10682499.0,11642048.0,12636682.0,13558127.0,14540702.0,15518863.0,16439246.0,17370720.0,18315400.0,19250084.0,20235917.0,21166134.0,22115238.0,23071570.0,24002207.0,24921570.0,25870935.0,26899421.0,27774409.0,28722952.0,29675459.0,30622295.0,31562121.0,32631543.0,33458486.0,34456895.0,35331054.0,36182583.0,37218430.0,38115053.0,39030452.0,39961518.0,40942224.0,41967214.0,42866570.0,43767429.0,44856309.0,45751535.0,46663214.0,47629205.0,48909497.0,49836142.0,50696125.0,51667466.0,52931061.0,54357506.0,55229297.0,55889715.0,56788007.0,57851589.0,58778775.0,59689593.0,60475781.0,61519423.0,62366356.0,63218780.0,64184508.0,65006399.0,66366580.0,66915195.0,67778901.0,68654608.0,69732689.0,70612980.0,71686359.0,72935919.0,73433600.0,74393765.0,75967644.0,77000203.0,77844190.0,78726331.0,79679120.0,80487992.0,81387657.0,82241908.0,83055278.0,83998612.0,85099550.0,85953415.0,86881951.0,87786113.0,88660622.0,89491717.0,90388191.0,91648627.0,92549015.0,93228328.0,94157056.0,95379633.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":1649.242496170564,"lower_bound":1647.6393526551242,"upper_bound":1651.0072699746554,"unit":"ns"},"mean":{"estimate":1655.428711938529,"lower_bound":1652.7865094193182,"upper_bound":1658.483203919655,"unit":"ns"},"median":{"estimate":1651.8625078629839,"lower_bound":1649.1907937540664,"upper_bound":1655.1812405716423,"unit":"ns"},"median_abs_dev":{"estimate":10.604017452806772,"lower_bound":8.05304530659872,"upper_bound":13.536219051708764,"unit":"ns"},"slope":{"estimate":1649.242496170564,"lower_bound":1647.6393526551242,"upper_bound":1651.0072699746554,"unit":"ns"},"change":{"mean":{"estimate":0.0068592754967722325,"lower_bound":0.004352831630554666,"upper_bound":0.009191405483157167,"unit":"%"},"median":{"estimate":0.007016144224458287,"lower_bound":0.0049311997144350144,"upper_bound":0.009178023084607911,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcli/100000","report_directory":"/root/fuel-core/target/criterion/reports/mcli/100000","iteration_count":[392,784,1176,1568,1960,2352,2744,3136,3528,3920,4312,4704,5096,5488,5880,6272,6664,7056,7448,7840,8232,8624,9016,9408,9800,10192,10584,10976,11368,11760,12152,12544,12936,13328,13720,14112,14504,14896,15288,15680,16072,16464,16856,17248,17640,18032,18424,18816,19208,19600,19992,20384,20776,21168,21560,21952,22344,22736,23128,23520,23912,24304,24696,25088,25480,25872,26264,26656,27048,27440,27832,28224,28616,29008,29400,29792,30184,30576,30968,31360,31752,32144,32536,32928,33320,33712,34104,34496,34888,35280,35672,36064,36456,36848,37240,37632,38024,38416,38808,39200],"measured_values":[1029740.0,1962034.0,2941333.0,3920854.0,4899979.0,5879571.0,6860976.0,7843438.0,8820455.0,9801456.0,10778818.0,11761331.0,12740763.0,13712242.0,14692983.0,15662403.0,16637718.0,17611991.0,18601886.0,19547369.0,20515733.0,21488813.0,22453963.0,23421331.0,24390506.0,25357712.0,26314364.0,27339173.0,28289128.0,29216752.0,30168724.0,31131822.0,32087342.0,33186304.0,34044589.0,35051702.0,35921755.0,36885647.0,37852774.0,38862523.0,39764642.0,40750617.0,41710969.0,42670882.0,43652856.0,44603366.0,45502795.0,46476523.0,47406300.0,48347228.0,49306605.0,50240002.0,51190737.0,52179503.0,53117749.0,54078912.0,55296618.0,55983372.0,56869171.0,57848006.0,58778212.0,59786375.0,60798060.0,61733497.0,62661920.0,63630960.0,64588337.0,65527413.0,66502397.0,67511099.0,68424880.0,69557845.0,70422039.0,71384235.0,72343550.0,73291509.0,74202555.0,75201856.0,76131164.0,77063821.0,77993961.0,78963148.0,79952300.0,80833010.0,81781225.0,82779707.0,83761882.0,84791965.0,85722955.0,86704899.0,87620755.0,88634413.0,90009727.0,90900007.0,91773348.0,92642009.0,94337708.0,95006345.0,96580561.0,97778980.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":2465.103018165889,"lower_bound":2462.4925789493113,"upper_bound":2468.2021565587784,"unit":"ns"},"mean":{"estimate":2476.4447512952056,"lower_bound":2472.514788021721,"upper_bound":2481.0884319925494,"unit":"ns"},"median":{"estimate":2473.3302185004436,"lower_bound":2464.678277080063,"upper_bound":2477.3443827201936,"unit":"ns"},"median_abs_dev":{"estimate":21.565365924775865,"lower_bound":11.754230086041025,"upper_bound":24.596200193029247,"unit":"ns"},"slope":{"estimate":2465.103018165889,"lower_bound":2462.4925789493113,"upper_bound":2468.2021565587784,"unit":"ns"},"change":{"mean":{"estimate":-0.0022211946028763974,"lower_bound":-0.004594111601224951,"upper_bound":-4.771965641600681e-6,"unit":"%"},"median":{"estimate":-0.0008217410496618172,"lower_bound":-0.004384330244875612,"upper_bound":0.0011164943849556342,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"mcli","benchmarks":["mcli/1","mcli/10","mcli/100","mcli/1000","mcli/10000","mcli/19753","mcli/29629","mcli/44444","mcli/66666","mcli/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/mcli"} +{"reason":"benchmark-complete","id":"mcp/1","report_directory":"/root/fuel-core/target/criterion/reports/mcp/1","iteration_count":[15967,31934,47901,63868,79835,95802,111769,127736,143703,159670,175637,191604,207571,223538,239505,255472,271439,287406,303373,319340,335307,351274,367241,383208,399175,415142,431109,447076,463043,479010,494977,510944,526911,542878,558845,574812,590779,606746,622713,638680,654647,670614,686581,702548,718515,734482,750449,766416,782383,798350,814317,830284,846251,862218,878185,894152,910119,926086,942053,958020,973987,989954,1005921,1021888,1037855,1053822,1069789,1085756,1101723,1117690,1133657,1149624,1165591,1181558,1197525,1213492,1229459,1245426,1261393,1277360,1293327,1309294,1325261,1341228,1357195,1373162,1389129,1405096,1421063,1437030,1452997,1468964,1484931,1500898,1516865,1532832,1548799,1564766,1580733,1596700],"measured_values":[759460.0,1396391.0,2098070.0,2795482.0,3499267.0,4234654.0,4919530.0,5621371.0,6334291.0,7083121.0,7714841.0,8414886.0,9208334.0,9907690.0,10558508.0,11188925.0,11887958.0,12702356.0,13376562.0,14009195.0,14887458.0,15371477.0,16085658.0,16744947.0,17541681.0,18102314.0,18927551.0,19691909.0,20152186.0,21193660.0,21834115.0,22542499.0,23206831.0,23841663.0,24602855.0,25295905.0,26007190.0,26670889.0,27461169.0,28332760.0,28766388.0,29368381.0,30085899.0,30808291.0,31527533.0,32285008.0,32992576.0,33693153.0,34286290.0,35109392.0,35668769.0,36480910.0,37155120.0,37752850.0,38737955.0,39447024.0,39911679.0,40697680.0,41277537.0,41931933.0,42796953.0,43537538.0,44288570.0,44983886.0,45751950.0,46161959.0,47085576.0,47888943.0,48782594.0,49369830.0,49872720.0,50495500.0,51371085.0,51977311.0,52729565.0,53291833.0,54201366.0,54637462.0,55609426.0,56073620.0,56807392.0,57708572.0,58273708.0,58739752.0,59722305.0,60209740.0,61124358.0,61851551.0,62429793.0,63015113.0,63995148.0,64560470.0,65385562.0,65999946.0,66609375.0,67639835.0,68234667.0,68732611.0,69410156.0,70094115.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":43.97195301832862,"lower_bound":43.94700656125815,"upper_bound":43.99734266513813,"unit":"ns"},"mean":{"estimate":44.00866008208684,"lower_bound":43.94922132231885,"upper_bound":44.097098791353666,"unit":"ns"},"median":{"estimate":43.96287310163649,"lower_bound":43.93151922740181,"upper_bound":44.007266723728804,"unit":"ns"},"median_abs_dev":{"estimate":0.1506902138690261,"lower_bound":0.10201419849975522,"upper_bound":0.1862832676717773,"unit":"ns"},"slope":{"estimate":43.97195301832862,"lower_bound":43.94700656125815,"upper_bound":43.99734266513813,"unit":"ns"},"change":{"mean":{"estimate":-0.025885274106165812,"lower_bound":-0.027642080446612045,"upper_bound":-0.02373865640875927,"unit":"%"},"median":{"estimate":-0.026173603141367408,"lower_bound":-0.02713402777099605,"upper_bound":-0.02486402032315871,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"mcp/10","report_directory":"/root/fuel-core/target/criterion/reports/mcp/10","iteration_count":[15958,31916,47874,63832,79790,95748,111706,127664,143622,159580,175538,191496,207454,223412,239370,255328,271286,287244,303202,319160,335118,351076,367034,382992,398950,414908,430866,446824,462782,478740,494698,510656,526614,542572,558530,574488,590446,606404,622362,638320,654278,670236,686194,702152,718110,734068,750026,765984,781942,797900,813858,829816,845774,861732,877690,893648,909606,925564,941522,957480,973438,989396,1005354,1021312,1037270,1053228,1069186,1085144,1101102,1117060,1133018,1148976,1164934,1180892,1196850,1212808,1228766,1244724,1260682,1276640,1292598,1308556,1324514,1340472,1356430,1372388,1388346,1404304,1420262,1436220,1452178,1468136,1484094,1500052,1516010,1531968,1547926,1563884,1579842,1595800],"measured_values":[702890.0,1379316.0,2064862.0,2753868.0,3463861.0,4134227.0,4993550.0,5522103.0,6143594.0,6881626.0,7567370.0,8203563.0,8894604.0,9567824.0,10379109.0,10996836.0,11602679.0,12277712.0,12990976.0,13695058.0,14362681.0,15123903.0,15733700.0,16424197.0,17128320.0,17805830.0,18495041.0,19162971.0,19961090.0,20565697.0,21223660.0,21910603.0,22591440.0,23282145.0,23997672.0,24702850.0,25366396.0,26189934.0,26715426.0,27468368.0,28162830.0,28754778.0,29498428.0,30170997.0,30761502.0,31533440.0,32202476.0,32923187.0,33890597.0,34297951.0,34938424.0,35726448.0,36270224.0,37053834.0,37735596.0,38411836.0,39130804.0,39771687.0,40457568.0,41113981.0,42239693.0,42766016.0,43210130.0,43951588.0,44623264.0,45598966.0,46358529.0,46816216.0,47216251.0,48095840.0,48764306.0,49352519.0,50056868.0,50717100.0,51510299.0,52122632.0,52849429.0,53524572.0,54193597.0,54842755.0,55833330.0,56239817.0,56917629.0,57660805.0,58299622.0,59032645.0,59601549.0,60192604.0,61040212.0,61984192.0,62482343.0,63223731.0,63862334.0,64550340.0,65044477.0,65867969.0,66554475.0,67324232.0,67923408.0,68655201.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":43.015038997280676,"lower_bound":42.99300620706103,"upper_bound":43.03883304602697,"unit":"ns"},"mean":{"estimate":43.03617914649424,"lower_bound":42.99493939517577,"upper_bound":43.08770408181385,"unit":"ns"},"median":{"estimate":42.98639925849659,"lower_bound":42.97039049538938,"upper_bound":43.01016548309442,"unit":"ns"},"median_abs_dev":{"estimate":0.09199778412177857,"lower_bound":0.06955563852005286,"upper_bound":0.1295509184558947,"unit":"ns"},"slope":{"estimate":43.015038997280676,"lower_bound":42.99300620706103,"upper_bound":43.03883304602697,"unit":"ns"},"change":{"mean":{"estimate":-0.02892455006237682,"lower_bound":-0.030741915348695737,"upper_bound":-0.027129322089463444,"unit":"%"},"median":{"estimate":-0.029392047048976022,"lower_bound":-0.030888516835802515,"upper_bound":-0.028291816891244253,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"mcp/100","report_directory":"/root/fuel-core/target/criterion/reports/mcp/100","iteration_count":[15531,31062,46593,62124,77655,93186,108717,124248,139779,155310,170841,186372,201903,217434,232965,248496,264027,279558,295089,310620,326151,341682,357213,372744,388275,403806,419337,434868,450399,465930,481461,496992,512523,528054,543585,559116,574647,590178,605709,621240,636771,652302,667833,683364,698895,714426,729957,745488,761019,776550,792081,807612,823143,838674,854205,869736,885267,900798,916329,931860,947391,962922,978453,993984,1009515,1025046,1040577,1056108,1071639,1087170,1102701,1118232,1133763,1149294,1164825,1180356,1195887,1211418,1226949,1242480,1258011,1273542,1289073,1304604,1320135,1335666,1351197,1366728,1382259,1397790,1413321,1428852,1444383,1459914,1475445,1490976,1506507,1522038,1537569,1553100],"measured_values":[1027067.0,1398596.0,2094851.0,2805626.0,3497300.0,4229282.0,4905081.0,5597330.0,6284898.0,7011707.0,7732615.0,8418852.0,9217129.0,9890730.0,10582206.0,11243999.0,11931163.0,12623071.0,13320608.0,14077354.0,14707030.0,15398141.0,16128418.0,16844178.0,17560696.0,18212346.0,19219651.0,19639895.0,20367870.0,21008028.0,21792167.0,22513445.0,23109435.0,23778749.0,24549448.0,25219839.0,25906240.0,26673552.0,27365004.0,28086399.0,28876280.0,29419889.0,30115428.0,30837508.0,31660259.0,32237284.0,32899432.0,33692723.0,34331817.0,35025614.0,35866285.0,36480698.0,37111024.0,37833350.0,38479675.0,39265470.0,39919706.0,40716481.0,41392100.0,42151895.0,42773344.0,43526829.0,44050483.0,45125279.0,45636296.0,46318389.0,47033898.0,47702739.0,48385760.0,49038795.0,49874377.0,50485525.0,51117472.0,52166288.0,52651833.0,53271078.0,54334139.0,54725978.0,55377148.0,56105175.0,56735238.0,57581884.0,58276524.0,58868149.0,59524204.0,60321448.0,61032297.0,61652314.0,62404371.0,63088046.0,63861700.0,64503270.0,65131479.0,65973684.0,66750799.0,67279300.0,67930640.0,68650903.0,69394276.0,70183706.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":45.16549075471523,"lower_bound":45.148136112109604,"upper_bound":45.185194688095535,"unit":"ns"},"mean":{"estimate":45.3872322124783,"lower_bound":45.159618481160756,"upper_bound":45.821464349866616,"unit":"ns"},"median":{"estimate":45.154736002904585,"lower_bound":45.13878014580159,"upper_bound":45.17339899276463,"unit":"ns"},"median_abs_dev":{"estimate":0.07563262337308141,"lower_bound":0.059836509028844395,"upper_bound":0.09692572281215472,"unit":"ns"},"slope":{"estimate":45.16549075471523,"lower_bound":45.148136112109604,"upper_bound":45.185194688095535,"unit":"ns"},"change":{"mean":{"estimate":-0.0029965134035778718,"lower_bound":-0.009529585690380689,"upper_bound":0.007427336743031684,"unit":"%"},"median":{"estimate":-0.006583128933209781,"lower_bound":-0.006963735482340305,"upper_bound":-0.006022837207869558,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcp/1000","report_directory":"/root/fuel-core/target/criterion/reports/mcp/1000","iteration_count":[11269,22538,33807,45076,56345,67614,78883,90152,101421,112690,123959,135228,146497,157766,169035,180304,191573,202842,214111,225380,236649,247918,259187,270456,281725,292994,304263,315532,326801,338070,349339,360608,371877,383146,394415,405684,416953,428222,439491,450760,462029,473298,484567,495836,507105,518374,529643,540912,552181,563450,574719,585988,597257,608526,619795,631064,642333,653602,664871,676140,687409,698678,709947,721216,732485,743754,755023,766292,777561,788830,800099,811368,822637,833906,845175,856444,867713,878982,890251,901520,912789,924058,935327,946596,957865,969134,980403,991672,1002941,1014210,1025479,1036748,1048017,1059286,1070555,1081824,1093093,1104362,1115631,1126900],"measured_values":[733248.0,1342951.0,2010516.0,2683692.0,3354431.0,4022691.0,4695156.0,5367933.0,6034132.0,6707972.0,7379746.0,8049934.0,8717896.0,9395287.0,10061068.0,10738109.0,11396660.0,12065513.0,12748019.0,13408373.0,14081463.0,14752279.0,15427271.0,16102520.0,16768978.0,17465578.0,18145670.0,18777376.0,19450872.0,20115123.0,20810566.0,21465309.0,22250354.0,22802008.0,23583118.0,24168924.0,24867905.0,25605292.0,26316108.0,26861704.0,27495231.0,28170923.0,28842198.0,29568158.0,30184020.0,30850736.0,31531288.0,32167909.0,32834557.0,33504473.0,34189187.0,34891438.0,35568728.0,36233141.0,36907052.0,37690340.0,38220879.0,38860505.0,39576979.0,40208021.0,40899414.0,41564779.0,42377522.0,42910053.0,43580405.0,44273149.0,44938906.0,45598158.0,46409024.0,47017903.0,47608488.0,48283357.0,48952395.0,49644240.0,50311405.0,51381569.0,51641383.0,52395200.0,53011474.0,53652674.0,54670509.0,55003085.0,55676672.0,56314729.0,56980888.0,57670451.0,58348509.0,59119764.0,60008062.0,60376783.0,61016876.0,61874781.0,62324426.0,63135447.0,63718324.0,64342406.0,65150585.0,65720377.0,66343157.0,67063867.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":59.55993743079599,"lower_bound":59.533704028972764,"upper_bound":59.59041288650029,"unit":"ns"},"mean":{"estimate":59.61100762270692,"lower_bound":59.541626203386855,"upper_bound":59.733582870391466,"unit":"ns"},"median":{"estimate":59.52236755701482,"lower_bound":59.514820946080334,"upper_bound":59.530849626803125,"unit":"ns"},"median_abs_dev":{"estimate":0.03612232246628363,"lower_bound":0.02564348005961721,"upper_bound":0.0497886786391419,"unit":"ns"},"slope":{"estimate":59.55993743079599,"lower_bound":59.533704028972764,"upper_bound":59.59041288650029,"unit":"ns"},"change":{"mean":{"estimate":0.028951622206183192,"lower_bound":0.025914634270466242,"upper_bound":0.03198730716221143,"unit":"%"},"median":{"estimate":0.028769819286857512,"lower_bound":0.028630295310007492,"upper_bound":0.028951887229325957,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcp/10000","report_directory":"/root/fuel-core/target/criterion/reports/mcp/10000","iteration_count":[2386,4772,7158,9544,11930,14316,16702,19088,21474,23860,26246,28632,31018,33404,35790,38176,40562,42948,45334,47720,50106,52492,54878,57264,59650,62036,64422,66808,69194,71580,73966,76352,78738,81124,83510,85896,88282,90668,93054,95440,97826,100212,102598,104984,107370,109756,112142,114528,116914,119300,121686,124072,126458,128844,131230,133616,136002,138388,140774,143160,145546,147932,150318,152704,155090,157476,159862,162248,164634,167020,169406,171792,174178,176564,178950,181336,183722,186108,188494,190880,193266,195652,198038,200424,202810,205196,207582,209968,212354,214740,217126,219512,221898,224284,226670,229056,231442,233828,236214,238600],"measured_values":[1040758.0,2049941.0,3184142.0,3778647.0,4622606.0,5600181.0,6399393.0,7610303.0,8760175.0,9635203.0,10247281.0,10957413.0,11426949.0,12869126.0,14108418.0,14883965.0,15888720.0,17507535.0,18099241.0,18497927.0,19327356.0,20861504.0,21193056.0,22411087.0,23065503.0,23820437.0,25097921.0,26407401.0,26310036.0,27703186.0,28420067.0,29376127.0,29666914.0,31503514.0,32273814.0,32958226.0,34068595.0,35948085.0,35996136.0,36464777.0,37543406.0,38849032.0,39758297.0,40325330.0,41854799.0,42978637.0,43531422.0,44354069.0,45301690.0,46595342.0,46591707.0,48426578.0,50254572.0,49157002.0,50317485.0,51982975.0,52726709.0,53448774.0,53874473.0,55042777.0,55204710.0,56474534.0,58195340.0,58516945.0,60017354.0,61471784.0,63326360.0,64442385.0,64057255.0,64456378.0,64403929.0,66539762.0,67258995.0,69416317.0,70218695.0,70718384.0,71451441.0,72643661.0,73387283.0,73557665.0,76983071.0,74789305.0,77842927.0,77712892.0,78898977.0,79992238.0,79458665.0,82290697.0,83189449.0,82834674.0,84299423.0,86099636.0,87869158.0,90434856.0,86962781.0,90127883.0,91343892.0,90295108.0,92859610.0,95441764.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":389.517487258503,"lower_bound":388.0708324361159,"upper_bound":390.969406569099,"unit":"ns"},"mean":{"estimate":390.4202603766943,"lower_bound":388.5568393856414,"upper_bound":392.5625512108003,"unit":"ns"},"median":{"estimate":388.21620993281476,"lower_bound":387.25078234143615,"upper_bound":389.8479582867654,"unit":"ns"},"median_abs_dev":{"estimate":5.5121961445187555,"lower_bound":3.9831396681485143,"upper_bound":7.180759514620207,"unit":"ns"},"slope":{"estimate":389.517487258503,"lower_bound":388.0708324361159,"upper_bound":390.969406569099,"unit":"ns"},"change":{"mean":{"estimate":0.1283489913792557,"lower_bound":0.12240537995311239,"upper_bound":0.1354048267096819,"unit":"%"},"median":{"estimate":0.12301398528775853,"lower_bound":0.11893102297662583,"upper_bound":0.12822994279074607,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcp/19753","report_directory":"/root/fuel-core/target/criterion/reports/mcp/19753","iteration_count":[678,1356,2034,2712,3390,4068,4746,5424,6102,6780,7458,8136,8814,9492,10170,10848,11526,12204,12882,13560,14238,14916,15594,16272,16950,17628,18306,18984,19662,20340,21018,21696,22374,23052,23730,24408,25086,25764,26442,27120,27798,28476,29154,29832,30510,31188,31866,32544,33222,33900,34578,35256,35934,36612,37290,37968,38646,39324,40002,40680,41358,42036,42714,43392,44070,44748,45426,46104,46782,47460,48138,48816,49494,50172,50850,51528,52206,52884,53562,54240,54918,55596,56274,56952,57630,58308,58986,59664,60342,61020,61698,62376,63054,63732,64410,65088,65766,66444,67122,67800],"measured_values":[955399.0,1813985.0,2718859.0,3625718.0,4531967.0,5430635.0,6326705.0,7233942.0,8142981.0,9136525.0,9987157.0,10852569.0,11741718.0,12685209.0,13613238.0,14517595.0,15398290.0,16329912.0,17327221.0,18189780.0,18972629.0,20053544.0,20831608.0,21725158.0,22675519.0,23557176.0,24481197.0,25344482.0,26291016.0,27217921.0,28145554.0,28912253.0,29912192.0,30778949.0,31783774.0,32653032.0,33561299.0,34681696.0,35395962.0,36273387.0,37232525.0,38096537.0,38891156.0,39757577.0,40694422.0,41663842.0,42572489.0,43516823.0,44420906.0,45260221.0,46154311.0,46955332.0,48028388.0,48849664.0,50032479.0,50919635.0,51571336.0,52520047.0,53315230.0,54488422.0,55174310.0,56372271.0,57048144.0,58316637.0,59043739.0,59773539.0,60794405.0,61436535.0,62497239.0,63407421.0,64329081.0,65529140.0,66464551.0,67124099.0,68473117.0,69076624.0,69933360.0,71231844.0,71949763.0,72466598.0,73795432.0,74582000.0,75103341.0,75942401.0,77269512.0,78013281.0,78781594.0,79883608.0,80619591.0,81458590.0,82171209.0,83439371.0,84350752.0,85342011.0,86191963.0,87083887.0,87899545.0,88838647.0,89594959.0,90235739.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":1337.5877924231468,"lower_bound":1336.6745878566069,"upper_bound":1338.532324888587,"unit":"ns"},"mean":{"estimate":1338.173776927777,"lower_bound":1336.9451419021213,"upper_bound":1339.9703253975933,"unit":"ns"},"median":{"estimate":1337.0692538077178,"lower_bound":1336.1971474135887,"upper_bound":1337.817968113499,"unit":"ns"},"median_abs_dev":{"estimate":3.0188024371279023,"lower_bound":2.1656365378227123,"upper_bound":3.9266303137695524,"unit":"ns"},"slope":{"estimate":1337.5877924231468,"lower_bound":1336.6745878566069,"upper_bound":1338.532324888587,"unit":"ns"},"change":{"mean":{"estimate":-0.036963435229404484,"lower_bound":-0.03886757654642429,"upper_bound":-0.03512072544761479,"unit":"%"},"median":{"estimate":-0.03647687044844394,"lower_bound":-0.03722201212381215,"upper_bound":-0.03583300862165828,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"mcp/29629","report_directory":"/root/fuel-core/target/criterion/reports/mcp/29629","iteration_count":[464,928,1392,1856,2320,2784,3248,3712,4176,4640,5104,5568,6032,6496,6960,7424,7888,8352,8816,9280,9744,10208,10672,11136,11600,12064,12528,12992,13456,13920,14384,14848,15312,15776,16240,16704,17168,17632,18096,18560,19024,19488,19952,20416,20880,21344,21808,22272,22736,23200,23664,24128,24592,25056,25520,25984,26448,26912,27376,27840,28304,28768,29232,29696,30160,30624,31088,31552,32016,32480,32944,33408,33872,34336,34800,35264,35728,36192,36656,37120,37584,38048,38512,38976,39440,39904,40368,40832,41296,41760,42224,42688,43152,43616,44080,44544,45008,45472,45936,46400],"measured_values":[982077.0,1861654.0,2801658.0,3728776.0,4650979.0,5574252.0,6513874.0,7444190.0,8369942.0,9303058.0,10234849.0,11161963.0,12116229.0,13020641.0,13938227.0,14866404.0,15778466.0,16733531.0,17669169.0,18614814.0,19499664.0,20422541.0,21347769.0,22278799.0,23237494.0,24175440.0,25179115.0,26026994.0,26985515.0,27888139.0,28814098.0,29771113.0,30733836.0,31594601.0,32551689.0,33466352.0,34395964.0,35348589.0,36244899.0,37188344.0,38112433.0,39090389.0,40070524.0,40966842.0,41785233.0,42736783.0,43707930.0,44648892.0,45582555.0,46538043.0,47462025.0,48349779.0,49249351.0,50276475.0,51244590.0,52044761.0,53021022.0,53916732.0,55343611.0,55748377.0,56705745.0,57663626.0,58589528.0,59469217.0,60428795.0,61344805.0,62229515.0,63264192.0,64193946.0,65050844.0,66396251.0,66937387.0,67846619.0,68939210.0,69741803.0,70673025.0,71582870.0,72449223.0,73497106.0,74461220.0,75514231.0,76238384.0,77294208.0,78266383.0,78990850.0,79950699.0,80831335.0,81843196.0,82719267.0,83659732.0,84589644.0,85590928.0,86515200.0,87415949.0,88335778.0,89248829.0,90182217.0,91068245.0,92078541.0,93015274.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":2004.58811276071,"lower_bound":2004.022200635768,"upper_bound":2005.2683266128265,"unit":"ns"},"mean":{"estimate":2005.7488622990484,"lower_bound":2004.2158495616995,"upper_bound":2008.3338391749603,"unit":"ns"},"median":{"estimate":2004.1639882877362,"lower_bound":2003.61056483477,"upper_bound":2004.5379567575083,"unit":"ns"},"median_abs_dev":{"estimate":1.5456622591410445,"lower_bound":1.2033698780613358,"upper_bound":2.0906843055552287,"unit":"ns"},"slope":{"estimate":2004.58811276071,"lower_bound":2004.022200635768,"upper_bound":2005.2683266128265,"unit":"ns"},"change":{"mean":{"estimate":0.004436266721736137,"lower_bound":0.002258132488360776,"upper_bound":0.006232206108805015,"unit":"%"},"median":{"estimate":0.004723281600530926,"lower_bound":0.004279804200917832,"upper_bound":0.004936968304019906,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcp/44444","report_directory":"/root/fuel-core/target/criterion/reports/mcp/44444","iteration_count":[285,570,855,1140,1425,1710,1995,2280,2565,2850,3135,3420,3705,3990,4275,4560,4845,5130,5415,5700,5985,6270,6555,6840,7125,7410,7695,7980,8265,8550,8835,9120,9405,9690,9975,10260,10545,10830,11115,11400,11685,11970,12255,12540,12825,13110,13395,13680,13965,14250,14535,14820,15105,15390,15675,15960,16245,16530,16815,17100,17385,17670,17955,18240,18525,18810,19095,19380,19665,19950,20235,20520,20805,21090,21375,21660,21945,22230,22515,22800,23085,23370,23655,23940,24225,24510,24795,25080,25365,25650,25935,26220,26505,26790,27075,27360,27645,27930,28215,28500],"measured_values":[1026184.0,1974682.0,2863356.0,3840493.0,4769446.0,5769142.0,6699030.0,7633159.0,8611029.0,9552420.0,10480291.0,11442561.0,12421365.0,13346659.0,14332901.0,15275322.0,16199931.0,17172927.0,18132467.0,19077715.0,20100918.0,20961314.0,22182156.0,23125306.0,23984419.0,24917007.0,25784488.0,26732145.0,27712186.0,28635665.0,29558664.0,30572235.0,31542494.0,32518664.0,33414185.0,34374284.0,35349457.0,36308183.0,37230065.0,38180548.0,39088974.0,40016801.0,40899072.0,41995459.0,42881523.0,43822905.0,44749585.0,45818920.0,46964917.0,47495525.0,48458402.0,49364410.0,50379815.0,51316074.0,52211359.0,53734370.0,54145881.0,55107643.0,56374566.0,56948111.0,57772512.0,58890558.0,59737240.0,60653074.0,61610733.0,62568826.0,63696671.0,64498927.0,65407096.0,66425929.0,67413877.0,68289458.0,69322455.0,70185033.0,71253941.0,72197094.0,73163196.0,74095391.0,75047877.0,76066202.0,77063967.0,77680598.0,78705446.0,79703851.0,80640071.0,81687308.0,82611391.0,83507341.0,84488015.0,86066569.0,86470896.0,87441588.0,88144414.0,89133072.0,90146064.0,91108656.0,91986473.0,92873645.0,93792991.0,94712352.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":3333.4674682657583,"lower_bound":3331.621954915372,"upper_bound":3335.724123189133,"unit":"ns"},"mean":{"estimate":3345.4447599477617,"lower_bound":3340.3277611766675,"upper_bound":3352.3739014017096,"unit":"ns"},"median":{"estimate":3341.738030900563,"lower_bound":3333.9346548188655,"upper_bound":3346.3000707413694,"unit":"ns"},"median_abs_dev":{"estimate":15.323108739728333,"lower_bound":11.479647484155707,"upper_bound":17.91693013531911,"unit":"ns"},"slope":{"estimate":3333.4674682657583,"lower_bound":3331.621954915372,"upper_bound":3335.724123189133,"unit":"ns"},"change":{"mean":{"estimate":0.004132690223082269,"lower_bound":0.001993555437497652,"upper_bound":0.006297318336719537,"unit":"%"},"median":{"estimate":0.004163469604602232,"lower_bound":0.0017230166128709978,"upper_bound":0.005642605220144814,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcp/66666","report_directory":"/root/fuel-core/target/criterion/reports/mcp/66666","iteration_count":[201,402,603,804,1005,1206,1407,1608,1809,2010,2211,2412,2613,2814,3015,3216,3417,3618,3819,4020,4221,4422,4623,4824,5025,5226,5427,5628,5829,6030,6231,6432,6633,6834,7035,7236,7437,7638,7839,8040,8241,8442,8643,8844,9045,9246,9447,9648,9849,10050,10251,10452,10653,10854,11055,11256,11457,11658,11859,12060,12261,12462,12663,12864,13065,13266,13467,13668,13869,14070,14271,14472,14673,14874,15075,15276,15477,15678,15879,16080,16281,16482,16683,16884,17085,17286,17487,17688,17889,18090,18291,18492,18693,18894,19095,19296,19497,19698,19899,20100],"measured_values":[1025775.0,1938154.0,2895715.0,3864839.0,4833358.0,5794529.0,6765382.0,7768142.0,8694197.0,9667089.0,10620555.0,11592389.0,12568365.0,13520178.0,14484354.0,15455551.0,16417125.0,17379708.0,18346140.0,19331442.0,20369909.0,21346544.0,22234458.0,23200866.0,24156949.0,25175256.0,26150937.0,27110938.0,28112989.0,29052337.0,30034849.0,31336792.0,32016112.0,32936374.0,33891557.0,34875210.0,35818994.0,36863169.0,37909905.0,38777758.0,39690588.0,40617526.0,41564173.0,42703959.0,43491644.0,44484908.0,45384670.0,46366518.0,47335764.0,48286552.0,49218210.0,50314128.0,51235086.0,52127225.0,53099573.0,54054600.0,55035491.0,56024200.0,56981765.0,57934605.0,58874718.0,59862127.0,60932578.0,61831152.0,62730259.0,63740691.0,64705390.0,65670118.0,66685610.0,67596364.0,68554474.0,69511072.0,70586610.0,71778588.0,72659589.0,73416600.0,74422726.0,75450340.0,76321457.0,77741890.0,78309393.0,79191660.0,80162100.0,81114631.0,82258724.0,83459444.0,84056710.0,84984220.0,86046076.0,87004407.0,88081264.0,88899624.0,89905485.0,90901470.0,91811349.0,92785991.0,93705386.0,95212611.0,95847136.0,96634066.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":4810.92827602787,"lower_bound":4808.909202640719,"upper_bound":4813.254910547012,"unit":"ns"},"mean":{"estimate":4814.708144506513,"lower_bound":4810.303737063498,"upper_bound":4821.747851613092,"unit":"ns"},"median":{"estimate":4808.581215607568,"lower_bound":4806.769900497513,"upper_bound":4809.697171549658,"unit":"ns"},"median_abs_dev":{"estimate":6.174071923654725,"lower_bound":4.174792756841141,"upper_bound":8.55355034084197,"unit":"ns"},"slope":{"estimate":4810.92827602787,"lower_bound":4808.909202640719,"upper_bound":4813.254910547012,"unit":"ns"},"change":{"mean":{"estimate":-0.004348834994739481,"lower_bound":-0.009089108393994627,"upper_bound":0.0003855644060228035,"unit":"%"},"median":{"estimate":-0.0197817485376951,"lower_bound":-0.020748843275804063,"upper_bound":-0.008444770859062145,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcp/100000","report_directory":"/root/fuel-core/target/criterion/reports/mcp/100000","iteration_count":[134,268,402,536,670,804,938,1072,1206,1340,1474,1608,1742,1876,2010,2144,2278,2412,2546,2680,2814,2948,3082,3216,3350,3484,3618,3752,3886,4020,4154,4288,4422,4556,4690,4824,4958,5092,5226,5360,5494,5628,5762,5896,6030,6164,6298,6432,6566,6700,6834,6968,7102,7236,7370,7504,7638,7772,7906,8040,8174,8308,8442,8576,8710,8844,8978,9112,9246,9380,9514,9648,9782,9916,10050,10184,10318,10452,10586,10720,10854,10988,11122,11256,11390,11524,11658,11792,11926,12060,12194,12328,12462,12596,12730,12864,12998,13132,13266,13400],"measured_values":[1050900.0,1952038.0,2940489.0,3891943.0,4876332.0,5826296.0,6838177.0,7772568.0,8751154.0,9722233.0,10692878.0,11666529.0,12671514.0,13616479.0,14636648.0,15595637.0,16521884.0,17503118.0,18516114.0,19494300.0,20460664.0,21417594.0,22368160.0,23372619.0,24332390.0,25329043.0,26255846.0,27226488.0,28244805.0,29194282.0,30150325.0,31191663.0,32215086.0,33078510.0,34070391.0,35085118.0,35994720.0,37001078.0,37984720.0,38994434.0,39952457.0,41049896.0,41832051.0,42878523.0,43778482.0,45105367.0,45811078.0,46795224.0,47732193.0,48649727.0,49627267.0,50671247.0,51531762.0,52517566.0,53453764.0,54474265.0,55442057.0,56425713.0,57352826.0,58411085.0,59389679.0,60317650.0,61281010.0,62293379.0,63266900.0,64146902.0,65117426.0,66323877.0,67212018.0,68060346.0,69007183.0,70133844.0,71137980.0,71938945.0,72970535.0,73920051.0,74856659.0,75909751.0,76867275.0,77919863.0,78878344.0,79769089.0,80775679.0,81689809.0,82642193.0,83590175.0,84599140.0,85710623.0,86896654.0,87565855.0,88539834.0,89409939.0,90368524.0,91445898.0,92081624.0,90596430.0,91565615.0,92544755.0,93452642.0,94383095.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":7230.914367132859,"lower_bound":7205.746041518548,"upper_bound":7254.637269532057,"unit":"ns"},"mean":{"estimate":7259.603272091821,"lower_bound":7245.720856999761,"upper_bound":7275.955555871269,"unit":"ns"},"median":{"estimate":7261.011040265705,"lower_bound":7259.791188667736,"upper_bound":7264.081304970682,"unit":"ns"},"median_abs_dev":{"estimate":9.898811067713678,"lower_bound":7.212185021211936,"upper_bound":12.346400859404,"unit":"ns"},"slope":{"estimate":7230.914367132859,"lower_bound":7205.746041518548,"upper_bound":7254.637269532057,"unit":"ns"},"change":{"mean":{"estimate":0.012932222616739875,"lower_bound":0.010124665072888905,"upper_bound":0.01597419789851653,"unit":"%"},"median":{"estimate":0.01299221742813561,"lower_bound":0.012742222051622676,"upper_bound":0.013458968824026307,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"mcp","benchmarks":["mcp/1","mcp/10","mcp/100","mcp/1000","mcp/10000","mcp/19753","mcp/29629","mcp/44444","mcp/66666","mcp/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/mcp"} +{"reason":"benchmark-complete","id":"mcpi/1","report_directory":"/root/fuel-core/target/criterion/reports/mcpi/1","iteration_count":[16450,32900,49350,65800,82250,98700,115150,131600,148050,164500,180950,197400,213850,230300,246750,263200,279650,296100,312550,329000,345450,361900,378350,394800,411250,427700,444150,460600,477050,493500,509950,526400,542850,559300,575750,592200,608650,625100,641550,658000,674450,690900,707350,723800,740250,756700,773150,789600,806050,822500,838950,855400,871850,888300,904750,921200,937650,954100,970550,987000,1003450,1019900,1036350,1052800,1069250,1085700,1102150,1118600,1135050,1151500,1167950,1184400,1200850,1217300,1233750,1250200,1266650,1283100,1299550,1316000,1332450,1348900,1365350,1381800,1398250,1414700,1431150,1447600,1464050,1480500,1496950,1513400,1529850,1546300,1562750,1579200,1595650,1612100,1628550,1645000],"measured_values":[722780.0,1365090.0,2067132.0,2721412.0,3402768.0,4075722.0,4753929.0,5459339.0,6183666.0,6904005.0,7527311.0,8243345.0,8922260.0,9576689.0,10233987.0,10943085.0,11712186.0,12415592.0,12947320.0,13694311.0,14375922.0,15072282.0,15744810.0,16432820.0,16954793.0,17668527.0,18484847.0,19026956.0,19909439.0,20522016.0,21474502.0,21927270.0,22472416.0,23309341.0,24134623.0,24624426.0,25405020.0,25976745.0,26839759.0,27853162.0,28276105.0,28639226.0,29373987.0,30094071.0,30929636.0,31468080.0,32032050.0,32659190.0,33533814.0,34195338.0,34793445.0,35324763.0,36168570.0,36980256.0,37546613.0,38513510.0,39233104.0,39774257.0,40400241.0,41115991.0,41769354.0,42336310.0,42796097.0,43803488.0,44429060.0,45180247.0,45639879.0,46633169.0,46919142.0,47844985.0,48545015.0,49134432.0,49985276.0,50543809.0,51087896.0,52022406.0,52674421.0,53342642.0,53880670.0,54776195.0,55406990.0,55983087.0,57306380.0,57323102.0,58133976.0,59283246.0,59306330.0,60244280.0,60623671.0,61400905.0,62782052.0,62757956.0,63375936.0,64177787.0,64791793.0,65634746.0,66146550.0,66975835.0,67754880.0,68476011.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":41.57315981320039,"lower_bound":41.53723295482238,"upper_bound":41.613820754702175,"unit":"ns"},"mean":{"estimate":41.61534365874646,"lower_bound":41.56408082125509,"upper_bound":41.68075038309789,"unit":"ns"},"median":{"estimate":41.582028781567786,"lower_bound":41.55161094224924,"upper_bound":41.61126699728044,"unit":"ns"},"median_abs_dev":{"estimate":0.15076900374298022,"lower_bound":0.10918095983240887,"upper_bound":0.2001446412912355,"unit":"ns"},"slope":{"estimate":41.57315981320039,"lower_bound":41.53723295482238,"upper_bound":41.613820754702175,"unit":"ns"},"change":{"mean":{"estimate":-0.0036031874726411006,"lower_bound":-0.005259977114242084,"upper_bound":-0.0017757345644721558,"unit":"%"},"median":{"estimate":-0.0038841686887621796,"lower_bound":-0.004626746271800708,"upper_bound":-0.0030331183067134893,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcpi/10","report_directory":"/root/fuel-core/target/criterion/reports/mcpi/10","iteration_count":[16643,33286,49929,66572,83215,99858,116501,133144,149787,166430,183073,199716,216359,233002,249645,266288,282931,299574,316217,332860,349503,366146,382789,399432,416075,432718,449361,466004,482647,499290,515933,532576,549219,565862,582505,599148,615791,632434,649077,665720,682363,699006,715649,732292,748935,765578,782221,798864,815507,832150,848793,865436,882079,898722,915365,932008,948651,965294,981937,998580,1015223,1031866,1048509,1065152,1081795,1098438,1115081,1131724,1148367,1165010,1181653,1198296,1214939,1231582,1248225,1264868,1281511,1298154,1314797,1331440,1348083,1364726,1381369,1398012,1414655,1431298,1447941,1464584,1481227,1497870,1514513,1531156,1547799,1564442,1581085,1597728,1614371,1631014,1647657,1664300],"measured_values":[717229.0,1351658.0,2022463.0,2707598.0,3391834.0,4063671.0,4708472.0,5402850.0,6110561.0,6765172.0,7443361.0,8149260.0,8830537.0,9444653.0,10185755.0,10835420.0,11601455.0,12207170.0,12934658.0,13588084.0,14274365.0,14852468.0,15578560.0,16215944.0,16892549.0,17603781.0,18326104.0,19157088.0,19636131.0,20290052.0,21018831.0,21643377.0,22325069.0,22988756.0,23610494.0,24344708.0,25215825.0,25750502.0,26355119.0,27098462.0,27752897.0,28702358.0,29143173.0,29740565.0,30430345.0,31249040.0,31839759.0,32491125.0,33118437.0,33785773.0,34538638.0,35163405.0,35873420.0,36525123.0,37231774.0,37886736.0,38639244.0,39252491.0,39967834.0,40634328.0,41264571.0,42052035.0,42727972.0,43315806.0,44089490.0,44621768.0,45602578.0,46084142.0,46711770.0,47523206.0,48034940.0,48645436.0,49384752.0,50343678.0,50718834.0,51461474.0,52128729.0,52702884.0,53404707.0,54370096.0,55124369.0,55560393.0,56260610.0,56783475.0,57579859.0,58458358.0,58985119.0,59605591.0,60214892.0,61270943.0,61667441.0,62363853.0,62936440.0,63664389.0,64371990.0,64947668.0,65695568.0,66255809.0,67061217.0,67662645.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":40.70540366800685,"lower_bound":40.68571780982156,"upper_bound":40.7267550307227,"unit":"ns"},"mean":{"estimate":40.72825148951766,"lower_bound":40.6882175131049,"upper_bound":40.78783752507609,"unit":"ns"},"median":{"estimate":40.68792909615865,"lower_bound":40.66898714925193,"upper_bound":40.70240376628931,"unit":"ns"},"median_abs_dev":{"estimate":0.07909129022480135,"lower_bound":0.05777831998226162,"upper_bound":0.10151180724301596,"unit":"ns"},"slope":{"estimate":40.70540366800685,"lower_bound":40.68571780982156,"upper_bound":40.7267550307227,"unit":"ns"},"change":{"mean":{"estimate":-0.00719192868922669,"lower_bound":-0.009198609551466785,"upper_bound":-0.005287585519607086,"unit":"%"},"median":{"estimate":-0.007964018553554442,"lower_bound":-0.008691748904154917,"upper_bound":-0.007293674586950294,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcpi/100","report_directory":"/root/fuel-core/target/criterion/reports/mcpi/100","iteration_count":[15895,31790,47685,63580,79475,95370,111265,127160,143055,158950,174845,190740,206635,222530,238425,254320,270215,286110,302005,317900,333795,349690,365585,381480,397375,413270,429165,445060,460955,476850,492745,508640,524535,540430,556325,572220,588115,604010,619905,635800,651695,667590,683485,699380,715275,731170,747065,762960,778855,794750,810645,826540,842435,858330,874225,890120,906015,921910,937805,953700,969595,985490,1001385,1017280,1033175,1049070,1064965,1080860,1096755,1112650,1128545,1144440,1160335,1176230,1192125,1208020,1223915,1239810,1255705,1271600,1287495,1303390,1319285,1335180,1351075,1366970,1382865,1398760,1414655,1430550,1446445,1462340,1478235,1494130,1510025,1525920,1541815,1557710,1573605,1589500],"measured_values":[768298.0,1376599.0,2074635.0,2750434.0,3432005.0,4130161.0,4797421.0,5481299.0,6162427.0,6880377.0,7568269.0,8222599.0,8895557.0,9633365.0,10317916.0,10984427.0,11679841.0,12384620.0,13047250.0,13780109.0,14459036.0,15126882.0,15822875.0,16472594.0,17246527.0,17864711.0,18561492.0,19211254.0,19882245.0,20630440.0,21313552.0,21972352.0,22700779.0,23365665.0,24022295.0,24758485.0,25487660.0,26157774.0,26834465.0,27514503.0,28227324.0,29001776.0,29673197.0,30410172.0,31019073.0,31653079.0,32274952.0,32985696.0,33585793.0,34364848.0,35059322.0,35732451.0,36579969.0,37036676.0,37885589.0,38853910.0,39337895.0,39974672.0,40639129.0,41361854.0,42061214.0,42784925.0,43384027.0,44022982.0,44824955.0,45351883.0,46107151.0,46765822.0,48030549.0,48233679.0,48845293.0,49506867.0,50392025.0,51039985.0,51556079.0,52460555.0,52943556.0,53714208.0,54286765.0,55133657.0,55596003.0,56446872.0,57368996.0,57821951.0,58470408.0,59430262.0,59981262.0,60638357.0,61256594.0,61919106.0,62598419.0,63351821.0,63862025.0,64685218.0,65318824.0,66211110.0,66587132.0,67446309.0,68132525.0,68922158.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":43.319922668215796,"lower_bound":43.29672674149534,"upper_bound":43.34529619386694,"unit":"ns"},"mean":{"estimate":43.346262529127195,"lower_bound":43.27985538026084,"upper_bound":43.46003306848733,"unit":"ns"},"median":{"estimate":43.28632099542134,"lower_bound":43.27529628027682,"upper_bound":43.30396025802017,"unit":"ns"},"median_abs_dev":{"estimate":0.08207619305726607,"lower_bound":0.05812211302819681,"upper_bound":0.11550191482815836,"unit":"ns"},"slope":{"estimate":43.319922668215796,"lower_bound":43.29672674149534,"upper_bound":43.34529619386694,"unit":"ns"},"change":{"mean":{"estimate":0.00427013549049815,"lower_bound":0.0016148639862341337,"upper_bound":0.0072553918390238815,"unit":"%"},"median":{"estimate":0.004114040929417362,"lower_bound":0.0037857996256118742,"upper_bound":0.004528805317869367,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcpi/1000","report_directory":"/root/fuel-core/target/criterion/reports/mcpi/1000","iteration_count":[11234,22468,33702,44936,56170,67404,78638,89872,101106,112340,123574,134808,146042,157276,168510,179744,190978,202212,213446,224680,235914,247148,258382,269616,280850,292084,303318,314552,325786,337020,348254,359488,370722,381956,393190,404424,415658,426892,438126,449360,460594,471828,483062,494296,505530,516764,527998,539232,550466,561700,572934,584168,595402,606636,617870,629104,640338,651572,662806,674040,685274,696508,707742,718976,730210,741444,752678,763912,775146,786380,797614,808848,820082,831316,842550,853784,865018,876252,887486,898720,909954,921188,932422,943656,954890,966124,977358,988592,999826,1011060,1022294,1033528,1044762,1055996,1067230,1078464,1089698,1100932,1112166,1123400],"measured_values":[697422.0,1310604.0,1962691.0,2618134.0,3274393.0,3926441.0,4618538.0,5262087.0,5886524.0,6543193.0,7196380.0,7884616.0,8588346.0,9159691.0,9815208.0,10466406.0,11120113.0,11771175.0,12429739.0,13084637.0,13745640.0,14399102.0,15200247.0,15856449.0,16351842.0,17003743.0,17657883.0,18313746.0,18966799.0,19619768.0,20292657.0,20936321.0,21587355.0,22239399.0,22894221.0,23570435.0,24212280.0,24899363.0,25568410.0,26180089.0,26836472.0,27549723.0,28156240.0,28839543.0,29449714.0,30196722.0,30757551.0,31399174.0,32045551.0,32710683.0,33373569.0,34014889.0,34698197.0,35543333.0,36034864.0,36653970.0,37335589.0,38210788.0,38806839.0,39266800.0,39928661.0,40958966.0,41209053.0,41863828.0,42535481.0,43202917.0,43860837.0,44529838.0,45156209.0,45809567.0,46490713.0,47121934.0,47770229.0,48446046.0,49202648.0,49784069.0,50702295.0,51019610.0,51675078.0,52372530.0,53029203.0,53678060.0,54442469.0,54964633.0,55699564.0,56284686.0,57004187.0,57646385.0,58278019.0,58956848.0,59829519.0,60269089.0,60931909.0,61821914.0,62199993.0,62831316.0,63476169.0,64224741.0,65009741.0,65494185.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":58.32381473923382,"lower_bound":58.298007609665426,"upper_bound":58.35248428280477,"unit":"ns"},"mean":{"estimate":58.359379699270036,"lower_bound":58.300714137399815,"upper_bound":58.45032816383022,"unit":"ns"},"median":{"estimate":58.26608949746483,"lower_bound":58.25588985816866,"upper_bound":58.2814941744308,"unit":"ns"},"median_abs_dev":{"estimate":0.05546616647446402,"lower_bound":0.03862469727612189,"upper_bound":0.07061718629425433,"unit":"ns"},"slope":{"estimate":58.32381473923382,"lower_bound":58.298007609665426,"upper_bound":58.35248428280477,"unit":"ns"},"change":{"mean":{"estimate":-0.006868900370327169,"lower_bound":-0.008845703906966967,"upper_bound":-0.005009406592296656,"unit":"%"},"median":{"estimate":-0.007466162136577914,"lower_bound":-0.007724561971951038,"upper_bound":-0.007152846374527622,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcpi/4095","report_directory":"/root/fuel-core/target/criterion/reports/mcpi/4095","iteration_count":[6783,13566,20349,27132,33915,40698,47481,54264,61047,67830,74613,81396,88179,94962,101745,108528,115311,122094,128877,135660,142443,149226,156009,162792,169575,176358,183141,189924,196707,203490,210273,217056,223839,230622,237405,244188,250971,257754,264537,271320,278103,284886,291669,298452,305235,312018,318801,325584,332367,339150,345933,352716,359499,366282,373065,379848,386631,393414,400197,406980,413763,420546,427329,434112,440895,447678,454461,461244,468027,474810,481593,488376,495159,501942,508725,515508,522291,529074,535857,542640,549423,556206,562989,569772,576555,583338,590121,596904,603687,610470,617253,624036,630819,637602,644385,651168,657951,664734,671517,678300],"measured_values":[889048.0,1640502.0,2466347.0,3285518.0,4097504.0,4914005.0,5734132.0,6570852.0,7377540.0,8188837.0,9008119.0,9837396.0,10687966.0,11481886.0,12277033.0,13094537.0,13919087.0,14762331.0,15594497.0,16435236.0,17209913.0,18025729.0,18827962.0,19720509.0,20483199.0,21327132.0,22106905.0,23012027.0,23784057.0,24684764.0,25417101.0,26228639.0,27023159.0,27832308.0,28746342.0,29495847.0,30335705.0,31164971.0,31982251.0,32852794.0,33646451.0,34538074.0,35352491.0,36049355.0,36945424.0,37776968.0,38458425.0,39395084.0,40181727.0,41033617.0,41760471.0,42641832.0,43451932.0,44363673.0,45075160.0,45862396.0,46764956.0,47540414.0,48387181.0,49183851.0,50179177.0,50822074.0,51790675.0,52501805.0,53326014.0,54123560.0,54874424.0,55797266.0,56537882.0,57309385.0,58128859.0,59012466.0,59887219.0,60732184.0,61462169.0,62365101.0,63643621.0,63962291.0,64799305.0,65568966.0,66316852.0,67178987.0,68027996.0,68868077.0,69726845.0,71464787.0,71346840.0,72118775.0,73073837.0,73819422.0,74527529.0,75487055.0,76243039.0,77052134.0,77800827.0,78833293.0,79483364.0,80292776.0,81087838.0,82121244.0],"unit":"ns","throughput":[{"per_iteration":4095,"unit":"bytes"}],"typical":{"estimate":120.9399698783638,"lower_bound":120.87227683799537,"upper_bound":121.03284511413197,"unit":"ns"},"mean":{"estimate":121.02736852297598,"lower_bound":120.89207523379886,"upper_bound":121.2596470236533,"unit":"ns"},"median":{"estimate":120.89522354150837,"lower_bound":120.84783590855697,"upper_bound":120.91629915123944,"unit":"ns"},"median_abs_dev":{"estimate":0.15320345445243408,"lower_bound":0.11129539733521267,"upper_bound":0.21293163427843798,"unit":"ns"},"slope":{"estimate":120.9399698783638,"lower_bound":120.87227683799537,"upper_bound":121.03284511413197,"unit":"ns"},"change":{"mean":{"estimate":0.04642832000218067,"lower_bound":0.044268205375924116,"upper_bound":0.04867881674985676,"unit":"%"},"median":{"estimate":0.046237594664468196,"lower_bound":0.0458213737784221,"upper_bound":0.04640521739745185,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"mcpi","benchmarks":["mcpi/1","mcpi/10","mcpi/100","mcpi/1000","mcpi/4095"],"report_directory":"/root/fuel-core/target/criterion/reports/mcpi"} +{"reason":"benchmark-complete","id":"meq/1","report_directory":"/root/fuel-core/target/criterion/reports/meq/1","iteration_count":[24720,49440,74160,98880,123600,148320,173040,197760,222480,247200,271920,296640,321360,346080,370800,395520,420240,444960,469680,494400,519120,543840,568560,593280,618000,642720,667440,692160,716880,741600,766320,791040,815760,840480,865200,889920,914640,939360,964080,988800,1013520,1038240,1062960,1087680,1112400,1137120,1161840,1186560,1211280,1236000,1260720,1285440,1310160,1334880,1359600,1384320,1409040,1433760,1458480,1483200,1507920,1532640,1557360,1582080,1606800,1631520,1656240,1680960,1705680,1730400,1755120,1779840,1804560,1829280,1854000,1878720,1903440,1928160,1952880,1977600,2002320,2027040,2051760,2076480,2101200,2125920,2150640,2175360,2200080,2224800,2249520,2274240,2298960,2323680,2348400,2373120,2397840,2422560,2447280,2472000],"measured_values":[738187.0,1348031.0,1928185.0,2681845.0,3242895.0,4007186.0,4491811.0,5381057.0,6026639.0,6430118.0,7404906.0,8041816.0,8785687.0,9463637.0,10232812.0,10784747.0,11372149.0,12220624.0,12445202.0,13200088.0,13909489.0,14568760.0,15313782.0,15709564.0,16660973.0,16861168.0,17942485.0,18914125.0,19515569.0,20113520.0,19901035.0,21614551.0,21921119.0,22463165.0,23352240.0,24077462.0,24602826.0,24446293.0,26156183.0,26950319.0,27176279.0,28324563.0,27152042.0,28739215.0,29621691.0,30360122.0,30735072.0,31493666.0,32639533.0,32105014.0,34093180.0,34056333.0,35105836.0,36049035.0,36787054.0,36563936.0,38012291.0,38541914.0,38793884.0,40114483.0,40575465.0,41052078.0,41416053.0,42758486.0,41884920.0,43571784.0,43985698.0,45302936.0,45852392.0,45656091.0,46905657.0,47693170.0,48826292.0,48713802.0,50132763.0,50102769.0,50455413.0,52120368.0,52890285.0,52945023.0,53627534.0,54458984.0,55157030.0,55115973.0,56327551.0,56887547.0,58378555.0,58283677.0,58626304.0,58532396.0,60063778.0,60814771.0,61608690.0,62144223.0,62502241.0,63465878.0,63633254.0,65231699.0,66020941.0,66756767.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":26.766400562792114,"lower_bound":26.707925794990338,"upper_bound":26.823109585678058,"unit":"ns"},"mean":{"estimate":26.82492663189992,"lower_bound":26.735644616164496,"upper_bound":26.92405897368332,"unit":"ns"},"median":{"estimate":26.810540933636062,"lower_bound":26.770862169069925,"upper_bound":26.926763011029653,"unit":"ns"},"median_abs_dev":{"estimate":0.3423840849150022,"lower_bound":0.24832497546439836,"upper_bound":0.40121472792857765,"unit":"ns"},"slope":{"estimate":26.766400562792114,"lower_bound":26.707925794990338,"upper_bound":26.823109585678058,"unit":"ns"},"change":{"mean":{"estimate":-0.01689066493315783,"lower_bound":-0.021082076302097703,"upper_bound":-0.01272357857070369,"unit":"%"},"median":{"estimate":-0.01631710700239486,"lower_bound":-0.01797934814589626,"upper_bound":-0.012298794106975541,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"meq/10","report_directory":"/root/fuel-core/target/criterion/reports/meq/10","iteration_count":[23807,47614,71421,95228,119035,142842,166649,190456,214263,238070,261877,285684,309491,333298,357105,380912,404719,428526,452333,476140,499947,523754,547561,571368,595175,618982,642789,666596,690403,714210,738017,761824,785631,809438,833245,857052,880859,904666,928473,952280,976087,999894,1023701,1047508,1071315,1095122,1118929,1142736,1166543,1190350,1214157,1237964,1261771,1285578,1309385,1333192,1356999,1380806,1404613,1428420,1452227,1476034,1499841,1523648,1547455,1571262,1595069,1618876,1642683,1666490,1690297,1714104,1737911,1761718,1785525,1809332,1833139,1856946,1880753,1904560,1928367,1952174,1975981,1999788,2023595,2047402,2071209,2095016,2118823,2142630,2166437,2190244,2214051,2237858,2261665,2285472,2309279,2333086,2356893,2380700],"measured_values":[712166.0,1342716.0,2056954.0,2699876.0,3404797.0,4099893.0,4800754.0,5396594.0,6173618.0,6759948.0,7488631.0,8141619.0,8807515.0,9442437.0,9903132.0,10852543.0,11486024.0,12149113.0,13000396.0,13455807.0,14307433.0,14947351.0,15581368.0,16237312.0,16899913.0,17679872.0,18254512.0,18919317.0,19754903.0,20284524.0,20937705.0,21619224.0,22144210.0,22915170.0,23563568.0,24625279.0,25185863.0,25802660.0,26320040.0,26933405.0,27585621.0,28319160.0,29357738.0,29717431.0,30506846.0,31208188.0,31629369.0,32619656.0,33212011.0,33961654.0,34488454.0,35184467.0,35621446.0,36527940.0,37205388.0,38068969.0,38549645.0,39183995.0,39765016.0,40542480.0,41340573.0,41924125.0,42710725.0,43174804.0,44115846.0,44728271.0,45340118.0,46046774.0,46688962.0,47544279.0,47912471.0,48691000.0,49572822.0,49980444.0,50720007.0,51653462.0,52182394.0,52724731.0,53672886.0,54385176.0,55069024.0,55472909.0,56163173.0,56951928.0,57398093.0,57989416.0,58800856.0,59646409.0,60132047.0,61045859.0,61539711.0,62569333.0,62775744.0,63512588.0,64080373.0,64996512.0,65346325.0,65864580.0,66757192.0,67750153.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":28.41989783228534,"lower_bound":28.39712037041732,"upper_bound":28.442796622292384,"unit":"ns"},"mean":{"estimate":28.45002248834238,"lower_bound":28.412629758494415,"upper_bound":28.493684310311462,"unit":"ns"},"median":{"estimate":28.415182304446223,"lower_bound":28.398103919015416,"upper_bound":28.458065016430204,"unit":"ns"},"median_abs_dev":{"estimate":0.11243177917243725,"lower_bound":0.08264065787537057,"upper_bound":0.14233885562090473,"unit":"ns"},"slope":{"estimate":28.41989783228534,"lower_bound":28.39712037041732,"upper_bound":28.442796622292384,"unit":"ns"},"change":{"mean":{"estimate":-0.011971105606285781,"lower_bound":-0.013715386689430157,"upper_bound":-0.010079156928498376,"unit":"%"},"median":{"estimate":-0.012708034504175791,"lower_bound":-0.013465277426564892,"upper_bound":-0.011131227607514282,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"meq/100","report_directory":"/root/fuel-core/target/criterion/reports/meq/100","iteration_count":[23533,47066,70599,94132,117665,141198,164731,188264,211797,235330,258863,282396,305929,329462,352995,376528,400061,423594,447127,470660,494193,517726,541259,564792,588325,611858,635391,658924,682457,705990,729523,753056,776589,800122,823655,847188,870721,894254,917787,941320,964853,988386,1011919,1035452,1058985,1082518,1106051,1129584,1153117,1176650,1200183,1223716,1247249,1270782,1294315,1317848,1341381,1364914,1388447,1411980,1435513,1459046,1482579,1506112,1529645,1553178,1576711,1600244,1623777,1647310,1670843,1694376,1717909,1741442,1764975,1788508,1812041,1835574,1859107,1882640,1906173,1929706,1953239,1976772,2000305,2023838,2047371,2070904,2094437,2117970,2141503,2165036,2188569,2212102,2235635,2259168,2282701,2306234,2329767,2353300],"measured_values":[735484.0,1367875.0,2050042.0,2699507.0,3366631.0,4094781.0,4757245.0,5462668.0,6128966.0,6790803.0,7510051.0,8110226.0,8841515.0,9487789.0,10177509.0,10830955.0,11540732.0,12186414.0,12906370.0,13610498.0,14285759.0,14972122.0,15671362.0,16348072.0,16924522.0,17654185.0,18353875.0,19004375.0,19709664.0,20407382.0,21038443.0,21806743.0,22362789.0,22975829.0,23856858.0,24494793.0,25100208.0,25725786.0,26396449.0,27142469.0,28158886.0,28543633.0,29133593.0,29881880.0,30573884.0,31252298.0,32521368.0,32675819.0,33297810.0,33973404.0,34623333.0,35332196.0,36074875.0,36823241.0,37398405.0,38199013.0,38701579.0,39476582.0,40039893.0,40666815.0,41434654.0,42308545.0,42770589.0,43457794.0,44168047.0,45040659.0,45567112.0,46069157.0,46962010.0,47429485.0,48248740.0,49014155.0,49781816.0,50471201.0,50935800.0,51736268.0,52516604.0,53020615.0,53646621.0,54572996.0,55005519.0,55688372.0,56473715.0,57508774.0,57829571.0,58420605.0,59152016.0,59655831.0,60942198.0,61184924.0,61908108.0,62457884.0,63109728.0,64099448.0,64679891.0,65250882.0,65924137.0,66570715.0,67307294.0,67975688.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":28.902717715598616,"lower_bound":28.884938129320734,"upper_bound":28.92247574883057,"unit":"ns"},"mean":{"estimate":28.91632503941141,"lower_bound":28.878120493980205,"upper_bound":28.97452087274444,"unit":"ns"},"median":{"estimate":28.88016539662202,"lower_bound":28.869559090583948,"upper_bound":28.900104077411775,"unit":"ns"},"median_abs_dev":{"estimate":0.0626376879776022,"lower_bound":0.046898855764823145,"upper_bound":0.08572250855123056,"unit":"ns"},"slope":{"estimate":28.902717715598616,"lower_bound":28.884938129320734,"upper_bound":28.92247574883057,"unit":"ns"},"change":{"mean":{"estimate":-0.0030855747965218283,"lower_bound":-0.005858314405575675,"upper_bound":-0.0003695401622106826,"unit":"%"},"median":{"estimate":-0.003436027822119714,"lower_bound":-0.004012068207541186,"upper_bound":-0.002564859561638075,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"meq/1000","report_directory":"/root/fuel-core/target/criterion/reports/meq/1000","iteration_count":[17930,35860,53790,71720,89650,107580,125510,143440,161370,179300,197230,215160,233090,251020,268950,286880,304810,322740,340670,358600,376530,394460,412390,430320,448250,466180,484110,502040,519970,537900,555830,573760,591690,609620,627550,645480,663410,681340,699270,717200,735130,753060,770990,788920,806850,824780,842710,860640,878570,896500,914430,932360,950290,968220,986150,1004080,1022010,1039940,1057870,1075800,1093730,1111660,1129590,1147520,1165450,1183380,1201310,1219240,1237170,1255100,1273030,1290960,1308890,1326820,1344750,1362680,1380610,1398540,1416470,1434400,1452330,1470260,1488190,1506120,1524050,1541980,1559910,1577840,1595770,1613700,1631630,1649560,1667490,1685420,1703350,1721280,1739210,1757140,1775070,1793000],"measured_values":[787839.0,1479011.0,2218839.0,2949803.0,3690710.0,4402726.0,5147743.0,5886671.0,6701600.0,7377239.0,8124206.0,8822998.0,9547877.0,10304817.0,11048620.0,11785146.0,12867237.0,13403969.0,14051731.0,14767585.0,15442189.0,16271429.0,17047218.0,17706498.0,18385675.0,19129877.0,19821227.0,20573673.0,21346504.0,22140264.0,22819091.0,23487199.0,24300958.0,25037262.0,25721620.0,26550598.0,27300260.0,28051810.0,28767709.0,29424540.0,30148555.0,30936633.0,31598996.0,32875842.0,33273013.0,33789910.0,34565814.0,35341334.0,36088616.0,36782738.0,37421582.0,38250902.0,39034433.0,39758780.0,40533658.0,41205401.0,41914060.0,42697943.0,43356240.0,44143837.0,44888338.0,45693802.0,46541050.0,47199366.0,47864387.0,48663712.0,49290408.0,50032996.0,50786111.0,51525682.0,52365205.0,53152836.0,53833612.0,54524094.0,55200321.0,56058772.0,56586569.0,57437086.0,58191175.0,58892795.0,60170670.0,60436859.0,61210765.0,61785400.0,62578958.0,63285079.0,64178385.0,65045255.0,65589278.0,66400199.0,67053934.0,67823545.0,68573550.0,69191786.0,70284052.0,70702987.0,71442898.0,72254271.0,73010816.0,73844515.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":41.1059858057594,"lower_bound":41.08571494635604,"upper_bound":41.1284056248141,"unit":"ns"},"mean":{"estimate":41.14474547249252,"lower_bound":41.09346531876479,"upper_bound":41.21784812913577,"unit":"ns"},"median":{"estimate":41.079094998591316,"lower_bound":41.06248820303358,"upper_bound":41.109553145941554,"unit":"ns"},"median_abs_dev":{"estimate":0.07947752429436665,"lower_bound":0.06501727729157891,"upper_bound":0.10094160218180574,"unit":"ns"},"slope":{"estimate":41.1059858057594,"lower_bound":41.08571494635604,"upper_bound":41.1284056248141,"unit":"ns"},"change":{"mean":{"estimate":0.012653155810713246,"lower_bound":0.010075562173927854,"upper_bound":0.015090160768745758,"unit":"%"},"median":{"estimate":0.013188968713844895,"lower_bound":0.011954988577979275,"upper_bound":0.014247362798268043,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"meq/10000","report_directory":"/root/fuel-core/target/criterion/reports/meq/10000","iteration_count":[6717,13434,20151,26868,33585,40302,47019,53736,60453,67170,73887,80604,87321,94038,100755,107472,114189,120906,127623,134340,141057,147774,154491,161208,167925,174642,181359,188076,194793,201510,208227,214944,221661,228378,235095,241812,248529,255246,261963,268680,275397,282114,288831,295548,302265,308982,315699,322416,329133,335850,342567,349284,356001,362718,369435,376152,382869,389586,396303,403020,409737,416454,423171,429888,436605,443322,450039,456756,463473,470190,476907,483624,490341,497058,503775,510492,517209,523926,530643,537360,544077,550794,557511,564228,570945,577662,584379,591096,597813,604530,611247,617964,624681,631398,638115,644832,651549,658266,664983,671700],"measured_values":[951743.0,1831779.0,2735518.0,3615531.0,4497758.0,5388462.0,6295522.0,7145458.0,8091939.0,8985154.0,9875732.0,10844456.0,11568731.0,12625007.0,13348852.0,14254020.0,15307521.0,16168508.0,16991646.0,17780767.0,18886747.0,19776568.0,20518002.0,21627761.0,22515414.0,23376513.0,24263122.0,25245436.0,26116975.0,26832330.0,27761194.0,28847098.0,29640381.0,30439491.0,31575018.0,32391564.0,33201859.0,34291651.0,35009307.0,35891093.0,36955844.0,37787899.0,38625980.0,39448065.0,40468846.0,41122545.0,42152433.0,43340673.0,44061600.0,44863420.0,45558483.0,46780022.0,47537772.0,48574825.0,49404561.0,50266786.0,51274410.0,52192913.0,53051568.0,53961235.0,54771558.0,55594217.0,56580381.0,57484829.0,58420915.0,59250324.0,59798542.0,61070107.0,62204452.0,62827065.0,63501569.0,64804242.0,65423841.0,66349353.0,67168797.0,68306245.0,69220941.0,70188202.0,70659190.0,71963159.0,72620896.0,73304622.0,74879212.0,75341257.0,76219295.0,77051076.0,78033738.0,78318393.0,79900971.0,80693269.0,81623590.0,82699173.0,83231970.0,84113386.0,85281189.0,86091870.0,86924307.0,87796790.0,88368557.0,89737851.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":133.55846803288048,"lower_bound":133.4650815300224,"upper_bound":133.65188121555215,"unit":"ns"},"mean":{"estimate":133.7599513876008,"lower_bound":133.5970015898634,"upper_bound":133.97507890170343,"unit":"ns"},"median":{"estimate":133.70305261452506,"lower_bound":133.5981107637338,"upper_bound":133.80473151391206,"unit":"ns"},"median_abs_dev":{"estimate":0.33787653137934853,"lower_bound":0.2854965498603655,"upper_bound":0.4801915146246946,"unit":"ns"},"slope":{"estimate":133.55846803288048,"lower_bound":133.4650815300224,"upper_bound":133.65188121555215,"unit":"ns"},"change":{"mean":{"estimate":0.006917245278341033,"lower_bound":0.00323663189097444,"upper_bound":0.009741649399273588,"unit":"%"},"median":{"estimate":0.007666889664644128,"lower_bound":0.006293592654154301,"upper_bound":0.008751833369323584,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"meq/19753","report_directory":"/root/fuel-core/target/criterion/reports/meq/19753","iteration_count":[4052,8104,12156,16208,20260,24312,28364,32416,36468,40520,44572,48624,52676,56728,60780,64832,68884,72936,76988,81040,85092,89144,93196,97248,101300,105352,109404,113456,117508,121560,125612,129664,133716,137768,141820,145872,149924,153976,158028,162080,166132,170184,174236,178288,182340,186392,190444,194496,198548,202600,206652,210704,214756,218808,222860,226912,230964,235016,239068,243120,247172,251224,255276,259328,263380,267432,271484,275536,279588,283640,287692,291744,295796,299848,303900,307952,312004,316056,320108,324160,328212,332264,336316,340368,344420,348472,352524,356576,360628,364680,368732,372784,376836,380888,384940,388992,393044,397096,401148,405200],"measured_values":[1002532.0,1858771.0,2810151.0,3717704.0,4650083.0,5578951.0,6506833.0,7439747.0,8367917.0,9295315.0,10229841.0,11192965.0,12107417.0,13107757.0,14058669.0,14900463.0,15806510.0,16739846.0,17676170.0,18592025.0,19523063.0,20457648.0,21387129.0,22328370.0,23243030.0,24155807.0,25124641.0,26024064.0,27017538.0,27916031.0,28788543.0,29817421.0,30669569.0,31590765.0,32551431.0,33513731.0,34436661.0,35398459.0,36257904.0,37221765.0,38228273.0,39067044.0,40122417.0,41022010.0,41856701.0,42831945.0,43818703.0,44750516.0,45571364.0,46574322.0,47424048.0,48339311.0,49253909.0,50199886.0,51270652.0,52125266.0,52978247.0,53948361.0,54905226.0,55774829.0,56867348.0,57669315.0,58552609.0,59483633.0,60752985.0,61610351.0,62298078.0,63319856.0,64150897.0,65052091.0,65963793.0,66935101.0,68132935.0,68973789.0,69714342.0,70629475.0,71568425.0,72482481.0,73494637.0,74394648.0,75292699.0,76247466.0,77122280.0,78086906.0,79040494.0,80591320.0,81069950.0,81807621.0,82758190.0,83685288.0,84577040.0,85507907.0,86438289.0,87579038.0,88310079.0,89235956.0,90178582.0,91126672.0,92047852.0,92993941.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":229.6084006584419,"lower_bound":229.52296553458416,"upper_bound":229.71882505454573,"unit":"ns"},"mean":{"estimate":229.83990740516444,"lower_bound":229.6019799905868,"upper_bound":230.24637206295637,"unit":"ns"},"median":{"estimate":229.48929610253867,"lower_bound":229.46562336681959,"upper_bound":229.5518645539027,"unit":"ns"},"median_abs_dev":{"estimate":0.1677592559524353,"lower_bound":0.11842422076654863,"upper_bound":0.24655573171449688,"unit":"ns"},"slope":{"estimate":229.6084006584419,"lower_bound":229.52296553458416,"upper_bound":229.71882505454573,"unit":"ns"},"change":{"mean":{"estimate":0.005883726645882215,"lower_bound":0.004127088569969051,"upper_bound":0.007849139636568424,"unit":"%"},"median":{"estimate":0.0054115051408654136,"lower_bound":0.005030673282965692,"upper_bound":0.005780209970808858,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"meq/29629","report_directory":"/root/fuel-core/target/criterion/reports/meq/29629","iteration_count":[2641,5282,7923,10564,13205,15846,18487,21128,23769,26410,29051,31692,34333,36974,39615,42256,44897,47538,50179,52820,55461,58102,60743,63384,66025,68666,71307,73948,76589,79230,81871,84512,87153,89794,92435,95076,97717,100358,102999,105640,108281,110922,113563,116204,118845,121486,124127,126768,129409,132050,134691,137332,139973,142614,145255,147896,150537,153178,155819,158460,161101,163742,166383,169024,171665,174306,176947,179588,182229,184870,187511,190152,192793,195434,198075,200716,203357,205998,208639,211280,213921,216562,219203,221844,224485,227126,229767,232408,235049,237690,240331,242972,245613,248254,250895,253536,256177,258818,261459,264100],"measured_values":[1005339.0,1898298.0,2848703.0,3795787.0,4749778.0,5692897.0,6642718.0,7593650.0,8578628.0,9512048.0,10443412.0,11461891.0,12403909.0,13281494.0,14232935.0,15182538.0,16189876.0,17234021.0,18071443.0,19033333.0,19952985.0,20908106.0,21866277.0,22805823.0,23737372.0,24756650.0,25679857.0,26593473.0,27527958.0,28548049.0,29485705.0,30394401.0,31409553.0,32301959.0,33217979.0,34269966.0,35151968.0,36072570.0,37084517.0,38060948.0,38945065.0,39894115.0,40863037.0,42023450.0,42744012.0,43698519.0,44660309.0,45608498.0,46534894.0,47512879.0,48527021.0,49422626.0,50653098.0,51490904.0,52261516.0,53155635.0,54117235.0,55100935.0,56018449.0,57054063.0,57925450.0,58906355.0,59811611.0,60807273.0,61803540.0,62984394.0,63725638.0,64581722.0,65562874.0,66479855.0,67377575.0,68328506.0,69644323.0,70409543.0,71257432.0,72231797.0,73116446.0,74071483.0,74990520.0,76043314.0,76984258.0,78045034.0,78854635.0,79766142.0,80771349.0,81717923.0,82728190.0,84196009.0,84637574.0,85440163.0,86658582.0,87310873.0,88337336.0,89398676.0,90257843.0,91792207.0,92107732.0,93102893.0,94064021.0,94987991.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":359.9851918796292,"lower_bound":359.8174297040825,"upper_bound":360.18809584087364,"unit":"ns"},"mean":{"estimate":360.18457873267454,"lower_bound":359.87856262266604,"upper_bound":360.6785536790538,"unit":"ns"},"median":{"estimate":359.76595401737393,"lower_bound":359.71172373267495,"upper_bound":359.8307524697945,"unit":"ns"},"median_abs_dev":{"estimate":0.4194619698538076,"lower_bound":0.28347741954943284,"upper_bound":0.5222216071559209,"unit":"ns"},"slope":{"estimate":359.9851918796292,"lower_bound":359.8174297040825,"upper_bound":360.18809584087364,"unit":"ns"},"change":{"mean":{"estimate":-0.026462596096037516,"lower_bound":-0.03003648949183178,"upper_bound":-0.023738522260560814,"unit":"%"},"median":{"estimate":-0.025409593795756358,"lower_bound":-0.025927809500691845,"upper_bound":-0.024515882888130558,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"meq/44444","report_directory":"/root/fuel-core/target/criterion/reports/meq/44444","iteration_count":[1211,2422,3633,4844,6055,7266,8477,9688,10899,12110,13321,14532,15743,16954,18165,19376,20587,21798,23009,24220,25431,26642,27853,29064,30275,31486,32697,33908,35119,36330,37541,38752,39963,41174,42385,43596,44807,46018,47229,48440,49651,50862,52073,53284,54495,55706,56917,58128,59339,60550,61761,62972,64183,65394,66605,67816,69027,70238,71449,72660,73871,75082,76293,77504,78715,79926,81137,82348,83559,84770,85981,87192,88403,89614,90825,92036,93247,94458,95669,96880,98091,99302,100513,101724,102935,104146,105357,106568,107779,108990,110201,111412,112623,113834,115045,116256,117467,118678,119889,121100],"measured_values":[995331.0,1963706.0,2948187.0,3921354.0,4893734.0,5857642.0,6808083.0,7774682.0,8865761.0,9882502.0,10739347.0,11619323.0,12637815.0,13607776.0,14625273.0,15658797.0,16623262.0,17472632.0,18597974.0,19472719.0,20251811.0,21360351.0,22269218.0,23208965.0,24250635.0,25380537.0,26266149.0,27180142.0,28025938.0,29014715.0,30002414.0,31053553.0,32270091.0,32968840.0,33731389.0,34910600.0,35901656.0,36894994.0,37705834.0,38924832.0,39951967.0,40716553.0,41563027.0,42618720.0,43638104.0,44556931.0,45631645.0,46514255.0,47609091.0,48511464.0,49386202.0,50346995.0,51284963.0,52191064.0,53531954.0,54607668.0,55610185.0,56472329.0,57017124.0,58115468.0,59384601.0,60169680.0,61305797.0,62179846.0,62988709.0,63759991.0,64924665.0,65827670.0,67134351.0,67652250.0,68842502.0,70042799.0,70885406.0,71502263.0,72683079.0,73951506.0,74464598.0,75390032.0,76687269.0,77592952.0,78655723.0,79555208.0,80752606.0,81370807.0,82044290.0,83235338.0,84171643.0,85857320.0,86646197.0,87106586.0,88080259.0,89152345.0,89880889.0,91657563.0,91826818.0,92941062.0,93807705.0,95118179.0,95456869.0,96823503.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":800.6129128327995,"lower_bound":799.9936079081181,"upper_bound":801.2700620891501,"unit":"ns"},"mean":{"estimate":802.0946007514806,"lower_bound":801.3071673069167,"upper_bound":802.946904102777,"unit":"ns"},"median":{"estimate":801.2156511259401,"lower_bound":800.2541040462428,"upper_bound":801.7976274322674,"unit":"ns"},"median_abs_dev":{"estimate":3.233410077978274,"lower_bound":2.3547140044382924,"upper_bound":3.8819773212381885,"unit":"ns"},"slope":{"estimate":800.6129128327995,"lower_bound":799.9936079081181,"upper_bound":801.2700620891501,"unit":"ns"},"change":{"mean":{"estimate":0.004417742520371082,"lower_bound":0.002333182357413312,"upper_bound":0.006059985036272552,"unit":"%"},"median":{"estimate":0.0046471665792562344,"lower_bound":0.0033012654591197954,"upper_bound":0.005533832758515045,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"meq/66666","report_directory":"/root/fuel-core/target/criterion/reports/meq/66666","iteration_count":[822,1644,2466,3288,4110,4932,5754,6576,7398,8220,9042,9864,10686,11508,12330,13152,13974,14796,15618,16440,17262,18084,18906,19728,20550,21372,22194,23016,23838,24660,25482,26304,27126,27948,28770,29592,30414,31236,32058,32880,33702,34524,35346,36168,36990,37812,38634,39456,40278,41100,41922,42744,43566,44388,45210,46032,46854,47676,48498,49320,50142,50964,51786,52608,53430,54252,55074,55896,56718,57540,58362,59184,60006,60828,61650,62472,63294,64116,64938,65760,66582,67404,68226,69048,69870,70692,71514,72336,73158,73980,74802,75624,76446,77268,78090,78912,79734,80556,81378,82200],"measured_values":[1025343.0,1945981.0,2956680.0,3934653.0,4896744.0,5868589.0,6837023.0,7786679.0,8763480.0,9736880.0,10711353.0,11686662.0,12659191.0,13725818.0,14580251.0,15634903.0,16611330.0,17579877.0,18558680.0,19533539.0,20606499.0,21555867.0,22427816.0,23397250.0,24301792.0,25270938.0,26210513.0,27208964.0,28276194.0,29252336.0,30225416.0,31093562.0,32025564.0,32998162.0,33966369.0,34930984.0,35904564.0,36969866.0,38038673.0,39493872.0,40103437.0,40971879.0,41913240.0,42821421.0,43812069.0,44786335.0,45761089.0,46825957.0,47696742.0,48766420.0,49725775.0,50518139.0,52044550.0,52686545.0,53732260.0,54423269.0,55317460.0,56474921.0,57412468.0,58602828.0,59318050.0,60387398.0,61250240.0,62299791.0,63069992.0,64452328.0,65116695.0,66330638.0,67283555.0,69102127.0,69646877.0,70566035.0,70985661.0,72163273.0,73250825.0,74396751.0,75173021.0,76427568.0,77348092.0,77923956.0,79686961.0,79904609.0,81320343.0,82451053.0,83066349.0,83921970.0,84932232.0,86209750.0,86818311.0,87768995.0,88852239.0,90026366.0,91021316.0,93253560.0,92752952.0,93654928.0,94415349.0,95801890.0,97044065.0,97285710.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":1188.2486061777547,"lower_bound":1186.973549748805,"upper_bound":1189.6832233882358,"unit":"ns"},"mean":{"estimate":1187.8290850041158,"lower_bound":1186.505671999466,"upper_bound":1189.522178054465,"unit":"ns"},"median":{"estimate":1186.4595228440119,"lower_bound":1185.7249804660455,"upper_bound":1187.6308415135497,"unit":"ns"},"median_abs_dev":{"estimate":3.640712779445099,"lower_bound":2.9609947866197786,"upper_bound":5.423506719406874,"unit":"ns"},"slope":{"estimate":1188.2486061777547,"lower_bound":1186.973549748805,"upper_bound":1189.6832233882358,"unit":"ns"},"change":{"mean":{"estimate":-0.006196041027354382,"lower_bound":-0.007924183976128606,"upper_bound":-0.004336462863091226,"unit":"%"},"median":{"estimate":-0.006587414074345155,"lower_bound":-0.007545150169760317,"upper_bound":-0.005805278107889333,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"meq/100000","report_directory":"/root/fuel-core/target/criterion/reports/meq/100000","iteration_count":[551,1102,1653,2204,2755,3306,3857,4408,4959,5510,6061,6612,7163,7714,8265,8816,9367,9918,10469,11020,11571,12122,12673,13224,13775,14326,14877,15428,15979,16530,17081,17632,18183,18734,19285,19836,20387,20938,21489,22040,22591,23142,23693,24244,24795,25346,25897,26448,26999,27550,28101,28652,29203,29754,30305,30856,31407,31958,32509,33060,33611,34162,34713,35264,35815,36366,36917,37468,38019,38570,39121,39672,40223,40774,41325,41876,42427,42978,43529,44080,44631,45182,45733,46284,46835,47386,47937,48488,49039,49590,50141,50692,51243,51794,52345,52896,53447,53998,54549,55100],"measured_values":[1038775.0,1961314.0,2940301.0,3917050.0,4892998.0,5873249.0,6851994.0,7832667.0,8827075.0,9792995.0,10816231.0,11761615.0,12722646.0,13713700.0,14693928.0,15683975.0,16643418.0,17640694.0,18590038.0,19579787.0,20565691.0,21583536.0,22541683.0,23499430.0,24504050.0,25455096.0,26429958.0,27402934.0,28502009.0,29438807.0,30347555.0,31353393.0,32307687.0,33320334.0,34469801.0,35329686.0,36234792.0,37191085.0,38276995.0,39692652.0,40449214.0,41153823.0,42232733.0,43087738.0,44129539.0,45206383.0,45975731.0,47048951.0,48043285.0,49296555.0,49983152.0,51194522.0,51914649.0,52873444.0,53957797.0,54984946.0,55842913.0,56856631.0,57779715.0,58862357.0,59849849.0,60938553.0,61830740.0,62845257.0,64243266.0,65231937.0,65797326.0,66756160.0,67615840.0,68699863.0,69703285.0,70658997.0,71744527.0,72529423.0,73520334.0,74510724.0,75491636.0,76548905.0,77466802.0,78548968.0,79650856.0,80440118.0,81385732.0,82243834.0,83278920.0,84273886.0,85348168.0,86311891.0,87212444.0,88151590.0,89710982.0,90260555.0,91269342.0,92251964.0,93115213.0,94099281.0,94964586.0,95935602.0,96937178.0,97957535.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":1780.453593646116,"lower_bound":1779.628454229876,"upper_bound":1781.3966420114787,"unit":"ns"},"mean":{"estimate":1781.1794343014126,"lower_bound":1779.533802578542,"upper_bound":1783.757865380742,"unit":"ns"},"median":{"estimate":1778.9920882486388,"lower_bound":1778.6493897014343,"upper_bound":1779.8934059286146,"unit":"ns"},"median_abs_dev":{"estimate":2.8934243497203247,"lower_bound":2.231107696597931,"upper_bound":3.3623790984917727,"unit":"ns"},"slope":{"estimate":1780.453593646116,"lower_bound":1779.628454229876,"upper_bound":1781.3966420114787,"unit":"ns"},"change":{"mean":{"estimate":-0.0017750089598752572,"lower_bound":-0.003588570892619977,"upper_bound":-0.000014372038836110725,"unit":"%"},"median":{"estimate":-0.002287553060515979,"lower_bound":-0.0028686837428583134,"upper_bound":-0.0016056771715634577,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"meq","benchmarks":["meq/1","meq/10","meq/100","meq/1000","meq/10000","meq/19753","meq/29629","meq/44444","meq/66666","meq/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/meq"} +{"reason":"benchmark-complete","id":"poph/poph","report_directory":"/root/fuel-core/target/criterion/reports/poph/poph","iteration_count":[19657,39314,58971,78628,98285,117942,137599,157256,176913,196570,216227,235884,255541,275198,294855,314512,334169,353826,373483,393140,412797,432454,452111,471768,491425,511082,530739,550396,570053,589710,609367,629024,648681,668338,687995,707652,727309,746966,766623,786280,805937,825594,845251,864908,884565,904222,923879,943536,963193,982850,1002507,1022164,1041821,1061478,1081135,1100792,1120449,1140106,1159763,1179420,1199077,1218734,1238391,1258048,1277705,1297362,1317019,1336676,1356333,1375990,1395647,1415304,1434961,1454618,1474275,1493932,1513589,1533246,1552903,1572560,1592217,1611874,1631531,1651188,1670845,1690502,1710159,1729816,1749473,1769130,1788787,1808444,1828101,1847758,1867415,1887072,1906729,1926386,1946043,1965700],"measured_values":[743100.0,1456968.0,2183955.0,2915279.0,3642313.0,4368723.0,5097189.0,5831507.0,6559527.0,7280614.0,8072426.0,8752480.0,9469441.0,10178211.0,11067250.0,11712787.0,12462907.0,13193344.0,13944865.0,14572092.0,15290696.0,16022811.0,16754921.0,17485557.0,18206738.0,18950039.0,19677135.0,20415896.0,21095197.0,21824201.0,22522911.0,23322268.0,23999106.0,24726236.0,25473902.0,26241254.0,26939756.0,27657149.0,28363098.0,29180143.0,29857906.0,30538640.0,31389852.0,32055634.0,32863293.0,33600771.0,34232226.0,34949285.0,35702972.0,36488498.0,37169326.0,37888642.0,38872215.0,39342852.0,40081000.0,40851007.0,41633144.0,42231877.0,42994619.0,43721377.0,44416910.0,45133388.0,45922289.0,46777926.0,47395236.0,48134153.0,48779933.0,49672483.0,50283958.0,51009937.0,51673861.0,52450981.0,53217116.0,54074547.0,54756332.0,55368918.0,56079868.0,56860601.0,57584532.0,58267172.0,59110409.0,59787095.0,60460668.0,61230721.0,61990760.0,62921777.0,63342467.0,64136119.0,65215867.0,65556400.0,66375932.0,67198811.0,67788218.0,68481331.0,69250911.0,69990094.0,70817487.0,71437895.0,72174683.0,72937858.0],"unit":"ns","throughput":[],"typical":{"estimate":37.09519298393938,"lower_bound":37.08203026634612,"upper_bound":37.10978801527494,"unit":"ns"},"mean":{"estimate":37.10104967681272,"lower_bound":37.08141907742087,"upper_bound":37.12418358769349,"unit":"ns"},"median":{"estimate":37.07567511581797,"lower_bound":37.06421800546031,"upper_bound":37.08248656926609,"unit":"ns"},"median_abs_dev":{"estimate":0.0426792833550737,"lower_bound":0.028316158717816863,"upper_bound":0.05493933735487641,"unit":"ns"},"slope":{"estimate":37.09519298393938,"lower_bound":37.08203026634612,"upper_bound":37.10978801527494,"unit":"ns"},"change":{"mean":{"estimate":-0.032184591419502695,"lower_bound":-0.033571410957547544,"upper_bound":-0.031048671916648833,"unit":"%"},"median":{"estimate":-0.03204514181257556,"lower_bound":-0.032571562958288,"upper_bound":-0.03164412039428273,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"poph","benchmarks":["poph/poph"],"report_directory":"/root/fuel-core/target/criterion/reports/poph"} +{"reason":"benchmark-complete","id":"popl/popl","report_directory":"/root/fuel-core/target/criterion/reports/popl/popl","iteration_count":[19553,39106,58659,78212,97765,117318,136871,156424,175977,195530,215083,234636,254189,273742,293295,312848,332401,351954,371507,391060,410613,430166,449719,469272,488825,508378,527931,547484,567037,586590,606143,625696,645249,664802,684355,703908,723461,743014,762567,782120,801673,821226,840779,860332,879885,899438,918991,938544,958097,977650,997203,1016756,1036309,1055862,1075415,1094968,1114521,1134074,1153627,1173180,1192733,1212286,1231839,1251392,1270945,1290498,1310051,1329604,1349157,1368710,1388263,1407816,1427369,1446922,1466475,1486028,1505581,1525134,1544687,1564240,1583793,1603346,1622899,1642452,1662005,1681558,1701111,1720664,1740217,1759770,1779323,1798876,1818429,1837982,1857535,1877088,1896641,1916194,1935747,1955300],"measured_values":[786511.0,1451566.0,2206977.0,2940624.0,3633565.0,4427944.0,5129179.0,5798245.0,6524225.0,7236458.0,7962625.0,8684859.0,9409917.0,10131588.0,10914489.0,11728455.0,12368473.0,13144440.0,13923670.0,14698597.0,15357549.0,16159129.0,16737318.0,17459874.0,18158579.0,18976141.0,19817513.0,20598842.0,21105530.0,21910674.0,22723240.0,23466765.0,24097881.0,24797822.0,25748790.0,26444350.0,26923864.0,27596146.0,28430872.0,29375832.0,30009357.0,30555122.0,31408150.0,32138585.0,32638003.0,33558189.0,34477128.0,35151295.0,35930331.0,36294886.0,37061106.0,37872729.0,38689155.0,39531349.0,40319869.0,40968144.0,41820233.0,42250180.0,42803650.0,43600745.0,44750701.0,45595002.0,46306070.0,46928028.0,47482573.0,48060026.0,49079141.0,49785239.0,50574796.0,51458980.0,51844490.0,52515583.0,53257436.0,53976136.0,55081897.0,55520882.0,55783072.0,57071102.0,57489172.0,58497549.0,59261284.0,60107393.0,60452122.0,61153242.0,61807229.0,62751633.0,63441739.0,64536158.0,65050112.0,66087165.0,66726732.0,67530317.0,68039522.0,68483151.0,68993899.0,70390440.0,71189348.0,71842886.0,72662195.0,73591911.0],"unit":"ns","throughput":[],"typical":{"estimate":37.39247657964733,"lower_bound":37.3532231936376,"upper_bound":37.429667668269,"unit":"ns"},"mean":{"estimate":37.388929943879056,"lower_bound":37.33336704359792,"upper_bound":37.463988185481725,"unit":"ns"},"median":{"estimate":37.36099432643468,"lower_bound":37.317554910386676,"upper_bound":37.43988229522419,"unit":"ns"},"median_abs_dev":{"estimate":0.21301154062698746,"lower_bound":0.1577558863992869,"upper_bound":0.246091954084244,"unit":"ns"},"slope":{"estimate":37.39247657964733,"lower_bound":37.3532231936376,"upper_bound":37.429667668269,"unit":"ns"},"change":{"mean":{"estimate":-0.017387702946183747,"lower_bound":-0.019743180191383193,"upper_bound":-0.015082232616148177,"unit":"%"},"median":{"estimate":-0.01709124138056417,"lower_bound":-0.018474238650141528,"upper_bound":-0.01493178062006968,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"popl","benchmarks":["popl/popl"],"report_directory":"/root/fuel-core/target/criterion/reports/popl"} +{"reason":"benchmark-complete","id":"pshh/pshh","report_directory":"/root/fuel-core/target/criterion/reports/pshh/pshh","iteration_count":[16767,33534,50301,67068,83835,100602,117369,134136,150903,167670,184437,201204,217971,234738,251505,268272,285039,301806,318573,335340,352107,368874,385641,402408,419175,435942,452709,469476,486243,503010,519777,536544,553311,570078,586845,603612,620379,637146,653913,670680,687447,704214,720981,737748,754515,771282,788049,804816,821583,838350,855117,871884,888651,905418,922185,938952,955719,972486,989253,1006020,1022787,1039554,1056321,1073088,1089855,1106622,1123389,1140156,1156923,1173690,1190457,1207224,1223991,1240758,1257525,1274292,1291059,1307826,1324593,1341360,1358127,1374894,1391661,1408428,1425195,1441962,1458729,1475496,1492263,1509030,1525797,1542564,1559331,1576098,1592865,1609632,1626399,1643166,1659933,1676700],"measured_values":[782097.0,1515751.0,2284127.0,3084038.0,3861223.0,4632003.0,5410087.0,6065733.0,6857540.0,7612655.0,8422146.0,9098664.0,9856466.0,10640986.0,11440841.0,12144008.0,12904533.0,13685110.0,14405380.0,15229410.0,15960207.0,16841455.0,17459050.0,18272197.0,18953533.0,19744227.0,20470759.0,21489454.0,22146602.0,22844993.0,23732333.0,24260262.0,25018398.0,26003361.0,26944200.0,27395284.0,28181548.0,28857732.0,29862449.0,30572320.0,31268292.0,32004388.0,32679240.0,33636828.0,34312790.0,35216276.0,36068334.0,36716134.0,37497382.0,37916692.0,38912989.0,39921010.0,40471072.0,41412966.0,41912916.0,42878399.0,43508897.0,44586559.0,44982594.0,45777925.0,46581521.0,47535396.0,48148970.0,48716115.0,49862215.0,50365476.0,51233046.0,51937420.0,52428345.0,53709781.0,54397410.0,54953898.0,55897830.0,56541236.0,57279992.0,58089564.0,58894039.0,59583939.0,60390439.0,60879514.0,61838691.0,62594570.0,63418593.0,64233353.0,65068847.0,65761561.0,66547310.0,67243846.0,68065695.0,68564706.0,69788398.0,70640898.0,71071607.0,71791051.0,72826523.0,73306629.0,74073321.0,74599479.0,75699255.0,76252882.0],"unit":"ns","throughput":[],"typical":{"estimate":45.56999209984209,"lower_bound":45.541687789245984,"upper_bound":45.598052214061745,"unit":"ns"},"mean":{"estimate":45.54511695975461,"lower_bound":45.50267745361169,"upper_bound":45.589915823817584,"unit":"ns"},"median":{"estimate":45.54536934366807,"lower_bound":45.50604069384657,"upper_bound":45.58175971129988,"unit":"ns"},"median_abs_dev":{"estimate":0.17783051304749106,"lower_bound":0.1315155850408944,"upper_bound":0.22843405539331793,"unit":"ns"},"slope":{"estimate":45.56999209984209,"lower_bound":45.541687789245984,"upper_bound":45.598052214061745,"unit":"ns"},"change":{"mean":{"estimate":0.01229593958723596,"lower_bound":0.011181019545076115,"upper_bound":0.013416708859436188,"unit":"%"},"median":{"estimate":0.012697890352680652,"lower_bound":0.011834862517708267,"upper_bound":0.01361668551068016,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"pshh","benchmarks":["pshh/pshh"],"report_directory":"/root/fuel-core/target/criterion/reports/pshh"} +{"reason":"benchmark-complete","id":"pshl/pshl","report_directory":"/root/fuel-core/target/criterion/reports/pshl/pshl","iteration_count":[16749,33498,50247,66996,83745,100494,117243,133992,150741,167490,184239,200988,217737,234486,251235,267984,284733,301482,318231,334980,351729,368478,385227,401976,418725,435474,452223,468972,485721,502470,519219,535968,552717,569466,586215,602964,619713,636462,653211,669960,686709,703458,720207,736956,753705,770454,787203,803952,820701,837450,854199,870948,887697,904446,921195,937944,954693,971442,988191,1004940,1021689,1038438,1055187,1071936,1088685,1105434,1122183,1138932,1155681,1172430,1189179,1205928,1222677,1239426,1256175,1272924,1289673,1306422,1323171,1339920,1356669,1373418,1390167,1406916,1423665,1440414,1457163,1473912,1490661,1507410,1524159,1540908,1557657,1574406,1591155,1607904,1624653,1641402,1658151,1674900],"measured_values":[820071.0,1514117.0,2284949.0,3030156.0,3850419.0,4560424.0,5323053.0,6078106.0,6886765.0,7603271.0,8397767.0,9136430.0,9823031.0,10715370.0,11481274.0,12150622.0,12960992.0,13726848.0,14460841.0,15194056.0,16076785.0,16745920.0,17545197.0,18242947.0,18932890.0,19834030.0,20661061.0,21280801.0,22148699.0,22946833.0,23612298.0,24351968.0,25112028.0,25825934.0,26632215.0,27594474.0,28230646.0,29111880.0,29654341.0,30503841.0,31226035.0,31863814.0,32783082.0,33616043.0,34339833.0,35046541.0,35920927.0,36593905.0,37250623.0,37953182.0,39007705.0,39558297.0,40213082.0,41092540.0,41780823.0,42636659.0,43267931.0,44073626.0,44949701.0,45709423.0,46604070.0,47213521.0,47887022.0,48606089.0,49414551.0,50066757.0,50775394.0,51599231.0,52637519.0,53081029.0,54013666.0,54583337.0,55547972.0,56187259.0,56982113.0,57976144.0,58487337.0,59199141.0,60024708.0,60782170.0,61504317.0,62079078.0,63032174.0,63811263.0,64655563.0,65360013.0,66035377.0,66965595.0,67562721.0,68721966.0,69417392.0,70979487.0,70985217.0,71577645.0,72327376.0,72901249.0,73942883.0,74462090.0,75631457.0,75738922.0],"unit":"ns","throughput":[],"typical":{"estimate":45.43125101540286,"lower_bound":45.39192620986517,"upper_bound":45.47828451323862,"unit":"ns"},"mean":{"estimate":45.48649220560586,"lower_bound":45.428718921566784,"upper_bound":45.5731453201977,"unit":"ns"},"median":{"estimate":45.43261295427239,"lower_bound":45.38878714659785,"upper_bound":45.46326995705047,"unit":"ns"},"median_abs_dev":{"estimate":0.13719441987192196,"lower_bound":0.09947576738354674,"upper_bound":0.1670603399202304,"unit":"ns"},"slope":{"estimate":45.43125101540286,"lower_bound":45.39192620986517,"upper_bound":45.47828451323862,"unit":"ns"},"change":{"mean":{"estimate":0.007496700309560511,"lower_bound":0.005913547119203706,"upper_bound":0.009453092823785791,"unit":"%"},"median":{"estimate":0.007059809704843989,"lower_bound":0.006073971270672995,"upper_bound":0.007792867242159823,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"pshl","benchmarks":["pshl/pshl"],"report_directory":"/root/fuel-core/target/criterion/reports/pshl"} +{"reason":"benchmark-complete","id":"bal/bal","report_directory":"/root/fuel-core/target/criterion/reports/bal/bal","iteration_count":[1651,3302,4953,6604,8255,9906,11557,13208,14859,16510,18161,19812,21463,23114,24765,26416,28067,29718,31369,33020,34671,36322,37973,39624,41275,42926,44577,46228,47879,49530,51181,52832,54483,56134,57785,59436,61087,62738,64389,66040,67691,69342,70993,72644,74295,75946,77597,79248,80899,82550,84201,85852,87503,89154,90805,92456,94107,95758,97409,99060,100711,102362,104013,105664,107315,108966,110617,112268,113919,115570,117221,118872,120523,122174,123825,125476,127127,128778,130429,132080,133731,135382,137033,138684,140335,141986,143637,145288,146939,148590,150241,151892,153543,155194,156845,158496,160147,161798,163449,165100],"measured_values":[1028267.0,1901403.0,2835743.0,3800010.0,4735862.0,5693116.0,6628843.0,7587506.0,8518002.0,9467505.0,10424492.0,11377485.0,12351538.0,13243607.0,14201713.0,15153047.0,16230709.0,17284136.0,17942324.0,18984719.0,20050712.0,21003721.0,21800650.0,22865856.0,23750829.0,24766624.0,25781706.0,26728759.0,27508234.0,28597253.0,29603539.0,30363127.0,31203792.0,32208244.0,33182732.0,34027328.0,35321575.0,36081438.0,36966683.0,38197305.0,38854599.0,40156960.0,40970498.0,41889057.0,43409349.0,44103534.0,44844842.0,45961225.0,46747801.0,47762547.0,48687872.0,49784495.0,50719959.0,51572683.0,52819263.0,53635131.0,54676214.0,55488587.0,56386169.0,57378023.0,58264357.0,59418946.0,60333794.0,61296294.0,62265266.0,63177884.0,64099947.0,65102782.0,66473073.0,67022350.0,68758120.0,70429780.0,70478995.0,71541843.0,72377437.0,73154666.0,340227159.0,407433784.0,411868786.0,416908776.0,421855853.0,426982108.0,432654821.0,437002764.0,442583529.0,447775105.0,453017634.0,463659590.0,467916350.0,470269364.0,474292564.0,479352991.0,483791729.0,488439856.0,493951807.0,499008870.0,501899644.0,507567085.0,511689550.0,516196406.0],"unit":"ns","throughput":[],"typical":{"estimate":2009.7913888945327,"lower_bound":1662.244855604577,"upper_bound":2302.416023254384,"unit":"ns"},"mean":{"estimate":1191.7279189306087,"lower_bound":986.0146938870652,"upper_bound":1409.0082857309264,"unit":"ns"},"median":{"estimate":579.3458992112061,"lower_bound":578.313633872689,"upper_bound":580.1057503028468,"unit":"ns"},"median_abs_dev":{"estimate":7.184959690106858,"lower_bound":4.6461398123441455,"upper_bound":8.727895380383895,"unit":"ns"},"slope":{"estimate":2009.7913888945327,"lower_bound":1662.244855604577,"upper_bound":2302.416023254384,"unit":"ns"},"change":{"mean":{"estimate":-0.40706679825125747,"lower_bound":-0.5262015831855312,"upper_bound":-0.2753543802776087,"unit":"%"},"median":{"estimate":-0.7647264563639622,"lower_bound":-0.8265236918918937,"upper_bound":-0.10960827227524206,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"bal","benchmarks":["bal/bal"],"report_directory":"/root/fuel-core/target/criterion/reports/bal"} +{"reason":"benchmark-complete","id":"sww/sww","report_directory":"/root/fuel-core/target/criterion/reports/sww/sww","iteration_count":[4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236,240,244,248,252,256,260,264,268,272,276,280,284,288,292,296,300,304,308,312,316,320,324,328,332,336,340,344,348,352,356,360,364,368,372,376,380,384,388,392,396,400],"measured_values":[1361758.0,2516198.0,3769888.0,4996661.0,6249087.0,7544043.0,8792962.0,10064361.0,11302494.0,12570193.0,13816974.0,15067674.0,16356320.0,17627289.0,18862435.0,20100032.0,21459174.0,23212224.0,24472207.0,25811918.0,26685404.0,27772608.0,28908313.0,30122097.0,31588479.0,32766602.0,33948403.0,35499362.0,37130824.0,37704549.0,38844180.0,40204283.0,41477224.0,42693508.0,43951596.0,45235499.0,46452616.0,48466705.0,49277115.0,50442470.0,51597157.0,52839005.0,53866228.0,55325283.0,56613014.0,57736612.0,58923972.0,60709313.0,61536874.0,63196009.0,64335226.0,65478967.0,66704957.0,68446702.0,69145312.0,70357146.0,71580442.0,73003907.0,74223688.0,75399148.0,76699576.0,77732131.0,78944009.0,80445108.0,81487922.0,82751234.0,84141179.0,85110408.0,86594762.0,88059721.0,89131521.0,90272135.0,92612939.0,92861294.0,94322373.0,95336082.0,96614238.0,98777414.0,99054646.0,100377314.0,101661447.0,102940719.0,104986588.0,105415528.0,106651617.0,108065457.0,110365404.0,110280636.0,111645185.0,113983474.0,114163921.0,115351899.0,116865323.0,118457436.0,119080939.0,120134357.0,123820659.0,123486761.0,124044619.0,125537501.0],"unit":"ns","throughput":[],"typical":{"estimate":314460.3049238954,"lower_bound":314102.3951405112,"upper_bound":314882.1841772939,"unit":"ns"},"mean":{"estimate":315011.31875515846,"lower_bound":314483.73506149405,"upper_bound":315708.7055152154,"unit":"ns"},"median":{"estimate":314183.8458333333,"lower_bound":313999.0,"upper_bound":314358.22062841535,"unit":"ns"},"median_abs_dev":{"estimate":744.1719957321604,"lower_bound":561.9559011396639,"upper_bound":1135.64031468622,"unit":"ns"},"slope":{"estimate":314460.3049238954,"lower_bound":314102.3951405112,"upper_bound":314882.1841772939,"unit":"ns"},"change":{"mean":{"estimate":-0.06032463269961452,"lower_bound":-0.06331830377795229,"upper_bound":-0.05787966545492846,"unit":"%"},"median":{"estimate":-0.0613110763539676,"lower_bound":-0.06197639198292251,"upper_bound":-0.06063145843842937,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"sww","benchmarks":["sww/sww"],"report_directory":"/root/fuel-core/target/criterion/reports/sww"} +{"reason":"benchmark-complete","id":"srw/srw","report_directory":"/root/fuel-core/target/criterion/reports/srw/srw","iteration_count":[337,674,1011,1348,1685,2022,2359,2696,3033,3370,3707,4044,4381,4718,5055,5392,5729,6066,6403,6740,7077,7414,7751,8088,8425,8762,9099,9436,9773,10110,10447,10784,11121,11458,11795,12132,12469,12806,13143,13480,13817,14154,14491,14828,15165,15502,15839,16176,16513,16850,17187,17524,17861,18198,18535,18872,19209,19546,19883,20220,20557,20894,21231,21568,21905,22242,22579,22916,23253,23590,23927,24264,24601,24938,25275,25612,25949,26286,26623,26960,27297,27634,27971,28308,28645,28982,29319,29656,29993,30330,30667,31004,31341,31678,32015,32352,32689,33026,33363,33700],"measured_values":[1034318.0,1948940.0,2940412.0,3911951.0,4869498.0,5878174.0,6838334.0,7821164.0,8853235.0,9842183.0,10820542.0,11841490.0,12805789.0,13765894.0,14831659.0,15818101.0,16816079.0,17836035.0,18754947.0,19795108.0,20777437.0,21740886.0,22652902.0,23833247.0,24814084.0,25790856.0,26897247.0,27784419.0,28526228.0,29642221.0,30461717.0,31471009.0,32486339.0,33304603.0,34311845.0,35595731.0,36471530.0,37431926.0,38585600.0,39351537.0,40394146.0,41549795.0,42243458.0,43110381.0,44351484.0,45137848.0,46159430.0,47250730.0,48207310.0,49116574.0,50162326.0,51129512.0,52027321.0,53188984.0,54204467.0,54998427.0,56123763.0,57138094.0,58128518.0,59164331.0,59956562.0,61083842.0,62126531.0,62876747.0,63807654.0,65119565.0,65803970.0,66742688.0,67721239.0,68948293.0,69999230.0,71183477.0,71762985.0,72674764.0,74006255.0,75024414.0,75769918.0,77218030.0,77906550.0,78628642.0,79893921.0,80675252.0,81655821.0,82982522.0,83513183.0,86298239.0,87856341.0,87436375.0,87616727.0,88650558.0,89324746.0,90574040.0,91742495.0,92120623.0,93447786.0,94691622.0,95577519.0,96590599.0,97973012.0,98306767.0],"unit":"ns","throughput":[],"typical":{"estimate":2925.5359522451204,"lower_bound":2921.6172704526475,"upper_bound":2930.3820181553506,"unit":"ns"},"mean":{"estimate":2925.125835517899,"lower_bound":2921.5156491697007,"upper_bound":2929.5384070223486,"unit":"ns"},"median":{"estimate":2922.677146727611,"lower_bound":2919.355053594138,"upper_bound":2923.983504867109,"unit":"ns"},"median_abs_dev":{"estimate":9.958738071649059,"lower_bound":7.174984394259294,"upper_bound":13.180193023408455,"unit":"ns"},"slope":{"estimate":2925.5359522451204,"lower_bound":2921.6172704526475,"upper_bound":2930.3820181553506,"unit":"ns"},"change":{"mean":{"estimate":-0.06648880257063361,"lower_bound":-0.06856956645419002,"upper_bound":-0.06458735710459505,"unit":"%"},"median":{"estimate":-0.06644391423065155,"lower_bound":-0.06762328869966727,"upper_bound":-0.06569655443612943,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"srw","benchmarks":["srw/srw"],"report_directory":"/root/fuel-core/target/criterion/reports/srw"} +{"reason":"benchmark-complete","id":"scwq/1","report_directory":"/root/fuel-core/target/criterion/reports/scwq/1","iteration_count":[4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236,240,244,248,252,256,260,264,268,272,276,280,284,288,292,296,300,304,308,312,316,320,324,328,332,336,340,344,348,352,356,360,364,368,372,376,380,384,388,392,396,400],"measured_values":[1303844.0,2430330.0,3636793.0,4851697.0,6070785.0,7276177.0,8471800.0,9704079.0,10918282.0,12097537.0,13348954.0,14556266.0,15766283.0,17008350.0,18195285.0,19410079.0,20602163.0,21855577.0,23040883.0,24250518.0,25499064.0,26677798.0,27996304.0,29176519.0,30392908.0,31499532.0,32794636.0,33772603.0,35128016.0,36296666.0,37352780.0,38601529.0,39863118.0,41195135.0,42440285.0,43640729.0,44865667.0,46021719.0,47256917.0,48522901.0,49651243.0,50885077.0,52163507.0,53487058.0,54612287.0,55850834.0,56905072.0,58184600.0,59613663.0,60621759.0,61956020.0,63197420.0,64242997.0,65584607.0,66780072.0,67801176.0,69202301.0,70425533.0,71539648.0,72876858.0,74245401.0,75347346.0,76347549.0,77576582.0,78711932.0,80055086.0,81228803.0,82323768.0,83545426.0,85010794.0,86057797.0,87308713.0,88278344.0,89819702.0,91025169.0,92015141.0,93445260.0,94692173.0,95690887.0,97251096.0,98300588.0,99429427.0,100696071.0,101557505.0,103178448.0,104347656.0,105769984.0,106678537.0,107943248.0,109256365.0,110438059.0,111292149.0,112629965.0,114005406.0,115188867.0,116438014.0,117674012.0,118887801.0,120023852.0,121286926.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":303191.0311844244,"lower_bound":303089.7922401256,"upper_bound":303290.5234555811,"unit":"ns"},"mean":{"estimate":303399.8815607935,"lower_bound":303092.7921233083,"upper_bound":303919.67392336304,"unit":"ns"},"median":{"estimate":303214.34289325844,"lower_bound":303138.4969512195,"upper_bound":303282.484375,"unit":"ns"},"median_abs_dev":{"estimate":423.7265972850525,"lower_bound":281.7783997280378,"upper_bound":541.4578653871725,"unit":"ns"},"slope":{"estimate":303191.0311844244,"lower_bound":303089.7922401256,"upper_bound":303290.5234555811,"unit":"ns"},"change":{"mean":{"estimate":-0.06094182302703033,"lower_bound":-0.06266030381068927,"upper_bound":-0.058938982056712885,"unit":"%"},"median":{"estimate":-0.06059816120406003,"lower_bound":-0.060979781299378644,"upper_bound":-0.060281395502716606,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"scwq/10","report_directory":"/root/fuel-core/target/criterion/reports/scwq/10","iteration_count":[17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17],"measured_values":[51412900.0,51369474.0,51474877.0,51634966.0,51718425.0,51544832.0,51608684.0,51505911.0,51351100.0,51564456.0,51928106.0,51861621.0,51408285.0,51241108.0,51402886.0,51551746.0,51426311.0,51476750.0,51439842.0,51382110.0,51412246.0,51516754.0,51324955.0,51465962.0,52280472.0,51624891.0,51571905.0,51565932.0,51545369.0,51524762.0,51558359.0,51387078.0,51393014.0,51562422.0,51524566.0,51517087.0,51564512.0,51504111.0,51533038.0,51564028.0,51482049.0,51428959.0,51554890.0,51483153.0,51550101.0,51575879.0,51565495.0,51485717.0,51755450.0,51572243.0,51461426.0,51577019.0,51495666.0,51545889.0,51507183.0,51540619.0,51541095.0,51517877.0,51529896.0,51514519.0,51469622.0,51600974.0,51528872.0,51510449.0,51551065.0,51529606.0,51521388.0,51472470.0,51446286.0,51767290.0,51490142.0,51688355.0,51334281.0,51405706.0,51528248.0,51550983.0,52349375.0,51628817.0,51565628.0,51639510.0,51707874.0,51578694.0,51628741.0,51650686.0,51587078.0,51544733.0,51392681.0,51458273.0,51614095.0,51552560.0,51619870.0,51633889.0,51621494.0,51603999.0,51619429.0,51598130.0,51606923.0,51627003.0,51590213.0,51678060.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":3032602.629411764,"lower_bound":3030974.681897059,"upper_bound":3034450.3552499996,"unit":"ns"},"mean":{"estimate":3032602.629411764,"lower_bound":3030974.681897059,"upper_bound":3034450.3552499996,"unit":"ns"},"median":{"estimate":3032064.7352941176,"lower_bound":3030868.3529411764,"upper_bound":3033083.6470588236,"unit":"ns"},"median_abs_dev":{"estimate":5397.0999630057495,"lower_bound":3614.753159354674,"upper_bound":6622.5124471328445,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.054204240930148084,"lower_bound":-0.05484120943038262,"upper_bound":-0.053519492971209025,"unit":"%"},"median":{"estimate":-0.05453584084310792,"lower_bound":-0.055124823143554824,"upper_bound":-0.05405190044126684,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"scwq/100","report_directory":"/root/fuel-core/target/criterion/reports/scwq/100","iteration_count":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],"measured_values":[62186669.0,62378899.0,62440106.0,61887807.0,62401776.0,61985472.0,61910665.0,61951249.0,61868516.0,61802269.0,61819748.0,61947425.0,61914324.0,61947960.0,62067908.0,61889883.0,62028845.0,61733947.0,62031283.0,62084843.0,61871185.0,61904475.0,62077396.0,61981259.0,61981525.0,62039021.0,62033620.0,62080878.0,61974314.0,61938174.0,61851260.0,62139440.0,61945556.0,62287187.0,61881147.0,61890250.0,62049599.0,61865701.0,61923519.0,62640626.0,61716807.0,62210659.0,61700230.0,62042569.0,61834197.0,61842872.0,61959741.0,61813305.0,62404096.0,61995892.0,62092771.0,62019996.0,61810965.0,61920125.0,62006189.0,62042691.0,61951381.0,61771609.0,61803629.0,61863859.0,61710243.0,61792012.0,62069182.0,61997459.0,61909702.0,61854107.0,61995882.0,62281934.0,62368341.0,61914579.0,61831840.0,61942225.0,62011521.0,62038088.0,61945562.0,61897304.0,62038679.0,62044256.0,62057288.0,61918133.0,62013647.0,61842105.0,61777673.0,61882082.0,62005013.0,62047906.0,61885704.0,61980584.0,62053076.0,62635837.0,61994005.0,62580786.0,62189601.0,62116823.0,61920038.0,62680331.0,62344949.0,62120722.0,61975152.0,61997147.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":31005504.135,"lower_bound":30986707.128250003,"upper_bound":31025652.2765,"unit":"ns"},"mean":{"estimate":31005504.135,"lower_bound":30986707.128250003,"upper_bound":31025652.2765,"unit":"ns"},"median":{"estimate":30990460.75,"lower_bound":30971946.75,"upper_bound":31004133.5,"unit":"ns"},"median_abs_dev":{"estimate":66321.14462256432,"lower_bound":50139.67785984278,"upper_bound":82273.92033934593,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.03756451858620147,"lower_bound":-0.038243351095978304,"upper_bound":-0.03682666866835101,"unit":"%"},"median":{"estimate":-0.03790981766457924,"lower_bound":-0.038812569550771836,"upper_bound":-0.03719911983297408,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"scwq/1000","report_directory":"/root/fuel-core/target/criterion/reports/scwq/1000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[287967668.0,287767553.0,286829202.0,287361150.0,288662401.0,287076794.0,287578210.0,286746653.0,286962976.0,287374923.0,287091650.0,286478625.0,287692175.0,287437604.0,288733658.0,287323780.0,287209941.0,286359709.0,286420923.0,287361154.0,286778474.0,286191215.0,286544099.0,286351642.0,287114504.0,287470384.0,286471448.0,287475299.0,286356062.0,287283799.0,286974184.0,286314130.0,286388739.0,287402800.0,287627195.0,286412805.0,287915767.0,288354089.0,288258105.0,287184217.0,286955847.0,287318613.0,286881432.0,286522360.0,286841040.0,288082788.0,286090287.0,286352996.0,286382733.0,286464936.0,286525338.0,287075787.0,289034117.0,287218863.0,286689450.0,286723941.0,286499721.0,286716879.0,287056365.0,287093521.0,287790739.0,287578860.0,287983331.0,287462878.0,286672780.0,287320978.0,287388549.0,287277170.0,287614782.0,287248743.0,287694894.0,287332009.0,287568820.0,287131788.0,287576337.0,287240845.0,287039673.0,286948917.0,288056429.0,287606635.0,287153681.0,287237333.0,287240266.0,287995324.0,286780117.0,286853330.0,287311376.0,287251365.0,286698658.0,287252028.0,287450841.0,287046846.0,286870793.0,287330749.0,287133405.0,287253559.0,287238378.0,287091105.0,287221997.0,287757950.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":287185369.78,"lower_bound":287075786.78650004,"upper_bound":287298746.91725,"unit":"ns"},"mean":{"estimate":287185369.78,"lower_bound":287075786.78650004,"upper_bound":287298746.91725,"unit":"ns"},"median":{"estimate":287220430.0,"lower_bound":287084222.0,"upper_bound":287277170.0,"unit":"ns"},"median_abs_dev":{"estimate":529056.1637073755,"lower_bound":341746.7069327831,"upper_bound":658837.7763032913,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.03765440897853045,"lower_bound":-0.03816478631061275,"upper_bound":-0.037160829814440834,"unit":"%"},"median":{"estimate":-0.03746514529930656,"lower_bound":-0.038210490025133326,"upper_bound":-0.03700988747042679,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"scwq/10000","report_directory":"/root/fuel-core/target/criterion/reports/scwq/10000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[2717476675.0,2718165456.0,2721044685.0,2723304855.0,2715469242.0,2710314370.0,2711336975.0,2717843507.0,2718952649.0,2717426658.0,2722781789.0,2723553635.0,2715195597.0,2723626044.0,2721053704.0,2720879663.0,2717816226.0,2724688557.0,2719193923.0,2715059471.0,2714880978.0,2719953231.0,2718873327.0,2722390490.0,2721314259.0,2720991600.0,2736373682.0,2724211230.0,2725016090.0,2718251916.0,2722199798.0,2732809852.0,2718186513.0,2721357651.0,2717259913.0,2717836631.0,2713243533.0,2726356234.0,2721074523.0,2722662724.0,2721901916.0,2719699938.0,2717801731.0,2721538513.0,2716427994.0,2712629651.0,2717184944.0,2718298603.0,2724763774.0,2722830517.0,2719283115.0,2720407713.0,2715868802.0,2717973884.0,2721523680.0,2726360086.0,2730336047.0,2724931842.0,2718594968.0,2714629981.0,2721183577.0,2718159416.0,2717108274.0,2723188288.0,2722287528.0,2718950117.0,2714698936.0,2718323124.0,2714451635.0,2728475730.0,2729252852.0,2727913668.0,2730179936.0,2721846826.0,2724253253.0,2722260333.0,2723946442.0,2727160916.0,2724451316.0,2725665910.0,2723799389.0,2720556076.0,2719977500.0,2719039572.0,2722751816.0,2724888757.0,2722039300.0,2721579112.0,2721312272.0,2715610451.0,2713169590.0,2710353145.0,2724629009.0,2721590513.0,2718284941.0,2723041700.0,2721101637.0,2716650452.0,2715401744.0,2720366868.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":2720633174.76,"lower_bound":2719738731.6015,"upper_bound":2721544287.44475,"unit":"ns"},"mean":{"estimate":2720633174.76,"lower_bound":2719738731.6015,"upper_bound":2721544287.44475,"unit":"ns"},"median":{"estimate":2721018142.5,"lower_bound":2719193923.0,"upper_bound":2721551396.0,"unit":"ns"},"median_abs_dev":{"estimate":4233870.381733775,"lower_bound":3312742.508237066,"upper_bound":5057315.3027147055,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.03729537654764725,"lower_bound":-0.03805202695173815,"upper_bound":-0.03656026742471479,"unit":"%"},"median":{"estimate":-0.036280139605079476,"lower_bound":-0.03700863119633291,"upper_bound":-0.035785483439090604,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"scwq/100000","report_directory":"/root/fuel-core/target/criterion/reports/scwq/100000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[26545009092.0,26541968555.0,26531125976.0,26538116368.0,26531754318.0,26531068496.0,26553711453.0,26522968393.0,26544403934.0,26505756744.0,26518136637.0,26535132749.0,26558039924.0,26508668997.0,26534654104.0,26482183949.0,26518105842.0,26459103207.0,26497342712.0,26528747448.0,26514247723.0,26475417443.0,26452548817.0,26479216590.0,26481256063.0,26525804464.0,26454152129.0,26537178403.0,26536219763.0,26542191577.0,26518949249.0,26485943915.0,26549345518.0,26535894630.0,26474848205.0,26476007938.0,26528978019.0,26534530063.0,26496814346.0,26484971710.0,26454410435.0,26457864004.0,26751463416.0,26452707884.0,26455321091.0,26488945971.0,26529616274.0,26521452227.0,26485987933.0,26501918824.0,26468829220.0,26508280055.0,26538291268.0,26559225287.0,26556598108.0,26481810006.0,26543978240.0,26473003171.0,26469289208.0,26501588036.0,26437593803.0,26519617617.0,26453250438.0,26495753137.0,26464345200.0,26523751981.0,26511104161.0,26460433784.0,26495841098.0,26494575443.0,26456858904.0,26475809309.0,26483120394.0,26480433116.0,26459128854.0,26462395564.0,26474185004.0,26454479498.0,26782636392.0,26598942999.0,26508558473.0,26476352634.0,26452919678.0,26437662622.0,26459267133.0,26444220537.0,26483700147.0,26631129507.0,26539523307.0,26537597252.0,26475627984.0,26694665523.0,26498413222.0,26515486491.0,26607030507.0,26535634923.0,26526591635.0,26753690789.0,26558079513.0,26510670398.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":26514021750.92,"lower_bound":26502812286.916,"upper_bound":26526746222.157497,"unit":"ns"},"mean":{"estimate":26514021750.92,"lower_bound":26502812286.916,"upper_bound":26526746222.157497,"unit":"ns"},"median":{"estimate":26508419264.0,"lower_bound":26492349554.0,"upper_bound":26520534922.0,"unit":"ns"},"median_abs_dev":{"estimate":43662404.656237364,"lower_bound":34925407.42895007,"upper_bound":53812232.889276884,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.020942596482843023,"lower_bound":-0.021664982544449405,"upper_bound":-0.020207638232325156,"unit":"%"},"median":{"estimate":-0.020370433026082213,"lower_bound":-0.021130032326867387,"upper_bound":-0.019864203973541272,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"scwq","benchmarks":["scwq/29629","scwq/19753","scwq/66666","scwq/44444","scwq/1","scwq/10","scwq/100","scwq/1000","scwq/10000","scwq/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/scwq"} +{"reason":"benchmark-complete","id":"swwq/1","report_directory":"/root/fuel-core/target/criterion/reports/swwq/1","iteration_count":[4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236,240,244,248,252,256,260,264,268,272,276,280,284,288,292,296,300,304,308,312,316,320,324,328,332,336,340,344,348,352,356,360,364,368,372,376,380,384,388,392,396,400],"measured_values":[1380259.0,2543665.0,3818635.0,5059641.0,6321012.0,7632697.0,8889633.0,10193350.0,11461679.0,12707960.0,13980646.0,15247914.0,16527203.0,17821147.0,19173957.0,20389652.0,21575996.0,22822937.0,24153688.0,25448071.0,26693725.0,27993555.0,29331295.0,30516322.0,31786737.0,33068885.0,34300662.0,35591231.0,36934773.0,38143840.0,39460906.0,40760168.0,41966533.0,43298279.0,44560955.0,45795296.0,47121035.0,48353395.0,49674289.0,50910017.0,52140978.0,53326079.0,54732000.0,56122117.0,57173406.0,58351468.0,59709688.0,60941479.0,62260048.0,63745193.0,64784093.0,65996962.0,67271946.0,68609295.0,69907288.0,71241799.0,72454922.0,73741281.0,75018213.0,76201647.0,77443015.0,78840511.0,80010239.0,81170910.0,82699282.0,83744824.0,85098935.0,86484893.0,87372432.0,88845189.0,90191945.0,91455784.0,92839439.0,94199855.0,95298892.0,96553414.0,97902008.0,99387357.0,100281512.0,101657164.0,103278207.0,104258103.0,105450355.0,106794782.0,107948330.0,109393265.0,110440200.0,112081328.0,113122138.0,114393595.0,115580768.0,116981518.0,118314935.0,119574913.0,120876937.0,122285495.0,123554083.0,124759252.0,125937883.0,127046666.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":317851.4879909857,"lower_bound":317746.2757885341,"upper_bound":317954.3848671547,"unit":"ns"},"mean":{"estimate":318129.61270950345,"lower_bound":317781.0193961347,"upper_bound":318739.3433691813,"unit":"ns"},"median":{"estimate":317864.49783549784,"lower_bound":317760.4,"upper_bound":317958.125,"unit":"ns"},"median_abs_dev":{"estimate":431.9119219735229,"lower_bound":333.6558403666396,"upper_bound":544.9870169858074,"unit":"ns"},"slope":{"estimate":317851.4879909857,"lower_bound":317746.2757885341,"upper_bound":317954.3848671547,"unit":"ns"},"change":{"mean":{"estimate":-0.05460093654404208,"lower_bound":-0.05651565589504474,"upper_bound":-0.05240675797820279,"unit":"%"},"median":{"estimate":-0.05437385570430231,"lower_bound":-0.05506288938348558,"upper_bound":-0.05392020231195216,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"swwq/10","report_directory":"/root/fuel-core/target/criterion/reports/swwq/10","iteration_count":[18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18],"measured_values":[52290435.0,52199970.0,52250148.0,52177548.0,52220584.0,52174647.0,52215562.0,52200508.0,52179385.0,52179126.0,52255899.0,52238689.0,52269536.0,52197979.0,52288103.0,52173109.0,52236738.0,52145703.0,52201922.0,52207496.0,52154502.0,52110661.0,52290868.0,52173648.0,52149599.0,52227725.0,52116610.0,52100625.0,52196655.0,52204457.0,52120385.0,52109391.0,52137580.0,52167256.0,52132535.0,52253987.0,52129881.0,52161024.0,52143190.0,52106355.0,52112942.0,52221408.0,52140279.0,52132797.0,52101267.0,52162255.0,52111407.0,52143131.0,52138422.0,52134224.0,52165691.0,52083111.0,52087434.0,52123991.0,52145590.0,52163543.0,52234919.0,52097016.0,52106244.0,52166483.0,52130585.0,52100394.0,52140744.0,52165261.0,52225977.0,52182783.0,52162884.0,52134606.0,52258364.0,52082938.0,52135944.0,52158975.0,52192492.0,52728593.0,52404723.0,52151220.0,52240387.0,52101816.0,52090433.0,52128913.0,52136724.0,52107387.0,52139117.0,52382814.0,52499678.0,52238188.0,52155728.0,52130758.0,52276296.0,52080143.0,52136298.0,52139999.0,52181873.0,52193001.0,52154850.0,52215642.0,52126452.0,52171851.0,52172779.0,52198725.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":2898899.172222223,"lower_bound":2898021.8151527764,"upper_bound":2899939.800722221,"unit":"ns"},"mean":{"estimate":2898899.172222223,"lower_bound":2898021.8151527764,"upper_bound":2899939.800722221,"unit":"ns"},"median":{"estimate":2897920.527777778,"lower_bound":2896913.6944444445,"upper_bound":2898548.777777778,"unit":"ns"},"median_abs_dev":{"estimate":2976.4429971574586,"lower_bound":2136.344195405719,"upper_bound":3947.916629910009,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.04984520192410824,"lower_bound":-0.050559065461760984,"upper_bound":-0.04917356937732856,"unit":"%"},"median":{"estimate":-0.05002720844004105,"lower_bound":-0.050861602492386804,"upper_bound":-0.049596267394557025,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"swwq/100","report_directory":"/root/fuel-core/target/criterion/reports/swwq/100","iteration_count":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],"measured_values":[59415101.0,59261344.0,59625117.0,59333632.0,59433247.0,59269609.0,59777837.0,59595916.0,59398037.0,59598416.0,59296299.0,59612742.0,59435516.0,59417260.0,59393369.0,59292075.0,59425324.0,59405602.0,59479455.0,59266408.0,59514787.0,59447506.0,59480261.0,59347733.0,59299088.0,59599237.0,59491548.0,59336775.0,59314903.0,59474822.0,59496048.0,59465651.0,59340114.0,59519368.0,59405073.0,59591101.0,59457244.0,59447382.0,59408211.0,59332535.0,59446809.0,60362574.0,59428861.0,59407137.0,59304715.0,59866170.0,59604626.0,59295483.0,59426229.0,59304017.0,59452807.0,59494253.0,59335191.0,59518010.0,59382726.0,59404609.0,59475301.0,59281160.0,59225915.0,59525697.0,59552937.0,59357369.0,59311743.0,59394060.0,59612793.0,59542971.0,59337179.0,59337340.0,59541948.0,59351000.0,59429560.0,59233864.0,59356963.0,59248696.0,59349115.0,59397611.0,59425068.0,59763616.0,59328998.0,59347379.0,59366223.0,59709641.0,59576774.0,59774507.0,59495625.0,59342904.0,59545009.0,59348817.0,59371572.0,59403961.0,59410856.0,59402123.0,59574580.0,59509222.0,59512072.0,59389028.0,59483663.0,59432132.0,59519776.0,59469337.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":29724510.075,"lower_bound":29710252.96425,"upper_bound":29740358.450875,"unit":"ns"},"mean":{"estimate":29724510.075,"lower_bound":29710252.96425,"upper_bound":29740358.450875,"unit":"ns"},"median":{"estimate":29712598.0,"lower_bound":29701683.0,"upper_bound":29725047.25,"unit":"ns"},"median_abs_dev":{"estimate":61645.765605568886,"lower_bound":47007.68541544676,"upper_bound":71284.88933444023,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.03212250993525845,"lower_bound":-0.03280121835261496,"upper_bound":-0.031378717537619276,"unit":"%"},"median":{"estimate":-0.032209051405791334,"lower_bound":-0.032985408772062685,"upper_bound":-0.03162751733813529,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"swwq/1000","report_directory":"/root/fuel-core/target/criterion/reports/swwq/1000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[267527738.0,268086795.0,267589293.0,267908357.0,268272220.0,267283963.0,267737687.0,267364946.0,268195593.0,267267304.0,268552321.0,268143704.0,268084433.0,268257562.0,267752941.0,267700160.0,267656377.0,268573423.0,267966654.0,268833760.0,268354369.0,268703676.0,268600182.0,268359224.0,269154379.0,269029663.0,268378912.0,268692831.0,268561454.0,268287651.0,268894285.0,268825198.0,269187321.0,268356728.0,268806255.0,268076395.0,269384069.0,268339805.0,268685113.0,268719068.0,268930564.0,269207784.0,268751708.0,268805545.0,268418920.0,268900890.0,268654450.0,269144086.0,268240765.0,268857462.0,269150587.0,268933488.0,268300255.0,268529371.0,268480907.0,269567998.0,267914506.0,268046796.0,268404248.0,268704548.0,268758204.0,268606911.0,268614639.0,269019033.0,268629581.0,268291966.0,268931404.0,268921846.0,268978640.0,269426200.0,268336410.0,268199383.0,268083711.0,268999939.0,267989672.0,268319965.0,268488863.0,269164175.0,268310032.0,268355215.0,267784809.0,267959342.0,267940688.0,268408934.0,268280203.0,268146544.0,267837734.0,268082199.0,268106640.0,268168526.0,268029666.0,268483969.0,268202421.0,267792934.0,268264755.0,268501889.0,268188835.0,268473080.0,268488983.0,268036581.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":268417012.08,"lower_bound":268323712.13125,"upper_bound":268510721.923,"unit":"ns"},"mean":{"estimate":268417012.08,"lower_bound":268323712.13125,"upper_bound":268510721.923,"unit":"ns"},"median":{"estimate":268369068.0,"lower_bound":268291966.0,"upper_bound":268509177.0,"unit":"ns"},"median_abs_dev":{"estimate":478905.7369977236,"lower_bound":365933.8429033756,"upper_bound":594546.0701221967,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.03365169715865557,"lower_bound":-0.034110475691691095,"upper_bound":-0.03319446625885364,"unit":"%"},"median":{"estimate":-0.03380267847410434,"lower_bound":-0.03427721322264843,"upper_bound":-0.033204483284532835,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"swwq/10000","report_directory":"/root/fuel-core/target/criterion/reports/swwq/10000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[2530562177.0,2525987209.0,2526507795.0,2524663920.0,2529379590.0,2522215293.0,2533684146.0,2525404451.0,2521328145.0,2524948936.0,2525649976.0,2527953898.0,2530155219.0,2531654493.0,2532765540.0,2530782199.0,2527268588.0,2525022828.0,2528018232.0,2523558217.0,2532057538.0,2530197787.0,2529060882.0,2565907290.0,2526952970.0,2529312847.0,2527978879.0,2527320327.0,2531642816.0,2533587869.0,2544033014.0,2533422454.0,2527492910.0,2531118797.0,2525122947.0,2526939653.0,2527074294.0,2536620375.0,2524953559.0,2528392969.0,2529701201.0,2526080882.0,2525608620.0,2531572358.0,2531483022.0,2532574485.0,2526293465.0,2532115765.0,2529303932.0,2525527804.0,2528269598.0,2523292939.0,2527140069.0,2527291389.0,2530761744.0,2528888376.0,2529224329.0,2522002368.0,2526616882.0,2554202102.0,2528219794.0,2527696744.0,2529306466.0,2530190454.0,2528719067.0,2525865772.0,2529627311.0,2528176803.0,2526440796.0,2528137269.0,2526159319.0,2524618566.0,2526067159.0,2532898927.0,2526211714.0,2528785704.0,2532258453.0,2528905045.0,2529869381.0,2528221951.0,2526587756.0,2528045676.0,2531865336.0,2520715097.0,2522689320.0,2526339697.0,2524506144.0,2528290684.0,2528308145.0,2529439538.0,2525645750.0,2544402633.0,2525627776.0,2528287727.0,2522051636.0,2525752652.0,2529756545.0,2531958321.0,2529132755.0,2521869039.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":2528923012.81,"lower_bound":2527860880.0705004,"upper_bound":2530174732.701,"unit":"ns"},"mean":{"estimate":2528923012.81,"lower_bound":2527860880.0705004,"upper_bound":2530174732.701,"unit":"ns"},"median":{"estimate":2528198298.5,"lower_bound":2527291389.0,"upper_bound":2528888376.0,"unit":"ns"},"median_abs_dev":{"estimate":3149454.5068860054,"lower_bound":2465524.467328191,"upper_bound":3984186.739454044,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.03227432520934759,"lower_bound":-0.03334442169320531,"upper_bound":-0.031176733189772463,"unit":"%"},"median":{"estimate":-0.031245464121009925,"lower_bound":-0.03239998525381338,"upper_bound":-0.029962106143481236,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"swwq/100000","report_directory":"/root/fuel-core/target/criterion/reports/swwq/100000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[24529665400.0,24744838617.0,24593570521.0,24600938333.0,24584328049.0,24732613010.0,24592853934.0,24538021360.0,24657417706.0,24524663019.0,24999235466.0,24645687541.0,24631836723.0,24565079639.0,24557413681.0,24626192223.0,24587787808.0,24589255274.0,24620100723.0,24615280860.0,24604078804.0,24546248366.0,24550503696.0,24498546776.0,24498476483.0,24522683602.0,24518054671.0,24589813272.0,24512860275.0,24903527609.0,24524817529.0,24538741700.0,24520739003.0,24507144304.0,24517446297.0,24568639055.0,24544403687.0,24508553390.0,24525578819.0,24548431017.0,24519828338.0,24491512141.0,24522031797.0,24536880247.0,24559081313.0,24524198151.0,24512383914.0,24529114196.0,24592400053.0,24510362378.0,24841736191.0,24496807351.0,24553586971.0,24513130126.0,24518223154.0,24605911175.0,24544222250.0,24571010354.0,24540843988.0,24499911605.0,24537239791.0,24662869598.0,24522571111.0,24508180888.0,24507439907.0,24559552093.0,24529406103.0,24546676176.0,24513710898.0,24496585144.0,24530506499.0,24666932626.0,24547378465.0,24551001087.0,24526040142.0,24546995351.0,24509427458.0,24694253573.0,24528119250.0,24580889433.0,24625868968.0,24517825539.0,24511464951.0,24549189353.0,24569166191.0,24695684457.0,24572831725.0,24536811092.0,24689638726.0,24798069156.0,24544377210.0,24600796409.0,24547506722.0,24556417432.0,24506035784.0,24794867472.0,24686859526.0,24551332594.0,24509486938.0,24488355259.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":24574876050.32,"lower_bound":24558543045.154003,"upper_bound":24593111250.379753,"unit":"ns"},"mean":{"estimate":24574876050.32,"lower_bound":24558543045.154003,"upper_bound":24593111250.379753,"unit":"ns"},"median":{"estimate":24546835763.5,"lower_bound":24536880247.0,"upper_bound":24556417432.0,"unit":"ns"},"median_abs_dev":{"estimate":50172017.81306863,"lower_bound":33080218.357908726,"upper_bound":59929593.866837025,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.025789860960689248,"lower_bound":-0.02666966854064739,"upper_bound":-0.02491361897634267,"unit":"%"},"median":{"estimate":-0.02635453412875033,"lower_bound":-0.026979332940142764,"upper_bound":-0.025711204555565748,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"swwq","benchmarks":["swwq/29629","swwq/19753","swwq/44444","swwq/1","swwq/10","swwq/100","swwq/1000","swwq/10000","swwq/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/swwq"} +{"reason":"benchmark-complete","id":"call/1","report_directory":"/root/fuel-core/target/criterion/reports/call/1","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[321782.0,232862.0,231510.0,231242.0,233843.0,228994.0,227714.0,232173.0,228472.0,256569.0,239510.0,231357.0,230991.0,229354.0,230144.0,231344.0,229477.0,227614.0,228122.0,227707.0,225432.0,228043.0,226640.0,225223.0,244072.0,233880.0,229346.0,230293.0,229905.0,228961.0,231104.0,227162.0,227788.0,227680.0,228621.0,227094.0,227259.0,227617.0,226364.0,226782.0,225777.0,226927.0,227156.0,228875.0,227552.0,234388.0,229918.0,229418.0,228994.0,228313.0,227786.0,229390.0,234485.0,227861.0,225786.0,227685.0,226872.0,231119.0,226976.0,227069.0,228610.0,226768.0,231959.0,227149.0,225539.0,225312.0,227123.0,230482.0,225546.0,227800.0,225884.0,226456.0,230624.0,225800.0,227297.0,225999.0,224415.0,227327.0,225797.0,229991.0,227563.0,227116.0,227401.0,225827.0,226593.0,226155.0,226074.0,228607.0,228115.0,225399.0,226674.0,226518.0,225944.0,226102.0,226375.0,226788.0,226777.0,226827.0,226439.0,226290.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":229618.56,"lower_bound":228125.3695,"upper_bound":231926.90975,"unit":"ns"},"mean":{"estimate":229618.56,"lower_bound":228125.3695,"upper_bound":231926.90975,"unit":"ns"},"median":{"estimate":227648.5,"lower_bound":227156.0,"upper_bound":228115.0,"unit":"ns"},"median_abs_dev":{"estimate":1994.8382645845413,"lower_bound":1429.2263746261597,"upper_bound":2617.5302535295486,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.1003921205421,"lower_bound":-0.10986729971136229,"upper_bound":-0.08828986295158209,"unit":"%"},"median":{"estimate":-0.10648991286600207,"lower_bound":-0.11069855882749946,"upper_bound":-0.10237610211973791,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"call/10","report_directory":"/root/fuel-core/target/criterion/reports/call/10","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[292539.0,215418.0,214042.0,217612.0,220130.0,213769.0,212375.0,213314.0,214242.0,212387.0,213856.0,211829.0,211759.0,213419.0,210914.0,222012.0,214218.0,212077.0,213294.0,214453.0,213357.0,212735.0,213573.0,213918.0,215188.0,213095.0,214106.0,213745.0,212519.0,212917.0,213783.0,213444.0,214030.0,214073.0,212749.0,212957.0,217338.0,215020.0,210724.0,211592.0,219384.0,212111.0,212478.0,214220.0,211490.0,212174.0,216398.0,212376.0,214234.0,214066.0,213096.0,212751.0,218737.0,212588.0,215947.0,213139.0,212303.0,213042.0,212631.0,212194.0,213577.0,212023.0,212065.0,213778.0,212454.0,212290.0,211759.0,212384.0,212204.0,215213.0,214663.0,213266.0,212359.0,211804.0,212907.0,214335.0,216364.0,215354.0,213487.0,214377.0,212260.0,212289.0,213369.0,213864.0,212684.0,213157.0,210570.0,213247.0,212985.0,212524.0,212362.0,212672.0,213363.0,216593.0,212744.0,212347.0,212848.0,212505.0,214073.0,214064.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":214370.64,"lower_bound":213309.16,"upper_bound":216164.52675000002,"unit":"ns"},"mean":{"estimate":214370.64,"lower_bound":213309.16,"upper_bound":216164.52675000002,"unit":"ns"},"median":{"estimate":213202.0,"lower_bound":212829.0,"upper_bound":213508.5,"unit":"ns"},"median_abs_dev":{"estimate":1258.727377653122,"lower_bound":934.037983417511,"upper_bound":1482.5999736785889,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.15615262959604048,"lower_bound":-0.16599014764086711,"upper_bound":-0.14633610736003805,"unit":"%"},"median":{"estimate":-0.1524636759356801,"lower_bound":-0.15534329258492774,"upper_bound":-0.14905426319484327,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"call/100","report_directory":"/root/fuel-core/target/criterion/reports/call/100","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[334790.0,232021.0,228101.0,228652.0,228573.0,229104.0,228053.0,227372.0,226212.0,228389.0,226947.0,226624.0,228438.0,227200.0,229976.0,228440.0,226250.0,227237.0,232860.0,227807.0,227777.0,229175.0,230858.0,226962.0,227467.0,227009.0,225755.0,230254.0,225717.0,224696.0,226484.0,224827.0,229204.0,230791.0,225368.0,226046.0,224857.0,228976.0,224317.0,225152.0,226032.0,225124.0,231412.0,228383.0,227181.0,225556.0,225815.0,230569.0,227467.0,226861.0,226872.0,226535.0,227594.0,227004.0,226135.0,224662.0,222904.0,228664.0,224200.0,224539.0,226900.0,225902.0,230735.0,227213.0,227183.0,225592.0,225752.0,225731.0,227142.0,227530.0,225539.0,224663.0,223918.0,225108.0,224354.0,224482.0,224480.0,223552.0,223322.0,224255.0,223935.0,226399.0,226758.0,225628.0,226511.0,224883.0,225467.0,225284.0,226229.0,223302.0,225043.0,224379.0,223130.0,224755.0,226973.0,223713.0,227045.0,226915.0,225908.0,224567.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":227684.24,"lower_bound":226297.78925,"upper_bound":230105.30325,"unit":"ns"},"mean":{"estimate":227684.24,"lower_bound":226297.78925,"upper_bound":230105.30325,"unit":"ns"},"median":{"estimate":226497.5,"lower_bound":225861.5,"upper_bound":226962.0,"unit":"ns"},"median_abs_dev":{"estimate":2015.5946642160416,"lower_bound":1461.8435740470886,"upper_bound":2591.5847539901733,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.11002247768990103,"lower_bound":-0.11859450156624847,"upper_bound":-0.09847476170749042,"unit":"%"},"median":{"estimate":-0.11071783334707519,"lower_bound":-0.11507563288658984,"upper_bound":-0.10719443996237688,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"call/1000","report_directory":"/root/fuel-core/target/criterion/reports/call/1000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[383016.0,234068.0,229203.0,227305.0,229155.0,227461.0,232601.0,228055.0,228711.0,229285.0,227696.0,228299.0,227796.0,225743.0,226833.0,226901.0,225075.0,226535.0,227012.0,225676.0,226250.0,228478.0,227172.0,229561.0,227288.0,224452.0,228016.0,225293.0,225548.0,225802.0,226048.0,228701.0,227282.0,226581.0,226715.0,226116.0,225469.0,225346.0,224800.0,226023.0,225602.0,224587.0,224497.0,224915.0,227088.0,226033.0,227306.0,225107.0,250294.0,257751.0,248420.0,238650.0,231141.0,235217.0,235643.0,231866.0,235411.0,231370.0,230481.0,232529.0,236545.0,229685.0,230459.0,228116.0,230116.0,236615.0,232835.0,229363.0,237305.0,228717.0,227954.0,227010.0,226255.0,228180.0,228005.0,225940.0,245182.0,232641.0,231011.0,231099.0,228291.0,228713.0,230626.0,229752.0,229255.0,227641.0,228714.0,234103.0,225628.0,226565.0,229282.0,227818.0,227292.0,227027.0,227902.0,225779.0,228743.0,225991.0,227207.0,224539.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":230951.76,"lower_bound":228648.64725,"upper_bound":234607.071,"unit":"ns"},"mean":{"estimate":230951.76,"lower_bound":228648.64725,"upper_bound":234607.071,"unit":"ns"},"median":{"estimate":227979.5,"lower_bound":227292.0,"upper_bound":228711.0,"unit":"ns"},"median_abs_dev":{"estimate":2813.2334500551224,"lower_bound":2004.4751644134521,"upper_bound":3602.717936038971,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.10536936981606271,"lower_bound":-0.11824694593821913,"upper_bound":-0.08781804621931565,"unit":"%"},"median":{"estimate":-0.1101502732240437,"lower_bound":-0.11474599877064806,"upper_bound":-0.10586802686961475,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"call/10000","report_directory":"/root/fuel-core/target/criterion/reports/call/10000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[311812.0,252847.0,240957.0,236185.0,287943.0,246368.0,242723.0,241405.0,236280.0,237516.0,242012.0,241081.0,236209.0,236832.0,233762.0,236270.0,231345.0,233447.0,233475.0,230618.0,232034.0,233470.0,230899.0,233232.0,230029.0,234168.0,230732.0,232196.0,229661.0,232620.0,232218.0,230005.0,244099.0,238855.0,235448.0,234754.0,247469.0,237517.0,237344.0,234220.0,239718.0,232023.0,231521.0,232122.0,232925.0,233293.0,235290.0,232446.0,231020.0,228796.0,231881.0,232332.0,231746.0,231177.0,230201.0,230213.0,230885.0,233403.0,230426.0,230097.0,231481.0,229431.0,235282.0,230325.0,241690.0,234198.0,233351.0,235340.0,230446.0,230295.0,231782.0,230064.0,230773.0,229631.0,228781.0,237875.0,231061.0,226769.0,228035.0,229763.0,226579.0,228094.0,229539.0,228008.0,228773.0,227413.0,238747.0,228556.0,232513.0,228486.0,228139.0,228961.0,230386.0,228083.0,234490.0,230147.0,243166.0,236047.0,231226.0,230119.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":234754.17,"lower_bound":232966.26575,"upper_bound":237047.98025000002,"unit":"ns"},"mean":{"estimate":234754.17,"lower_bound":232966.26575,"upper_bound":237047.98025000002,"unit":"ns"},"median":{"estimate":232159.0,"lower_bound":231226.0,"upper_bound":233351.0,"unit":"ns"},"median_abs_dev":{"estimate":3504.125037789345,"lower_bound":2571.5696543455124,"upper_bound":4814.743414521217,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.10095176782870019,"lower_bound":-0.10944598366727272,"upper_bound":-0.08995156462946775,"unit":"%"},"median":{"estimate":-0.10857733075049003,"lower_bound":-0.11248662839715529,"upper_bound":-0.10337279050414083,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"call/19753","report_directory":"/root/fuel-core/target/criterion/reports/call/19753","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[273704.0,235493.0,240332.0,233536.0,232056.0,229596.0,232299.0,231089.0,231233.0,231876.0,235587.0,230646.0,230584.0,233312.0,233921.0,236500.0,257977.0,242800.0,241000.0,267585.0,246973.0,243488.0,247066.0,241223.0,239017.0,242891.0,239610.0,238704.0,241874.0,236790.0,236986.0,236781.0,239842.0,234623.0,248072.0,240629.0,238904.0,306511.0,253274.0,242004.0,239488.0,238954.0,240557.0,236767.0,235999.0,235840.0,234055.0,234436.0,236671.0,236790.0,238012.0,232502.0,233547.0,233116.0,232140.0,233403.0,232420.0,234210.0,232295.0,232552.0,235218.0,233654.0,231768.0,231371.0,232648.0,250692.0,239075.0,235965.0,248662.0,244619.0,235050.0,232760.0,232819.0,233905.0,232302.0,248160.0,238466.0,234107.0,232724.0,231493.0,231041.0,231744.0,231625.0,245771.0,232146.0,232422.0,263076.0,240810.0,235038.0,235405.0,232484.0,232332.0,234360.0,231456.0,231687.0,233330.0,232939.0,232357.0,243245.0,232030.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":238308.98,"lower_bound":236485.2,"upper_bound":240482.98075000002,"unit":"ns"},"mean":{"estimate":238308.98,"lower_bound":236485.2,"upper_bound":240482.98075000002,"unit":"ns"},"median":{"estimate":235134.0,"lower_bound":233787.5,"upper_bound":236767.0,"unit":"ns"},"median_abs_dev":{"estimate":4582.716518640518,"lower_bound":2950.373947620392,"upper_bound":6258.07302139699,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.10852180266633571,"lower_bound":-0.1242240942047012,"upper_bound":-0.09419376111979529,"unit":"%"},"median":{"estimate":-0.10487545825196154,"lower_bound":-0.11206419689472524,"upper_bound":-0.09854676527630135,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"call/29629","report_directory":"/root/fuel-core/target/criterion/reports/call/29629","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[334082.0,254760.0,242569.0,240613.0,255118.0,245254.0,241049.0,240489.0,243298.0,242689.0,242194.0,245048.0,238756.0,238990.0,242219.0,238690.0,243467.0,246356.0,241034.0,240129.0,238557.0,239576.0,242608.0,238666.0,239335.0,245569.0,237748.0,242481.0,238115.0,238970.0,244252.0,239636.0,237422.0,238337.0,236770.0,237202.0,238797.0,235690.0,239139.0,236957.0,235727.0,237941.0,242845.0,237545.0,238127.0,235504.0,238211.0,238735.0,247163.0,235371.0,237670.0,258051.0,236041.0,236078.0,236923.0,236856.0,235930.0,235279.0,236681.0,238391.0,237823.0,238253.0,236029.0,239175.0,238648.0,238244.0,238271.0,238817.0,238246.0,238136.0,235380.0,268885.0,250810.0,246098.0,248727.0,245651.0,243200.0,243478.0,242604.0,243854.0,241859.0,240036.0,239289.0,240534.0,238375.0,274524.0,239000.0,238909.0,239976.0,238076.0,238701.0,239571.0,237058.0,237779.0,238429.0,236697.0,238306.0,243521.0,238912.0,236673.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":241842.54,"lower_bound":240040.87925,"upper_bound":244311.31074999998,"unit":"ns"},"mean":{"estimate":241842.54,"lower_bound":240040.87925,"upper_bound":244311.31074999998,"unit":"ns"},"median":{"estimate":238910.5,"lower_bound":238538.5,"upper_bound":239603.5,"unit":"ns"},"median_abs_dev":{"estimate":2821.3877499103546,"lower_bound":1709.437769651413,"upper_bound":4086.78682744503,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.08686791356871182,"lower_bound":-0.09979750374470074,"upper_bound":-0.07310889523324486,"unit":"%"},"median":{"estimate":-0.08844447157666613,"lower_bound":-0.09106681207055645,"upper_bound":-0.08410642644979993,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"call/44444","report_directory":"/root/fuel-core/target/criterion/reports/call/44444","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[366777.0,241516.0,239158.0,239917.0,239009.0,246028.0,241779.0,242578.0,239095.0,246345.0,241728.0,241318.0,239556.0,238735.0,239887.0,239839.0,239140.0,237080.0,237060.0,239408.0,239709.0,238280.0,238064.0,242556.0,237808.0,237120.0,236675.0,238943.0,237756.0,237535.0,236035.0,239871.0,239655.0,239612.0,238710.0,240917.0,236305.0,246818.0,241642.0,238140.0,238501.0,237040.0,239303.0,237847.0,240247.0,235056.0,238760.0,236365.0,239796.0,239483.0,239259.0,237862.0,243549.0,238579.0,238652.0,240268.0,237937.0,244580.0,236385.0,252886.0,242304.0,239084.0,237430.0,238591.0,237143.0,236650.0,238475.0,234458.0,235669.0,239795.0,236095.0,239882.0,239177.0,238953.0,239659.0,239408.0,240197.0,238452.0,237941.0,238885.0,241743.0,240063.0,240582.0,239149.0,244549.0,243172.0,242477.0,240813.0,238205.0,237257.0,239003.0,240148.0,237446.0,238259.0,241323.0,240412.0,240701.0,268534.0,245376.0,257248.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":241351.67,"lower_bound":239481.868,"upper_bound":244407.671,"unit":"ns"},"mean":{"estimate":241351.67,"lower_bound":239481.868,"upper_bound":244407.671,"unit":"ns"},"median":{"estimate":239218.0,"lower_bound":238919.0,"upper_bound":239727.0,"unit":"ns"},"median_abs_dev":{"estimate":1954.8080652952194,"lower_bound":1377.335375547409,"upper_bound":2712.4166518449783,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.08417196380441938,"lower_bound":-0.09418084105667246,"upper_bound":-0.07219284623592812,"unit":"%"},"median":{"estimate":-0.08655674606508179,"lower_bound":-0.09019848235056716,"upper_bound":-0.08410551822930112,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"call/66666","report_directory":"/root/fuel-core/target/criterion/reports/call/66666","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[347434.0,254806.0,248711.0,249215.0,247015.0,246273.0,250502.0,251722.0,246119.0,247180.0,247264.0,278445.0,280024.0,246809.0,244404.0,247438.0,249721.0,247537.0,246829.0,241599.0,250934.0,244637.0,241087.0,249015.0,243594.0,251807.0,244130.0,257560.0,245855.0,244224.0,241788.0,244549.0,247804.0,244604.0,247014.0,243554.0,240972.0,243776.0,241474.0,245222.0,245503.0,243310.0,244968.0,242629.0,303309.0,245648.0,244653.0,252453.0,244413.0,243836.0,241956.0,242648.0,244044.0,229476.0,231186.0,228676.0,231230.0,229399.0,226930.0,234263.0,231434.0,228584.0,230056.0,230209.0,257083.0,229780.0,234920.0,229488.0,229053.0,228429.0,235235.0,228844.0,227533.0,227799.0,231217.0,228682.0,229267.0,228596.0,229020.0,227777.0,228528.0,235575.0,231946.0,229964.0,228453.0,226668.0,228662.0,231834.0,228881.0,229014.0,229369.0,228397.0,227843.0,227352.0,226258.0,230269.0,227677.0,229814.0,227812.0,229880.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":240903.79,"lower_bound":237990.97950000002,"upper_bound":244353.33325,"unit":"ns"},"mean":{"estimate":240903.79,"lower_bound":237990.97950000002,"upper_bound":244353.33325,"unit":"ns"},"median":{"estimate":241693.5,"lower_bound":231834.0,"upper_bound":244044.0,"unit":"ns"},"median_abs_dev":{"estimate":14742.974138259888,"lower_bound":6136.481291055679,"upper_bound":16786.738201975822,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.12116967885367591,"lower_bound":-0.1346389339369761,"upper_bound":-0.10838981442339247,"unit":"%"},"median":{"estimate":-0.1104856577136254,"lower_bound":-0.1473985028946495,"upper_bound":-0.10146625836953838,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"call/100000","report_directory":"/root/fuel-core/target/criterion/reports/call/100000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[330749.0,256823.0,254133.0,253662.0,253653.0,255212.0,252699.0,253901.0,257502.0,256331.0,254104.0,252052.0,253248.0,252022.0,252657.0,252242.0,250973.0,252476.0,252848.0,251407.0,253187.0,251776.0,257946.0,255617.0,257151.0,254471.0,255802.0,252755.0,252652.0,253241.0,259039.0,251111.0,254337.0,252431.0,251061.0,256396.0,254632.0,254232.0,297113.0,253408.0,280871.0,252485.0,250730.0,251795.0,250612.0,251866.0,252966.0,250402.0,251248.0,251759.0,251340.0,250556.0,251467.0,251685.0,251136.0,250955.0,252475.0,249382.0,255752.0,251213.0,248783.0,252007.0,251600.0,251021.0,252449.0,250999.0,251785.0,249115.0,251715.0,250289.0,247982.0,253792.0,251279.0,248921.0,251284.0,252213.0,252400.0,255585.0,254184.0,289522.0,252579.0,251598.0,252024.0,253881.0,278195.0,251188.0,253922.0,252926.0,252460.0,251222.0,251050.0,251943.0,251493.0,250104.0,251697.0,250327.0,249309.0,253821.0,251333.0,249168.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":254649.12,"lower_bound":252881.68725,"upper_bound":256931.182,"unit":"ns"},"mean":{"estimate":254649.12,"lower_bound":252881.68725,"upper_bound":256931.182,"unit":"ns"},"median":{"estimate":252321.0,"lower_bound":251785.0,"upper_bound":252667.0,"unit":"ns"},"median_abs_dev":{"estimate":1876.2302666902542,"lower_bound":1225.3688782453537,"upper_bound":2262.4475598335266,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.07615089720515178,"lower_bound":-0.08614072764838868,"upper_bound":-0.0654449026556143,"unit":"%"},"median":{"estimate":-0.08119947563906493,"lower_bound":-0.08374917779384192,"upper_bound":-0.07929190888469084,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"call","benchmarks":["call/1","call/10","call/100","call/1000","call/10000","call/19753","call/29629","call/44444","call/66666","call/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/call"} +{"reason":"benchmark-complete","id":"ldc/1","report_directory":"/root/fuel-core/target/criterion/reports/ldc/1","iteration_count":[1998,3996,5994,7992,9990,11988,13986,15984,17982,19980,21978,23976,25974,27972,29970,31968,33966,35964,37962,39960,41958,43956,45954,47952,49950,51948,53946,55944,57942,59940,61938,63936,65934,67932,69930,71928,73926,75924,77922,79920,81918,83916,85914,87912,89910,91908,93906,95904,97902,99900,101898,103896,105894,107892,109890,111888,113886,115884,117882,119880,121878,123876,125874,127872,129870,131868,133866,135864,137862,139860,141858,143856,145854,147852,149850,151848,153846,155844,157842,159840,161838,163836,165834,167832,169830,171828,173826,175824,177822,179820,181818,183816,185814,187812,189810,191808,193806,195804,197802,199800],"measured_values":[960975.0,1887681.0,2889528.0,3673353.0,4593667.0,5508292.0,6425834.0,7334418.0,8256909.0,9172027.0,10095988.0,11011026.0,11924389.0,12837816.0,13756575.0,14680723.0,15594025.0,16511667.0,17424502.0,18338028.0,19286352.0,20208525.0,21123164.0,22034664.0,22953129.0,23868322.0,24794493.0,25704954.0,26610992.0,27535355.0,28443373.0,29356160.0,30283623.0,31237989.0,32150416.0,33046683.0,34001809.0,34895005.0,35766742.0,36705844.0,37638752.0,38553068.0,39483348.0,40400613.0,41308516.0,42213607.0,43131376.0,44047130.0,44958807.0,45903576.0,46808084.0,47762553.0,48666826.0,49600917.0,50543733.0,51410127.0,52565975.0,53231282.0,54174062.0,55057779.0,56010968.0,56876293.0,57840883.0,58744315.0,59685297.0,60575981.0,61521365.0,62424046.0,63350602.0,64258184.0,65171973.0,66091177.0,67078266.0,67877097.0,68823614.0,69805744.0,70723858.0,71597740.0,72535117.0,73444227.0,74359129.0,75322346.0,76189020.0,77196862.0,78052845.0,78902496.0,79866801.0,80774736.0,81748528.0,82690054.0,83519706.0,84500027.0,85448593.0,86346526.0,87215314.0,88175182.0,89186139.0,90248872.0,90852809.0,91769506.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":459.5968900287904,"lower_bound":459.50142027878337,"upper_bound":459.70644037233524,"unit":"ns"},"mean":{"estimate":460.06393387682334,"lower_bound":459.495338675311,"upper_bound":460.7956537316087,"unit":"ns"},"median":{"estimate":459.46753747122614,"lower_bound":459.42593287732177,"upper_bound":459.52185518852184,"unit":"ns"},"median_abs_dev":{"estimate":0.27290502722206006,"lower_bound":0.1888055913080499,"upper_bound":0.3432827766883283,"unit":"ns"},"slope":{"estimate":459.5968900287904,"lower_bound":459.50142027878337,"upper_bound":459.70644037233524,"unit":"ns"},"change":{"mean":{"estimate":-0.05433803574234697,"lower_bound":-0.05842161405943736,"upper_bound":-0.050406041857550966,"unit":"%"},"median":{"estimate":-0.04370468549443007,"lower_bound":-0.0443148891057793,"upper_bound":-0.043190327799514816,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ldc/10","report_directory":"/root/fuel-core/target/criterion/reports/ldc/10","iteration_count":[1958,3916,5874,7832,9790,11748,13706,15664,17622,19580,21538,23496,25454,27412,29370,31328,33286,35244,37202,39160,41118,43076,45034,46992,48950,50908,52866,54824,56782,58740,60698,62656,64614,66572,68530,70488,72446,74404,76362,78320,80278,82236,84194,86152,88110,90068,92026,93984,95942,97900,99858,101816,103774,105732,107690,109648,111606,113564,115522,117480,119438,121396,123354,125312,127270,129228,131186,133144,135102,137060,139018,140976,142934,144892,146850,148808,150766,152724,154682,156640,158598,160556,162514,164472,166430,168388,170346,172304,174262,176220,178178,180136,182094,184052,186010,187968,189926,191884,193842,195800],"measured_values":[975531.0,1870883.0,2804826.0,3741518.0,4689033.0,5608551.0,6547847.0,7484262.0,8409459.0,9350908.0,10287892.0,11231337.0,12179500.0,13116408.0,14050762.0,14980788.0,15934177.0,16855450.0,17779131.0,18825241.0,19800774.0,20642412.0,21563464.0,22481176.0,23397733.0,24370034.0,25299808.0,26237038.0,27164418.0,28175876.0,29154926.0,29999914.0,30969799.0,32017731.0,32730124.0,33903255.0,34652007.0,35779189.0,36572430.0,37383200.0,38523618.0,39350074.0,40215584.0,41171427.0,42080953.0,43021043.0,44004215.0,44869931.0,45858349.0,46812684.0,47687991.0,48739477.0,49607456.0,50907833.0,51487540.0,52420299.0,53295683.0,54410238.0,55321397.0,56544139.0,57341858.0,58038351.0,59125256.0,59815470.0,60767160.0,61848212.0,62678536.0,64010175.0,64787779.0,65856919.0,66922012.0,67405731.0,68266400.0,69673928.0,70111819.0,71060751.0,71991372.0,73233264.0,74046802.0,75323823.0,76042080.0,77057217.0,77953954.0,78808940.0,79574703.0,80722955.0,81384730.0,82411809.0,83286475.0,84436259.0,85230527.0,86088157.0,87298497.0,88008721.0,89219163.0,89858871.0,90863680.0,91804165.0,92741023.0,93735577.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":478.7809727719376,"lower_bound":478.5389737796867,"upper_bound":479.0372678083289,"unit":"ns"},"mean":{"estimate":478.8927124851663,"lower_bound":478.5334045293711,"upper_bound":479.3946001498852,"unit":"ns"},"median":{"estimate":478.41073435618785,"lower_bound":478.1707531567166,"upper_bound":478.7015498546397,"unit":"ns"},"median_abs_dev":{"estimate":1.0328420363638298,"lower_bound":0.7246716761260142,"upper_bound":1.2781944669277887,"unit":"ns"},"slope":{"estimate":478.7809727719376,"lower_bound":478.5389737796867,"upper_bound":479.0372678083289,"unit":"ns"},"change":{"mean":{"estimate":-0.023490589904764603,"lower_bound":-0.02759151584003151,"upper_bound":-0.019342919082601988,"unit":"%"},"median":{"estimate":-0.013004125992568727,"lower_bound":-0.027962171563783333,"upper_bound":-0.007010921208997156,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ldc/100","report_directory":"/root/fuel-core/target/criterion/reports/ldc/100","iteration_count":[1806,3612,5418,7224,9030,10836,12642,14448,16254,18060,19866,21672,23478,25284,27090,28896,30702,32508,34314,36120,37926,39732,41538,43344,45150,46956,48762,50568,52374,54180,55986,57792,59598,61404,63210,65016,66822,68628,70434,72240,74046,75852,77658,79464,81270,83076,84882,86688,88494,90300,92106,93912,95718,97524,99330,101136,102942,104748,106554,108360,110166,111972,113778,115584,117390,119196,121002,122808,124614,126420,128226,130032,131838,133644,135450,137256,139062,140868,142674,144480,146286,148092,149898,151704,153510,155316,157122,158928,160734,162540,164346,166152,167958,169764,171570,173376,175182,176988,178794,180600],"measured_values":[1004191.0,1872521.0,2740925.0,3659067.0,4445185.0,5488041.0,6312661.0,7199258.0,8162025.0,9103378.0,10002805.0,10799542.0,11578488.0,12467968.0,13356630.0,14270353.0,15136606.0,16022850.0,16935794.0,17830361.0,18715809.0,19595917.0,20488056.0,21622767.0,22263263.0,23143068.0,24057671.0,24923274.0,25841564.0,26717717.0,28215660.0,29176735.0,30060995.0,30293227.0,31218959.0,32068225.0,32994989.0,34648439.0,35535782.0,36437607.0,37343465.0,38230498.0,39155555.0,40095900.0,41042633.0,41014824.0,42220352.0,42747710.0,43629233.0,44804895.0,45440493.0,47056507.0,47150670.0,48717632.0,49048258.0,49318647.0,50852643.0,51707758.0,52597478.0,53548799.0,54366597.0,55287829.0,56803787.0,57378217.0,59251850.0,59144586.0,60575696.0,61825444.0,62874960.0,62510374.0,62962702.0,64354017.0,65130851.0,65971016.0,68098475.0,67143502.0,68717380.0,69642672.0,70463115.0,71632496.0,72409053.0,73248164.0,75604735.0,75487362.0,77406169.0,75472979.0,78880113.0,78607193.0,79484506.0,80799176.0,82629479.0,83065864.0,83823139.0,84406612.0,84771670.0,86380919.0,86581088.0,88816478.0,88261701.0,89554992.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":496.8584224268611,"lower_bound":495.75163205422155,"upper_bound":497.9586607889753,"unit":"ns"},"mean":{"estimate":497.9289951834369,"lower_bound":496.55719733653723,"upper_bound":499.62561920620635,"unit":"ns"},"median":{"estimate":494.7608206947933,"lower_bound":494.02183740651407,"upper_bound":497.40053250394664,"unit":"ns"},"median_abs_dev":{"estimate":2.808055752114776,"lower_bound":1.5687965606803462,"upper_bound":6.217881322988678,"unit":"ns"},"slope":{"estimate":496.8584224268611,"lower_bound":495.75163205422155,"upper_bound":497.9586607889753,"unit":"ns"},"change":{"mean":{"estimate":-0.05289650582234484,"lower_bound":-0.055782015373504815,"upper_bound":-0.049702154600551295,"unit":"%"},"median":{"estimate":-0.060682452670977605,"lower_bound":-0.06298363824229196,"upper_bound":-0.05490524751857856,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ldc/1000","report_directory":"/root/fuel-core/target/criterion/reports/ldc/1000","iteration_count":[1639,3278,4917,6556,8195,9834,11473,13112,14751,16390,18029,19668,21307,22946,24585,26224,27863,29502,31141,32780,34419,36058,37697,39336,40975,42614,44253,45892,47531,49170,50809,52448,54087,55726,57365,59004,60643,62282,63921,65560,67199,68838,70477,72116,73755,75394,77033,78672,80311,81950,83589,85228,86867,88506,90145,91784,93423,95062,96701,98340,99979,101618,103257,104896,106535,108174,109813,111452,113091,114730,116369,118008,119647,121286,122925,124564,126203,127842,129481,131120,132759,134398,136037,137676,139315,140954,142593,144232,145871,147510,149149,150788,152427,154066,155705,157344,158983,160622,162261,163900],"measured_values":[928597.0,1731607.0,2690078.0,3453040.0,4322196.0,5175404.0,6048334.0,6917869.0,7782819.0,8646021.0,9509842.0,10403573.0,11429219.0,12319614.0,12988292.0,13827231.0,14699410.0,15569999.0,16425153.0,17307166.0,18130197.0,19002675.0,19897915.0,20743534.0,21604638.0,22468999.0,23687658.0,24446359.0,25048865.0,25954519.0,27659683.0,27895809.0,28738016.0,29918510.0,31086788.0,31100632.0,32088452.0,33185478.0,33626465.0,34759427.0,36310941.0,37825939.0,37112085.0,39102549.0,38916073.0,39704573.0,40607380.0,41677151.0,42319288.0,43784425.0,44127880.0,47005909.0,47908780.0,47177822.0,48170184.0,48837208.0,49580045.0,51477062.0,50981083.0,52424075.0,53657490.0,56038055.0,55441212.0,55714598.0,57821653.0,57386837.0,58612050.0,59844326.0,61061374.0,62604022.0,61321365.0,62653349.0,64056496.0,64218179.0,64789543.0,65692132.0,66560354.0,69055182.0,69886535.0,71286493.0,71204255.0,72098499.0,72996322.0,73207735.0,74331208.0,76025389.0,76553973.0,76806547.0,78120010.0,81325443.0,80613283.0,83154471.0,83232580.0,82393444.0,83550399.0,85501377.0,84482139.0,86035032.0,87131991.0,87029681.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":536.2405925681219,"lower_bound":534.5580875549872,"upper_bound":537.9660459797421,"unit":"ns"},"mean":{"estimate":534.1228608748929,"lower_bound":532.6704253778386,"upper_bound":535.6769560451021,"unit":"ns"},"median":{"estimate":531.9820107535082,"lower_bound":530.1926021964613,"upper_bound":534.4141568530758,"unit":"ns"},"median_abs_dev":{"estimate":6.836157214285052,"lower_bound":4.552191263036665,"upper_bound":9.361445747870095,"unit":"ns"},"slope":{"estimate":536.2405925681219,"lower_bound":534.5580875549872,"upper_bound":537.9660459797421,"unit":"ns"},"change":{"mean":{"estimate":-0.062311290875913694,"lower_bound":-0.0649081786501634,"upper_bound":-0.05956756630376254,"unit":"%"},"median":{"estimate":-0.06605245567867724,"lower_bound":-0.06911840745291353,"upper_bound":-0.061577076690305974,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ldc/10000","report_directory":"/root/fuel-core/target/criterion/reports/ldc/10000","iteration_count":[538,1076,1614,2152,2690,3228,3766,4304,4842,5380,5918,6456,6994,7532,8070,8608,9146,9684,10222,10760,11298,11836,12374,12912,13450,13988,14526,15064,15602,16140,16678,17216,17754,18292,18830,19368,19906,20444,20982,21520,22058,22596,23134,23672,24210,24748,25286,25824,26362,26900,27438,27976,28514,29052,29590,30128,30666,31204,31742,32280,32818,33356,33894,34432,34970,35508,36046,36584,37122,37660,38198,38736,39274,39812,40350,40888,41426,41964,42502,43040,43578,44116,44654,45192,45730,46268,46806,47344,47882,48420,48958,49496,50034,50572,51110,51648,52186,52724,53262,53800],"measured_values":[763020.0,1463920.0,2191359.0,2933608.0,3655087.0,4367858.0,5113119.0,5819044.0,6546081.0,7268829.0,7981555.0,8702714.0,9430812.0,10118892.0,10847965.0,11622653.0,12280705.0,13042324.0,13801198.0,14438504.0,15189338.0,15831993.0,16596398.0,17433054.0,18131648.0,18902386.0,19692947.0,20425444.0,20908427.0,21639295.0,22359412.0,23288920.0,23986401.0,24589507.0,25321830.0,26042627.0,26778051.0,27543659.0,28226081.0,28880212.0,29885211.0,30237026.0,31386139.0,31905709.0,32598856.0,33350552.0,34104456.0,34869497.0,35366445.0,36196697.0,36984358.0,37486851.0,38213226.0,38955044.0,39644448.0,40432117.0,41125444.0,41882079.0,42849738.0,43653293.0,44025872.0,44760078.0,46052108.0,46383712.0,47336270.0,47723784.0,48363791.0,49458570.0,49738402.0,50638225.0,51588037.0,52163233.0,52827830.0,53616472.0,54393433.0,55140979.0,55857677.0,56398726.0,57191784.0,57879509.0,58485423.0,59150809.0,59852701.0,61085023.0,61609396.0,62140113.0,63377791.0,63507845.0,64414876.0,65157321.0,66046210.0,66475271.0,67451298.0,68395259.0,68557992.0,69213660.0,70255150.0,70815756.0,72370970.0,72563350.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":1346.2488233022382,"lower_bound":1345.0154503100594,"upper_bound":1347.5732499430333,"unit":"ns"},"mean":{"estimate":1347.8221642665335,"lower_bound":1346.281450470284,"upper_bound":1349.791064248686,"unit":"ns"},"median":{"estimate":1346.6879796850753,"lower_bound":1345.004619524264,"upper_bound":1348.0404708798017,"unit":"ns"},"median_abs_dev":{"estimate":6.4860582787819725,"lower_bound":4.616077780777916,"upper_bound":7.4030402151168095,"unit":"ns"},"slope":{"estimate":1346.2488233022382,"lower_bound":1345.0154503100594,"upper_bound":1347.5732499430333,"unit":"ns"},"change":{"mean":{"estimate":-0.045179084221190324,"lower_bound":-0.04677385444316806,"upper_bound":-0.043507802316082464,"unit":"%"},"median":{"estimate":-0.044892214926000484,"lower_bound":-0.04611387109250786,"upper_bound":-0.04381025206174238,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ldc/19753","report_directory":"/root/fuel-core/target/criterion/reports/ldc/19753","iteration_count":[233,466,699,932,1165,1398,1631,1864,2097,2330,2563,2796,3029,3262,3495,3728,3961,4194,4427,4660,4893,5126,5359,5592,5825,6058,6291,6524,6757,6990,7223,7456,7689,7922,8155,8388,8621,8854,9087,9320,9553,9786,10019,10252,10485,10718,10951,11184,11417,11650,11883,12116,12349,12582,12815,13048,13281,13514,13747,13980,14213,14446,14679,14912,15145,15378,15611,15844,16077,16310,16543,16776,17009,17242,17475,17708,17941,18174,18407,18640,18873,19106,19339,19572,19805,20038,20271,20504,20737,20970,21203,21436,21669,21902,22135,22368,22601,22834,23067,23300],"measured_values":[817657.0,1556260.0,2329211.0,3093838.0,3870830.0,4659403.0,5446429.0,6219024.0,6965437.0,7767945.0,8543562.0,9373050.0,10088178.0,10833643.0,11607251.0,12390121.0,13166408.0,14023736.0,14778795.0,15550059.0,16338967.0,17095373.0,17903155.0,18627401.0,19372410.0,20182492.0,21031398.0,21814222.0,22546229.0,23253558.0,24134371.0,24823278.0,25586881.0,26485543.0,27084493.0,27858127.0,28799522.0,29569601.0,30368871.0,31034552.0,31861761.0,32667264.0,33292991.0,34276314.0,34834207.0,35580787.0,36466586.0,37327025.0,37976261.0,38897621.0,39695126.0,40271832.0,41220894.0,42013417.0,42590222.0,43361673.0,44256109.0,44928438.0,45647309.0,46596284.0,47271558.0,48089285.0,48800765.0,49671974.0,50476757.0,51086026.0,51935833.0,52883101.0,53617197.0,54322802.0,54946664.0,55750753.0,56660153.0,57512856.0,58257666.0,59053365.0,59906418.0,60657757.0,61212130.0,61900855.0,62642413.0,63467910.0,64417534.0,65025746.0,65829878.0,66816344.0,67656216.0,68427401.0,69212565.0,69880443.0,70730395.0,71224346.0,71923781.0,72723698.0,73470804.0,74275535.0,75047178.0,75835027.0,76691662.0,77391767.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":3328.3436377624053,"lower_bound":3326.5638903772697,"upper_bound":3330.273032824615,"unit":"ns"},"mean":{"estimate":3332.3774481362016,"lower_bound":3329.4266136046385,"upper_bound":3336.8156807534583,"unit":"ns"},"median":{"estimate":3331.043566702432,"lower_bound":3326.8741912753826,"upper_bound":3333.4225516972297,"unit":"ns"},"median_abs_dev":{"estimate":10.622674346917139,"lower_bound":8.115070332854055,"upper_bound":11.957455040399237,"unit":"ns"},"slope":{"estimate":3328.3436377624053,"lower_bound":3326.5638903772697,"upper_bound":3330.273032824615,"unit":"ns"},"change":{"mean":{"estimate":0.012907110030559776,"lower_bound":0.011190831518783634,"upper_bound":0.014499094831235192,"unit":"%"},"median":{"estimate":0.013239681135709391,"lower_bound":0.011924406376119023,"upper_bound":0.013994298777063818,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"ldc/29629","report_directory":"/root/fuel-core/target/criterion/reports/ldc/29629","iteration_count":[152,304,456,608,760,912,1064,1216,1368,1520,1672,1824,1976,2128,2280,2432,2584,2736,2888,3040,3192,3344,3496,3648,3800,3952,4104,4256,4408,4560,4712,4864,5016,5168,5320,5472,5624,5776,5928,6080,6232,6384,6536,6688,6840,6992,7144,7296,7448,7600,7752,7904,8056,8208,8360,8512,8664,8816,8968,9120,9272,9424,9576,9728,9880,10032,10184,10336,10488,10640,10792,10944,11096,11248,11400,11552,11704,11856,12008,12160,12312,12464,12616,12768,12920,13072,13224,13376,13528,13680,13832,13984,14136,14288,14440,14592,14744,14896,15048,15200],"measured_values":[787881.0,1497609.0,2235321.0,2985468.0,3730632.0,4477569.0,5215609.0,5966485.0,6736477.0,7511388.0,8201516.0,8948673.0,9706547.0,10444559.0,11189927.0,11913988.0,12666647.0,13421114.0,14166212.0,14964232.0,15664981.0,16408795.0,17132997.0,17929997.0,18659084.0,19398926.0,20123044.0,20863768.0,21670364.0,22346595.0,23094353.0,23834284.0,24585957.0,25459116.0,26152095.0,26903927.0,27598722.0,28378713.0,29041640.0,29896531.0,30576868.0,31385718.0,32154405.0,32792476.0,33588752.0,34329304.0,35075393.0,35827027.0,36555717.0,37415058.0,38034573.0,38751091.0,39494896.0,40373461.0,41018793.0,41785872.0,42577137.0,43242434.0,44254550.0,44925243.0,45532374.0,46254925.0,47053957.0,47786817.0,48434499.0,49238765.0,49928235.0,50633089.0,51402990.0,52215759.0,52902217.0,53620497.0,54443563.0,55057244.0,55818136.0,56713299.0,57349471.0,58101256.0,58875482.0,59582634.0,60416539.0,61132711.0,61805301.0,62657061.0,63396803.0,64270190.0,64943548.0,65631638.0,66341436.0,67145807.0,67945382.0,68609572.0,69353166.0,70220506.0,70886580.0,71661784.0,72519635.0,72975122.0,73827384.0,74517242.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":4907.392562902009,"lower_bound":4905.789170152315,"upper_bound":4909.074581671238,"unit":"ns"},"mean":{"estimate":4911.362710133217,"lower_bound":4907.442810403428,"upper_bound":4917.83527830969,"unit":"ns"},"median":{"estimate":4907.331573232066,"lower_bound":4906.360150276274,"upper_bound":4908.63512145749,"unit":"ns"},"median_abs_dev":{"estimate":7.148826251893064,"lower_bound":4.808172863300436,"upper_bound":8.80580078318588,"unit":"ns"},"slope":{"estimate":4907.392562902009,"lower_bound":4905.789170152315,"upper_bound":4909.074581671238,"unit":"ns"},"change":{"mean":{"estimate":0.007413963832277215,"lower_bound":0.005994567032474963,"upper_bound":0.0091809495029521,"unit":"%"},"median":{"estimate":0.007214647771897509,"lower_bound":0.006961039003720471,"upper_bound":0.0075260774159096044,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"ldc/44444","report_directory":"/root/fuel-core/target/criterion/reports/ldc/44444","iteration_count":[83,166,249,332,415,498,581,664,747,830,913,996,1079,1162,1245,1328,1411,1494,1577,1660,1743,1826,1909,1992,2075,2158,2241,2324,2407,2490,2573,2656,2739,2822,2905,2988,3071,3154,3237,3320,3403,3486,3569,3652,3735,3818,3901,3984,4067,4150,4233,4316,4399,4482,4565,4648,4731,4814,4897,4980,5063,5146,5229,5312,5395,5478,5561,5644,5727,5810,5893,5976,6059,6142,6225,6308,6391,6474,6557,6640,6723,6806,6889,6972,7055,7138,7221,7304,7387,7470,7553,7636,7719,7802,7885,7968,8051,8134,8217,8300],"measured_values":[784761.0,1502635.0,2255280.0,3007624.0,3763253.0,4512255.0,5266234.0,6013268.0,6770367.0,7513783.0,8273982.0,9021193.0,9770955.0,10526921.0,11280259.0,12039266.0,12782209.0,13537092.0,14289851.0,15070579.0,15785259.0,16574078.0,17295168.0,18101882.0,18810019.0,19552863.0,20302086.0,21092745.0,21844633.0,22567537.0,23305761.0,24085767.0,24818119.0,25594150.0,26368357.0,27086852.0,27849456.0,28601921.0,29344444.0,30137185.0,30885152.0,31660790.0,32333972.0,33107417.0,33823072.0,34539762.0,35244846.0,36045984.0,36811316.0,37474689.0,38222863.0,38979971.0,39740243.0,40410195.0,41191093.0,41894294.0,42689502.0,43463801.0,44229773.0,45156548.0,45981149.0,46787014.0,47636327.0,48266812.0,49106566.0,49843953.0,50602530.0,51242208.0,51871215.0,52675090.0,53392243.0,54177010.0,54962567.0,55667661.0,56468985.0,57408553.0,58050623.0,58761780.0,59432499.0,60172845.0,60899257.0,61399660.0,62065548.0,62663350.0,63346862.0,64120859.0,64876271.0,65207097.0,65201721.0,65867866.0,66699784.0,67375671.0,68089911.0,68837927.0,69553176.0,70212305.0,71001365.0,71714632.0,72569446.0,73186268.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":8975.718966778893,"lower_bound":8945.513596901397,"upper_bound":9008.356585976619,"unit":"ns"},"mean":{"estimate":9032.207510451037,"lower_bound":9014.001597309667,"upper_bound":9049.86525649489,"unit":"ns"},"median":{"estimate":9060.0436663986,"lower_bound":9057.349397590362,"upper_bound":9063.267871485943,"unit":"ns"},"median_abs_dev":{"estimate":23.153107499863317,"lower_bound":11.697356539318724,"upper_bound":34.44599861539195,"unit":"ns"},"slope":{"estimate":8975.718966778893,"lower_bound":8945.513596901397,"upper_bound":9008.356585976619,"unit":"ns"},"change":{"mean":{"estimate":-0.014502875004520521,"lower_bound":-0.019607134228268628,"upper_bound":-0.00922214332631693,"unit":"%"},"median":{"estimate":-0.027057859382743743,"lower_bound":-0.027677537020810106,"upper_bound":-0.022419521773155204,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"ldc/66666","report_directory":"/root/fuel-core/target/criterion/reports/ldc/66666","iteration_count":[55,110,165,220,275,330,385,440,495,550,605,660,715,770,825,880,935,990,1045,1100,1155,1210,1265,1320,1375,1430,1485,1540,1595,1650,1705,1760,1815,1870,1925,1980,2035,2090,2145,2200,2255,2310,2365,2420,2475,2530,2585,2640,2695,2750,2805,2860,2915,2970,3025,3080,3135,3190,3245,3300,3355,3410,3465,3520,3575,3630,3685,3740,3795,3850,3905,3960,4015,4070,4125,4180,4235,4290,4345,4400,4455,4510,4565,4620,4675,4730,4785,4840,4895,4950,5005,5060,5115,5170,5225,5280,5335,5390,5445,5500],"measured_values":[771157.0,1422640.0,2140234.0,2850642.0,3561367.0,4280527.0,4985589.0,5700027.0,6417712.0,7127700.0,7853970.0,8551376.0,9265480.0,9981883.0,10685380.0,11414903.0,12146611.0,12822359.0,13547409.0,14256768.0,14961177.0,15696099.0,16397051.0,17113816.0,17812079.0,18527850.0,19249621.0,19974930.0,20687834.0,21486668.0,22213989.0,22869174.0,23503847.0,24247214.0,24978047.0,25681279.0,26346514.0,27058537.0,27803149.0,28448726.0,29173923.0,29915749.0,30625513.0,31306983.0,32029948.0,32766591.0,33459910.0,34211798.0,34840480.0,35609507.0,36277610.0,37036920.0,37721406.0,38484985.0,39167007.0,39851656.0,40597322.0,41413043.0,41956603.0,42751098.0,43421746.0,44137334.0,44901515.0,45560436.0,46328102.0,47002806.0,47679045.0,48450974.0,49137039.0,49831112.0,50632603.0,51234537.0,51957766.0,52733813.0,53400121.0,54089128.0,54818130.0,55485203.0,56144533.0,56824162.0,57572286.0,58272443.0,58994585.0,59260943.0,59869568.0,60578425.0,61247474.0,61983391.0,62728603.0,63393502.0,64117249.0,64804823.0,65530581.0,66249793.0,67027974.0,67624275.0,68353913.0,69044174.0,69762476.0,70499207.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":12888.022911401587,"lower_bound":12871.069688243972,"upper_bound":12907.417337952815,"unit":"ns"},"mean":{"estimate":12940.245457942447,"lower_bound":12920.842735892182,"upper_bound":12967.74841858047,"unit":"ns"},"median":{"estimate":12949.194295983087,"lower_bound":12943.499706744868,"upper_bound":12952.638888888889,"unit":"ns"},"median_abs_dev":{"estimate":19.58129409143061,"lower_bound":14.467505902349924,"upper_bound":27.615540981587145,"unit":"ns"},"slope":{"estimate":12888.022911401587,"lower_bound":12871.069688243972,"upper_bound":12907.417337952815,"unit":"ns"},"change":{"mean":{"estimate":-0.009117978720360354,"lower_bound":-0.012439940020729989,"upper_bound":-0.005523336570636518,"unit":"%"},"median":{"estimate":-0.016313557868755435,"lower_bound":-0.01691646907259925,"upper_bound":-0.015304580712374916,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"ldc/100000","report_directory":"/root/fuel-core/target/criterion/reports/ldc/100000","iteration_count":[37,74,111,148,185,222,259,296,333,370,407,444,481,518,555,592,629,666,703,740,777,814,851,888,925,962,999,1036,1073,1110,1147,1184,1221,1258,1295,1332,1369,1406,1443,1480,1517,1554,1591,1628,1665,1702,1739,1776,1813,1850,1887,1924,1961,1998,2035,2072,2109,2146,2183,2220,2257,2294,2331,2368,2405,2442,2479,2516,2553,2590,2627,2664,2701,2738,2775,2812,2849,2886,2923,2960,2997,3034,3071,3108,3145,3182,3219,3256,3293,3330,3367,3404,3441,3478,3515,3552,3589,3626,3663,3700],"measured_values":[752436.0,1398625.0,2099345.0,2802545.0,3501422.0,4203441.0,4917205.0,5604083.0,6315288.0,7003821.0,7704296.0,8415086.0,9106230.0,9808745.0,10502390.0,11207124.0,11912288.0,12602015.0,13305726.0,14000266.0,14705499.0,15403330.0,16105343.0,16810539.0,17503378.0,18216142.0,18907253.0,19624374.0,20304395.0,21009394.0,21731253.0,22448907.0,23132376.0,23803031.0,24537834.0,25188983.0,25931294.0,26608015.0,27314449.0,28010309.0,28703985.0,29454124.0,30139917.0,30808200.0,31523292.0,32244282.0,32898920.0,33606745.0,34306290.0,35033177.0,35795351.0,36406772.0,37087892.0,37805675.0,38565073.0,39200976.0,39813881.0,40524962.0,41257160.0,41937919.0,42719978.0,43369569.0,44052274.0,44763352.0,45449561.0,46131116.0,46851110.0,47559403.0,48300102.0,48912473.0,49659405.0,50267899.0,50909393.0,51634436.0,52364913.0,52966658.0,53640937.0,54323577.0,55014339.0,55759045.0,56458400.0,57186380.0,57857662.0,58478595.0,59252637.0,59920134.0,60698861.0,61341738.0,62017457.0,62690987.0,63429934.0,64063683.0,64675789.0,65449792.0,66196636.0,66930885.0,67618175.0,68454383.0,69131167.0,69662683.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":18866.260351786692,"lower_bound":18857.30169101744,"upper_bound":18876.814919932513,"unit":"ns"},"mean":{"estimate":18914.381224517852,"lower_bound":18893.37906637596,"upper_bound":18948.145331568394,"unit":"ns"},"median":{"estimate":18920.359130138542,"lower_bound":18903.124658523477,"upper_bound":18923.117526617527,"unit":"ns"},"median_abs_dev":{"estimate":32.12311976084131,"lower_bound":21.80265022834261,"upper_bound":49.380596690885504,"unit":"ns"},"slope":{"estimate":18866.260351786692,"lower_bound":18857.30169101744,"upper_bound":18876.814919932513,"unit":"ns"},"change":{"mean":{"estimate":0.009420013169408659,"lower_bound":0.0072963689148870916,"upper_bound":0.011794968420072155,"unit":"%"},"median":{"estimate":0.007418942535201367,"lower_bound":0.006377769385172982,"upper_bound":0.007821164586082396,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"ldc","benchmarks":["ldc/1","ldc/10","ldc/100","ldc/1000","ldc/10000","ldc/19753","ldc/29629","ldc/44444","ldc/66666","ldc/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/ldc"} +{"reason":"benchmark-complete","id":"ccp/1","report_directory":"/root/fuel-core/target/criterion/reports/ccp/1","iteration_count":[1969,3938,5907,7876,9845,11814,13783,15752,17721,19690,21659,23628,25597,27566,29535,31504,33473,35442,37411,39380,41349,43318,45287,47256,49225,51194,53163,55132,57101,59070,61039,63008,64977,66946,68915,70884,72853,74822,76791,78760,80729,82698,84667,86636,88605,90574,92543,94512,96481,98450,100419,102388,104357,106326,108295,110264,112233,114202,116171,118140,120109,122078,124047,126016,127985,129954,131923,133892,135861,137830,139799,141768,143737,145706,147675,149644,151613,153582,155551,157520,159489,161458,163427,165396,167365,169334,171303,173272,175241,177210,179179,181148,183117,185086,187055,189024,190993,192962,194931,196900],"measured_values":[981425.0,1882866.0,2830092.0,3755011.0,4693188.0,5604516.0,6508694.0,7444798.0,8387168.0,9380721.0,10325794.0,11276427.0,12208068.0,13048725.0,14100280.0,15093476.0,15827344.0,16747780.0,17698403.0,18809331.0,19771053.0,20587970.0,21470940.0,22364008.0,23288173.0,24462415.0,25596585.0,26559548.0,27532085.0,28448338.0,28932766.0,29881131.0,31141944.0,31753287.0,32907946.0,34066033.0,34713155.0,35744182.0,36558137.0,37328426.0,38190240.0,39512844.0,40129037.0,41396354.0,42303358.0,43401883.0,44546396.0,45507737.0,46394600.0,46979764.0,47727315.0,48719709.0,49982339.0,50554907.0,51799285.0,52899479.0,53260579.0,54236111.0,55154906.0,56213200.0,56724509.0,57813079.0,59001650.0,60107671.0,60742262.0,61432237.0,63310461.0,63868527.0,64392553.0,65495864.0,66526717.0,67846972.0,68925995.0,69400331.0,70399354.0,70906396.0,71821302.0,73097456.0,73635572.0,75777378.0,76209162.0,77478116.0,77466048.0,78193364.0,80551140.0,81328477.0,81399637.0,82502286.0,83663115.0,84312285.0,84838943.0,86051493.0,86944896.0,87696238.0,88998835.0,90590801.0,90483138.0,91788813.0,92111621.0,93147788.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":476.08617853814064,"lower_bound":475.4552157242601,"upper_bound":476.7620922973142,"unit":"ns"},"mean":{"estimate":476.5635485083735,"lower_bound":475.93324540712536,"upper_bound":477.2745236248265,"unit":"ns"},"median":{"estimate":476.01193499238195,"lower_bound":475.28171959489737,"upper_bound":476.93354690002735,"unit":"ns"},"median_abs_dev":{"estimate":3.0405631613472672,"lower_bound":2.4094982946101666,"upper_bound":3.8323286767051012,"unit":"ns"},"slope":{"estimate":476.08617853814064,"lower_bound":475.4552157242601,"upper_bound":476.7620922973142,"unit":"ns"},"change":{"mean":{"estimate":0.026857392314278528,"lower_bound":0.025300695060305703,"upper_bound":0.02832771404534069,"unit":"%"},"median":{"estimate":0.025759673585180387,"lower_bound":0.02408023150719041,"upper_bound":0.027688926898613353,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"ccp/10","report_directory":"/root/fuel-core/target/criterion/reports/ccp/10","iteration_count":[1856,3712,5568,7424,9280,11136,12992,14848,16704,18560,20416,22272,24128,25984,27840,29696,31552,33408,35264,37120,38976,40832,42688,44544,46400,48256,50112,51968,53824,55680,57536,59392,61248,63104,64960,66816,68672,70528,72384,74240,76096,77952,79808,81664,83520,85376,87232,89088,90944,92800,94656,96512,98368,100224,102080,103936,105792,107648,109504,111360,113216,115072,116928,118784,120640,122496,124352,126208,128064,129920,131776,133632,135488,137344,139200,141056,142912,144768,146624,148480,150336,152192,154048,155904,157760,159616,161472,163328,165184,167040,168896,170752,172608,174464,176320,178176,180032,181888,183744,185600],"measured_values":[979982.0,1833665.0,2768240.0,3591026.0,4505118.0,5388135.0,6282369.0,7200143.0,8072619.0,8998894.0,9860200.0,10600329.0,11701041.0,12599472.0,13489726.0,14572569.0,15642445.0,16479722.0,17287982.0,18236495.0,18910950.0,19804248.0,20693095.0,21577892.0,22113119.0,23499794.0,24746480.0,25765647.0,26644939.0,27630942.0,28837494.0,29939497.0,30407970.0,31669824.0,32738618.0,33027808.0,34357169.0,35265999.0,35938798.0,37183040.0,38223116.0,38733802.0,40138510.0,40681187.0,42036732.0,43010254.0,43691041.0,44561534.0,47139548.0,45878527.0,46811813.0,47723833.0,48795963.0,49863464.0,50474048.0,52122253.0,52539248.0,53992873.0,54902431.0,55784030.0,56955603.0,57951391.0,58597080.0,59279726.0,60195210.0,61647783.0,62513203.0,62904189.0,64050551.0,65280950.0,65444578.0,66391681.0,67513106.0,67875339.0,68864590.0,70480016.0,71135980.0,71945140.0,73307093.0,73648073.0,74674203.0,76664826.0,76838512.0,77628142.0,79238893.0,79843872.0,80153594.0,81491303.0,82689396.0,83169640.0,84268066.0,85214943.0,86631872.0,87659298.0,88079504.0,88627285.0,89872500.0,90423999.0,91967487.0,93314291.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":499.16434469477895,"lower_bound":498.4665341397532,"upper_bound":499.8503984253983,"unit":"ns"},"mean":{"estimate":496.43394423270917,"lower_bound":494.9448755847666,"upper_bound":497.9292639199753,"unit":"ns"},"median":{"estimate":497.64045732364696,"lower_bound":496.56849696765914,"upper_bound":498.99872113171045,"unit":"ns"},"median_abs_dev":{"estimate":4.910602059011892,"lower_bound":3.7775812906087034,"upper_bound":6.693784879388425,"unit":"ns"},"slope":{"estimate":499.16434469477895,"lower_bound":498.4665341397532,"upper_bound":499.8503984253983,"unit":"ns"},"change":{"mean":{"estimate":-0.04184971816507266,"lower_bound":-0.046051639756098384,"upper_bound":-0.037950110759234275,"unit":"%"},"median":{"estimate":-0.03463559522607562,"lower_bound":-0.03670024804931354,"upper_bound":-0.03200835991276452,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ccp/100","report_directory":"/root/fuel-core/target/criterion/reports/ccp/100","iteration_count":[1851,3702,5553,7404,9255,11106,12957,14808,16659,18510,20361,22212,24063,25914,27765,29616,31467,33318,35169,37020,38871,40722,42573,44424,46275,48126,49977,51828,53679,55530,57381,59232,61083,62934,64785,66636,68487,70338,72189,74040,75891,77742,79593,81444,83295,85146,86997,88848,90699,92550,94401,96252,98103,99954,101805,103656,105507,107358,109209,111060,112911,114762,116613,118464,120315,122166,124017,125868,127719,129570,131421,133272,135123,136974,138825,140676,142527,144378,146229,148080,149931,151782,153633,155484,157335,159186,161037,162888,164739,166590,168441,170292,172143,173994,175845,177696,179547,181398,183249,185100],"measured_values":[1042611.0,1932453.0,2816909.0,3758844.0,4689964.0,5626715.0,6565428.0,7504777.0,8433550.0,9369483.0,10310955.0,11291943.0,12275331.0,13149178.0,14080884.0,15003511.0,15959206.0,16902014.0,18006453.0,19178184.0,19697114.0,20631038.0,21727035.0,22678368.0,23431677.0,24394847.0,25321089.0,26449357.0,27221716.0,28154877.0,29275504.0,30789531.0,30981256.0,32635163.0,33340767.0,33804537.0,34830886.0,36451833.0,36899406.0,37729722.0,39052323.0,40045406.0,40377792.0,41798535.0,42455275.0,43136697.0,44707217.0,45343422.0,46238044.0,46877278.0,48171338.0,48774596.0,49712285.0,50635620.0,52100126.0,52919465.0,54324138.0,55878178.0,57038610.0,57221948.0,57573222.0,58484280.0,59130858.0,60220986.0,61018433.0,61953355.0,63163881.0,64082436.0,65073876.0,65992992.0,66961477.0,67882623.0,68855035.0,69773366.0,70729013.0,72956122.0,73977522.0,74158955.0,74113855.0,75845603.0,75999819.0,76909447.0,77872426.0,78772225.0,80709453.0,82186149.0,83156046.0,82601697.0,83497641.0,84416316.0,86570653.0,86912177.0,87695565.0,89285451.0,91206484.0,92232813.0,91055656.0,91976571.0,94920414.0,95622072.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":511.2691047354814,"lower_bound":510.0892052994108,"upper_bound":512.4737130475145,"unit":"ns"},"mean":{"estimate":510.9757061977427,"lower_bound":509.8158287511214,"upper_bound":512.446338152256,"unit":"ns"},"median":{"estimate":509.4128549001765,"lower_bound":507.41599135602377,"upper_bound":509.9648249026577,"unit":"ns"},"median_abs_dev":{"estimate":3.812862656034105,"lower_bound":1.56783184223402,"upper_bound":4.597630930896394,"unit":"ns"},"slope":{"estimate":511.2691047354814,"lower_bound":510.0892052994108,"upper_bound":512.4737130475145,"unit":"ns"},"change":{"mean":{"estimate":-0.0300341213556371,"lower_bound":-0.03269206619289834,"upper_bound":-0.026665197687579717,"unit":"%"},"median":{"estimate":-0.031963318077752545,"lower_bound":-0.03553054582069226,"upper_bound":-0.03090691462398676,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ccp/1000","report_directory":"/root/fuel-core/target/criterion/reports/ccp/1000","iteration_count":[1355,2710,4065,5420,6775,8130,9485,10840,12195,13550,14905,16260,17615,18970,20325,21680,23035,24390,25745,27100,28455,29810,31165,32520,33875,35230,36585,37940,39295,40650,42005,43360,44715,46070,47425,48780,50135,51490,52845,54200,55555,56910,58265,59620,60975,62330,63685,65040,66395,67750,69105,70460,71815,73170,74525,75880,77235,78590,79945,81300,82655,84010,85365,86720,88075,89430,90785,92140,93495,94850,96205,97560,98915,100270,101625,102980,104335,105690,107045,108400,109755,111110,112465,113820,115175,116530,117885,119240,120595,121950,123305,124660,126015,127370,128725,130080,131435,132790,134145,135500],"measured_values":[985661.0,1791956.0,2701603.0,3558938.0,4547794.0,5388949.0,6241898.0,7158690.0,8092920.0,9071403.0,9930156.0,10718388.0,11586689.0,12465869.0,13385064.0,14276800.0,15251937.0,16231383.0,17154421.0,17902671.0,18829789.0,19655820.0,20659731.0,21547674.0,22492418.0,23654059.0,24507182.0,25543480.0,26450114.0,26778257.0,27873503.0,28591808.0,29764382.0,30745135.0,31956553.0,32872010.0,33313779.0,34333010.0,34944098.0,36346599.0,36839678.0,37745683.0,38570276.0,39293180.0,40514561.0,41252915.0,42188923.0,43311880.0,43786883.0,44558644.0,45900345.0,47395098.0,47777263.0,48432913.0,49692514.0,50842365.0,51225529.0,51769373.0,53465294.0,53674836.0,55036557.0,55759463.0,56246405.0,57789925.0,59149730.0,59406830.0,60246908.0,61807043.0,62119480.0,62725380.0,63550626.0,64809546.0,65390253.0,66340045.0,67487121.0,68241946.0,69310061.0,70585143.0,70845893.0,71666489.0,73892182.0,73786671.0,74780498.0,75737417.0,76446832.0,77292217.0,78349553.0,79558429.0,80195126.0,81356849.0,82488695.0,82855305.0,83366613.0,85144976.0,85153067.0,86317435.0,88168653.0,89078747.0,88608341.0,89568149.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":664.7651193653595,"lower_bound":663.8441859747444,"upper_bound":665.7111031508834,"unit":"ns"},"mean":{"estimate":664.9345741328243,"lower_bound":663.6704413829044,"upper_bound":666.6186049239037,"unit":"ns"},"median":{"estimate":663.8639166485782,"lower_bound":663.0784742218132,"upper_bound":664.5079897320712,"unit":"ns"},"median_abs_dev":{"estimate":3.879215334499558,"lower_bound":2.995829055136533,"upper_bound":5.032354302496344,"unit":"ns"},"slope":{"estimate":664.7651193653595,"lower_bound":663.8441859747444,"upper_bound":665.7111031508834,"unit":"ns"},"change":{"mean":{"estimate":-0.023396274717876753,"lower_bound":-0.02561568832604382,"upper_bound":-0.02086232732678918,"unit":"%"},"median":{"estimate":-0.02438042177016142,"lower_bound":-0.02567210679661258,"upper_bound":-0.023416442834916396,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ccp/10000","report_directory":"/root/fuel-core/target/criterion/reports/ccp/10000","iteration_count":[148,296,444,592,740,888,1036,1184,1332,1480,1628,1776,1924,2072,2220,2368,2516,2664,2812,2960,3108,3256,3404,3552,3700,3848,3996,4144,4292,4440,4588,4736,4884,5032,5180,5328,5476,5624,5772,5920,6068,6216,6364,6512,6660,6808,6956,7104,7252,7400,7548,7696,7844,7992,8140,8288,8436,8584,8732,8880,9028,9176,9324,9472,9620,9768,9916,10064,10212,10360,10508,10656,10804,10952,11100,11248,11396,11544,11692,11840,11988,12136,12284,12432,12580,12728,12876,13024,13172,13320,13468,13616,13764,13912,14060,14208,14356,14504,14652,14800],"measured_values":[992111.0,1844813.0,2766888.0,3680994.0,4594950.0,5511208.0,6435305.0,7370777.0,8289326.0,9207820.0,10229801.0,11036216.0,11950187.0,12878189.0,13783755.0,14724448.0,15662806.0,16566389.0,17456046.0,18413033.0,19281686.0,20259068.0,21151076.0,22087568.0,23000042.0,23936279.0,24790867.0,25750120.0,26663805.0,27594535.0,28571032.0,29496414.0,30379833.0,31312284.0,32253658.0,33062886.0,34040656.0,35028873.0,35878896.0,36784908.0,37694596.0,38665703.0,39569147.0,40515484.0,41307648.0,42214176.0,43252153.0,44167392.0,45078847.0,45998190.0,46958005.0,47834369.0,48691610.0,49591911.0,49490764.0,49508105.0,50428551.0,51317617.0,52164272.0,53006910.0,53906995.0,54805925.0,55662848.0,56498629.0,57405459.0,58342199.0,59216268.0,60127315.0,61021717.0,61864049.0,62628016.0,63597224.0,64497328.0,65347811.0,66330114.0,67288808.0,68240784.0,69170291.0,69919797.0,70892104.0,71796137.0,72740134.0,73502755.0,74342053.0,75252656.0,75872638.0,76725485.0,77746524.0,78606076.0,79205731.0,80122079.0,81124762.0,81826167.0,82565082.0,83529006.0,84408504.0,85330339.0,86144981.0,87097426.0,87855759.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":6005.021990043095,"lower_bound":5989.820137254593,"upper_bound":6024.681856837949,"unit":"ns"},"mean":{"estimate":6108.414649981282,"lower_bound":6081.612106667536,"upper_bound":6135.967863082852,"unit":"ns"},"median":{"estimate":6204.55736986987,"lower_bound":5985.876045600444,"upper_bound":6212.063639994674,"unit":"ns"},"median_abs_dev":{"estimate":37.86372947635389,"lower_bound":16.713028747545557,"upper_bound":216.29584162161433,"unit":"ns"},"slope":{"estimate":6005.021990043095,"lower_bound":5989.820137254593,"upper_bound":6024.681856837949,"unit":"ns"},"change":{"mean":{"estimate":-0.08597569877780409,"lower_bound":-0.09075125292003032,"upper_bound":-0.08103503531682027,"unit":"%"},"median":{"estimate":-0.07432072592921957,"lower_bound":-0.10721973589618172,"upper_bound":-0.07293534982662131,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ccp/19753","report_directory":"/root/fuel-core/target/criterion/reports/ccp/19753","iteration_count":[75,150,225,300,375,450,525,600,675,750,825,900,975,1050,1125,1200,1275,1350,1425,1500,1575,1650,1725,1800,1875,1950,2025,2100,2175,2250,2325,2400,2475,2550,2625,2700,2775,2850,2925,3000,3075,3150,3225,3300,3375,3450,3525,3600,3675,3750,3825,3900,3975,4050,4125,4200,4275,4350,4425,4500,4575,4650,4725,4800,4875,4950,5025,5100,5175,5250,5325,5400,5475,5550,5625,5700,5775,5850,5925,6000,6075,6150,6225,6300,6375,6450,6525,6600,6675,6750,6825,6900,6975,7050,7125,7200,7275,7350,7425,7500],"measured_values":[942621.0,1786656.0,2705345.0,3569401.0,4465013.0,5369473.0,6271787.0,7212828.0,8104000.0,8960525.0,9855586.0,10739935.0,11632683.0,12533132.0,13425344.0,14319783.0,15253633.0,16103396.0,17025644.0,17939737.0,18806769.0,19691989.0,20557126.0,21511801.0,22399926.0,23305114.0,24198419.0,25103472.0,25992931.0,26892071.0,27745546.0,28688976.0,29545910.0,30477449.0,31347391.0,32404948.0,33194988.0,34004345.0,34991331.0,35930597.0,36736728.0,37742897.0,38454882.0,39377916.0,40352316.0,41137555.0,42124140.0,42984844.0,43818230.0,44791675.0,45693534.0,46663111.0,47538273.0,48378742.0,49265112.0,50416308.0,51103642.0,52018885.0,52864179.0,54072335.0,54695542.0,55659176.0,56380726.0,57423993.0,58210840.0,59200839.0,60061005.0,60911423.0,61811828.0,62813648.0,63554750.0,64601559.0,65470974.0,66267700.0,67324124.0,68099774.0,68960206.0,69864756.0,70755823.0,71667254.0,72644622.0,73383816.0,74455903.0,75185958.0,76353500.0,77206502.0,78002730.0,79039979.0,80028850.0,81075470.0,81578095.0,82112752.0,82837440.0,83710224.0,84590210.0,85576610.0,86564551.0,87558848.0,88256203.0,89236645.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":11940.058537372543,"lower_bound":11930.152927320638,"upper_bound":11950.361938492537,"unit":"ns"},"mean":{"estimate":11952.673252059261,"lower_bound":11942.118031850245,"upper_bound":11968.148921737284,"unit":"ns"},"median":{"estimate":11946.667159322034,"lower_bound":11943.054803921568,"upper_bound":11951.47066993464,"unit":"ns"},"median_abs_dev":{"estimate":19.463939118962333,"lower_bound":14.812594243048428,"upper_bound":23.641006964903166,"unit":"ns"},"slope":{"estimate":11940.058537372543,"lower_bound":11930.152927320638,"upper_bound":11950.361938492537,"unit":"ns"},"change":{"mean":{"estimate":0.0019674551640507243,"lower_bound":-0.0011039061982677577,"upper_bound":0.004540567278888002,"unit":"%"},"median":{"estimate":0.0006328550920871034,"lower_bound":-0.0015958799741506713,"upper_bound":0.009546373657334684,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"ccp/29629","report_directory":"/root/fuel-core/target/criterion/reports/ccp/29629","iteration_count":[50,100,150,200,250,300,350,400,450,500,550,600,650,700,750,800,850,900,950,1000,1050,1100,1150,1200,1250,1300,1350,1400,1450,1500,1550,1600,1650,1700,1750,1800,1850,1900,1950,2000,2050,2100,2150,2200,2250,2300,2350,2400,2450,2500,2550,2600,2650,2700,2750,2800,2850,2900,2950,3000,3050,3100,3150,3200,3250,3300,3350,3400,3450,3500,3550,3600,3650,3700,3750,3800,3850,3900,3950,4000,4050,4100,4150,4200,4250,4300,4350,4400,4450,4500,4550,4600,4650,4700,4750,4800,4850,4900,4950,5000],"measured_values":[938545.0,1780999.0,2669844.0,3559357.0,4451098.0,5341338.0,6237922.0,7124411.0,8011340.0,8902347.0,9788762.0,10685151.0,11579016.0,12502034.0,13356130.0,14244177.0,15139727.0,16030968.0,16926527.0,17830262.0,18725289.0,19612158.0,20508895.0,21404489.0,22297512.0,23181784.0,24097363.0,24946329.0,25873344.0,26779385.0,27666036.0,28569393.0,29560636.0,30317617.0,31219002.0,32101267.0,33006838.0,33885444.0,34820854.0,35678092.0,36579507.0,37487006.0,38343680.0,39228774.0,40170229.0,41026547.0,41895720.0,42769631.0,43696269.0,44588963.0,45482319.0,46368217.0,47248047.0,48128363.0,49027577.0,49976013.0,50750724.0,51694402.0,52576191.0,53448648.0,54361979.0,55229152.0,56205337.0,57008122.0,57962033.0,58812303.0,59689370.0,60600291.0,61523872.0,62242389.0,63172433.0,64049376.0,64901419.0,65794768.0,66712456.0,67606129.0,68535067.0,69250405.0,70154636.0,71071567.0,71852675.0,72799987.0,73700429.0,74655752.0,75535237.0,76461682.0,77191651.0,78151400.0,78964895.0,79885483.0,80785663.0,81706139.0,82593582.0,83613083.0,84424621.0,85333271.0,86059598.0,86961184.0,87804698.0,88731568.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":17786.936835820896,"lower_bound":17779.168894283303,"upper_bound":17796.015453129952,"unit":"ns"},"mean":{"estimate":17819.21437180967,"lower_bound":17804.527100674317,"upper_bound":17842.070784033414,"unit":"ns"},"median":{"estimate":17816.80642105263,"lower_bound":17807.928289473683,"upper_bound":17825.31962962963,"unit":"ns"},"median_abs_dev":{"estimate":29.866358719765312,"lower_bound":22.092657884090926,"upper_bound":40.76194349122605,"unit":"ns"},"slope":{"estimate":17786.936835820896,"lower_bound":17779.168894283303,"upper_bound":17796.015453129952,"unit":"ns"},"change":{"mean":{"estimate":-0.01324881881948281,"lower_bound":-0.01594615939201096,"upper_bound":-0.010986702015720402,"unit":"%"},"median":{"estimate":-0.013281010506482782,"lower_bound":-0.0162449117553854,"upper_bound":-0.00852833053490265,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ccp/44444","report_directory":"/root/fuel-core/target/criterion/reports/ccp/44444","iteration_count":[34,68,102,136,170,204,238,272,306,340,374,408,442,476,510,544,578,612,646,680,714,748,782,816,850,884,918,952,986,1020,1054,1088,1122,1156,1190,1224,1258,1292,1326,1360,1394,1428,1462,1496,1530,1564,1598,1632,1666,1700,1734,1768,1802,1836,1870,1904,1938,1972,2006,2040,2074,2108,2142,2176,2210,2244,2278,2312,2346,2380,2414,2448,2482,2516,2550,2584,2618,2652,2686,2720,2754,2788,2822,2856,2890,2924,2958,2992,3026,3060,3094,3128,3162,3196,3230,3264,3298,3332,3366,3400],"measured_values":[982572.0,1832452.0,2725864.0,3614587.0,4532090.0,5437426.0,6312903.0,7229987.0,8138147.0,9043680.0,9922488.0,10847503.0,11749850.0,12625673.0,13533393.0,14568802.0,15389013.0,16285577.0,17246001.0,18071091.0,18937319.0,19847671.0,21245388.0,21647238.0,22607085.0,23492033.0,24367795.0,25325406.0,26216009.0,27107974.0,27982228.0,28965983.0,29835511.0,30734045.0,31577989.0,32594823.0,33389952.0,34287247.0,35265592.0,36216646.0,37117190.0,37997089.0,38876043.0,39762113.0,40609471.0,41626366.0,42428435.0,43413453.0,44216314.0,45227922.0,46010947.0,46951041.0,47800122.0,48865622.0,49601536.0,50547389.0,51483351.0,52466851.0,53233521.0,54156522.0,55082791.0,56001500.0,56887987.0,57701801.0,58594821.0,59568932.0,60527561.0,61519863.0,62291244.0,63132266.0,64002462.0,64951698.0,65823955.0,66752216.0,67527641.0,68565180.0,69347391.0,70221426.0,71144401.0,71932971.0,73116572.0,73941734.0,74813529.0,75741056.0,76580278.0,77536556.0,78489328.0,79320835.0,80333504.0,81205609.0,82074543.0,82862406.0,84374294.0,84723548.0,85564388.0,86558130.0,87523498.0,88426350.0,89325692.0,90175383.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":26538.176902354855,"lower_bound":26528.09713139861,"upper_bound":26550.447072793064,"unit":"ns"},"mean":{"estimate":26594.257504708727,"lower_bound":26558.585457481946,"upper_bound":26651.25278800119,"unit":"ns"},"median":{"estimate":26547.87627761779,"lower_bound":26538.068346135704,"upper_bound":26566.711157236798,"unit":"ns"},"median_abs_dev":{"estimate":44.829230959637236,"lower_bound":30.274408830804894,"upper_bound":57.782061878190966,"unit":"ns"},"slope":{"estimate":26538.176902354855,"lower_bound":26528.09713139861,"upper_bound":26550.447072793064,"unit":"ns"},"change":{"mean":{"estimate":-0.014062065176253857,"lower_bound":-0.015813481970147557,"upper_bound":-0.011611568579172182,"unit":"%"},"median":{"estimate":-0.015029348335963366,"lower_bound":-0.01541319542712205,"upper_bound":-0.014181488960347655,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ccp/66666","report_directory":"/root/fuel-core/target/criterion/reports/ccp/66666","iteration_count":[22,44,66,88,110,132,154,176,198,220,242,264,286,308,330,352,374,396,418,440,462,484,506,528,550,572,594,616,638,660,682,704,726,748,770,792,814,836,858,880,902,924,946,968,990,1012,1034,1056,1078,1100,1122,1144,1166,1188,1210,1232,1254,1276,1298,1320,1342,1364,1386,1408,1430,1452,1474,1496,1518,1540,1562,1584,1606,1628,1650,1672,1694,1716,1738,1760,1782,1804,1826,1848,1870,1892,1914,1936,1958,1980,2002,2024,2046,2068,2090,2112,2134,2156,2178,2200],"measured_values":[945365.0,1762269.0,2677870.0,3519791.0,4401739.0,5281967.0,6160109.0,7043151.0,7958298.0,8822120.0,9683009.0,10566198.0,11451966.0,12329745.0,13200468.0,14115863.0,15001395.0,15843388.0,16724898.0,17600300.0,18486972.0,19361365.0,20239226.0,21227817.0,22047438.0,22960930.0,23809685.0,24665211.0,25582296.0,26415416.0,27306013.0,28187215.0,29056131.0,29908823.0,30843234.0,31653335.0,32559671.0,33411385.0,34301699.0,35175389.0,36095205.0,36941715.0,37862996.0,38743834.0,39886434.0,40629313.0,41367140.0,42229723.0,43084835.0,44021650.0,44890334.0,45795941.0,46636380.0,47558002.0,48432730.0,49286533.0,50218684.0,51076247.0,51938930.0,52844087.0,53670792.0,54580167.0,55430964.0,56411367.0,56862344.0,57915943.0,58933632.0,59638014.0,60576775.0,61458834.0,62182108.0,62893360.0,63749621.0,64615951.0,65507411.0,66449136.0,67241046.0,68276575.0,68978280.0,69894356.0,70778452.0,71642239.0,72545251.0,73343906.0,74339097.0,75090608.0,75965198.0,76903145.0,77722583.0,78754081.0,79560864.0,80438161.0,81287759.0,82393267.0,83333953.0,84163032.0,85111516.0,85900090.0,86665603.0,87455895.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":39837.8986209815,"lower_bound":39810.514190934904,"upper_bound":39869.788511613224,"unit":"ns"},"mean":{"estimate":39975.15057328071,"lower_bound":39921.4093465351,"upper_bound":40051.977105030914,"unit":"ns"},"median":{"estimate":40000.13882063882,"lower_bound":39980.21103896104,"upper_bound":40012.43388429752,"unit":"ns"},"median_abs_dev":{"estimate":79.64422719782684,"lower_bound":45.694460639804056,"upper_bound":163.08006821512672,"unit":"ns"},"slope":{"estimate":39837.8986209815,"lower_bound":39810.514190934904,"upper_bound":39869.788511613224,"unit":"ns"},"change":{"mean":{"estimate":0.002982538976895377,"lower_bound":0.0006028669374324393,"upper_bound":0.005308467846151548,"unit":"%"},"median":{"estimate":0.0028252454320729647,"lower_bound":0.0021540108471065356,"upper_bound":0.003275428627930177,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"ccp/100000","report_directory":"/root/fuel-core/target/criterion/reports/ccp/100000","iteration_count":[16,32,48,64,80,96,112,128,144,160,176,192,208,224,240,256,272,288,304,320,336,352,368,384,400,416,432,448,464,480,496,512,528,544,560,576,592,608,624,640,656,672,688,704,720,736,752,768,784,800,816,832,848,864,880,896,912,928,944,960,976,992,1008,1024,1040,1056,1072,1088,1104,1120,1136,1152,1168,1184,1200,1216,1232,1248,1264,1280,1296,1312,1328,1344,1360,1376,1392,1408,1424,1440,1456,1472,1488,1504,1520,1536,1552,1568,1584,1600],"measured_values":[979221.0,1871335.0,2801314.0,3740106.0,4670204.0,5605942.0,6556595.0,7494548.0,8435751.0,9380445.0,10299533.0,11215407.0,12152346.0,13102121.0,14018534.0,14957495.0,15929069.0,16835114.0,17797794.0,18692069.0,19658196.0,20601438.0,21507060.0,22456113.0,23372792.0,24305878.0,25234678.0,26167916.0,27100648.0,28031254.0,28989274.0,29912558.0,30837902.0,31784002.0,32707445.0,33654949.0,34627448.0,35537267.0,36440326.0,37379974.0,38311356.0,39350832.0,40194871.0,41119907.0,42120260.0,43032967.0,43919715.0,44881024.0,45815730.0,46749261.0,47655253.0,48623276.0,49583650.0,50510902.0,51402341.0,52339580.0,53359643.0,54210570.0,55151003.0,56086435.0,57073399.0,57977582.0,58892557.0,59924274.0,60794021.0,61731291.0,62643556.0,63581379.0,64507157.0,65447857.0,66367352.0,67307175.0,68242604.0,69177775.0,70268116.0,71062297.0,72058435.0,72994943.0,73892080.0,74856087.0,75714077.0,76701684.0,77604411.0,78610345.0,79471990.0,80461493.0,81421826.0,82329296.0,83256274.0,84124048.0,85083677.0,85996376.0,86945039.0,87902850.0,88839734.0,89790741.0,90772691.0,91657084.0,92543038.0,93475125.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":58449.82663994384,"lower_bound":58442.4392965233,"upper_bound":58457.52792304358,"unit":"ns"},"mean":{"estimate":58479.33309584149,"lower_bound":58444.942305884135,"upper_bound":58539.75373093594,"unit":"ns"},"median":{"estimate":58438.59929284213,"lower_bound":58429.76834117384,"upper_bound":58447.784619057726,"unit":"ns"},"median_abs_dev":{"estimate":36.236435577197646,"lower_bound":25.187927710346536,"upper_bound":48.00000149157886,"unit":"ns"},"slope":{"estimate":58449.82663994384,"lower_bound":58442.4392965233,"upper_bound":58457.52792304358,"unit":"ns"},"change":{"mean":{"estimate":-0.008012215837991832,"lower_bound":-0.010365541421737677,"upper_bound":-0.006038810697508354,"unit":"%"},"median":{"estimate":-0.008958852609780354,"lower_bound":-0.009579551803323483,"upper_bound":-0.008578057586605015,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"ccp","benchmarks":["ccp/1","ccp/10","ccp/100","ccp/1000","ccp/10000","ccp/19753","ccp/29629","ccp/44444","ccp/66666","ccp/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/ccp"} +{"reason":"benchmark-complete","id":"csiz/1","report_directory":"/root/fuel-core/target/criterion/reports/csiz/1","iteration_count":[2366,4732,7098,9464,11830,14196,16562,18928,21294,23660,26026,28392,30758,33124,35490,37856,40222,42588,44954,47320,49686,52052,54418,56784,59150,61516,63882,66248,68614,70980,73346,75712,78078,80444,82810,85176,87542,89908,92274,94640,97006,99372,101738,104104,106470,108836,111202,113568,115934,118300,120666,123032,125398,127764,130130,132496,134862,137228,139594,141960,144326,146692,149058,151424,153790,156156,158522,160888,163254,165620,167986,170352,172718,175084,177450,179816,182182,184548,186914,189280,191646,194012,196378,198744,201110,203476,205842,208208,210574,212940,215306,217672,220038,222404,224770,227136,229502,231868,234234,236600],"measured_values":[1010367.0,1867326.0,2855326.0,3854172.0,4750738.0,5682468.0,6658886.0,7635933.0,8563973.0,9559845.0,10517969.0,11508739.0,12404736.0,13377599.0,14390431.0,15275615.0,16240165.0,17174206.0,18199877.0,19173623.0,20111379.0,21038985.0,21971249.0,22952344.0,23957715.0,24835562.0,25834750.0,26773160.0,27710965.0,28630732.0,29673050.0,30610638.0,31535981.0,32519707.0,33404491.0,34344043.0,35373941.0,36341129.0,37289428.0,38226791.0,39246071.0,40149931.0,41178719.0,42035497.0,43026044.0,43931237.0,44920393.0,46027503.0,46769348.0,47834427.0,48795146.0,49934849.0,50640584.0,51761481.0,52654862.0,53562852.0,54516018.0,55566183.0,56558616.0,57288512.0,58377110.0,59181940.0,60160730.0,61236404.0,62156369.0,63165156.0,64016972.0,65028450.0,65990478.0,66847204.0,68178566.0,68868859.0,69822702.0,70792079.0,71608810.0,72726001.0,73533361.0,74588601.0,75586813.0,76454007.0,77578512.0,78408284.0,79300241.0,80443276.0,81092394.0,81894019.0,83301393.0,84311873.0,85223707.0,86077515.0,87080011.0,88123763.0,88887668.0,89671156.0,90841258.0,91728338.0,92813537.0,93668346.0,94547694.0,95648815.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":404.17341763600666,"lower_bound":404.0192266065645,"upper_bound":404.32282575956754,"unit":"ns"},"mean":{"estimate":404.2257843797498,"lower_bound":403.7887663782103,"upper_bound":404.8117601963945,"unit":"ns"},"median":{"estimate":404.15798799456536,"lower_bound":403.9727172356686,"upper_bound":404.25273482173935,"unit":"ns"},"median_abs_dev":{"estimate":0.6026479510758599,"lower_bound":0.44014960777117423,"upper_bound":0.8204128949715115,"unit":"ns"},"slope":{"estimate":404.17341763600666,"lower_bound":404.0192266065645,"upper_bound":404.32282575956754,"unit":"ns"},"change":{"mean":{"estimate":0.011091345360203064,"lower_bound":0.008924198829243408,"upper_bound":0.013048573348824356,"unit":"%"},"median":{"estimate":0.012175773710910054,"lower_bound":0.011624399155418574,"upper_bound":0.012423005160159928,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"csiz/10","report_directory":"/root/fuel-core/target/criterion/reports/csiz/10","iteration_count":[2309,4618,6927,9236,11545,13854,16163,18472,20781,23090,25399,27708,30017,32326,34635,36944,39253,41562,43871,46180,48489,50798,53107,55416,57725,60034,62343,64652,66961,69270,71579,73888,76197,78506,80815,83124,85433,87742,90051,92360,94669,96978,99287,101596,103905,106214,108523,110832,113141,115450,117759,120068,122377,124686,126995,129304,131613,133922,136231,138540,140849,143158,145467,147776,150085,152394,154703,157012,159321,161630,163939,166248,168557,170866,173175,175484,177793,180102,182411,184720,187029,189338,191647,193956,196265,198574,200883,203192,205501,207810,210119,212428,214737,217046,219355,221664,223973,226282,228591,230900],"measured_values":[1016606.0,1902236.0,2838346.0,3777929.0,4779832.0,5673527.0,6700758.0,7602244.0,8586215.0,9582516.0,10406469.0,11396757.0,12328971.0,13454874.0,14307386.0,15231422.0,16185469.0,17118556.0,18074959.0,19057893.0,19968637.0,21094620.0,22161869.0,23099068.0,23901024.0,24738638.0,25777502.0,26634094.0,27782555.0,28976529.0,29743723.0,30555971.0,31361992.0,32438479.0,33393883.0,34362239.0,35587336.0,36202037.0,38078212.0,38951694.0,38983132.0,40052242.0,41089968.0,41872342.0,42840008.0,43533109.0,44213542.0,45920011.0,46567613.0,47535112.0,48716717.0,50228072.0,50672806.0,51547517.0,52739020.0,53256810.0,54150135.0,55097805.0,56142723.0,56816290.0,57540529.0,58952341.0,60321191.0,61193171.0,62095967.0,63055467.0,63954367.0,64997204.0,65824527.0,66914511.0,67901940.0,68859043.0,69703861.0,71413978.0,71608252.0,72544990.0,73676286.0,74476306.0,75469321.0,76143460.0,77434211.0,78220572.0,78933003.0,80058400.0,81280872.0,82188921.0,82944563.0,83774413.0,86509642.0,85778609.0,86891336.0,87787919.0,88845038.0,89730921.0,90853867.0,91716389.0,92665097.0,93225893.0,94632390.0,95499003.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":413.59323554177877,"lower_bound":413.1664901784502,"upper_bound":414.0977913098639,"unit":"ns"},"mean":{"estimate":413.6678384454254,"lower_bound":413.0419912590307,"upper_bound":414.4400790906305,"unit":"ns"},"median":{"estimate":413.4097962739117,"lower_bound":413.06501172757817,"upper_bound":413.6984604149152,"unit":"ns"},"median_abs_dev":{"estimate":1.6515661285995757,"lower_bound":0.9959946900387467,"upper_bound":2.0920574596658237,"unit":"ns"},"slope":{"estimate":413.59323554177877,"lower_bound":413.1664901784502,"upper_bound":414.0977913098639,"unit":"ns"},"change":{"mean":{"estimate":0.02779666402344727,"lower_bound":0.025585732483377505,"upper_bound":0.030089364617545498,"unit":"%"},"median":{"estimate":0.02805017337251381,"lower_bound":0.027214853510305614,"upper_bound":0.028781658825520307,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"csiz/100","report_directory":"/root/fuel-core/target/criterion/reports/csiz/100","iteration_count":[2183,4366,6549,8732,10915,13098,15281,17464,19647,21830,24013,26196,28379,30562,32745,34928,37111,39294,41477,43660,45843,48026,50209,52392,54575,56758,58941,61124,63307,65490,67673,69856,72039,74222,76405,78588,80771,82954,85137,87320,89503,91686,93869,96052,98235,100418,102601,104784,106967,109150,111333,113516,115699,117882,120065,122248,124431,126614,128797,130980,133163,135346,137529,139712,141895,144078,146261,148444,150627,152810,154993,157176,159359,161542,163725,165908,168091,170274,172457,174640,176823,179006,181189,183372,185555,187738,189921,192104,194287,196470,198653,200836,203019,205202,207385,209568,211751,213934,216117,218300],"measured_values":[948386.0,1887599.0,2839915.0,3794828.0,4753465.0,5700061.0,6654425.0,7571113.0,8550536.0,9497977.0,10452570.0,11406236.0,12358957.0,13305134.0,14248032.0,15218347.0,16144366.0,17106427.0,18079256.0,18984580.0,19946297.0,20898240.0,21880606.0,22807033.0,23749371.0,24699458.0,25643549.0,26604478.0,27556034.0,28486243.0,29552695.0,30449267.0,31421106.0,32253037.0,33231600.0,34177689.0,35146254.0,36119564.0,37079830.0,38007675.0,38950138.0,39931168.0,40870602.0,41867437.0,43085227.0,43723537.0,44741394.0,45587213.0,46599339.0,47499406.0,48488571.0,49436486.0,50463732.0,51272926.0,52258706.0,53194599.0,54085944.0,55156851.0,56050266.0,57017254.0,57974118.0,59133158.0,59965807.0,60796094.0,61497867.0,62165142.0,63364427.0,64520941.0,65377807.0,66467410.0,67561407.0,68264078.0,69377457.0,70336776.0,71288963.0,72227555.0,72961207.0,73973979.0,75067284.0,76044703.0,77429406.0,77880972.0,78961153.0,79833694.0,80729695.0,81751975.0,82639424.0,83545649.0,84560036.0,85538201.0,86471199.0,87511223.0,88462649.0,89367260.0,90802848.0,91594864.0,92632782.0,93609196.0,94089993.0,95124555.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":435.5168686874089,"lower_bound":435.22596576131036,"upper_bound":435.80688084757816,"unit":"ns"},"mean":{"estimate":435.31242985682087,"lower_bound":435.1212251989455,"upper_bound":435.50119554148256,"unit":"ns"},"median":{"estimate":435.3003213537112,"lower_bound":435.1856008550924,"upper_bound":435.3832079651946,"unit":"ns"},"median_abs_dev":{"estimate":0.33924281737979,"lower_bound":0.27085527529700704,"upper_bound":0.5598810867923653,"unit":"ns"},"slope":{"estimate":435.5168686874089,"lower_bound":435.22596576131036,"upper_bound":435.80688084757816,"unit":"ns"},"change":{"mean":{"estimate":-0.019188895786258153,"lower_bound":-0.0209172793302952,"upper_bound":-0.018104683382211217,"unit":"%"},"median":{"estimate":-0.018595325481082114,"lower_bound":-0.019202096971016262,"upper_bound":-0.017925023354297687,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"csiz/1000","report_directory":"/root/fuel-core/target/criterion/reports/csiz/1000","iteration_count":[2177,4354,6531,8708,10885,13062,15239,17416,19593,21770,23947,26124,28301,30478,32655,34832,37009,39186,41363,43540,45717,47894,50071,52248,54425,56602,58779,60956,63133,65310,67487,69664,71841,74018,76195,78372,80549,82726,84903,87080,89257,91434,93611,95788,97965,100142,102319,104496,106673,108850,111027,113204,115381,117558,119735,121912,124089,126266,128443,130620,132797,134974,137151,139328,141505,143682,145859,148036,150213,152390,154567,156744,158921,161098,163275,165452,167629,169806,171983,174160,176337,178514,180691,182868,185045,187222,189399,191576,193753,195930,198107,200284,202461,204638,206815,208992,211169,213346,215523,217700],"measured_values":[992511.0,1874283.0,2809796.0,3748820.0,4686517.0,5613587.0,6564122.0,7484921.0,8802674.0,9779743.0,10739208.0,11730096.0,12707026.0,13674370.0,14652551.0,15626559.0,16599040.0,17638626.0,17835038.0,18747529.0,19976979.0,20614385.0,21705042.0,23455441.0,23741743.0,24380397.0,25317500.0,26235829.0,27195201.0,28101186.0,29523393.0,31108344.0,32080338.0,33228357.0,34191652.0,34682484.0,34664374.0,35620187.0,36545284.0,37471395.0,38409714.0,39617979.0,42028221.0,42938756.0,43616410.0,43631895.0,45937068.0,46905567.0,47895253.0,48868107.0,48682141.0,48736653.0,50762954.0,50599872.0,51523205.0,52480435.0,55022531.0,54867004.0,55698980.0,57374604.0,58347284.0,59299572.0,60886524.0,62563387.0,63523193.0,64473009.0,63043960.0,63714841.0,66237662.0,67329777.0,66519919.0,67501158.0,68440756.0,69744425.0,70284867.0,71226112.0,73867827.0,74774293.0,77191154.0,78193672.0,79161002.0,78626443.0,77773047.0,80101094.0,79640405.0,83469416.0,82747368.0,82435952.0,84350177.0,85644974.0,87071992.0,88672969.0,88960540.0,91671373.0,90631408.0,89912752.0,90863340.0,91810851.0,93137020.0,94978131.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":437.76302803351587,"lower_bound":436.1167426910664,"upper_bound":439.4740889134185,"unit":"ns"},"mean":{"estimate":438.59169615013275,"lower_bound":437.08523773009136,"upper_bound":440.12436569436034,"unit":"ns"},"median":{"estimate":437.2940602552261,"lower_bound":433.47168644012186,"upper_bound":439.9593867274508,"unit":"ns"},"median_abs_dev":{"estimate":10.176311372184209,"lower_bound":4.716327204246803,"upper_bound":13.290786703927731,"unit":"ns"},"slope":{"estimate":437.76302803351587,"lower_bound":436.1167426910664,"upper_bound":439.4740889134185,"unit":"ns"},"change":{"mean":{"estimate":-0.03697503403286062,"lower_bound":-0.04058429371605663,"upper_bound":-0.03350944785129548,"unit":"%"},"median":{"estimate":-0.03903987440332768,"lower_bound":-0.04723305303099401,"upper_bound":-0.03326187182936269,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"csiz/10000","report_directory":"/root/fuel-core/target/criterion/reports/csiz/10000","iteration_count":[1548,3096,4644,6192,7740,9288,10836,12384,13932,15480,17028,18576,20124,21672,23220,24768,26316,27864,29412,30960,32508,34056,35604,37152,38700,40248,41796,43344,44892,46440,47988,49536,51084,52632,54180,55728,57276,58824,60372,61920,63468,65016,66564,68112,69660,71208,72756,74304,75852,77400,78948,80496,82044,83592,85140,86688,88236,89784,91332,92880,94428,95976,97524,99072,100620,102168,103716,105264,106812,108360,109908,111456,113004,114552,116100,117648,119196,120744,122292,123840,125388,126936,128484,130032,131580,133128,134676,136224,137772,139320,140868,142416,143964,145512,147060,148608,150156,151704,153252,154800],"measured_values":[979459.0,1944219.0,2895694.0,3891175.0,4833625.0,5799099.0,6757560.0,7730035.0,8691618.0,9674264.0,10678251.0,11591561.0,12600581.0,13491689.0,14498486.0,15525782.0,16509462.0,17408809.0,18367248.0,19341662.0,20238538.0,21191906.0,22091217.0,23101144.0,24055478.0,25091647.0,26068403.0,27061267.0,27951311.0,28938502.0,29740052.0,31129466.0,31923663.0,32796570.0,33595610.0,34974797.0,35714688.0,36734487.0,37699704.0,38629701.0,39595996.0,40598954.0,41507237.0,42251490.0,43413462.0,44452013.0,45201183.0,46390207.0,47345331.0,48232431.0,49199548.0,50158976.0,51144656.0,52112717.0,53173340.0,54080776.0,55069859.0,55831927.0,57015914.0,57982006.0,58830663.0,59795169.0,60779993.0,61833282.0,62997531.0,64583228.0,65546565.0,66125638.0,66553308.0,67577698.0,68453494.0,69400172.0,70470464.0,71447987.0,72370893.0,73464492.0,74244859.0,75409493.0,76297325.0,77259364.0,78125756.0,79190194.0,80125258.0,80996540.0,82046973.0,83086044.0,83588055.0,84936801.0,85403449.0,86814246.0,87954844.0,88801210.0,90792204.0,90867943.0,91615594.0,93608405.0,94796199.0,94908997.0,95659316.0,96439542.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":624.3647951565375,"lower_bound":623.6663774066416,"upper_bound":625.1322734874769,"unit":"ns"},"mean":{"estimate":624.2801397392766,"lower_bound":623.8185313468315,"upper_bound":624.7759835808956,"unit":"ns"},"median":{"estimate":623.8596274237937,"lower_bound":623.5541588099728,"upper_bound":624.1803907609556,"unit":"ns"},"median_abs_dev":{"estimate":1.024675695980449,"lower_bound":0.8380493771033163,"upper_bound":1.3773254153331171,"unit":"ns"},"slope":{"estimate":624.3647951565375,"lower_bound":623.6663774066416,"upper_bound":625.1322734874769,"unit":"ns"},"change":{"mean":{"estimate":-0.016069690552030447,"lower_bound":-0.017525820773487185,"upper_bound":-0.014747666813421252,"unit":"%"},"median":{"estimate":-0.015086738106992903,"lower_bound":-0.016465487940484858,"upper_bound":-0.01426626739175263,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"csiz/19753","report_directory":"/root/fuel-core/target/criterion/reports/csiz/19753","iteration_count":[850,1700,2550,3400,4250,5100,5950,6800,7650,8500,9350,10200,11050,11900,12750,13600,14450,15300,16150,17000,17850,18700,19550,20400,21250,22100,22950,23800,24650,25500,26350,27200,28050,28900,29750,30600,31450,32300,33150,34000,34850,35700,36550,37400,38250,39100,39950,40800,41650,42500,43350,44200,45050,45900,46750,47600,48450,49300,50150,51000,51850,52700,53550,54400,55250,56100,56950,57800,58650,59500,60350,61200,62050,62900,63750,64600,65450,66300,67150,68000,68850,69700,70550,71400,72250,73100,73950,74800,75650,76500,77350,78200,79050,79900,80750,81600,82450,83300,84150,85000],"measured_values":[1067109.0,1955123.0,2934748.0,3915417.0,4886142.0,5868483.0,6858410.0,7827312.0,8808977.0,9800148.0,10769075.0,11759674.0,12738320.0,13708358.0,14671181.0,15670831.0,16655003.0,17641429.0,18621795.0,19597616.0,20517589.0,21518699.0,22584487.0,23546705.0,24432510.0,25370810.0,26594635.0,27647977.0,28614605.0,29625046.0,30665601.0,31629018.0,32610911.0,33588168.0,34595326.0,35615804.0,36587366.0,37542026.0,38509619.0,39546255.0,40505488.0,41502904.0,42490636.0,43486352.0,44416586.0,44911721.0,45818304.0,46806908.0,47797645.0,48911983.0,49835940.0,50698888.0,51840852.0,52750864.0,53711476.0,54643220.0,55684056.0,56609224.0,57483940.0,58503676.0,59567511.0,60498596.0,61569409.0,62446566.0,63484672.0,64386950.0,65356001.0,66639286.0,67478232.0,68759308.0,69618774.0,70738032.0,71537195.0,72833776.0,74121535.0,75060068.0,75373147.0,76815934.0,77419671.0,78297688.0,79504289.0,80483515.0,81170037.0,82159130.0,83377968.0,84695058.0,85037507.0,86734225.0,87232188.0,88020125.0,89437657.0,90685149.0,91226939.0,92074205.0,93655641.0,93870413.0,94964331.0,95747319.0,96846344.0,97973695.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":1153.490865122263,"lower_bound":1152.4662375909231,"upper_bound":1154.5723735008726,"unit":"ns"},"mean":{"estimate":1154.8771759854737,"lower_bound":1153.0952043339514,"upper_bound":1157.4390460328632,"unit":"ns"},"median":{"estimate":1152.613534602076,"lower_bound":1151.3342647058823,"upper_bound":1153.0345751633986,"unit":"ns"},"median_abs_dev":{"estimate":4.710745149338222,"lower_bound":3.0628498914164135,"upper_bound":6.705118626146783,"unit":"ns"},"slope":{"estimate":1153.490865122263,"lower_bound":1152.4662375909231,"upper_bound":1154.5723735008726,"unit":"ns"},"change":{"mean":{"estimate":-0.04180235600163307,"lower_bound":-0.043865717316390274,"upper_bound":-0.03955099855266083,"unit":"%"},"median":{"estimate":-0.042359786052818205,"lower_bound":-0.04364050690178356,"upper_bound":-0.042006466414273524,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"csiz/29629","report_directory":"/root/fuel-core/target/criterion/reports/csiz/29629","iteration_count":[646,1292,1938,2584,3230,3876,4522,5168,5814,6460,7106,7752,8398,9044,9690,10336,10982,11628,12274,12920,13566,14212,14858,15504,16150,16796,17442,18088,18734,19380,20026,20672,21318,21964,22610,23256,23902,24548,25194,25840,26486,27132,27778,28424,29070,29716,30362,31008,31654,32300,32946,33592,34238,34884,35530,36176,36822,37468,38114,38760,39406,40052,40698,41344,41990,42636,43282,43928,44574,45220,45866,46512,47158,47804,48450,49096,49742,50388,51034,51680,52326,52972,53618,54264,54910,55556,56202,56848,57494,58140,58786,59432,60078,60724,61370,62016,62662,63308,63954,64600],"measured_values":[1024485.0,1959418.0,2925756.0,3924327.0,4906994.0,5871584.0,6841796.0,7819922.0,8806909.0,9797637.0,10753438.0,11734965.0,12740270.0,13706607.0,14647346.0,15601649.0,16566606.0,17534226.0,18525838.0,19467972.0,20480877.0,21495344.0,22415185.0,23417836.0,24476085.0,25351880.0,26376581.0,27391759.0,28281611.0,29261291.0,30238168.0,31227525.0,32306628.0,33312514.0,34420165.0,35279450.0,36247965.0,37265399.0,38299856.0,39256211.0,40217914.0,41200785.0,42196086.0,43176280.0,44068774.0,45080628.0,45921204.0,46911174.0,47829296.0,48890823.0,49911774.0,50935216.0,51972137.0,53049906.0,54037862.0,54620857.0,55760762.0,56588219.0,57460215.0,58549595.0,59484905.0,60473751.0,61602448.0,62690181.0,63663781.0,64666560.0,65658088.0,66580215.0,67500056.0,68405854.0,69242766.0,70235958.0,71154709.0,72581199.0,73452268.0,74154125.0,75145769.0,76176796.0,77401870.0,78039708.0,79013279.0,80007148.0,81051538.0,81884582.0,83137904.0,84263652.0,85272666.0,86136666.0,86881160.0,87809846.0,89418388.0,90330287.0,91345298.0,92466649.0,92971185.0,93742749.0,94647724.0,95770916.0,96624609.0,97545648.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":1513.9177580234805,"lower_bound":1512.9041412595652,"upper_bound":1514.9966848154745,"unit":"ns"},"mean":{"estimate":1514.6083752454977,"lower_bound":1513.3247904539646,"upper_bound":1516.4528299958251,"unit":"ns"},"median":{"estimate":1513.7232081429063,"lower_bound":1512.3618408022433,"upper_bound":1515.2101393188855,"unit":"ns"},"median_abs_dev":{"estimate":4.867283401720485,"lower_bound":3.6998331356582312,"upper_bound":5.854937721776439,"unit":"ns"},"slope":{"estimate":1513.9177580234805,"lower_bound":1512.9041412595652,"upper_bound":1514.9966848154745,"unit":"ns"},"change":{"mean":{"estimate":-0.008101164026805607,"lower_bound":-0.009765319856123875,"upper_bound":-0.006653798388583071,"unit":"%"},"median":{"estimate":-0.008207178098304513,"lower_bound":-0.009208710733235481,"upper_bound":-0.00721290327992874,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"csiz/44444","report_directory":"/root/fuel-core/target/criterion/reports/csiz/44444","iteration_count":[387,774,1161,1548,1935,2322,2709,3096,3483,3870,4257,4644,5031,5418,5805,6192,6579,6966,7353,7740,8127,8514,8901,9288,9675,10062,10449,10836,11223,11610,11997,12384,12771,13158,13545,13932,14319,14706,15093,15480,15867,16254,16641,17028,17415,17802,18189,18576,18963,19350,19737,20124,20511,20898,21285,21672,22059,22446,22833,23220,23607,23994,24381,24768,25155,25542,25929,26316,26703,27090,27477,27864,28251,28638,29025,29412,29799,30186,30573,30960,31347,31734,32121,32508,32895,33282,33669,34056,34443,34830,35217,35604,35991,36378,36765,37152,37539,37926,38313,38700],"measured_values":[966293.0,1847677.0,2772258.0,3698325.0,4636085.0,5556709.0,6479029.0,7395015.0,8302896.0,9229074.0,10167009.0,11089255.0,12008241.0,13006563.0,13889035.0,14809545.0,15688123.0,16638771.0,17466809.0,18436401.0,19334274.0,20297787.0,21197783.0,22104472.0,23050037.0,23912130.0,24928630.0,25753363.0,26627761.0,27552641.0,28529173.0,29487918.0,30280535.0,31190425.0,32197364.0,33202866.0,34040508.0,34957838.0,35824926.0,36912545.0,37648927.0,38654400.0,39618171.0,40446488.0,41400592.0,42240058.0,43248742.0,43993691.0,45049713.0,45950117.0,46836464.0,47879503.0,48495223.0,49551003.0,50616991.0,51265248.0,52117015.0,52998562.0,53862488.0,55062669.0,55975074.0,56878450.0,57844029.0,58686232.0,59571217.0,60557427.0,61598162.0,62495265.0,63271866.0,64184131.0,64879619.0,65699327.0,66691300.0,67560324.0,68662620.0,69386076.0,70173692.0,71085450.0,72091639.0,72967286.0,73904570.0,74942334.0,75950120.0,76728940.0,77641897.0,78667819.0,79403314.0,80328435.0,81267369.0,82142009.0,83088543.0,83860986.0,84835706.0,85711293.0,86613461.0,87994420.0,88603886.0,89459380.0,89896997.0,90926974.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":2363.2692004250753,"lower_bound":2361.393021287806,"upper_bound":2365.3695144510593,"unit":"ns"},"mean":{"estimate":2373.515759834864,"lower_bound":2370.491965379302,"upper_bound":2377.153694440509,"unit":"ns"},"median":{"estimate":2372.7760240696443,"lower_bound":2370.1668575287763,"upper_bound":2376.0631265259867,"unit":"ns"},"median_abs_dev":{"estimate":15.26318828471601,"lower_bound":10.408685349622761,"upper_bound":17.89244241580779,"unit":"ns"},"slope":{"estimate":2363.2692004250753,"lower_bound":2361.393021287806,"upper_bound":2365.3695144510593,"unit":"ns"},"change":{"mean":{"estimate":0.006639857570213792,"lower_bound":0.004575098965358565,"upper_bound":0.008672875761314784,"unit":"%"},"median":{"estimate":0.00793214369576778,"lower_bound":0.006490116521201905,"upper_bound":0.009454682463524211,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"csiz/66666","report_directory":"/root/fuel-core/target/criterion/reports/csiz/66666","iteration_count":[280,560,840,1120,1400,1680,1960,2240,2520,2800,3080,3360,3640,3920,4200,4480,4760,5040,5320,5600,5880,6160,6440,6720,7000,7280,7560,7840,8120,8400,8680,8960,9240,9520,9800,10080,10360,10640,10920,11200,11480,11760,12040,12320,12600,12880,13160,13440,13720,14000,14280,14560,14840,15120,15400,15680,15960,16240,16520,16800,17080,17360,17640,17920,18200,18480,18760,19040,19320,19600,19880,20160,20440,20720,21000,21280,21560,21840,22120,22400,22680,22960,23240,23520,23800,24080,24360,24640,24920,25200,25480,25760,26040,26320,26600,26880,27160,27440,27720,28000],"measured_values":[1050619.0,1968628.0,2951840.0,3912576.0,4882678.0,5866231.0,6845099.0,7824704.0,8796125.0,9775201.0,10804101.0,11766372.0,12741764.0,13770463.0,14723534.0,15690740.0,16659469.0,17659075.0,18607159.0,19703589.0,20614890.0,21562264.0,22666965.0,23523189.0,24498248.0,25488218.0,26448876.0,27447207.0,28472253.0,29449480.0,30367634.0,31382368.0,32422619.0,33232220.0,34209557.0,35315422.0,36205999.0,37149441.0,38227252.0,39090104.0,40059619.0,41059184.0,42217373.0,43060537.0,43973229.0,45048398.0,45964191.0,47028607.0,47891581.0,48976126.0,49921416.0,50915524.0,51857186.0,52780934.0,53803941.0,54798033.0,55778496.0,57003406.0,57695493.0,58721430.0,59723543.0,60722028.0,61703698.0,62659569.0,63660894.0,64660295.0,65539496.0,66680469.0,67635463.0,68511488.0,69542065.0,70585071.0,71388855.0,72385560.0,73346617.0,74294424.0,75097968.0,75910298.0,76912567.0,77920238.0,78774008.0,79754295.0,80800338.0,81807254.0,82673365.0,83663073.0,84799365.0,85601131.0,86593923.0,87527834.0,88503095.0,89574638.0,90593693.0,91537354.0,92472275.0,93462546.0,94380680.0,95442552.0,96322157.0,97402165.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":3485.3906323861597,"lower_bound":3483.0016633842624,"upper_bound":3488.227209967801,"unit":"ns"},"mean":{"estimate":3495.7699542425767,"lower_bound":3491.500194962955,"upper_bound":3502.190973758361,"unit":"ns"},"median":{"estimate":3494.780030508825,"lower_bound":3492.5796521388215,"upper_bound":3497.5464285714284,"unit":"ns"},"median_abs_dev":{"estimate":8.590671230486008,"lower_bound":6.493482161503234,"upper_bound":13.684194615547568,"unit":"ns"},"slope":{"estimate":3485.3906323861597,"lower_bound":3483.0016633842624,"upper_bound":3488.227209967801,"unit":"ns"},"change":{"mean":{"estimate":0.09517503444645659,"lower_bound":0.0928865232603149,"upper_bound":0.09759988154680738,"unit":"%"},"median":{"estimate":0.09437762948351702,"lower_bound":0.09345972333440367,"upper_bound":0.09560286992230216,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"csiz/100000","report_directory":"/root/fuel-core/target/criterion/reports/csiz/100000","iteration_count":[214,428,642,856,1070,1284,1498,1712,1926,2140,2354,2568,2782,2996,3210,3424,3638,3852,4066,4280,4494,4708,4922,5136,5350,5564,5778,5992,6206,6420,6634,6848,7062,7276,7490,7704,7918,8132,8346,8560,8774,8988,9202,9416,9630,9844,10058,10272,10486,10700,10914,11128,11342,11556,11770,11984,12198,12412,12626,12840,13054,13268,13482,13696,13910,14124,14338,14552,14766,14980,15194,15408,15622,15836,16050,16264,16478,16692,16906,17120,17334,17548,17762,17976,18190,18404,18618,18832,19046,19260,19474,19688,19902,20116,20330,20544,20758,20972,21186,21400],"measured_values":[1057769.0,1973588.0,2942596.0,3933525.0,4925483.0,5925834.0,6937769.0,7861697.0,8874999.0,9851080.0,10813316.0,11819878.0,12835457.0,13728070.0,14729048.0,15689877.0,16667033.0,17683009.0,18635606.0,19615540.0,20619682.0,21601383.0,22536559.0,23492565.0,24521090.0,25434978.0,26543191.0,27523505.0,28467100.0,29348514.0,30497178.0,31440406.0,32330272.0,33350718.0,34357815.0,35285037.0,36243363.0,37337845.0,38318712.0,39215253.0,40185356.0,41119768.0,42236831.0,43108535.0,44049053.0,45147069.0,46020245.0,47052013.0,48084013.0,49010600.0,49903302.0,50953689.0,51957451.0,52914713.0,54001230.0,54996669.0,56134696.0,56998297.0,57874523.0,58989870.0,59850469.0,61012060.0,61915083.0,62829828.0,63994658.0,64974129.0,66005592.0,66848432.0,67924939.0,68949253.0,69924405.0,70786037.0,71830227.0,72784690.0,73958763.0,74833110.0,75742862.0,76766785.0,77671215.0,78529391.0,79747150.0,80749536.0,81723591.0,82760616.0,83756545.0,84726179.0,85612605.0,86649002.0,87690811.0,88617338.0,89638587.0,90496332.0,91645879.0,92659007.0,93393685.0,90946272.0,91258554.0,92201333.0,93231134.0,94120395.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":4568.452414479835,"lower_bound":4545.930779416798,"upper_bound":4589.333745697375,"unit":"ns"},"mean":{"estimate":4586.256158816563,"lower_bound":4575.4201431312185,"upper_bound":4597.43965389389,"unit":"ns"},"median":{"estimate":4591.792040703394,"lower_bound":4587.843710174171,"upper_bound":4594.226635514019,"unit":"ns"},"median_abs_dev":{"estimate":13.880117544404568,"lower_bound":10.95328053092391,"upper_bound":15.970935341601741,"unit":"ns"},"slope":{"estimate":4568.452414479835,"lower_bound":4545.930779416798,"upper_bound":4589.333745697375,"unit":"ns"},"change":{"mean":{"estimate":0.011547372261957012,"lower_bound":0.005572139509521359,"upper_bound":0.0174018797721049,"unit":"%"},"median":{"estimate":-0.0043628120124642455,"lower_bound":-0.0054908663388787415,"upper_bound":0.04038575845647885,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"csiz","benchmarks":["csiz/1","csiz/10","csiz/100","csiz/1000","csiz/10000","csiz/19753","csiz/29629","csiz/44444","csiz/66666","csiz/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/csiz"} +{"reason":"benchmark-complete","id":"bhei/bhei","report_directory":"/root/fuel-core/target/criterion/reports/bhei/bhei","iteration_count":[35018,70036,105054,140072,175090,210108,245126,280144,315162,350180,385198,420216,455234,490252,525270,560288,595306,630324,665342,700360,735378,770396,805414,840432,875450,910468,945486,980504,1015522,1050540,1085558,1120576,1155594,1190612,1225630,1260648,1295666,1330684,1365702,1400720,1435738,1470756,1505774,1540792,1575810,1610828,1645846,1680864,1715882,1750900,1785918,1820936,1855954,1890972,1925990,1961008,1996026,2031044,2066062,2101080,2136098,2171116,2206134,2241152,2276170,2311188,2346206,2381224,2416242,2451260,2486278,2521296,2556314,2591332,2626350,2661368,2696386,2731404,2766422,2801440,2836458,2871476,2906494,2941512,2976530,3011548,3046566,3081584,3116602,3151620,3186638,3221656,3256674,3291692,3326710,3361728,3396746,3431764,3466782,3501800],"measured_values":[594915.0,1106620.0,1664116.0,2218825.0,2767963.0,3321151.0,3888591.0,4443363.0,4986278.0,5538002.0,6090466.0,6646830.0,7197111.0,7791127.0,8303999.0,8924367.0,9399649.0,9957038.0,10532829.0,11066570.0,11627781.0,12134193.0,12705937.0,13264000.0,13892537.0,14406815.0,14933666.0,15497423.0,16068162.0,16564726.0,17158589.0,17736346.0,18258427.0,18846561.0,19374927.0,19929800.0,20495958.0,21044302.0,21622679.0,22192633.0,22700653.0,23264867.0,23833462.0,24387896.0,24967691.0,25556474.0,26041903.0,26623510.0,27146667.0,27667479.0,28221210.0,28835389.0,29341334.0,29927645.0,30497548.0,30978255.0,31522213.0,32081525.0,32628266.0,33188162.0,33705735.0,34265619.0,34866347.0,35432956.0,36021471.0,36496065.0,37078728.0,37648108.0,38250029.0,38741172.0,39299650.0,39860710.0,40389669.0,40961837.0,41569631.0,42125224.0,42694424.0,43204732.0,43808393.0,44336407.0,44874674.0,45544171.0,45972621.0,46576340.0,47076262.0,47560454.0,48134305.0,48690911.0,49272936.0,49810824.0,50439287.0,51047905.0,51535684.0,52088620.0,52617513.0,53195001.0,53684567.0,54206668.0,54827431.0,55331324.0],"unit":"ns","throughput":[],"typical":{"estimate":15.815246581498002,"lower_bound":15.811136020758893,"upper_bound":15.819518208236946,"unit":"ns"},"mean":{"estimate":15.82859896161147,"lower_bound":15.813311395750643,"upper_bound":15.855036092824294,"unit":"ns"},"median":{"estimate":15.814689888809063,"lower_bound":15.809300230501403,"upper_bound":15.820672825051526,"unit":"ns"},"median_abs_dev":{"estimate":0.0198578584297143,"lower_bound":0.014981736494966659,"upper_bound":0.023624309248064905,"unit":"ns"},"slope":{"estimate":15.815246581498002,"lower_bound":15.811136020758893,"upper_bound":15.819518208236946,"unit":"ns"},"change":{"mean":{"estimate":-0.014492566256689043,"lower_bound":-0.017744095617861992,"upper_bound":-0.011843252221293411,"unit":"%"},"median":{"estimate":-0.013954793945675448,"lower_bound":-0.0146632496768625,"upper_bound":-0.013382356226510073,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"bhei","benchmarks":["bhei/bhei"],"report_directory":"/root/fuel-core/target/criterion/reports/bhei"} +{"reason":"benchmark-complete","id":"bhsh/bhsh","report_directory":"/root/fuel-core/target/criterion/reports/bhsh/bhsh","iteration_count":[25198,50396,75594,100792,125990,151188,176386,201584,226782,251980,277178,302376,327574,352772,377970,403168,428366,453564,478762,503960,529158,554356,579554,604752,629950,655148,680346,705544,730742,755940,781138,806336,831534,856732,881930,907128,932326,957524,982722,1007920,1033118,1058316,1083514,1108712,1133910,1159108,1184306,1209504,1234702,1259900,1285098,1310296,1335494,1360692,1385890,1411088,1436286,1461484,1486682,1511880,1537078,1562276,1587474,1612672,1637870,1663068,1688266,1713464,1738662,1763860,1789058,1814256,1839454,1864652,1889850,1915048,1940246,1965444,1990642,2015840,2041038,2066236,2091434,2116632,2141830,2167028,2192226,2217424,2242622,2267820,2293018,2318216,2343414,2368612,2393810,2419008,2444206,2469404,2494602,2519800],"measured_values":[708270.0,1360715.0,2084080.0,2688047.0,3395405.0,4143139.0,4679013.0,5421766.0,6067782.0,6803626.0,7379763.0,8106049.0,8826606.0,9577738.0,10071033.0,10892885.0,11555486.0,12191797.0,12848764.0,13567911.0,14375060.0,14829777.0,15580346.0,16081774.0,16924210.0,17666170.0,18222326.0,18957660.0,19610088.0,20362144.0,21063749.0,21699438.0,22348815.0,22910640.0,23662195.0,24455795.0,24985516.0,25824372.0,26304465.0,27202487.0,27765783.0,28528466.0,29063223.0,29929346.0,30608124.0,31286229.0,31706062.0,32527780.0,33153451.0,33513051.0,34606415.0,35573597.0,35953969.0,36576075.0,37402130.0,37829599.0,38388777.0,39155839.0,39818299.0,40596502.0,40999027.0,41925147.0,42770303.0,43229263.0,44102199.0,44586291.0,45239842.0,46275198.0,46796252.0,47104221.0,48163046.0,48612868.0,49561094.0,50135977.0,51118936.0,51548751.0,52004639.0,52669559.0,53609208.0,54306349.0,54792437.0,55425756.0,55999738.0,56990110.0,57489106.0,58314009.0,58526032.0,59510980.0,60308599.0,61080209.0,61786948.0,62138810.0,62896167.0,63547462.0,64490903.0,65050493.0,65816577.0,66451510.0,67116222.0,68062302.0],"unit":"ns","throughput":[],"typical":{"estimate":26.876448875020667,"lower_bound":26.85515845898677,"upper_bound":26.8967935174651,"unit":"ns"},"mean":{"estimate":26.89618379606519,"lower_bound":26.862249620263448,"upper_bound":26.93561092721871,"unit":"ns"},"median":{"estimate":26.889485371577823,"lower_bound":26.848523814843233,"upper_bound":26.91773313253767,"unit":"ns"},"median_abs_dev":{"estimate":0.10806219879275097,"lower_bound":0.08204654125144946,"upper_bound":0.12973872192299438,"unit":"ns"},"slope":{"estimate":26.876448875020667,"lower_bound":26.85515845898677,"upper_bound":26.8967935174651,"unit":"ns"},"change":{"mean":{"estimate":-0.025407450421321753,"lower_bound":-0.02729121048406856,"upper_bound":-0.023631756514030103,"unit":"%"},"median":{"estimate":-0.025135122886157935,"lower_bound":-0.026818564255088106,"upper_bound":-0.02395579958551933,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"bhsh","benchmarks":["bhsh/bhsh"],"report_directory":"/root/fuel-core/target/criterion/reports/bhsh"} +{"reason":"benchmark-complete","id":"mint/mint","report_directory":"/root/fuel-core/target/criterion/reports/mint/mint","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[466655.0,398316.0,394194.0,402091.0,593562.0,400958.0,402943.0,453550.0,405222.0,398453.0,394400.0,419505.0,401526.0,405751.0,403243.0,397270.0,399570.0,399194.0,392643.0,398511.0,400057.0,399203.0,394683.0,394770.0,396901.0,397688.0,394804.0,393739.0,394590.0,395484.0,394596.0,402930.0,400108.0,426430.0,421756.0,402536.0,402952.0,404876.0,399063.0,402458.0,398950.0,400136.0,451749.0,409288.0,400220.0,457478.0,410762.0,406147.0,416437.0,404955.0,398818.0,411603.0,403132.0,404235.0,404260.0,400309.0,395519.0,401569.0,403048.0,397964.0,421378.0,409722.0,406864.0,399066.0,431291.0,403075.0,402576.0,403812.0,401595.0,407342.0,415054.0,399184.0,397001.0,399624.0,397919.0,399850.0,399582.0,398161.0,403400.0,400589.0,394183.0,397733.0,396489.0,402881.0,402634.0,399580.0,399773.0,394529.0,396459.0,402576.0,413569.0,404632.0,401378.0,403789.0,405114.0,401814.0,403643.0,399026.0,393283.0,399107.0],"unit":"ns","throughput":[],"typical":{"estimate":406330.37,"lower_bound":402607.4405,"upper_bound":411379.87525,"unit":"ns"},"mean":{"estimate":406330.37,"lower_bound":402607.4405,"upper_bound":411379.87525,"unit":"ns"},"median":{"estimate":401452.0,"lower_bound":399737.0,"upper_bound":402728.5,"unit":"ns"},"median_abs_dev":{"estimate":4682.050716876984,"lower_bound":3599.7527360916138,"upper_bound":6218.765589594841,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.03169682150773523,"lower_bound":-0.04622912192154642,"upper_bound":-0.016849051314181795,"unit":"%"},"median":{"estimate":-0.033101273978162093,"lower_bound":-0.03817073926257395,"upper_bound":-0.027627913494550516,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"mint","benchmarks":["mint/mint"],"report_directory":"/root/fuel-core/target/criterion/reports/mint"} +{"reason":"benchmark-complete","id":"burn/burn","report_directory":"/root/fuel-core/target/criterion/reports/burn/burn","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[439799.0,365504.0,362159.0,362205.0,369888.0,362946.0,358750.0,377840.0,372196.0,365927.0,377356.0,370293.0,367852.0,363672.0,361789.0,359472.0,359603.0,360840.0,359836.0,359868.0,363165.0,359329.0,359638.0,361305.0,357574.0,358994.0,359358.0,360174.0,356744.0,356375.0,357087.0,361021.0,354569.0,356482.0,355005.0,357910.0,358625.0,366376.0,364780.0,364969.0,358952.0,364860.0,361734.0,358733.0,360439.0,357489.0,356005.0,363657.0,358209.0,358019.0,357369.0,355791.0,359230.0,357505.0,361735.0,360661.0,359239.0,354393.0,360186.0,354932.0,352744.0,356112.0,358175.0,360309.0,355593.0,355823.0,386435.0,354673.0,356243.0,358211.0,357146.0,355990.0,356232.0,363604.0,363349.0,360477.0,356322.0,356822.0,356445.0,356148.0,355629.0,359263.0,354181.0,355603.0,354926.0,360894.0,357015.0,355283.0,356866.0,355591.0,362779.0,357083.0,355937.0,355395.0,357324.0,357849.0,361690.0,358922.0,359080.0,362922.0],"unit":"ns","throughput":[],"typical":{"estimate":360774.98,"lower_bound":359221.52875000006,"upper_bound":362894.88875,"unit":"ns"},"mean":{"estimate":360774.98,"lower_bound":359221.52875000006,"upper_bound":362894.88875,"unit":"ns"},"median":{"estimate":358973.0,"lower_bound":357910.0,"upper_bound":359670.0,"unit":"ns"},"median_abs_dev":{"estimate":4037.861028313637,"lower_bound":2851.7810493707657,"upper_bound":4791.763114929199,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.041607862123286043,"lower_bound":-0.04647205084074012,"upper_bound":-0.035885677650319726,"unit":"%"},"median":{"estimate":-0.044772664073965185,"lower_bound":-0.04784068902642741,"upper_bound":-0.04228527972367324,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"burn","benchmarks":["burn/burn"],"report_directory":"/root/fuel-core/target/criterion/reports/burn"} +{"reason":"benchmark-complete","id":"cb/cb","report_directory":"/root/fuel-core/target/criterion/reports/cb/cb","iteration_count":[26571,53142,79713,106284,132855,159426,185997,212568,239139,265710,292281,318852,345423,371994,398565,425136,451707,478278,504849,531420,557991,584562,611133,637704,664275,690846,717417,743988,770559,797130,823701,850272,876843,903414,929985,956556,983127,1009698,1036269,1062840,1089411,1115982,1142553,1169124,1195695,1222266,1248837,1275408,1301979,1328550,1355121,1381692,1408263,1434834,1461405,1487976,1514547,1541118,1567689,1594260,1620831,1647402,1673973,1700544,1727115,1753686,1780257,1806828,1833399,1859970,1886541,1913112,1939683,1966254,1992825,2019396,2045967,2072538,2099109,2125680,2152251,2178822,2205393,2231964,2258535,2285106,2311677,2338248,2364819,2391390,2417961,2444532,2471103,2497674,2524245,2550816,2577387,2603958,2630529,2657100],"measured_values":[732318.0,1340523.0,2027212.0,2692168.0,3324948.0,4008955.0,4606192.0,5247060.0,5958228.0,6640019.0,7260642.0,7931388.0,8639317.0,9289663.0,9994224.0,10593674.0,11339886.0,11832079.0,12527028.0,13278968.0,13892986.0,14528086.0,15221030.0,15893623.0,16629162.0,17122194.0,17883693.0,18549068.0,19320710.0,19861867.0,20460929.0,21142736.0,21823094.0,22516867.0,23194329.0,23942268.0,24581137.0,25214488.0,25859199.0,26486710.0,27222097.0,27894680.0,28791989.0,29172224.0,29964682.0,30370605.0,31193278.0,31772434.0,32328887.0,33114954.0,33929778.0,34519359.0,35116512.0,35713484.0,36405863.0,37219404.0,37543836.0,38380702.0,38949815.0,39435980.0,40156541.0,41071203.0,41421226.0,42413517.0,42890544.0,43458248.0,44330249.0,44738677.0,45615528.0,46492703.0,47035993.0,47569960.0,48551479.0,49042851.0,49705460.0,50307319.0,50784218.0,51622456.0,52500293.0,52785605.0,53399698.0,54357727.0,54876187.0,55663829.0,56358863.0,56892558.0,57671500.0,58422155.0,59284157.0,59335892.0,60148020.0,60839475.0,61571690.0,62209084.0,62799803.0,63453320.0,64117535.0,64891451.0,65611787.0,65984755.0],"unit":"ns","throughput":[],"typical":{"estimate":24.906927536332958,"lower_bound":24.88960986236826,"upper_bound":24.924727193393252,"unit":"ns"},"mean":{"estimate":24.95641289128071,"lower_bound":24.913364733014735,"upper_bound":25.02137315027215,"unit":"ns"},"median":{"estimate":24.920503806128977,"lower_bound":24.90680689313337,"upper_bound":24.93939373574126,"unit":"ns"},"median_abs_dev":{"estimate":0.08914179393737648,"lower_bound":0.05767645811122827,"upper_bound":0.11435906894123903,"unit":"ns"},"slope":{"estimate":24.906927536332958,"lower_bound":24.88960986236826,"upper_bound":24.924727193393252,"unit":"ns"},"change":{"mean":{"estimate":-0.010861205679645103,"lower_bound":-0.013325603738185789,"upper_bound":-0.0082526326063344,"unit":"%"},"median":{"estimate":-0.011304898436349076,"lower_bound":-0.012203152523131418,"upper_bound":-0.010540726838970116,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"cb","benchmarks":["cb/cb"],"report_directory":"/root/fuel-core/target/criterion/reports/cb"} +{"reason":"benchmark-complete","id":"tr/tr","report_directory":"/root/fuel-core/target/criterion/reports/tr/tr","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[548388.0,476323.0,474357.0,475748.0,474138.0,500733.0,476742.0,501695.0,490017.0,482347.0,496526.0,482676.0,477580.0,476839.0,474635.0,474320.0,473863.0,473850.0,473161.0,470956.0,475576.0,472126.0,471021.0,470640.0,470946.0,469959.0,469616.0,469529.0,467462.0,470906.0,469986.0,470895.0,471249.0,470491.0,469472.0,486434.0,479156.0,473747.0,473011.0,480667.0,481234.0,477056.0,473581.0,473706.0,470297.0,472298.0,469614.0,472196.0,471336.0,471308.0,469890.0,473769.0,469007.0,471666.0,468279.0,469006.0,473236.0,467683.0,469466.0,467295.0,469757.0,472342.0,470338.0,468022.0,487625.0,477391.0,474525.0,472985.0,472994.0,474800.0,471976.0,480727.0,475825.0,470961.0,470986.0,486004.0,477230.0,476409.0,472804.0,470968.0,470663.0,471400.0,474337.0,470231.0,473135.0,469610.0,467746.0,473756.0,469926.0,472581.0,474929.0,471501.0,474587.0,463908.0,476701.0,469163.0,465477.0,466210.0,472699.0,472828.0],"unit":"ns","throughput":[],"typical":{"estimate":474757.63,"lower_bound":473077.48825,"upper_bound":476891.1305,"unit":"ns"},"mean":{"estimate":474757.63,"lower_bound":473077.48825,"upper_bound":476891.1305,"unit":"ns"},"median":{"estimate":472751.5,"lower_bound":471400.0,"upper_bound":473706.0,"unit":"ns"},"median_abs_dev":{"estimate":3687.96743452549,"lower_bound":2727.242651581764,"upper_bound":4781.384915113449,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.06727311505654954,"lower_bound":-0.07185797380561272,"upper_bound":-0.06273698576790297,"unit":"%"},"median":{"estimate":-0.06960292687918945,"lower_bound":-0.07231409430305658,"upper_bound":-0.06789943347053673,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"tr","benchmarks":["tr/tr"],"report_directory":"/root/fuel-core/target/criterion/reports/tr"} +{"reason":"benchmark-complete","id":"tro/tro","report_directory":"/root/fuel-core/target/criterion/reports/tro/tro","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[434250.0,335638.0,337244.0,333566.0,336288.0,332413.0,335121.0,334586.0,334958.0,332619.0,339620.0,331728.0,332551.0,332557.0,345051.0,347587.0,338080.0,339437.0,336438.0,335173.0,354865.0,345447.0,345837.0,373372.0,362181.0,356812.0,349103.0,344032.0,346513.0,346276.0,348901.0,339168.0,342292.0,342043.0,337868.0,335601.0,339127.0,338287.0,339964.0,352846.0,342678.0,337148.0,351036.0,345781.0,342930.0,340813.0,337120.0,336315.0,341370.0,338613.0,340482.0,337487.0,337719.0,337771.0,338101.0,340919.0,337735.0,338693.0,338803.0,335530.0,345997.0,339753.0,341149.0,342642.0,338408.0,334243.0,338004.0,333572.0,335024.0,334191.0,338078.0,337094.0,337984.0,339537.0,336040.0,334699.0,334215.0,335305.0,335798.0,338699.0,335732.0,334111.0,335132.0,335218.0,334111.0,334374.0,336628.0,334213.0,335825.0,333815.0,335981.0,335006.0,335869.0,335428.0,335092.0,333032.0,333721.0,331479.0,339135.0,334399.0],"unit":"ns","throughput":[],"typical":{"estimate":340112.17,"lower_bound":338211.7265,"upper_bound":342674.0415,"unit":"ns"},"mean":{"estimate":340112.17,"lower_bound":338211.7265,"upper_bound":342674.0415,"unit":"ns"},"median":{"estimate":337727.0,"lower_bound":336209.5,"upper_bound":338408.0,"unit":"ns"},"median_abs_dev":{"estimate":4059.3587279319763,"lower_bound":2966.6825473308563,"upper_bound":5317.344805598259,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.03194641825875566,"lower_bound":-0.04184795602227408,"upper_bound":-0.022203038580078344,"unit":"%"},"median":{"estimate":-0.035593382477872804,"lower_bound":-0.04084533548521385,"upper_bound":-0.0327747102863003,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"tro","benchmarks":["tro/tro"],"report_directory":"/root/fuel-core/target/criterion/reports/tro"} +{"reason":"benchmark-complete","id":"cfsi/cfsi","report_directory":"/root/fuel-core/target/criterion/reports/cfsi/cfsi","iteration_count":[32698,65396,98094,130792,163490,196188,228886,261584,294282,326980,359678,392376,425074,457772,490470,523168,555866,588564,621262,653960,686658,719356,752054,784752,817450,850148,882846,915544,948242,980940,1013638,1046336,1079034,1111732,1144430,1177128,1209826,1242524,1275222,1307920,1340618,1373316,1406014,1438712,1471410,1504108,1536806,1569504,1602202,1634900,1667598,1700296,1732994,1765692,1798390,1831088,1863786,1896484,1929182,1961880,1994578,2027276,2059974,2092672,2125370,2158068,2190766,2223464,2256162,2288860,2321558,2354256,2386954,2419652,2452350,2485048,2517746,2550444,2583142,2615840,2648538,2681236,2713934,2746632,2779330,2812028,2844726,2877424,2910122,2942820,2975518,3008216,3040914,3073612,3106310,3139008,3171706,3204404,3237102,3269800],"measured_values":[614987.0,1204246.0,1808817.0,2384618.0,2968183.0,3543691.0,4169551.0,4729296.0,5365891.0,5926509.0,6524241.0,7166635.0,7736074.0,8311699.0,8873748.0,9505254.0,10086025.0,10740478.0,11298126.0,11905853.0,12468671.0,13036545.0,13599231.0,14215400.0,14905622.0,15470340.0,16055642.0,16651301.0,17149882.0,17846708.0,18344090.0,18933107.0,19657452.0,20153324.0,20882873.0,21427952.0,21909496.0,22601774.0,23209179.0,23808632.0,24161426.0,24817124.0,25446290.0,26083611.0,26662769.0,27208256.0,27830565.0,28586858.0,29187492.0,29703971.0,30345911.0,30866990.0,31473952.0,32134528.0,32595708.0,33079076.0,33985286.0,34380703.0,34958559.0,35758501.0,36185665.0,36829321.0,37622689.0,38166197.0,38616876.0,39161954.0,39862060.0,40509961.0,40843014.0,41722112.0,42279281.0,42694400.0,43359272.0,44025289.0,44561294.0,45479353.0,45965473.0,46236504.0,47064679.0,47505116.0,48386413.0,48763796.0,49373078.0,49786626.0,50456151.0,50944105.0,51606414.0,52188655.0,52833003.0,53396790.0,53935679.0,54615588.0,55235814.0,55895891.0,56314335.0,57117912.0,57570694.0,58079295.0,58846503.0,59250692.0],"unit":"ns","throughput":[],"typical":{"estimate":18.16651283985547,"lower_bound":18.155574323812967,"upper_bound":18.17828114382013,"unit":"ns"},"mean":{"estimate":18.1765532489164,"lower_bound":18.160567370627113,"upper_bound":18.19572368001551,"unit":"ns"},"median":{"estimate":18.164660132239803,"lower_bound":18.15270178220287,"upper_bound":18.186396374736415,"unit":"ns"},"median_abs_dev":{"estimate":0.05759765507985736,"lower_bound":0.047313155703944225,"upper_bound":0.07101031108931719,"unit":"ns"},"slope":{"estimate":18.16651283985547,"lower_bound":18.155574323812967,"upper_bound":18.17828114382013,"unit":"ns"},"change":{"mean":{"estimate":-0.020349824106333902,"lower_bound":-0.022119268168310533,"upper_bound":-0.018927007631728558,"unit":"%"},"median":{"estimate":-0.020252523043954085,"lower_bound":-0.021124152932487816,"upper_bound":-0.018930628505160585,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"cfsi","benchmarks":["cfsi/cfsi"],"report_directory":"/root/fuel-core/target/criterion/reports/cfsi"} +{"reason":"benchmark-complete","id":"croo/1","report_directory":"/root/fuel-core/target/criterion/reports/croo/1","iteration_count":[649,1298,1947,2596,3245,3894,4543,5192,5841,6490,7139,7788,8437,9086,9735,10384,11033,11682,12331,12980,13629,14278,14927,15576,16225,16874,17523,18172,18821,19470,20119,20768,21417,22066,22715,23364,24013,24662,25311,25960,26609,27258,27907,28556,29205,29854,30503,31152,31801,32450,33099,33748,34397,35046,35695,36344,36993,37642,38291,38940,39589,40238,40887,41536,42185,42834,43483,44132,44781,45430,46079,46728,47377,48026,48675,49324,49973,50622,51271,51920,52569,53218,53867,54516,55165,55814,56463,57112,57761,58410,59059,59708,60357,61006,61655,62304,62953,63602,64251,64900],"measured_values":[1046781.0,1947549.0,2947944.0,3934910.0,4916089.0,5897195.0,6881658.0,7869613.0,8832642.0,9818477.0,10796220.0,11787312.0,12759506.0,13626332.0,14715831.0,15750308.0,16708470.0,17697718.0,18681827.0,19581377.0,20654991.0,20974706.0,22296285.0,23592287.0,24553567.0,25549247.0,26523961.0,27494699.0,28378280.0,29381710.0,29614521.0,31260486.0,32259303.0,33202507.0,34390582.0,35386498.0,36373071.0,37062429.0,38132943.0,39313334.0,40288650.0,41270727.0,41936291.0,42682886.0,43195535.0,45085346.0,46233176.0,47165680.0,48009743.0,49103388.0,50091084.0,50549579.0,52100231.0,53046805.0,54088955.0,54741807.0,55594325.0,56597532.0,57415239.0,57619994.0,59745057.0,60615690.0,61509660.0,62672102.0,63227093.0,64741557.0,65476648.0,66415727.0,67510840.0,66808645.0,67869021.0,70042943.0,69954816.0,71883260.0,73280625.0,72558433.0,74281348.0,75713368.0,75368271.0,77791699.0,78832683.0,78487911.0,80828648.0,82134670.0,83393672.0,83763081.0,84360596.0,86056673.0,87276022.0,87694041.0,87481277.0,90379745.0,89608318.0,92420906.0,93367194.0,94095084.0,95266679.0,96168632.0,96935089.0,97263123.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":1501.1235330343052,"lower_bound":1497.6128273708935,"upper_bound":1504.4016067063073,"unit":"ns"},"mean":{"estimate":1505.3974261897497,"lower_bound":1502.2603992310405,"upper_bound":1508.8035018028436,"unit":"ns"},"median":{"estimate":1508.7780484447712,"lower_bound":1506.023142795617,"upper_bound":1511.8397314549857,"unit":"ns"},"median_abs_dev":{"estimate":8.364585670496993,"lower_bound":4.807671997791483,"upper_bound":11.386216390091896,"unit":"ns"},"slope":{"estimate":1501.1235330343052,"lower_bound":1497.6128273708935,"upper_bound":1504.4016067063073,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"croo/10","report_directory":"/root/fuel-core/target/criterion/reports/croo/10","iteration_count":[642,1284,1926,2568,3210,3852,4494,5136,5778,6420,7062,7704,8346,8988,9630,10272,10914,11556,12198,12840,13482,14124,14766,15408,16050,16692,17334,17976,18618,19260,19902,20544,21186,21828,22470,23112,23754,24396,25038,25680,26322,26964,27606,28248,28890,29532,30174,30816,31458,32100,32742,33384,34026,34668,35310,35952,36594,37236,37878,38520,39162,39804,40446,41088,41730,42372,43014,43656,44298,44940,45582,46224,46866,47508,48150,48792,49434,50076,50718,51360,52002,52644,53286,53928,54570,55212,55854,56496,57138,57780,58422,59064,59706,60348,60990,61632,62274,62916,63558,64200],"measured_values":[1059147.0,1965461.0,2956826.0,3943788.0,4930679.0,5926808.0,6929995.0,7898867.0,8918434.0,9872227.0,10863522.0,11758627.0,12475139.0,13707089.0,14710617.0,15735691.0,16712668.0,17213814.0,18225098.0,19595239.0,20069831.0,21165097.0,22453484.0,23286865.0,24355353.0,25256969.0,26110888.0,27369937.0,28445642.0,29378061.0,30332024.0,31294443.0,32326913.0,33172359.0,33322782.0,34538633.0,35449200.0,36304763.0,37268048.0,38204495.0,39211242.0,40333104.0,42259501.0,42981325.0,43959300.0,45119601.0,45903293.0,46146348.0,47902597.0,49033950.0,49545354.0,50818124.0,51778481.0,52833487.0,52587976.0,54753252.0,55900962.0,57001378.0,57840664.0,57877769.0,59695111.0,61052035.0,61883310.0,62779542.0,63575478.0,64176926.0,64650019.0,66805769.0,67523966.0,68564731.0,69314064.0,70282097.0,70915674.0,72914280.0,72753458.0,74303372.0,75179786.0,76099613.0,77492834.0,78544571.0,79211239.0,80203395.0,80363772.0,81595537.0,83580448.0,84244706.0,85183469.0,86140752.0,86446365.0,87604123.0,88763051.0,89324180.0,90941254.0,92491033.0,92627080.0,93542584.0,95373566.0,95851891.0,96218299.0,97825810.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":1520.1572224976717,"lower_bound":1517.9835380513603,"upper_bound":1522.1749775405208,"unit":"ns"},"mean":{"estimate":1520.4791693238355,"lower_bound":1516.98823358726,"upper_bound":1524.4772732536637,"unit":"ns"},"median":{"estimate":1523.1927391750442,"lower_bound":1521.1909288141765,"upper_bound":1524.5174335800098,"unit":"ns"},"median_abs_dev":{"estimate":10.459760096661247,"lower_bound":6.390624396196998,"upper_bound":13.519863650743309,"unit":"ns"},"slope":{"estimate":1520.1572224976717,"lower_bound":1517.9835380513603,"upper_bound":1522.1749775405208,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"croo/100","report_directory":"/root/fuel-core/target/criterion/reports/croo/100","iteration_count":[536,1072,1608,2144,2680,3216,3752,4288,4824,5360,5896,6432,6968,7504,8040,8576,9112,9648,10184,10720,11256,11792,12328,12864,13400,13936,14472,15008,15544,16080,16616,17152,17688,18224,18760,19296,19832,20368,20904,21440,21976,22512,23048,23584,24120,24656,25192,25728,26264,26800,27336,27872,28408,28944,29480,30016,30552,31088,31624,32160,32696,33232,33768,34304,34840,35376,35912,36448,36984,37520,38056,38592,39128,39664,40200,40736,41272,41808,42344,42880,43416,43952,44488,45024,45560,46096,46632,47168,47704,48240,48776,49312,49848,50384,50920,51456,51992,52528,53064,53600],"measured_values":[1027489.0,1925023.0,2910642.0,3882640.0,4883573.0,5925356.0,6913754.0,7863698.0,8906478.0,9841215.0,10811535.0,11620470.0,12588765.0,13468149.0,14506763.0,15481106.0,16438077.0,17598693.0,18680396.0,19662155.0,20594763.0,21141031.0,22174728.0,23624440.0,24632579.0,25551260.0,26619310.0,27565631.0,28507641.0,29568423.0,30593878.0,31468737.0,32572786.0,33441609.0,34412628.0,35384106.0,35616885.0,36973996.0,37795048.0,38510349.0,39448214.0,41357310.0,42279720.0,43269584.0,44352262.0,45376918.0,46206660.0,47367015.0,47676970.0,49105973.0,49899619.0,49958331.0,50923064.0,52315989.0,52853065.0,53813904.0,55658766.0,55753194.0,56702356.0,58188952.0,58598725.0,59620589.0,61002888.0,61995661.0,62881221.0,63870913.0,64874455.0,66590611.0,67853193.0,68697814.0,69773759.0,70975252.0,72041225.0,72733413.0,73892161.0,74301902.0,74944675.0,76811270.0,77809750.0,78206099.0,78486572.0,80515258.0,79765017.0,82241452.0,83586016.0,84561887.0,85777804.0,86510742.0,86974581.0,87923331.0,88950881.0,88964444.0,90170707.0,92356769.0,92800859.0,93147916.0,94773115.0,96311107.0,97290621.0,97387721.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":1821.7224543217856,"lower_bound":1818.1425564210429,"upper_bound":1825.0892907021457,"unit":"ns"},"mean":{"estimate":1822.3463160981719,"lower_bound":1818.6944556142532,"upper_bound":1826.1384070900845,"unit":"ns"},"median":{"estimate":1826.015677912956,"lower_bound":1822.1275432050275,"upper_bound":1833.4845130216268,"unit":"ns"},"median_abs_dev":{"estimate":18.03899111345791,"lower_bound":10.203050635860052,"upper_bound":23.0285288652991,"unit":"ns"},"slope":{"estimate":1821.7224543217856,"lower_bound":1818.1425564210429,"upper_bound":1825.0892907021457,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"croo/1000","report_directory":"/root/fuel-core/target/criterion/reports/croo/1000","iteration_count":[186,372,558,744,930,1116,1302,1488,1674,1860,2046,2232,2418,2604,2790,2976,3162,3348,3534,3720,3906,4092,4278,4464,4650,4836,5022,5208,5394,5580,5766,5952,6138,6324,6510,6696,6882,7068,7254,7440,7626,7812,7998,8184,8370,8556,8742,8928,9114,9300,9486,9672,9858,10044,10230,10416,10602,10788,10974,11160,11346,11532,11718,11904,12090,12276,12462,12648,12834,13020,13206,13392,13578,13764,13950,14136,14322,14508,14694,14880,15066,15252,15438,15624,15810,15996,16182,16368,16554,16740,16926,17112,17298,17484,17670,17856,18042,18228,18414,18600],"measured_values":[1048086.0,1977882.0,2960652.0,3950695.0,4949290.0,5937237.0,6927147.0,7916428.0,8904446.0,9892860.0,10884907.0,11873608.0,12865654.0,13854822.0,14844542.0,15849747.0,16791060.0,17885041.0,18810276.0,19794906.0,20784149.0,21724543.0,22708931.0,23695943.0,24686999.0,25918590.0,26784878.0,27646700.0,28634383.0,29620365.0,30611877.0,31598413.0,32682722.0,33641850.0,34625126.0,35625063.0,36609932.0,37599427.0,38786341.0,39616027.0,40542871.0,41476648.0,42459799.0,43633709.0,44522203.0,45423705.0,46505354.0,47497597.0,48386206.0,49452105.0,50619417.0,51759143.0,52752036.0,53732224.0,54305069.0,55407097.0,56399235.0,57391689.0,58424135.0,59439241.0,60332760.0,61308325.0,62503246.0,63195903.0,64187132.0,65564648.0,66487273.0,67193745.0,68240001.0,69232193.0,70376678.0,71288255.0,72216056.0,73245521.0,74185963.0,75153498.0,76180825.0,77599732.0,78596549.0,79602212.0,80241798.0,81215971.0,82214258.0,83082968.0,84152670.0,84960703.0,85977319.0,87030638.0,88716583.0,89252304.0,90467713.0,91150609.0,92484761.0,93022302.0,94436599.0,95346313.0,95822419.0,97000354.0,97820524.0,99192116.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":5326.240012362334,"lower_bound":5322.761231982336,"upper_bound":5329.8559886567,"unit":"ns"},"mean":{"estimate":5326.171712299265,"lower_bound":5321.17119161898,"upper_bound":5333.885711954333,"unit":"ns"},"median":{"estimate":5320.081373207886,"lower_bound":5319.26284348865,"upper_bound":5321.082693292371,"unit":"ns"},"median_abs_dev":{"estimate":8.860636447380266,"lower_bound":4.945065154311627,"upper_bound":15.25583472282933,"unit":"ns"},"slope":{"estimate":5326.240012362334,"lower_bound":5322.761231982336,"upper_bound":5329.8559886567,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"croo/10000","report_directory":"/root/fuel-core/target/criterion/reports/croo/10000","iteration_count":[24,48,72,96,120,144,168,192,216,240,264,288,312,336,360,384,408,432,456,480,504,528,552,576,600,624,648,672,696,720,744,768,792,816,840,864,888,912,936,960,984,1008,1032,1056,1080,1104,1128,1152,1176,1200,1224,1248,1272,1296,1320,1344,1368,1392,1416,1440,1464,1488,1512,1536,1560,1584,1608,1632,1656,1680,1704,1728,1752,1776,1800,1824,1848,1872,1896,1920,1944,1968,1992,2016,2040,2064,2088,2112,2136,2160,2184,2208,2232,2256,2280,2304,2328,2352,2376,2400],"measured_values":[1074103.0,2054285.0,3077663.0,4105903.0,5133093.0,6156209.0,7184582.0,8237969.0,9228901.0,10255957.0,11281614.0,12306716.0,13332738.0,14358542.0,15383756.0,16408546.0,17433610.0,18459459.0,19486495.0,20512308.0,21532580.0,22562443.0,23586423.0,24611629.0,25637332.0,26664569.0,27709058.0,28716098.0,29743804.0,30765924.0,31790659.0,32817427.0,33841756.0,34868058.0,35894386.0,36919871.0,37944503.0,38973381.0,39991325.0,41017953.0,42055685.0,43121694.0,44089264.0,45110580.0,46137936.0,47165375.0,48192157.0,49219103.0,50245834.0,51270404.0,52291195.0,53400066.0,54389410.0,55375888.0,56395404.0,57421793.0,58447245.0,59474390.0,60497957.0,61518888.0,62549332.0,63572999.0,64598754.0,65632060.0,66649450.0,67668790.0,68697747.0,69728080.0,70748817.0,71778202.0,72876612.0,73923497.0,74851180.0,75948118.0,76903643.0,77971438.0,78953647.0,80060350.0,81008087.0,82028990.0,83124765.0,84151029.0,85147165.0,86370967.0,87281679.0,88183864.0,89314781.0,90238760.0,91358545.0,92395880.0,93344710.0,94358068.0,95478760.0,96475954.0,97550151.0,98542566.0,99592371.0,100578511.0,101655550.0,102524580.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":42748.43247918822,"lower_bound":42741.0017413527,"upper_bound":42755.818208693425,"unit":"ns"},"mean":{"estimate":42762.958885944936,"lower_bound":42738.76335193285,"upper_bound":42806.43984035953,"unit":"ns"},"median":{"estimate":42731.178457754635,"lower_bound":42729.20377512857,"upper_bound":42733.38636363636,"unit":"ns"},"median_abs_dev":{"estimate":10.920126954968572,"lower_bound":7.329966908907328,"upper_bound":15.278755947459201,"unit":"ns"},"slope":{"estimate":42748.43247918822,"lower_bound":42741.0017413527,"upper_bound":42755.818208693425,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"croo/19753","report_directory":"/root/fuel-core/target/criterion/reports/croo/19753","iteration_count":[12,24,36,48,60,72,84,96,108,120,132,144,156,168,180,192,204,216,228,240,252,264,276,288,300,312,324,336,348,360,372,384,396,408,420,432,444,456,468,480,492,504,516,528,540,552,564,576,588,600,612,624,636,648,660,672,684,696,708,720,732,744,756,768,780,792,804,816,828,840,852,864,876,888,900,912,924,936,948,960,972,984,996,1008,1020,1032,1044,1056,1068,1080,1092,1104,1116,1128,1140,1152,1164,1176,1188,1200],"measured_values":[1121490.0,2053395.0,3073261.0,4099906.0,5126060.0,6148030.0,7174864.0,8198318.0,9223235.0,10278334.0,11275587.0,12298147.0,13322070.0,14349374.0,15374684.0,16398088.0,17420209.0,18448687.0,19488781.0,20540960.0,21522563.0,22548486.0,23570600.0,24623356.0,25624350.0,26648755.0,27717553.0,28727889.0,29720213.0,30746438.0,31860464.0,32828996.0,33816518.0,34861138.0,35872949.0,36924559.0,37946857.0,38948439.0,40007653.0,41031400.0,42050721.0,43074423.0,44074857.0,45121782.0,46147184.0,47172436.0,48171189.0,49191853.0,50240290.0,51244074.0,52301656.0,53328928.0,54343191.0,55346928.0,56404132.0,57416593.0,58419597.0,59544877.0,60471648.0,61511022.0,62540935.0,63540219.0,64614387.0,65656009.0,66647649.0,67659788.0,68664197.0,69717184.0,70752390.0,71842257.0,72803740.0,73837436.0,74839222.0,75880534.0,76853991.0,77907650.0,78924574.0,79927070.0,80984688.0,82031688.0,83041110.0,84089137.0,85083714.0,86123900.0,87099003.0,88152579.0,89259440.0,90170666.0,91243561.0,92222946.0,93295691.0,94475494.0,95451737.0,96452281.0,97410023.0,98394045.0,99426198.0,100440535.0,101475562.0,102527480.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":85443.03832914635,"lower_bound":85432.209350793,"upper_bound":85455.21720202365,"unit":"ns"},"mean":{"estimate":85524.59051983336,"lower_bound":85436.97980308022,"upper_bound":85691.06589287409,"unit":"ns"},"median":{"estimate":85433.07128361237,"lower_bound":85417.13973063973,"upper_bound":85442.6700680272,"unit":"ns"},"median_abs_dev":{"estimate":37.75027395100903,"lower_bound":26.43222896426941,"upper_bound":46.73026056729241,"unit":"ns"},"slope":{"estimate":85443.03832914635,"lower_bound":85432.209350793,"upper_bound":85455.21720202365,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"croo/29629","report_directory":"/root/fuel-core/target/criterion/reports/croo/29629","iteration_count":[8,16,24,32,40,48,56,64,72,80,88,96,104,112,120,128,136,144,152,160,168,176,184,192,200,208,216,224,232,240,248,256,264,272,280,288,296,304,312,320,328,336,344,352,360,368,376,384,392,400,408,416,424,432,440,448,456,464,472,480,488,496,504,512,520,528,536,544,552,560,568,576,584,592,600,608,616,624,632,640,648,656,664,672,680,688,696,704,712,720,728,736,744,752,760,768,776,784,792,800],"measured_values":[1111947.0,2042172.0,3057013.0,4072909.0,5098049.0,6107679.0,7151169.0,8143749.0,9160029.0,10176468.0,11199106.0,12211444.0,13229637.0,14248459.0,15284844.0,16283793.0,17300722.0,18317098.0,19337195.0,20354854.0,21368115.0,22388121.0,23401793.0,24423930.0,25460732.0,26456862.0,27474832.0,28497905.0,29510832.0,30530214.0,31543039.0,32592853.0,33600436.0,34595562.0,35619195.0,36629220.0,37647203.0,38684401.0,39682381.0,40717177.0,41719621.0,42755433.0,43774472.0,44883101.0,45795360.0,46894940.0,47842077.0,48867932.0,49882663.0,50873030.0,51934801.0,52907335.0,53959707.0,54969697.0,55981917.0,57030686.0,57999130.0,59040784.0,60049134.0,61071249.0,62109968.0,63105948.0,64100628.0,65119977.0,66161350.0,67251600.0,68180240.0,69220297.0,70217583.0,71228966.0,72301118.0,73397286.0,74309475.0,75315324.0,76350271.0,77408748.0,78548633.0,79374651.0,80468754.0,81432980.0,82480988.0,83446468.0,84459437.0,85491496.0,86488576.0,87556506.0,88527460.0,89565725.0,90668501.0,91593377.0,92621167.0,93615986.0,94684039.0,95648987.0,96713000.0,97710927.0,98702740.0,99798394.0,100878126.0,102090612.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":127262.21339921678,"lower_bound":127238.44138212907,"upper_bound":127291.11701547928,"unit":"ns"},"mean":{"estimate":127377.35234435243,"lower_bound":127245.94737260965,"upper_bound":127623.93837825919,"unit":"ns"},"median":{"estimate":127228.75170110888,"lower_bound":127218.11282894737,"upper_bound":127243.19301470589,"unit":"ns"},"median_abs_dev":{"estimate":47.28579170858354,"lower_bound":34.43370391453828,"upper_bound":63.852612234430296,"unit":"ns"},"slope":{"estimate":127262.21339921678,"lower_bound":127238.44138212907,"upper_bound":127291.11701547928,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"croo/44444","report_directory":"/root/fuel-core/target/criterion/reports/croo/44444","iteration_count":[6,12,18,24,30,36,42,48,54,60,66,72,78,84,90,96,102,108,114,120,126,132,138,144,150,156,162,168,174,180,186,192,198,204,210,216,222,228,234,240,246,252,258,264,270,276,282,288,294,300,306,312,318,324,330,336,342,348,354,360,366,372,378,384,390,396,402,408,414,420,426,432,438,444,450,456,462,468,474,480,486,492,498,504,510,516,522,528,534,540,546,552,558,564,570,576,582,588,594,600],"measured_values":[1199537.0,2300966.0,3446495.0,4624009.0,5742884.0,6893081.0,8041136.0,9187771.0,10339550.0,11486987.0,12634688.0,13782146.0,14962444.0,16080251.0,17227983.0,18379620.0,19523888.0,20708643.0,21824590.0,22969144.0,24119586.0,25301801.0,26443270.0,27564072.0,28712785.0,29864214.0,31009468.0,32157891.0,33314834.0,34484767.0,35606106.0,36836684.0,37951613.0,39105263.0,40198945.0,41358806.0,42495092.0,43642351.0,44788420.0,45945982.0,47091980.0,48241166.0,49386139.0,50555640.0,51684702.0,52827092.0,53978547.0,55129962.0,56302451.0,57423404.0,58571747.0,59754899.0,61057646.0,62047134.0,63183982.0,64323445.0,65537399.0,66660057.0,67770138.0,69047315.0,70062604.0,71239898.0,72358826.0,73504771.0,74648709.0,75853058.0,76971333.0,78176848.0,79261676.0,80712396.0,81617533.0,82743490.0,83874152.0,84981631.0,86143518.0,87332597.0,88475689.0,89612273.0,90751979.0,91895144.0,93045526.0,94352418.0,95548914.0,96503240.0,97536037.0,98675173.0,100361689.0,100977652.0,102158645.0,103355226.0,104401884.0,105544251.0,106684571.0,107825497.0,108977322.0,110137665.0,111278089.0,112421972.0,113620058.0,114725584.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":191433.23702329936,"lower_bound":191374.3523088094,"upper_bound":191503.50778397286,"unit":"ns"},"mean":{"estimate":191573.68876059257,"lower_bound":191457.83064566078,"upper_bound":191768.8957866778,"unit":"ns"},"median":{"estimate":191439.94610068604,"lower_bound":191427.46613756614,"upper_bound":191459.87130801688,"unit":"ns"},"median_abs_dev":{"estimate":53.70676165334984,"lower_bound":38.63268136541362,"upper_bound":100.00151302501484,"unit":"ns"},"slope":{"estimate":191433.23702329936,"lower_bound":191374.3523088094,"upper_bound":191503.50778397286,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"croo/66666","report_directory":"/root/fuel-core/target/criterion/reports/croo/66666","iteration_count":[4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236,240,244,248,252,256,260,264,268,272,276,280,284,288,292,296,300,304,308,312,316,320,324,328,332,336,340,344,348,352,356,360,364,368,372,376,380,384,388,392,396,400],"measured_values":[1195487.0,2296058.0,3435778.0,4606476.0,5729706.0,6877411.0,8023265.0,9167253.0,10315958.0,11478417.0,12681322.0,13747355.0,14893628.0,16039002.0,17215193.0,18331415.0,19476107.0,20647841.0,21856309.0,22933772.0,24057704.0,25252219.0,26352201.0,27495763.0,28640170.0,29787184.0,30977834.0,32074968.0,33222064.0,34387960.0,35511326.0,36659000.0,37847483.0,38946710.0,40094266.0,41244131.0,42425046.0,43582867.0,44678009.0,45821224.0,46966091.0,48170052.0,49259985.0,50446347.0,51586468.0,52762274.0,53866413.0,55010613.0,56130525.0,57320430.0,58420089.0,59567098.0,60718721.0,61904365.0,63001671.0,64147514.0,65336586.0,66437360.0,67591095.0,68814785.0,69880273.0,71043667.0,72218243.0,73310604.0,74578293.0,75639316.0,76748926.0,77942507.0,79035924.0,80180788.0,81373222.0,82481083.0,83638094.0,84814024.0,86141825.0,87096120.0,88197536.0,89388931.0,90493375.0,91656185.0,92773110.0,93952673.0,95106603.0,96328565.0,97379228.0,98540349.0,99708303.0,100861116.0,101976692.0,103126104.0,104288915.0,105393086.0,106575554.0,107727101.0,108870241.0,110047662.0,111186060.0,112306972.0,113472269.0,114615652.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":286501.02842914144,"lower_bound":286472.5369339807,"upper_bound":286534.5719274106,"unit":"ns"},"mean":{"estimate":286679.1260137931,"lower_bound":286514.8442756707,"upper_bound":286962.34992264473,"unit":"ns"},"median":{"estimate":286480.978125,"lower_bound":286428.359375,"upper_bound":286515.33633751306,"unit":"ns"},"median_abs_dev":{"estimate":126.81545298110838,"lower_bound":84.5587416805965,"upper_bound":171.17271841501517,"unit":"ns"},"slope":{"estimate":286501.02842914144,"lower_bound":286472.5369339807,"upper_bound":286534.5719274106,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"croo/100000","report_directory":"/root/fuel-core/target/criterion/reports/croo/100000","iteration_count":[3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57,60,63,66,69,72,75,78,81,84,87,90,93,96,99,102,105,108,111,114,117,120,123,126,129,132,135,138,141,144,147,150,153,156,159,162,165,168,171,174,177,180,183,186,189,192,195,198,201,204,207,210,213,216,219,222,225,228,231,234,237,240,243,246,249,252,255,258,261,264,267,270,273,276,279,282,285,288,291,294,297,300],"measured_values":[1347883.0,2572223.0,3901950.0,5145184.0,6432975.0,7719486.0,9025227.0,10292772.0,11599760.0,12905723.0,14171423.0,15479097.0,16724479.0,18008198.0,19362990.0,20622985.0,21960809.0,23245284.0,24462307.0,25729743.0,27107115.0,28344924.0,29587636.0,30874144.0,32278524.0,33466291.0,34774562.0,36152751.0,37320344.0,38694887.0,39864860.0,41234573.0,42498429.0,43706785.0,45064096.0,46290726.0,47653109.0,48880995.0,50148203.0,51505896.0,52733541.0,54000345.0,55258097.0,56700439.0,57893457.0,59115949.0,60495782.0,61729782.0,63020283.0,64357782.0,65561840.0,66908109.0,68601380.0,70054559.0,70844035.0,71991168.0,73300303.0,74542424.0,76011821.0,77148611.0,78463740.0,79742584.0,81015701.0,82358139.0,83650764.0,84838559.0,86125307.0,87362973.0,88647458.0,89979038.0,91297587.0,92502119.0,93963316.0,95074475.0,96361707.0,97645007.0,99052040.0,100610920.0,101774199.0,103725968.0,104256188.0,105488884.0,106660490.0,107969784.0,109244099.0,110510015.0,111716485.0,113000140.0,114287089.0,115592466.0,116973055.0,118138056.0,119491013.0,120755950.0,122046661.0,123298122.0,124576552.0,125901987.0,127161204.0,128370528.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":428647.91413920495,"lower_bound":428475.4675276281,"upper_bound":428873.2368339611,"unit":"ns"},"mean":{"estimate":429222.72614519746,"lower_bound":428882.9856853043,"upper_bound":429732.05659748754,"unit":"ns"},"median":{"estimate":428788.6839257234,"lower_bound":428656.7426900585,"upper_bound":428881.5673076923,"unit":"ns"},"median_abs_dev":{"estimate":636.375582190431,"lower_bound":437.56071174389814,"upper_bound":811.2690523047386,"unit":"ns"},"slope":{"estimate":428647.91413920495,"lower_bound":428475.4675276281,"upper_bound":428873.2368339611,"unit":"ns"},"change":null} +{"reason":"group-complete","group_name":"croo","benchmarks":["croo/croo","croo/1","croo/10","croo/100","croo/1000","croo/10000","croo/19753","croo/29629","croo/44444","croo/66666","croo/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/croo"} +{"reason":"benchmark-complete","id":"flag/flag","report_directory":"/root/fuel-core/target/criterion/reports/flag/flag","iteration_count":[36635,73270,109905,146540,183175,219810,256445,293080,329715,366350,402985,439620,476255,512890,549525,586160,622795,659430,696065,732700,769335,805970,842605,879240,915875,952510,989145,1025780,1062415,1099050,1135685,1172320,1208955,1245590,1282225,1318860,1355495,1392130,1428765,1465400,1502035,1538670,1575305,1611940,1648575,1685210,1721845,1758480,1795115,1831750,1868385,1905020,1941655,1978290,2014925,2051560,2088195,2124830,2161465,2198100,2234735,2271370,2308005,2344640,2381275,2417910,2454545,2491180,2527815,2564450,2601085,2637720,2674355,2710990,2747625,2784260,2820895,2857530,2894165,2930800,2967435,3004070,3040705,3077340,3113975,3150610,3187245,3223880,3260515,3297150,3333785,3370420,3407055,3443690,3480325,3516960,3553595,3590230,3626865,3663500],"measured_values":[566007.0,1091724.0,1604495.0,2194490.0,2675032.0,3223771.0,3749287.0,4323669.0,4861558.0,5396457.0,5868373.0,6427489.0,6943009.0,7574706.0,8154527.0,8631413.0,9173810.0,9797206.0,10223582.0,10796091.0,11294959.0,11879243.0,12427256.0,12943764.0,13572240.0,14004379.0,14630722.0,15158376.0,15629324.0,16312304.0,16837544.0,17150388.0,17615376.0,18378802.0,18939727.0,19458496.0,19754220.0,20638807.0,21190686.0,21643902.0,22132617.0,22783531.0,23390954.0,23892334.0,24271528.0,24807447.0,25255115.0,25984891.0,26534105.0,26835265.0,27493636.0,28309350.0,28626098.0,29104823.0,29903989.0,30463542.0,30836003.0,31279653.0,31652189.0,32544883.0,33130511.0,33361623.0,33797297.0,34568906.0,34979338.0,35757274.0,36023181.0,36858272.0,37183668.0,37902293.0,38137358.0,38985261.0,39376229.0,39780747.0,40506044.0,40755338.0,41603210.0,42242027.0,42832491.0,43361194.0,43651533.0,44207262.0,44530851.0,45217819.0,45852412.0,46286755.0,47056576.0,47404647.0,48267033.0,48205466.0,49180323.0,49952555.0,50279263.0,50761712.0,51373341.0,51891987.0,52276595.0,52617754.0,53713434.0,54053493.0],"unit":"ns","throughput":[],"typical":{"estimate":14.73769004676695,"lower_bound":14.723037453727308,"upper_bound":14.751914979591932,"unit":"ns"},"mean":{"estimate":14.74452609683929,"lower_bound":14.72578149782406,"upper_bound":14.766633246357927,"unit":"ns"},"median":{"estimate":14.742672898463768,"lower_bound":14.723635792555589,"upper_bound":14.754850962194622,"unit":"ns"},"median_abs_dev":{"estimate":0.07426542636011857,"lower_bound":0.05199788891714369,"upper_bound":0.09389526919097235,"unit":"ns"},"slope":{"estimate":14.73769004676695,"lower_bound":14.723037453727308,"upper_bound":14.751914979591932,"unit":"ns"},"change":{"mean":{"estimate":-0.0040215767594594665,"lower_bound":-0.0061131519998864625,"upper_bound":-0.0018847528347064521,"unit":"%"},"median":{"estimate":-0.004592093150461385,"lower_bound":-0.006257305564331461,"upper_bound":-0.0022251606987379047,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"flag","benchmarks":["flag/flag"],"report_directory":"/root/fuel-core/target/criterion/reports/flag"} +{"reason":"benchmark-complete","id":"gm/gm","report_directory":"/root/fuel-core/target/criterion/reports/gm/gm","iteration_count":[31164,62328,93492,124656,155820,186984,218148,249312,280476,311640,342804,373968,405132,436296,467460,498624,529788,560952,592116,623280,654444,685608,716772,747936,779100,810264,841428,872592,903756,934920,966084,997248,1028412,1059576,1090740,1121904,1153068,1184232,1215396,1246560,1277724,1308888,1340052,1371216,1402380,1433544,1464708,1495872,1527036,1558200,1589364,1620528,1651692,1682856,1714020,1745184,1776348,1807512,1838676,1869840,1901004,1932168,1963332,1994496,2025660,2056824,2087988,2119152,2150316,2181480,2212644,2243808,2274972,2306136,2337300,2368464,2399628,2430792,2461956,2493120,2524284,2555448,2586612,2617776,2648940,2680104,2711268,2742432,2773596,2804760,2835924,2867088,2898252,2929416,2960580,2991744,3022908,3054072,3085236,3116400],"measured_values":[623613.0,1171748.0,1753959.0,2335057.0,2898411.0,3477561.0,4071514.0,4669352.0,5250717.0,5793609.0,6381033.0,7004494.0,7568656.0,8041491.0,8655771.0,9247025.0,9854259.0,10470222.0,10998664.0,11572728.0,12110034.0,12725800.0,13371525.0,14009570.0,14462451.0,15113021.0,15632350.0,16261421.0,16738895.0,17386753.0,18073896.0,18435268.0,19065248.0,19620852.0,20337398.0,20828419.0,21477500.0,22048459.0,22657957.0,23168513.0,23681797.0,24426982.0,24914256.0,25560089.0,26134193.0,26717063.0,27338561.0,27964556.0,28456694.0,29055652.0,29656022.0,30330242.0,30873541.0,31402588.0,31802281.0,32504938.0,33017868.0,33640595.0,34178646.0,34869713.0,35329213.0,35861556.0,36392121.0,37141508.0,37714114.0,38270286.0,38930751.0,39393663.0,40031141.0,40571934.0,41208303.0,41844892.0,42381142.0,42988147.0,43646276.0,44178908.0,44843228.0,45269424.0,45902142.0,46353578.0,46890742.0,47403775.0,48009999.0,48633553.0,49305389.0,50145131.0,50721218.0,51048519.0,51599470.0,52288105.0,52646254.0,53208869.0,54022714.0,54421749.0,55342576.0,55645710.0,56250217.0,57075701.0,57341311.0,58052039.0],"unit":"ns","throughput":[],"typical":{"estimate":18.619811167212617,"lower_bound":18.60815207841621,"upper_bound":18.63187541429021,"unit":"ns"},"mean":{"estimate":18.634494432708067,"lower_bound":18.611529845335777,"upper_bound":18.66902373335131,"unit":"ns"},"median":{"estimate":18.620181423487963,"lower_bound":18.603757832464034,"upper_bound":18.636336186557386,"unit":"ns"},"median_abs_dev":{"estimate":0.05526213050001162,"lower_bound":0.04355164772799495,"upper_bound":0.0724357405128981,"unit":"ns"},"slope":{"estimate":18.619811167212617,"lower_bound":18.60815207841621,"upper_bound":18.63187541429021,"unit":"ns"},"change":{"mean":{"estimate":0.010583097138660236,"lower_bound":0.007842643324677767,"upper_bound":0.013134350280338703,"unit":"%"},"median":{"estimate":0.011423811112093896,"lower_bound":0.009963258550903076,"upper_bound":0.012663306107691508,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"gm","benchmarks":["gm/gm"],"report_directory":"/root/fuel-core/target/criterion/reports/gm"} +{"reason":"benchmark-complete","id":"smo/1","report_directory":"/root/fuel-core/target/criterion/reports/smo/1","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[425235.0,337159.0,334117.0,334153.0,337980.0,335223.0,335163.0,337771.0,333862.0,334901.0,334389.0,333034.0,334590.0,333848.0,334217.0,331444.0,333022.0,335494.0,333019.0,333598.0,339121.0,336539.0,332439.0,333437.0,333280.0,331664.0,334687.0,335811.0,339588.0,335009.0,332547.0,335549.0,332634.0,332670.0,342175.0,333571.0,337013.0,334894.0,332545.0,335091.0,333784.0,331690.0,335258.0,334334.0,336232.0,335544.0,332964.0,337444.0,336182.0,340877.0,343483.0,336753.0,347621.0,335465.0,335095.0,335825.0,334850.0,333876.0,335171.0,335507.0,334832.0,334649.0,335339.0,334512.0,337855.0,334329.0,333894.0,333885.0,332541.0,334371.0,333838.0,334289.0,336741.0,335346.0,334249.0,334074.0,375027.0,348113.0,345260.0,341317.0,337728.0,345285.0,338289.0,337949.0,337685.0,338698.0,338801.0,338965.0,336298.0,338024.0,336167.0,337468.0,338970.0,333571.0,332654.0,335084.0,331307.0,338753.0,333544.0,331861.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":337120.0,"lower_bound":335530.92775,"upper_bound":339431.47199999995,"unit":"ns"},"mean":{"estimate":337120.0,"lower_bound":335530.92775,"upper_bound":339431.47199999995,"unit":"ns"},"median":{"estimate":335093.0,"lower_bound":334580.5,"upper_bound":335519.0,"unit":"ns"},"median_abs_dev":{"estimate":2276.532259583473,"lower_bound":1610.8448714017868,"upper_bound":3237.257042527199,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.025317572652178266,"lower_bound":-0.03216025701298186,"upper_bound":-0.01816383105902479,"unit":"%"},"median":{"estimate":-0.02615571952931328,"lower_bound":-0.028640490318944674,"upper_bound":-0.02357206164217096,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"smo/10","report_directory":"/root/fuel-core/target/criterion/reports/smo/10","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[446532.0,334532.0,337020.0,334750.0,339408.0,337050.0,335558.0,333141.0,333445.0,334264.0,332190.0,334222.0,334703.0,334539.0,338126.0,336599.0,336258.0,336754.0,336708.0,335582.0,337731.0,334944.0,335041.0,334401.0,334447.0,337930.0,335007.0,336217.0,339256.0,335179.0,338759.0,335161.0,337457.0,335815.0,334649.0,339758.0,334974.0,334449.0,333249.0,336196.0,341937.0,336711.0,334540.0,333201.0,337148.0,334085.0,338398.0,336674.0,338902.0,336988.0,334692.0,335144.0,333932.0,336783.0,337240.0,335656.0,335861.0,333850.0,337688.0,333820.0,334834.0,333077.0,334988.0,334559.0,332710.0,332428.0,334243.0,333911.0,334310.0,334369.0,334761.0,337988.0,332889.0,332615.0,334862.0,331313.0,361720.0,333617.0,332800.0,333590.0,334864.0,337090.0,334679.0,334089.0,333629.0,333150.0,331477.0,333650.0,333551.0,332842.0,333043.0,333198.0,337704.0,333653.0,337368.0,332262.0,336046.0,333032.0,335748.0,335186.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":336570.96,"lower_bound":335007.26875000005,"upper_bound":339212.57399999996,"unit":"ns"},"mean":{"estimate":336570.96,"lower_bound":335007.26875000005,"upper_bound":339212.57399999996,"unit":"ns"},"median":{"estimate":334848.0,"lower_bound":334536.0,"upper_bound":335179.0,"unit":"ns"},"median_abs_dev":{"estimate":2014.112064242363,"lower_bound":1479.6347737312317,"upper_bound":2610.858553647995,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.037479839597017506,"lower_bound":-0.04423130007020027,"upper_bound":-0.029350344790809352,"unit":"%"},"median":{"estimate":-0.035759331463489086,"lower_bound":-0.037587968023306814,"upper_bound":-0.034367167017200106,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"smo/100","report_directory":"/root/fuel-core/target/criterion/reports/smo/100","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[474077.0,336842.0,334239.0,332946.0,334850.0,332969.0,335948.0,333642.0,335281.0,334711.0,332959.0,333947.0,339713.0,334244.0,333970.0,335368.0,334389.0,332674.0,331269.0,332616.0,331820.0,330793.0,338063.0,334380.0,339519.0,350902.0,333807.0,336128.0,334041.0,330093.0,333989.0,333083.0,330040.0,332849.0,331223.0,333604.0,330200.0,331389.0,333578.0,332905.0,332566.0,337368.0,333629.0,333539.0,332357.0,340762.0,333488.0,331821.0,331945.0,331793.0,333429.0,333275.0,330550.0,334604.0,329095.0,328440.0,328808.0,328302.0,333547.0,329633.0,331409.0,329949.0,330412.0,335816.0,328808.0,331454.0,330403.0,328098.0,332361.0,330575.0,331839.0,337874.0,331309.0,329479.0,330682.0,330939.0,329719.0,331657.0,332729.0,331443.0,337910.0,329283.0,329571.0,334414.0,332504.0,332244.0,330280.0,330869.0,331435.0,329940.0,332569.0,331879.0,329792.0,331709.0,334352.0,334196.0,335654.0,337909.0,333768.0,331701.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":334369.45,"lower_bound":332503.59725,"upper_bound":337572.5305,"unit":"ns"},"mean":{"estimate":334369.45,"lower_bound":332503.59725,"upper_bound":337572.5305,"unit":"ns"},"median":{"estimate":332645.0,"lower_bound":331839.0,"upper_bound":333429.0,"unit":"ns"},"median_abs_dev":{"estimate":2449.996456503868,"lower_bound":1886.6084665060043,"upper_bound":3040.0712460279465,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.03432881930338194,"lower_bound":-0.04116603627062602,"upper_bound":-0.024440274796738208,"unit":"%"},"median":{"estimate":-0.03566205194138805,"lower_bound":-0.03816483727817066,"upper_bound":-0.03335700929160568,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"smo/1000","report_directory":"/root/fuel-core/target/criterion/reports/smo/1000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[407923.0,338155.0,338088.0,336634.0,337193.0,354545.0,345671.0,342521.0,341981.0,340761.0,342957.0,343009.0,336855.0,339474.0,337538.0,335754.0,337022.0,336996.0,335656.0,341410.0,339604.0,338023.0,339075.0,338813.0,343188.0,336283.0,337608.0,339741.0,362886.0,346860.0,356273.0,341126.0,341526.0,342977.0,339820.0,340057.0,341367.0,338091.0,338405.0,349268.0,337427.0,337725.0,335868.0,335678.0,336924.0,336648.0,337914.0,339659.0,337078.0,338351.0,334884.0,335661.0,341103.0,336103.0,334832.0,338066.0,335520.0,334252.0,336608.0,337617.0,341673.0,338629.0,337858.0,340985.0,337158.0,338663.0,337833.0,337484.0,341110.0,338466.0,338777.0,339483.0,336553.0,336265.0,340083.0,339876.0,338478.0,338357.0,335940.0,337031.0,338404.0,336926.0,337031.0,337521.0,337097.0,337187.0,338773.0,342104.0,336813.0,336996.0,334354.0,336861.0,334610.0,336616.0,336021.0,336707.0,335868.0,335902.0,340188.0,335372.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":339711.05,"lower_bound":338412.05925,"upper_bound":341531.83150000003,"unit":"ns"},"mean":{"estimate":339711.05,"lower_bound":338412.05925,"upper_bound":341531.83150000003,"unit":"ns"},"median":{"estimate":337968.5,"lower_bound":337338.5,"upper_bound":338466.0,"unit":"ns"},"median_abs_dev":{"estimate":2335.0949585437775,"lower_bound":1532.2670727968216,"upper_bound":2990.4041469097137,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.05572560929220283,"lower_bound":-0.06330166794182757,"upper_bound":-0.04823229517267015,"unit":"%"},"median":{"estimate":-0.05562417045057633,"lower_bound":-0.05799987440779786,"upper_bound":-0.05337828385977672,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"smo/10000","report_directory":"/root/fuel-core/target/criterion/reports/smo/10000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[478680.0,376610.0,376834.0,378510.0,377298.0,376182.0,377436.0,376115.0,382691.0,377180.0,377508.0,379389.0,377382.0,377850.0,376018.0,376129.0,379329.0,403948.0,379032.0,379629.0,374615.0,374207.0,373726.0,374609.0,374896.0,385303.0,378581.0,376267.0,374049.0,372642.0,375685.0,375887.0,376414.0,375367.0,375922.0,376475.0,375442.0,381592.0,377516.0,374019.0,372969.0,375554.0,375021.0,375529.0,375179.0,376078.0,377111.0,374821.0,380138.0,373875.0,375419.0,374980.0,373435.0,374046.0,375852.0,374977.0,374377.0,387559.0,376829.0,372405.0,374177.0,373997.0,373200.0,376005.0,376032.0,374966.0,372503.0,373557.0,371679.0,374212.0,374279.0,372724.0,375173.0,379354.0,375612.0,373034.0,373721.0,374408.0,373351.0,373697.0,374612.0,374367.0,375834.0,373948.0,372601.0,374583.0,376606.0,375318.0,374631.0,374987.0,375067.0,375029.0,374923.0,378110.0,376883.0,375171.0,373444.0,377807.0,375945.0,377403.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":377160.68,"lower_bound":375613.919,"upper_bound":379659.19075,"unit":"ns"},"mean":{"estimate":377160.68,"lower_bound":375613.919,"upper_bound":379659.19075,"unit":"ns"},"median":{"estimate":375430.5,"lower_bound":374987.0,"upper_bound":375946.0,"unit":"ns"},"median_abs_dev":{"estimate":1953.3254653215408,"lower_bound":1414.4003748893738,"upper_bound":2436.653056740761,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.04690333472800168,"lower_bound":-0.05355968773930069,"upper_bound":-0.03905533175316567,"unit":"%"},"median":{"estimate":-0.04837096829386067,"lower_bound":-0.050643581273493554,"upper_bound":-0.04649673126342946,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"smo/19753","report_directory":"/root/fuel-core/target/criterion/reports/smo/19753","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[496071.0,421339.0,415933.0,419158.0,417831.0,415103.0,415559.0,425712.0,422150.0,416785.0,415950.0,421094.0,416024.0,421704.0,416065.0,417781.0,417285.0,414873.0,415587.0,414865.0,414047.0,414190.0,416514.0,415335.0,414685.0,417637.0,415685.0,416574.0,417887.0,418772.0,417949.0,416252.0,418217.0,417949.0,415002.0,419673.0,416675.0,415581.0,416186.0,418036.0,417620.0,417061.0,418454.0,415109.0,422312.0,415340.0,415393.0,419573.0,416488.0,419716.0,416328.0,417302.0,443570.0,422769.0,417669.0,419436.0,419259.0,419634.0,417408.0,420349.0,419128.0,414364.0,413879.0,415470.0,415168.0,414995.0,417499.0,421686.0,419990.0,416079.0,416375.0,415260.0,418395.0,417207.0,414488.0,417052.0,415225.0,417945.0,418714.0,417637.0,418762.0,416474.0,419180.0,416177.0,417889.0,413838.0,418733.0,418122.0,417760.0,416705.0,418756.0,421985.0,419662.0,419251.0,418670.0,416895.0,416732.0,439558.0,418432.0,422474.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":418831.16,"lower_bound":417481.409,"upper_bound":420829.57025,"unit":"ns"},"mean":{"estimate":418831.16,"lower_bound":417481.409,"upper_bound":420829.57025,"unit":"ns"},"median":{"estimate":417559.5,"lower_bound":416732.0,"upper_bound":417945.0,"unit":"ns"},"median_abs_dev":{"estimate":2378.0903577804565,"lower_bound":1811.7371678352356,"upper_bound":2894.0351486206055,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.05714260951487993,"lower_bound":-0.062498887090927546,"upper_bound":-0.05167610164090119,"unit":"%"},"median":{"estimate":-0.05245368179915111,"lower_bound":-0.055631088421038366,"upper_bound":-0.05109758876541971,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"smo/29629","report_directory":"/root/fuel-core/target/criterion/reports/smo/29629","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[534725.0,453929.0,452819.0,453546.0,450205.0,454745.0,452313.0,455321.0,457015.0,455531.0,452317.0,452855.0,451099.0,454023.0,451424.0,452383.0,454292.0,452352.0,451422.0,460720.0,454427.0,454860.0,452317.0,455957.0,454091.0,456848.0,450725.0,455942.0,454964.0,456792.0,458798.0,452183.0,451324.0,452697.0,444161.0,447545.0,445743.0,452850.0,458516.0,455383.0,455416.0,457557.0,466612.0,459156.0,459812.0,458113.0,457265.0,457516.0,460379.0,459251.0,458892.0,463814.0,457254.0,455463.0,456891.0,458549.0,457790.0,459860.0,462219.0,459114.0,458638.0,459258.0,459815.0,456798.0,479004.0,459429.0,460789.0,465325.0,458936.0,460571.0,460608.0,459648.0,460528.0,457951.0,458595.0,458059.0,464520.0,459868.0,483393.0,461764.0,460503.0,460056.0,479936.0,461646.0,462140.0,465007.0,460600.0,458328.0,461226.0,458245.0,467944.0,459395.0,458147.0,459181.0,469525.0,459228.0,465072.0,456918.0,455880.0,457940.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":458804.96,"lower_bound":457162.176,"upper_bound":460912.66075,"unit":"ns"},"mean":{"estimate":458804.96,"lower_bound":457162.176,"upper_bound":460912.66075,"unit":"ns"},"median":{"estimate":458086.0,"lower_bound":456918.0,"upper_bound":458892.0,"unit":"ns"},"median_abs_dev":{"estimate":3897.014030814171,"lower_bound":2870.313549041748,"upper_bound":5140.174108743668,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.04899693891425971,"lower_bound":-0.05460081552992535,"upper_bound":-0.04350291818956598,"unit":"%"},"median":{"estimate":-0.044685916037817464,"lower_bound":-0.048460954985157345,"upper_bound":-0.042286234676592316,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"smo/44444","report_directory":"/root/fuel-core/target/criterion/reports/smo/44444","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[558740.0,522964.0,517438.0,518208.0,518847.0,518372.0,516696.0,515153.0,514584.0,514194.0,513900.0,514716.0,515474.0,517718.0,518581.0,514586.0,518841.0,514539.0,514165.0,514290.0,517005.0,517583.0,515498.0,515653.0,515491.0,515095.0,511341.0,518377.0,514174.0,518688.0,515194.0,516483.0,516953.0,516504.0,517215.0,517116.0,514968.0,514452.0,516810.0,514375.0,517406.0,515698.0,539274.0,514964.0,515243.0,515624.0,514363.0,517651.0,515070.0,516869.0,523510.0,515945.0,515168.0,516075.0,514185.0,514217.0,513417.0,518245.0,516203.0,520334.0,516687.0,515595.0,514135.0,517093.0,516735.0,514014.0,517098.0,514855.0,515699.0,537997.0,524727.0,513597.0,517824.0,513226.0,514724.0,516046.0,515193.0,535057.0,514746.0,515612.0,514010.0,518798.0,514492.0,513082.0,517470.0,516320.0,517266.0,540699.0,514072.0,517326.0,515499.0,536835.0,515873.0,518541.0,513216.0,513511.0,537716.0,513834.0,513756.0,516431.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":517798.49,"lower_bound":516556.29625,"upper_bound":519274.22624999995,"unit":"ns"},"mean":{"estimate":517798.49,"lower_bound":516556.29625,"upper_bound":519274.22624999995,"unit":"ns"},"median":{"estimate":515786.0,"lower_bound":515367.0,"upper_bound":516687.0,"unit":"ns"},"median_abs_dev":{"estimate":2156.4416617155075,"lower_bound":1719.815969467163,"upper_bound":2735.3969514369965,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.03785657082794536,"lower_bound":-0.04289540648727293,"upper_bound":-0.033067593682286234,"unit":"%"},"median":{"estimate":-0.03373495555865702,"lower_bound":-0.03559672013406756,"upper_bound":-0.031933150972383584,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"smo/66666","report_directory":"/root/fuel-core/target/criterion/reports/smo/66666","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[717744.0,644383.0,612519.0,617552.0,626787.0,616675.0,612658.0,613275.0,611459.0,614684.0,612631.0,618755.0,611477.0,612346.0,618224.0,615322.0,614156.0,612948.0,615620.0,613243.0,613719.0,613714.0,611087.0,615744.0,614925.0,612537.0,622865.0,615720.0,615050.0,613036.0,614380.0,612769.0,613270.0,612551.0,609810.0,609566.0,611526.0,608817.0,614233.0,651101.0,621170.0,612050.0,617916.0,613426.0,613471.0,611188.0,611445.0,611818.0,611292.0,613517.0,611518.0,613256.0,615101.0,614641.0,612277.0,612887.0,611551.0,610594.0,615128.0,644405.0,611442.0,617171.0,610164.0,613832.0,611547.0,648269.0,612623.0,611752.0,612562.0,646661.0,616282.0,615051.0,613774.0,612232.0,624340.0,613173.0,613692.0,612497.0,665723.0,646706.0,627082.0,656291.0,626231.0,655073.0,621560.0,652460.0,658049.0,636288.0,623718.0,627289.0,619721.0,619520.0,622308.0,621263.0,619862.0,689532.0,639475.0,628754.0,651107.0,648531.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":622111.36,"lower_bound":618869.5989999999,"upper_bound":625824.87225,"unit":"ns"},"mean":{"estimate":622111.36,"lower_bound":618869.5989999999,"upper_bound":625824.87225,"unit":"ns"},"median":{"estimate":614510.5,"lower_bound":613471.0,"upper_bound":615720.0,"unit":"ns"},"median_abs_dev":{"estimate":4409.252321720123,"lower_bound":2646.440953016281,"upper_bound":6112.759691476822,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.02650353243979653,"lower_bound":-0.03284115567084408,"upper_bound":-0.020290103100939424,"unit":"%"},"median":{"estimate":-0.034130980289221347,"lower_bound":-0.036174055055668064,"upper_bound":-0.032258064516129004,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"smo/100000","report_directory":"/root/fuel-core/target/criterion/reports/smo/100000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[800826.0,763645.0,754578.0,757923.0,752329.0,756478.0,754672.0,756926.0,753965.0,756050.0,756888.0,758223.0,751581.0,753206.0,756789.0,750589.0,750219.0,750845.0,750453.0,759279.0,752163.0,754355.0,752884.0,748854.0,753421.0,786872.0,770795.0,763147.0,759087.0,809477.0,780324.0,769755.0,770132.0,763943.0,761507.0,760372.0,762694.0,804105.0,762657.0,758093.0,758816.0,759318.0,754833.0,754667.0,757284.0,756530.0,754238.0,763642.0,759884.0,758222.0,768898.0,762030.0,760473.0,758481.0,762277.0,760352.0,761819.0,798245.0,768489.0,755468.0,759082.0,776010.0,764712.0,797692.0,821932.0,765963.0,772222.0,758851.0,761720.0,756967.0,757675.0,753897.0,751454.0,792491.0,753199.0,761249.0,792022.0,758129.0,754797.0,763000.0,754424.0,754030.0,753034.0,753290.0,750590.0,755345.0,750038.0,761092.0,751104.0,755478.0,766947.0,766472.0,761106.0,763649.0,763627.0,760986.0,759118.0,759650.0,753944.0,751428.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":762424.83,"lower_bound":759910.8732500001,"upper_bound":765248.84275,"unit":"ns"},"mean":{"estimate":762424.83,"lower_bound":759910.8732500001,"upper_bound":765248.84275,"unit":"ns"},"median":{"estimate":758833.5,"lower_bound":756967.0,"upper_bound":760412.5,"unit":"ns"},"median_abs_dev":{"estimate":6726.556080579758,"lower_bound":5272.125506401062,"upper_bound":8392.998450994492,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.00831458993186196,"lower_bound":-0.013034117900795034,"upper_bound":-0.0037190718763551365,"unit":"%"},"median":{"estimate":-0.007150997188273167,"lower_bound":-0.009805176652549763,"upper_bound":-0.004793314879888988,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"smo","benchmarks":["smo/1","smo/10","smo/100","smo/1000","smo/10000","smo/19753","smo/29629","smo/44444","smo/66666","smo/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/smo"} +{"reason":"benchmark-complete","id":"srwq/1","report_directory":"/root/fuel-core/target/criterion/reports/srwq/1","iteration_count":[295,590,885,1180,1475,1770,2065,2360,2655,2950,3245,3540,3835,4130,4425,4720,5015,5310,5605,5900,6195,6490,6785,7080,7375,7670,7965,8260,8555,8850,9145,9440,9735,10030,10325,10620,10915,11210,11505,11800,12095,12390,12685,12980,13275,13570,13865,14160,14455,14750,15045,15340,15635,15930,16225,16520,16815,17110,17405,17700,17995,18290,18585,18880,19175,19470,19765,20060,20355,20650,20945,21240,21535,21830,22125,22420,22715,23010,23305,23600,23895,24190,24485,24780,25075,25370,25665,25960,26255,26550,26845,27140,27435,27730,28025,28320,28615,28910,29205,29500],"measured_values":[1040506.0,1965702.0,2940114.0,3909668.0,4922466.0,5945027.0,6947541.0,7942008.0,8955859.0,9909763.0,10870355.0,11904519.0,12866987.0,13865088.0,14852787.0,15834257.0,16850356.0,17840348.0,18851719.0,19696107.0,20805419.0,21830206.0,22801581.0,23883998.0,24753873.0,25751664.0,26778504.0,27787850.0,28660739.0,29648298.0,30659235.0,31690643.0,32494411.0,33186646.0,34202464.0,35165249.0,36123907.0,37177420.0,38272543.0,39343109.0,40116122.0,41109164.0,41902159.0,43026463.0,44026920.0,45480917.0,46709061.0,47703873.0,48649704.0,49509018.0,50452217.0,51478937.0,52096469.0,53656177.0,53999927.0,55130284.0,56592278.0,57186395.0,58011882.0,59470873.0,59985359.0,60804168.0,61898288.0,63110411.0,64032983.0,64671436.0,66033799.0,67163928.0,68119347.0,68838813.0,69989152.0,70988323.0,71917229.0,72980255.0,74219733.0,74953578.0,75980564.0,77098187.0,77824888.0,78837389.0,80104164.0,80788198.0,80770871.0,82158640.0,82775262.0,83764794.0,84924622.0,85825982.0,86822836.0,87951308.0,88686664.0,89560142.0,90732628.0,91740673.0,92852942.0,93671645.0,94540067.0,95307438.0,96234656.0,97651389.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":3325.662750155916,"lower_bound":3320.528793366257,"upper_bound":3331.4364780040614,"unit":"ns"},"mean":{"estimate":3339.2102190405335,"lower_bound":3333.862785845605,"upper_bound":3345.2251775334903,"unit":"ns"},"median":{"estimate":3340.756698393625,"lower_bound":3334.161779661017,"upper_bound":3348.222040597575,"unit":"ns"},"median_abs_dev":{"estimate":27.48664964760764,"lower_bound":19.549174898541676,"upper_bound":33.616462882933845,"unit":"ns"},"slope":{"estimate":3325.662750155916,"lower_bound":3320.528793366257,"upper_bound":3331.4364780040614,"unit":"ns"},"change":{"mean":{"estimate":0.0009232956517659652,"lower_bound":-0.0013871825698117872,"upper_bound":0.0032192966457055415,"unit":"%"},"median":{"estimate":0.0017230327570711967,"lower_bound":-0.0003538260316507946,"upper_bound":0.0044516243250325325,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"srwq/10","report_directory":"/root/fuel-core/target/criterion/reports/srwq/10","iteration_count":[31,62,93,124,155,186,217,248,279,310,341,372,403,434,465,496,527,558,589,620,651,682,713,744,775,806,837,868,899,930,961,992,1023,1054,1085,1116,1147,1178,1209,1240,1271,1302,1333,1364,1395,1426,1457,1488,1519,1550,1581,1612,1643,1674,1705,1736,1767,1798,1829,1860,1891,1922,1953,1984,2015,2046,2077,2108,2139,2170,2201,2232,2263,2294,2325,2356,2387,2418,2449,2480,2511,2542,2573,2604,2635,2666,2697,2728,2759,2790,2821,2852,2883,2914,2945,2976,3007,3038,3069,3100],"measured_values":[1100072.0,1992399.0,2982797.0,3980830.0,4970185.0,5956402.0,6956733.0,7944407.0,8939013.0,9939258.0,10923399.0,11932081.0,12930202.0,13973928.0,14911669.0,15910039.0,16899464.0,17866430.0,18876436.0,19883093.0,20855001.0,21879076.0,22873612.0,23932134.0,24839806.0,25843563.0,26812494.0,27829082.0,28819741.0,29599432.0,30581959.0,31955015.0,32864797.0,33766556.0,34784416.0,35765099.0,36778259.0,37851734.0,38737997.0,39740081.0,40693281.0,42017063.0,42518726.0,43356604.0,44365099.0,45272672.0,46293405.0,47241738.0,48288546.0,49325809.0,50373522.0,51273237.0,52327428.0,53173133.0,54274600.0,55203226.0,56200947.0,57245692.0,58297896.0,59104447.0,60141318.0,61128659.0,62109315.0,63352084.0,64257368.0,65351914.0,66262694.0,67238481.0,68178450.0,69184263.0,70210954.0,72097915.0,72724585.0,73163861.0,74233196.0,75208416.0,76223929.0,77287772.0,78236863.0,79240717.0,80166367.0,81210348.0,82067433.0,83051549.0,84116215.0,85179820.0,86650404.0,87659541.0,88698570.0,89648063.0,90740048.0,91401621.0,92695025.0,93689340.0,94752223.0,95471194.0,96674961.0,97614825.0,98570532.0,100258779.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":32003.99244740844,"lower_bound":31964.88156470853,"upper_bound":32041.401192336845,"unit":"ns"},"mean":{"estimate":32029.35799616969,"lower_bound":31974.190846858142,"upper_bound":32114.659088399465,"unit":"ns"},"median":{"estimate":32034.687403993856,"lower_bound":31947.422501966954,"upper_bound":32057.553948832036,"unit":"ns"},"median_abs_dev":{"estimate":151.92227525372095,"lower_bound":125.0461484251523,"upper_bound":184.73353709803789,"unit":"ns"},"slope":{"estimate":32003.99244740844,"lower_bound":31964.88156470853,"upper_bound":32041.401192336845,"unit":"ns"},"change":{"mean":{"estimate":-0.03911929901503819,"lower_bound":-0.04211863158762815,"upper_bound":-0.03597837534830357,"unit":"%"},"median":{"estimate":-0.037941918163570176,"lower_bound":-0.04069535441943484,"upper_bound":-0.03696150663852862,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"srwq/100","report_directory":"/root/fuel-core/target/criterion/reports/srwq/100","iteration_count":[4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236,240,244,248,252,256,260,264,268,272,276,280,284,288,292,296,300,304,308,312,316,320,324,328,332,336,340,344,348,352,356,360,364,368,372,376,380,384,388,392,396,400],"measured_values":[1323230.0,2527503.0,3795210.0,5047814.0,6293530.0,7583853.0,8847048.0,10111620.0,11372380.0,12641616.0,13897459.0,15159527.0,16429729.0,17687076.0,18946185.0,20226784.0,21502076.0,22738126.0,24040770.0,25264746.0,26537671.0,27814813.0,29058001.0,30354028.0,31599788.0,32843052.0,34104777.0,35382855.0,36549563.0,37895851.0,39205944.0,40417046.0,41692341.0,43534801.0,44239521.0,45472687.0,46837309.0,48069912.0,49353902.0,50544062.0,51910016.0,53173787.0,54442026.0,55801878.0,56874792.0,58150374.0,59283228.0,60595658.0,61956711.0,63193035.0,64565428.0,65762962.0,67076937.0,68524097.0,69530397.0,70810541.0,72424709.0,73392066.0,74627512.0,75807925.0,77225234.0,78465770.0,79664138.0,80886468.0,82203139.0,83514104.0,84871888.0,86086570.0,87269552.0,88626812.0,89960904.0,91088899.0,92484678.0,93557788.0,94850264.0,96292926.0,97337485.0,98423978.0,100025056.0,101280696.0,102680899.0,103901353.0,105073555.0,106394001.0,107584879.0,108698907.0,110204838.0,111470592.0,112696303.0,113865537.0,115228117.0,116523832.0,117684566.0,118826594.0,120125489.0,122060178.0,122984821.0,123910974.0,125156045.0,126638399.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":316417.6344923895,"lower_bound":316301.96691787586,"upper_bound":316542.12544558995,"unit":"ns"},"mean":{"estimate":316391.89369876316,"lower_bound":316159.5425922742,"upper_bound":316748.9797504591,"unit":"ns"},"median":{"estimate":316166.73294871795,"lower_bound":316047.05934343435,"upper_bound":316280.89930555556,"unit":"ns"},"median_abs_dev":{"estimate":446.22544359819165,"lower_bound":303.5426087019344,"upper_bound":494.6132303294153,"unit":"ns"},"slope":{"estimate":316417.6344923895,"lower_bound":316301.96691787586,"upper_bound":316542.12544558995,"unit":"ns"},"change":{"mean":{"estimate":-0.04516306303057682,"lower_bound":-0.04629687067701763,"upper_bound":-0.04392700931272241,"unit":"%"},"median":{"estimate":-0.04533483736010446,"lower_bound":-0.04623466161537826,"upper_bound":-0.04440804648266339,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"srwq/1000","report_directory":"/root/fuel-core/target/criterion/reports/srwq/1000","iteration_count":[16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16],"measured_values":[52560260.0,52452267.0,52437378.0,52454211.0,52490534.0,52514448.0,52458030.0,52461303.0,52439116.0,52525093.0,52458765.0,52434128.0,52513534.0,52523530.0,52411770.0,52495885.0,52500872.0,52451431.0,52705173.0,52508977.0,52390649.0,52515028.0,52489488.0,52547680.0,52510975.0,52457494.0,52461482.0,52544181.0,52507955.0,52376132.0,52562189.0,52234111.0,52177746.0,52328025.0,52338435.0,52406808.0,52464294.0,52500426.0,52464252.0,52554211.0,52429857.0,52470277.0,52531882.0,52372743.0,52298804.0,52339992.0,52319136.0,52299898.0,52331797.0,52383841.0,52315289.0,52347253.0,52312623.0,52305404.0,52324715.0,52281609.0,52310217.0,52341048.0,52343220.0,52410635.0,52321318.0,52433707.0,52498590.0,52506172.0,52494787.0,52652714.0,52534717.0,52360248.0,52701648.0,52347691.0,52358482.0,52340774.0,52361504.0,52407134.0,52324961.0,52383275.0,52378284.0,52339166.0,52332318.0,52337584.0,52319513.0,52334043.0,52341432.0,52322717.0,52343033.0,52307981.0,52370107.0,52330805.0,52351831.0,52304156.0,52379373.0,52436151.0,52358097.0,52334215.0,52333091.0,52387197.0,52358477.0,52342357.0,52238240.0,52380886.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":3275617.05125,"lower_bound":3274448.737984375,"upper_bound":3276813.219640625,"unit":"ns"},"mean":{"estimate":3275617.05125,"lower_bound":3274448.737984375,"upper_bound":3276813.219640625,"unit":"ns"},"median":{"estimate":3273972.375,"lower_bound":3272405.125,"upper_bound":3277183.0625,"unit":"ns"},"median_abs_dev":{"estimate":5952.036588080227,"lower_bound":4125.93673299998,"upper_bound":7725.318819098175,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.029743939470104785,"lower_bound":-0.03023263607534021,"upper_bound":-0.029247964129374956,"unit":"%"},"median":{"estimate":-0.030072487436236917,"lower_bound":-0.030788931939627458,"upper_bound":-0.029031693101433942,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"srwq/10000","report_directory":"/root/fuel-core/target/criterion/reports/srwq/10000","iteration_count":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],"measured_values":[65574772.0,66070154.0,65819573.0,65639501.0,66408044.0,66054301.0,65958769.0,65955224.0,65949861.0,65784958.0,65824788.0,65902174.0,65836542.0,65764589.0,65618345.0,65905527.0,65813252.0,65790516.0,65859178.0,65533784.0,65670686.0,65503412.0,65568794.0,65754712.0,65712345.0,65486107.0,65540801.0,65580938.0,65752564.0,65774845.0,65700250.0,65744762.0,65630396.0,65496351.0,65511562.0,65548129.0,65446241.0,65555402.0,65408795.0,65556643.0,65509435.0,65496398.0,65609862.0,65560295.0,65521256.0,65355721.0,65446445.0,65498806.0,65545089.0,65467017.0,65551260.0,65523537.0,65638495.0,65688964.0,65812616.0,65782497.0,65711298.0,65650261.0,65800825.0,65580423.0,65306974.0,65424864.0,65591296.0,65784520.0,65587805.0,65270671.0,65606893.0,65596168.0,65710083.0,66636020.0,66189807.0,66058738.0,66019749.0,66280899.0,65731749.0,65857858.0,65967245.0,65787200.0,65517578.0,65681898.0,65486107.0,65583304.0,65466941.0,65453330.0,65684409.0,65744934.0,66044018.0,65990901.0,65866450.0,65856529.0,65500353.0,65537734.0,65462803.0,65634514.0,65692369.0,65610533.0,65551567.0,65643230.0,65581208.0,65549338.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":32846533.37,"lower_bound":32824933.468125,"upper_bound":32869489.137125,"unit":"ns"},"mean":{"estimate":32846533.37,"lower_bound":32824933.468125,"upper_bound":32869489.137125,"unit":"ns"},"median":{"estimate":32819499.0,"lower_bound":32793650.0,"upper_bound":32855041.5,"unit":"ns"},"median_abs_dev":{"estimate":98277.47510522604,"lower_bound":71170.72913646698,"upper_bound":116924.87627416849,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.03170035147702699,"lower_bound":-0.03247226998414616,"upper_bound":-0.0307991307034055,"unit":"%"},"median":{"estimate":-0.0326214559981175,"lower_bound":-0.03373417173222981,"upper_bound":-0.031223539659993565,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"srwq/100000","report_directory":"/root/fuel-core/target/criterion/reports/srwq/100000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[325142597.0,325755196.0,325098932.0,324781924.0,327955299.0,327225663.0,325811103.0,326904351.0,325875938.0,326622564.0,324951926.0,325183265.0,326020575.0,325865186.0,325555262.0,326332748.0,326191650.0,324212163.0,323761383.0,323784315.0,323922528.0,324446448.0,324618460.0,324323516.0,324384800.0,323589822.0,324821030.0,325159430.0,324325780.0,323072251.0,324197445.0,325134615.0,325001441.0,324194416.0,325201327.0,324752945.0,324601517.0,324476665.0,325415370.0,325558378.0,323774651.0,324935720.0,323726204.0,324714650.0,323946843.0,323650946.0,324280088.0,324586464.0,324803019.0,323278540.0,323286362.0,322738251.0,322633832.0,323166992.0,326665927.0,325750196.0,324576239.0,325055140.0,324454756.0,324153516.0,324493920.0,326490897.0,325322752.0,324833285.0,326194017.0,324131302.0,325155690.0,325100322.0,323672438.0,323707745.0,323396570.0,323216091.0,324390615.0,322898101.0,322857925.0,322909646.0,322792896.0,324216951.0,325981548.0,325739868.0,327316994.0,325662821.0,324934989.0,325074804.0,324731642.0,327139601.0,324045805.0,325205023.0,326520905.0,325049635.0,325961740.0,327222319.0,323207756.0,324284851.0,323401637.0,323150128.0,323300827.0,323204863.0,325196867.0,325789478.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":324763138.24,"lower_bound":324534844.38199997,"upper_bound":324994432.07725,"unit":"ns"},"mean":{"estimate":324763138.24,"lower_bound":324534844.38199997,"upper_bound":324994432.07725,"unit":"ns"},"median":{"estimate":324742293.5,"lower_bound":324422685.5,"upper_bound":325049635.0,"unit":"ns"},"median_abs_dev":{"estimate":1212655.5834710598,"lower_bound":818605.7146668434,"upper_bound":1537866.8528974056,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.041930323420310334,"lower_bound":-0.04288663567171486,"upper_bound":-0.041010227404028356,"unit":"%"},"median":{"estimate":-0.042022451550068673,"lower_bound":-0.04352646869167187,"upper_bound":-0.04059572346426843,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"srwq","benchmarks":["srwq/29629","srwq/19753","srwq/66666","srwq/44444","srwq/1","srwq/10","srwq/100","srwq/1000","srwq/10000","srwq/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/srwq"} +{"reason":"benchmark-complete","id":"time/time","report_directory":"/root/fuel-core/target/criterion/reports/time/time","iteration_count":[1401,2802,4203,5604,7005,8406,9807,11208,12609,14010,15411,16812,18213,19614,21015,22416,23817,25218,26619,28020,29421,30822,32223,33624,35025,36426,37827,39228,40629,42030,43431,44832,46233,47634,49035,50436,51837,53238,54639,56040,57441,58842,60243,61644,63045,64446,65847,67248,68649,70050,71451,72852,74253,75654,77055,78456,79857,81258,82659,84060,85461,86862,88263,89664,91065,92466,93867,95268,96669,98070,99471,100872,102273,103674,105075,106476,107877,109278,110679,112080,113481,114882,116283,117684,119085,120486,121887,123288,124689,126090,127491,128892,130293,131694,133095,134496,135897,137298,138699,140100],"measured_values":[1003476.0,1924960.0,2871149.0,3881364.0,4789226.0,5732626.0,6680643.0,7633496.0,8590681.0,9567390.0,10600959.0,11463530.0,12412049.0,13358780.0,14315050.0,15279228.0,16232706.0,17201160.0,18285751.0,19087102.0,20011047.0,21495535.0,21916758.0,23459749.0,23831413.0,24797923.0,26117550.0,26753511.0,28188572.0,28912847.0,29552543.0,30822827.0,31676776.0,32825038.0,33821368.0,34863499.0,35274090.0,36224038.0,37786773.0,38540169.0,39641023.0,40635078.0,41765430.0,42587224.0,43515460.0,44216255.0,45768814.0,45836632.0,47002194.0,47689165.0,49875884.0,49630513.0,51784979.0,51484495.0,52759193.0,53405599.0,54334297.0,56578135.0,57388924.0,57659211.0,59204593.0,59570564.0,60358125.0,62328078.0,62120685.0,64164128.0,64786258.0,65714265.0,66329530.0,67595354.0,68920485.0,69381004.0,71227876.0,71405237.0,71946204.0,74090906.0,74374421.0,75382509.0,75706256.0,76793860.0,78511618.0,79940540.0,79476062.0,80290609.0,82261110.0,83107110.0,83537405.0,85001448.0,85527175.0,86179542.0,88493427.0,88343192.0,89256455.0,90163058.0,91758659.0,92524753.0,94510835.0,94611452.0,96967104.0,97731740.0],"unit":"ns","throughput":[],"typical":{"estimate":688.9440774987403,"lower_bound":687.6482669879732,"upper_bound":690.2553669813716,"unit":"ns"},"mean":{"estimate":687.6499018855357,"lower_bound":686.4903714245635,"upper_bound":688.8834451236764,"unit":"ns"},"median":{"estimate":686.9692888538262,"lower_bound":685.1070942030653,"upper_bound":689.1759078792116,"unit":"ns"},"median_abs_dev":{"estimate":7.060878607952275,"lower_bound":5.17852489322381,"upper_bound":8.498108534634367,"unit":"ns"},"slope":{"estimate":688.9440774987403,"lower_bound":687.6482669879732,"upper_bound":690.2553669813716,"unit":"ns"},"change":{"mean":{"estimate":-0.7431749366173928,"lower_bound":-0.7437524465358792,"upper_bound":-0.7426192222776474,"unit":"%"},"median":{"estimate":-0.7431841575813598,"lower_bound":-0.744027697621308,"upper_bound":-0.7423329228274069,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"time","benchmarks":["time/time"],"report_directory":"/root/fuel-core/target/criterion/reports/time"} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^01","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_01","iteration_count":[1725,3450,5175,6900,8625,10350,12075,13800,15525,17250,18975,20700,22425,24150,25875,27600,29325,31050,32775,34500,36225,37950,39675,41400,43125,44850,46575,48300,50025,51750,53475,55200,56925,58650,60375,62100,63825,65550,67275,69000,70725,72450,74175,75900,77625,79350,81075,82800,84525,86250,87975,89700,91425,93150,94875,96600,98325,100050,101775,103500,105225,106950,108675,110400,112125,113850,115575,117300,119025,120750,122475,124200,125925,127650,129375,131100,132825,134550,136275,138000,139725,141450,143175,144900,146625,148350,150075,151800,153525,155250,156975,158700,160425,162150,163875,165600,167325,169050,170775,172500],"measured_values":[1115737.0,1978763.0,2970790.0,3990198.0,4947935.0,5959192.0,6951232.0,7918258.0,8907204.0,9897481.0,10911585.0,11965062.0,12865442.0,13897584.0,14888088.0,15877867.0,16852196.0,17884782.0,18822471.0,19855045.0,20806768.0,21774451.0,22888658.0,23781953.0,24763794.0,25730239.0,26727092.0,27712706.0,28818495.0,29756241.0,30680903.0,31788331.0,32751709.0,33650619.0,34708112.0,35653897.0,36621594.0,37675114.0,38621717.0,39589745.0,40678223.0,41568924.0,42579893.0,43593171.0,44540039.0,45613813.0,46514549.0,47592575.0,48569153.0,49594475.0,50479906.0,51531714.0,52493461.0,53477450.0,54488388.0,55563377.0,56412548.0,57479198.0,58455647.0,59405495.0,60453051.0,61364355.0,62377113.0,63483590.0,64350368.0,65341713.0,66367043.0,67452310.0,68370449.0,69305128.0,70322956.0,71358118.0,72250764.0,73238756.0,74325076.0,75216447.0,76276199.0,77201244.0,78266290.0,79242974.0,80171736.0,81220028.0,82169185.0,83134640.0,84263350.0,85338981.0,86126656.0,87094123.0,88078212.0,89090941.0,90110670.0,91052342.0,92106695.0,93040494.0,94027401.0,95005683.0,96021499.0,96994577.0,97977910.0,98969396.0],"unit":"ns","throughput":[{"per_iteration":2,"unit":"bytes"}],"typical":{"estimate":574.107897745881,"lower_bound":574.010459311276,"upper_bound":574.223011783159,"unit":"ns"},"mean":{"estimate":575.1232142516052,"lower_bound":574.2740759146501,"upper_bound":576.6790541492364,"unit":"ns"},"median":{"estimate":574.1393036725365,"lower_bound":573.9280895915679,"upper_bound":574.3176600790514,"unit":"ns"},"median_abs_dev":{"estimate":0.5606396018461649,"lower_bound":0.3088011024004847,"upper_bound":0.8041308794413148,"unit":"ns"},"slope":{"estimate":574.107897745881,"lower_bound":574.010459311276,"upper_bound":574.223011783159,"unit":"ns"},"change":{"mean":{"estimate":-0.010158418497500099,"lower_bound":-0.013051995082799325,"upper_bound":-0.006567292195859813,"unit":"%"},"median":{"estimate":-0.009659293928564572,"lower_bound":-0.010075585018519018,"upper_bound":-0.009334056559542114,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^02","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_02","iteration_count":[1728,3456,5184,6912,8640,10368,12096,13824,15552,17280,19008,20736,22464,24192,25920,27648,29376,31104,32832,34560,36288,38016,39744,41472,43200,44928,46656,48384,50112,51840,53568,55296,57024,58752,60480,62208,63936,65664,67392,69120,70848,72576,74304,76032,77760,79488,81216,82944,84672,86400,88128,89856,91584,93312,95040,96768,98496,100224,101952,103680,105408,107136,108864,110592,112320,114048,115776,117504,119232,120960,122688,124416,126144,127872,129600,131328,133056,134784,136512,138240,139968,141696,143424,145152,146880,148608,150336,152064,153792,155520,157248,158976,160704,162432,164160,165888,167616,169344,171072,172800],"measured_values":[1055002.0,2005771.0,2974544.0,3983492.0,4994857.0,6007281.0,6989687.0,8022663.0,8938835.0,9923078.0,10921583.0,11904248.0,12894887.0,13863129.0,14852247.0,15850689.0,16872382.0,17863846.0,18855452.0,19808372.0,20799128.0,21828524.0,22828111.0,23828714.0,24849903.0,25770312.0,26843767.0,27809387.0,28719973.0,29755832.0,30699093.0,31776485.0,32710551.0,33761917.0,34722221.0,35671349.0,36726662.0,37650567.0,38622599.0,39725939.0,40599711.0,41655091.0,42628981.0,43641966.0,44604456.0,45568889.0,46633709.0,47594219.0,48569070.0,49537618.0,50565353.0,51498481.0,52578712.0,53541418.0,54849207.0,55510916.0,56513738.0,57444078.0,58419391.0,59485755.0,60496540.0,61454410.0,62454246.0,63444995.0,64380130.0,65429876.0,66428635.0,67391923.0,68467117.0,69355123.0,70321859.0,71390641.0,72358206.0,73291460.0,74264502.0,75444000.0,76308232.0,77256712.0,78325490.0,79327255.0,80298727.0,81256744.0,82298727.0,83373561.0,84236110.0,85240464.0,86215371.0,87133364.0,88196776.0,89173586.0,90210725.0,91125533.0,92101562.0,93170194.0,94066100.0,95107509.0,96043162.0,97080704.0,98023710.0,99062632.0],"unit":"ns","throughput":[{"per_iteration":4,"unit":"bytes"}],"typical":{"estimate":573.5608386200871,"lower_bound":573.4529463757644,"upper_bound":573.6888978118099,"unit":"ns"},"mean":{"estimate":574.4186807841767,"lower_bound":573.8577655392772,"upper_bound":575.2970535800686,"unit":"ns"},"median":{"estimate":573.691998477203,"lower_bound":573.5950674743893,"upper_bound":573.7932098765432,"unit":"ns"},"median_abs_dev":{"estimate":0.6728898510519988,"lower_bound":0.4834379227740588,"upper_bound":0.8429790498602945,"unit":"ns"},"slope":{"estimate":573.5608386200871,"lower_bound":573.4529463757644,"upper_bound":573.6888978118099,"unit":"ns"},"change":{"mean":{"estimate":-0.01001321280635803,"lower_bound":-0.012402985357589514,"upper_bound":-0.007936948130521435,"unit":"%"},"median":{"estimate":-0.00991571993650675,"lower_bound":-0.010422497721797708,"upper_bound":-0.009550354834585995,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^03","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_03","iteration_count":[3215,6430,9645,12860,16075,19290,22505,25720,28935,32150,35365,38580,41795,45010,48225,51440,54655,57870,61085,64300,67515,70730,73945,77160,80375,83590,86805,90020,93235,96450,99665,102880,106095,109310,112525,115740,118955,122170,125385,128600,131815,135030,138245,141460,144675,147890,151105,154320,157535,160750,163965,167180,170395,173610,176825,180040,183255,186470,189685,192900,196115,199330,202545,205760,208975,212190,215405,218620,221835,225050,228265,231480,234695,237910,241125,244340,247555,250770,253985,257200,260415,263630,266845,270060,273275,276490,279705,282920,286135,289350,292565,295780,298995,302210,305425,308640,311855,315070,318285,321500],"measured_values":[1039984.0,1983965.0,2970770.0,3986050.0,4957207.0,5944792.0,6935349.0,7928170.0,8914668.0,9903773.0,10894851.0,11890312.0,12880896.0,13869794.0,14900843.0,15880255.0,16842663.0,17835919.0,18819153.0,19809163.0,20813926.0,21801583.0,22781936.0,23781282.0,24756369.0,25763714.0,26756720.0,27740774.0,28729028.0,29714930.0,30709684.0,31701159.0,32838763.0,33831689.0,34671321.0,35823261.0,36710382.0,37652685.0,38629097.0,39702986.0,40616721.0,41598961.0,42593517.0,43595619.0,44581128.0,45574992.0,46555563.0,47544923.0,48538541.0,49593505.0,50516172.0,51583805.0,52492893.0,53499901.0,54487306.0,55482947.0,56465577.0,57462019.0,58470380.0,59437215.0,60428675.0,61427688.0,62424202.0,63400380.0,64385950.0,65461356.0,66364130.0,67371815.0,68357980.0,69342487.0,70377365.0,71332031.0,72316712.0,73301340.0,74297756.0,75416999.0,76287898.0,77274823.0,78268118.0,79255114.0,80274912.0,81278314.0,82215332.0,83248452.0,84176154.0,85196850.0,86232424.0,87167467.0,88822807.0,89159325.0,90213426.0,91280371.0,92130885.0,93103096.0,94151088.0,95092130.0,96144423.0,97081706.0,98047220.0,99062204.0],"unit":"ns","throughput":[{"per_iteration":8,"unit":"bytes"}],"typical":{"estimate":308.2615547631781,"lower_bound":308.18023084958656,"upper_bound":308.3873487935054,"unit":"ns"},"mean":{"estimate":308.4369166944658,"lower_bound":308.2302656268782,"upper_bound":308.7907374070864,"unit":"ns"},"median":{"estimate":308.15662803966086,"lower_bound":308.1364205976147,"upper_bound":308.1701121972895,"unit":"ns"},"median_abs_dev":{"estimate":0.08409079574521033,"lower_bound":0.05910335140921117,"upper_bound":0.11702116286721163,"unit":"ns"},"slope":{"estimate":308.2615547631781,"lower_bound":308.18023084958656,"upper_bound":308.3873487935054,"unit":"ns"},"change":{"mean":{"estimate":0.003266233532933871,"lower_bound":0.0016292840919915068,"upper_bound":0.0049146110457168254,"unit":"%"},"median":{"estimate":0.003920195147379069,"lower_bound":0.003661319497280102,"upper_bound":0.004216625693169274,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^04","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_04","iteration_count":[3215,6430,9645,12860,16075,19290,22505,25720,28935,32150,35365,38580,41795,45010,48225,51440,54655,57870,61085,64300,67515,70730,73945,77160,80375,83590,86805,90020,93235,96450,99665,102880,106095,109310,112525,115740,118955,122170,125385,128600,131815,135030,138245,141460,144675,147890,151105,154320,157535,160750,163965,167180,170395,173610,176825,180040,183255,186470,189685,192900,196115,199330,202545,205760,208975,212190,215405,218620,221835,225050,228265,231480,234695,237910,241125,244340,247555,250770,253985,257200,260415,263630,266845,270060,273275,276490,279705,282920,286135,289350,292565,295780,298995,302210,305425,308640,311855,315070,318285,321500],"measured_values":[1057911.0,1975426.0,2971768.0,3966239.0,4951400.0,5943089.0,6943359.0,7920756.0,8909850.0,9930921.0,10893202.0,11898219.0,12901067.0,13838805.0,14851561.0,15855116.0,16844880.0,17827781.0,18818720.0,20070019.0,20979750.0,21872632.0,22777124.0,23780413.0,24756792.0,25721554.0,26742899.0,27740970.0,28744620.0,29720025.0,30697501.0,31699237.0,32679652.0,33700139.0,34729082.0,35712845.0,36642603.0,37620315.0,38576435.0,39617510.0,40623598.0,41568698.0,42701231.0,43582090.0,44568895.0,45665847.0,46555389.0,47537817.0,48484448.0,49496224.0,50503332.0,51474775.0,52503105.0,53526518.0,54524272.0,55430732.0,56390391.0,57434196.0,58402034.0,59392316.0,60486087.0,61453133.0,62460970.0,63508183.0,64392924.0,65476468.0,66431702.0,67376947.0,68282502.0,69311024.0,70338271.0,71304097.0,72304659.0,73282953.0,74263188.0,75280661.0,76226290.0,77242898.0,78217353.0,79266983.0,80210198.0,81206871.0,82170982.0,83271060.0,84482205.0,85217973.0,86163097.0,87186951.0,88214628.0,89155240.0,90213836.0,91134368.0,92125696.0,93115516.0,94110298.0,95087660.0,96048351.0,97101010.0,98103180.0,99062029.0],"unit":"ns","throughput":[{"per_iteration":16,"unit":"bytes"}],"typical":{"estimate":308.1584248726955,"lower_bound":308.1048978344321,"upper_bound":308.2224334083125,"unit":"ns"},"mean":{"estimate":308.4225257222844,"lower_bound":308.13573629099875,"upper_bound":308.9096785674908,"unit":"ns"},"median":{"estimate":308.1072355867333,"lower_bound":308.06495161569035,"upper_bound":308.1369733221677,"unit":"ns"},"median_abs_dev":{"estimate":0.17441585052427247,"lower_bound":0.13131842723748366,"upper_bound":0.26925057511430667,"unit":"ns"},"slope":{"estimate":308.1584248726955,"lower_bound":308.1048978344321,"upper_bound":308.2224334083125,"unit":"ns"},"change":{"mean":{"estimate":0.002636422268455396,"lower_bound":-0.0008164058224009477,"upper_bound":0.005213519043932123,"unit":"%"},"median":{"estimate":0.0036078998683186647,"lower_bound":0.0031888462351437608,"upper_bound":0.0038275893530248517,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^05","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_05","iteration_count":[3210,6420,9630,12840,16050,19260,22470,25680,28890,32100,35310,38520,41730,44940,48150,51360,54570,57780,60990,64200,67410,70620,73830,77040,80250,83460,86670,89880,93090,96300,99510,102720,105930,109140,112350,115560,118770,121980,125190,128400,131610,134820,138030,141240,144450,147660,150870,154080,157290,160500,163710,166920,170130,173340,176550,179760,182970,186180,189390,192600,195810,199020,202230,205440,208650,211860,215070,218280,221490,224700,227910,231120,234330,237540,240750,243960,247170,250380,253590,256800,260010,263220,266430,269640,272850,276060,279270,282480,285690,288900,292110,295320,298530,301740,304950,308160,311370,314580,317790,321000],"measured_values":[1056161.0,1980114.0,2973461.0,3963059.0,4952978.0,5944963.0,6934919.0,7922710.0,8915477.0,9905359.0,10897799.0,11887881.0,12876614.0,13868390.0,14859547.0,15848580.0,16838119.0,17834508.0,18822060.0,19833584.0,20804231.0,21791740.0,22784559.0,23773677.0,24764631.0,25789636.0,26745472.0,27736846.0,28775235.0,29717419.0,30708651.0,31695620.0,32696992.0,33680574.0,34690589.0,35663467.0,36652495.0,37640263.0,38635534.0,39743464.0,40613142.0,41604887.0,42618548.0,43587377.0,44600300.0,45567981.0,46559692.0,47574206.0,48538423.0,49548470.0,50521338.0,51511746.0,52524199.0,53510123.0,54513794.0,55503856.0,56546402.0,57491509.0,58452096.0,59457042.0,60425980.0,61415799.0,62440587.0,63417653.0,64389296.0,65410292.0,66373158.0,67361080.0,68350241.0,69371724.0,70360740.0,71345219.0,72307784.0,73320599.0,74321090.0,75276873.0,76273485.0,77306036.0,78278418.0,79277887.0,80265540.0,81255659.0,82278492.0,83251030.0,84270288.0,85239834.0,86207557.0,87193500.0,88195093.0,89179357.0,90242466.0,91135907.0,92181831.0,93144814.0,94156988.0,95156254.0,96139064.0,97129523.0,98146447.0,99085912.0],"unit":"ns","throughput":[{"per_iteration":32,"unit":"bytes"}],"typical":{"estimate":308.71396574359625,"lower_bound":308.69000167098267,"upper_bound":308.7379909710906,"unit":"ns"},"mean":{"estimate":308.8892636401334,"lower_bound":308.6658013533302,"upper_bound":309.31283158527253,"unit":"ns"},"median":{"estimate":308.6641650146323,"lower_bound":308.61188450272005,"upper_bound":308.69262423200064,"unit":"ns"},"median_abs_dev":{"estimate":0.1006393884710558,"lower_bound":0.05521062528247111,"upper_bound":0.12644155428678736,"unit":"ns"},"slope":{"estimate":308.71396574359625,"lower_bound":308.69000167098267,"upper_bound":308.7379909710906,"unit":"ns"},"change":{"mean":{"estimate":0.002490890302000892,"lower_bound":0.0008227836691354351,"upper_bound":0.004326172708734921,"unit":"%"},"median":{"estimate":0.0024725713842423946,"lower_bound":0.0022627202276621627,"upper_bound":0.002598967687076348,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^06","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_06","iteration_count":[1704,3408,5112,6816,8520,10224,11928,13632,15336,17040,18744,20448,22152,23856,25560,27264,28968,30672,32376,34080,35784,37488,39192,40896,42600,44304,46008,47712,49416,51120,52824,54528,56232,57936,59640,61344,63048,64752,66456,68160,69864,71568,73272,74976,76680,78384,80088,81792,83496,85200,86904,88608,90312,92016,93720,95424,97128,98832,100536,102240,103944,105648,107352,109056,110760,112464,114168,115872,117576,119280,120984,122688,124392,126096,127800,129504,131208,132912,134616,136320,138024,139728,141432,143136,144840,146544,148248,149952,151656,153360,155064,156768,158472,160176,161880,163584,165288,166992,168696,170400],"measured_values":[1055043.0,2018245.0,2967650.0,3955680.0,4943906.0,5959788.0,6937329.0,7933045.0,8920679.0,9937269.0,10898880.0,11866472.0,12886209.0,13864532.0,14832474.0,15846043.0,16853266.0,17799865.0,18789501.0,19776921.0,20766080.0,21868298.0,22805260.0,23732911.0,24720926.0,25758013.0,26744940.0,27689751.0,28752628.0,29765844.0,30698127.0,31683162.0,32733108.0,33707411.0,34632167.0,35737572.0,36672826.0,37597564.0,38610638.0,39620155.0,40616786.0,41617769.0,42521932.0,43586089.0,44562640.0,45553423.0,46479108.0,47466711.0,48596482.0,49529543.0,50575191.0,51421987.0,52473976.0,53397023.0,54501451.0,55459705.0,56500793.0,57419373.0,58387198.0,59441460.0,60341988.0,61402291.0,62347682.0,63355304.0,64399469.0,65284026.0,66319369.0,67287316.0,68294360.0,69336810.0,70292265.0,71242466.0,72278280.0,73265283.0,74166364.0,75230679.0,76163312.0,77237521.0,78140718.0,79175518.0,80246437.0,81148786.0,82101037.0,83191021.0,84203742.0,85132920.0,86115174.0,87084900.0,88061442.0,89023817.0,90101589.0,91029085.0,92012121.0,93046367.0,94007887.0,94951735.0,95996275.0,96927378.0,97968247.0,98920507.0],"unit":"ns","throughput":[{"per_iteration":64,"unit":"bytes"}],"typical":{"estimate":580.8797565546969,"lower_bound":580.7985496248624,"upper_bound":580.969918924006,"unit":"ns"},"mean":{"estimate":581.5500567143868,"lower_bound":581.0005940955532,"upper_bound":582.4686553989067,"unit":"ns"},"median":{"estimate":580.9875436119517,"lower_bound":580.7818776922704,"upper_bound":581.150756390193,"unit":"ns"},"median_abs_dev":{"estimate":0.6718661374038926,"lower_bound":0.4995126331128017,"upper_bound":0.8169436983760391,"unit":"ns"},"slope":{"estimate":580.8797565546969,"lower_bound":580.7985496248624,"upper_bound":580.969918924006,"unit":"ns"},"change":{"mean":{"estimate":0.004042102869724173,"lower_bound":0.002175171248251385,"upper_bound":0.006005046910221468,"unit":"%"},"median":{"estimate":0.00421350731715564,"lower_bound":0.0038318371282926034,"upper_bound":0.004531928718599421,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^07","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_07","iteration_count":[1166,2332,3498,4664,5830,6996,8162,9328,10494,11660,12826,13992,15158,16324,17490,18656,19822,20988,22154,23320,24486,25652,26818,27984,29150,30316,31482,32648,33814,34980,36146,37312,38478,39644,40810,41976,43142,44308,45474,46640,47806,48972,50138,51304,52470,53636,54802,55968,57134,58300,59466,60632,61798,62964,64130,65296,66462,67628,68794,69960,71126,72292,73458,74624,75790,76956,78122,79288,80454,81620,82786,83952,85118,86284,87450,88616,89782,90948,92114,93280,94446,95612,96778,97944,99110,100276,101442,102608,103774,104940,106106,107272,108438,109604,110770,111936,113102,114268,115434,116600],"measured_values":[1091106.0,1982462.0,2971019.0,3962971.0,4953093.0,5941410.0,6933465.0,7924374.0,8914520.0,9903931.0,10895525.0,11887503.0,12878632.0,13865392.0,14856839.0,15850610.0,16837141.0,17828028.0,18819574.0,19809885.0,20805350.0,21791926.0,22806882.0,23772920.0,24802616.0,25754506.0,26745318.0,27734604.0,28725613.0,29712963.0,30795179.0,31694648.0,32685470.0,33677222.0,34666784.0,35661172.0,36652100.0,37641346.0,38626712.0,39621409.0,40610582.0,41602083.0,42598876.0,43604717.0,44839965.0,45659567.0,46616544.0,47607450.0,48538972.0,49613578.0,50544975.0,51546333.0,52576870.0,53532731.0,54521612.0,55621685.0,56459283.0,57631581.0,58486414.0,59462735.0,60418292.0,61409098.0,62490149.0,63477019.0,64473762.0,65465755.0,66461369.0,67487599.0,68418488.0,69427444.0,70426818.0,71414796.0,72325603.0,73474084.0,74308207.0,75313194.0,76330519.0,77411103.0,78326038.0,79323313.0,80310978.0,81236029.0,82229628.0,83315948.0,84243558.0,85219340.0,86212902.0,87204778.0,88187977.0,89197756.0,90223211.0,91143256.0,92172906.0,93131615.0,94219525.0,95102232.0,96266194.0,97146121.0,98105546.0,99126700.0],"unit":"ns","throughput":[{"per_iteration":128,"unit":"bytes"}],"typical":{"estimate":850.2246997498961,"lower_bound":850.0856432115132,"upper_bound":850.3763850462963,"unit":"ns"},"mean":{"estimate":850.925291587223,"lower_bound":849.9565310242219,"upper_bound":852.7360240438927,"unit":"ns"},"median":{"estimate":849.8279177559823,"lower_bound":849.6325342055926,"upper_bound":850.0005852083543,"unit":"ns"},"median_abs_dev":{"estimate":0.5086337442835296,"lower_bound":0.28602990058224786,"upper_bound":0.7463168086758134,"unit":"ns"},"slope":{"estimate":850.2246997498961,"lower_bound":850.0856432115132,"upper_bound":850.3763850462963,"unit":"ns"},"change":{"mean":{"estimate":0.0005977283430287361,"lower_bound":-0.0027268973289666957,"upper_bound":0.003778432840155787,"unit":"%"},"median":{"estimate":0.001008106616894766,"lower_bound":0.0007309779294164542,"upper_bound":0.0013060594155850087,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^08","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_08","iteration_count":[720,1440,2160,2880,3600,4320,5040,5760,6480,7200,7920,8640,9360,10080,10800,11520,12240,12960,13680,14400,15120,15840,16560,17280,18000,18720,19440,20160,20880,21600,22320,23040,23760,24480,25200,25920,26640,27360,28080,28800,29520,30240,30960,31680,32400,33120,33840,34560,35280,36000,36720,37440,38160,38880,39600,40320,41040,41760,42480,43200,43920,44640,45360,46080,46800,47520,48240,48960,49680,50400,51120,51840,52560,53280,54000,54720,55440,56160,56880,57600,58320,59040,59760,60480,61200,61920,62640,63360,64080,64800,65520,66240,66960,67680,68400,69120,69840,70560,71280,72000],"measured_values":[1126496.0,1979923.0,2970798.0,3981705.0,4950383.0,5940222.0,6950535.0,7964030.0,8930974.0,9902086.0,10892374.0,11881449.0,12870838.0,13882986.0,14900683.0,15846262.0,16831313.0,17899853.0,18810617.0,19826837.0,20857009.0,21825595.0,22776032.0,23804687.0,24821225.0,25764667.0,26780158.0,27743961.0,28777684.0,29704238.0,30691575.0,31731398.0,32692975.0,33710668.0,34678462.0,35709861.0,36636602.0,37668602.0,38615338.0,39603386.0,40686178.0,41677443.0,42689677.0,43607039.0,44577760.0,45586901.0,46535795.0,47594457.0,48514712.0,49590967.0,50497031.0,51595210.0,52532525.0,53511447.0,54457997.0,55554970.0,56973705.0,57964697.0,58442539.0,59450891.0,60465224.0,61385830.0,62421936.0,63391567.0,64406405.0,65520758.0,66339721.0,67327971.0,68383552.0,69372634.0,70344810.0,71380010.0,72344725.0,73268508.0,74256787.0,75338470.0,76332512.0,77227468.0,78293981.0,79211284.0,80199077.0,81215185.0,82465908.0,83280516.0,84164755.0,85268943.0,86723733.0,87160844.0,88118903.0,89109768.0,90101868.0,91166363.0,92207944.0,93069549.0,94057769.0,95051217.0,96040693.0,97078273.0,98018859.0,99015145.0],"unit":"ns","throughput":[{"per_iteration":256,"unit":"bytes"}],"typical":{"estimate":1376.470645452605,"lower_bound":1375.9758429147755,"upper_bound":1377.0999732659027,"unit":"ns"},"mean":{"estimate":1378.6776839957952,"lower_bound":1376.4589289510322,"upper_bound":1382.7234532138934,"unit":"ns"},"median":{"estimate":1376.1832870370372,"lower_bound":1375.6404998200373,"upper_bound":1376.4806380657844,"unit":"ns"},"median_abs_dev":{"estimate":1.5030737125292724,"lower_bound":0.7869091404015782,"upper_bound":1.907848032998004,"unit":"ns"},"slope":{"estimate":1376.470645452605,"lower_bound":1375.9758429147755,"upper_bound":1377.0999732659027,"unit":"ns"},"change":{"mean":{"estimate":0.006920542453912715,"lower_bound":0.0035942690794507903,"upper_bound":0.010865915733865921,"unit":"%"},"median":{"estimate":0.006614197111234121,"lower_bound":0.006217700616379718,"upper_bound":0.00684182321275939,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^09","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_09","iteration_count":[409,818,1227,1636,2045,2454,2863,3272,3681,4090,4499,4908,5317,5726,6135,6544,6953,7362,7771,8180,8589,8998,9407,9816,10225,10634,11043,11452,11861,12270,12679,13088,13497,13906,14315,14724,15133,15542,15951,16360,16769,17178,17587,17996,18405,18814,19223,19632,20041,20450,20859,21268,21677,22086,22495,22904,23313,23722,24131,24540,24949,25358,25767,26176,26585,26994,27403,27812,28221,28630,29039,29448,29857,30266,30675,31084,31493,31902,32311,32720,33129,33538,33947,34356,34765,35174,35583,35992,36401,36810,37219,37628,38037,38446,38855,39264,39673,40082,40491,40900],"measured_values":[1058126.0,1979413.0,2970093.0,3961205.0,5020504.0,5943303.0,6929164.0,7920002.0,8973181.0,9921831.0,10911644.0,11880430.0,12893879.0,13880529.0,14854723.0,15863703.0,16874124.0,17886577.0,18830809.0,19798506.0,20792590.0,21825337.0,22790106.0,23760511.0,24750421.0,25816977.0,26820575.0,27783236.0,28709082.0,29700381.0,30766513.0,31678988.0,32672024.0,33735321.0,34712766.0,35702799.0,36747588.0,37618917.0,38634177.0,39682388.0,40588351.0,41697630.0,42612238.0,43634722.0,44616029.0,45542696.0,46652888.0,47517144.0,48923605.0,49583683.0,50603969.0,51482674.0,52590432.0,53461038.0,54557815.0,55507271.0,56588012.0,57451808.0,58502020.0,59447095.0,60458623.0,61517278.0,62434550.0,63615184.0,64475939.0,65386107.0,66465585.0,67399051.0,68378419.0,69432722.0,70490448.0,71349656.0,72361964.0,73347059.0,74964629.0,75334768.0,76295455.0,77409289.0,78279841.0,79306747.0,80320799.0,81203645.0,82332664.0,83224773.0,84242152.0,85246171.0,86128862.0,87136358.0,88224974.0,89349540.0,90319807.0,91149326.0,92194618.0,93099538.0,94255764.0,95125587.0,96129690.0,97050119.0,98121566.0,99142635.0],"unit":"ns","throughput":[{"per_iteration":512,"unit":"bytes"}],"typical":{"estimate":2424.1908895210217,"lower_bound":2423.4441875458506,"upper_bound":2425.1492581055154,"unit":"ns"},"mean":{"estimate":2426.1081609275184,"lower_bound":2423.784063624968,"upper_bound":2429.9900314033716,"unit":"ns"},"median":{"estimate":2423.571508410818,"lower_bound":2423.0064934827724,"upper_bound":2424.3512494301935,"unit":"ns"},"median_abs_dev":{"estimate":3.355008060370003,"lower_bound":2.3766542453969444,"upper_bound":3.8387902835498395,"unit":"ns"},"slope":{"estimate":2424.1908895210217,"lower_bound":2423.4441875458506,"upper_bound":2425.1492581055154,"unit":"ns"},"change":{"mean":{"estimate":0.00554310783753853,"lower_bound":0.0035955032356880415,"upper_bound":0.007594035204140425,"unit":"%"},"median":{"estimate":0.005705234378296176,"lower_bound":0.005393777412779244,"upper_bound":0.006056322334836883,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^10","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_10","iteration_count":[220,440,660,880,1100,1320,1540,1760,1980,2200,2420,2640,2860,3080,3300,3520,3740,3960,4180,4400,4620,4840,5060,5280,5500,5720,5940,6160,6380,6600,6820,7040,7260,7480,7700,7920,8140,8360,8580,8800,9020,9240,9460,9680,9900,10120,10340,10560,10780,11000,11220,11440,11660,11880,12100,12320,12540,12760,12980,13200,13420,13640,13860,14080,14300,14520,14740,14960,15180,15400,15620,15840,16060,16280,16500,16720,16940,17160,17380,17600,17820,18040,18260,18480,18700,18920,19140,19360,19580,19800,20020,20240,20460,20680,20900,21120,21340,21560,21780,22000],"measured_values":[1067767.0,1982674.0,2968284.0,3961046.0,4969859.0,5940377.0,6930301.0,7916909.0,8910392.0,9963070.0,10888869.0,11880140.0,12933658.0,13861247.0,14849284.0,15840929.0,16827646.0,17816800.0,18810170.0,19898955.0,20789832.0,21782084.0,22809564.0,23770284.0,24804534.0,25737526.0,26731813.0,27727593.0,28709789.0,29697386.0,30689456.0,31678432.0,32669502.0,33659217.0,34652135.0,35647960.0,36624224.0,37626528.0,38609321.0,39604244.0,40590677.0,41574685.0,42568355.0,43561233.0,44578103.0,45544382.0,46531936.0,47519747.0,48514004.0,49510616.0,50487791.0,51482320.0,52549219.0,53467635.0,54447720.0,55442544.0,56437585.0,57422544.0,58450584.0,59399977.0,60391256.0,61379824.0,62373060.0,63397746.0,64352632.0,65338820.0,66421918.0,67328558.0,68307379.0,69307464.0,70294940.0,71296422.0,72272819.0,73264478.0,74247747.0,75247591.0,76234607.0,77332079.0,78214685.0,79277761.0,80190251.0,81176826.0,82168955.0,83169825.0,84148433.0,85150809.0,86135294.0,87125151.0,88110924.0,89102929.0,90138157.0,91151679.0,92084685.0,93061804.0,94098809.0,95042327.0,96060772.0,97072558.0,98010548.0,99066185.0],"unit":"ns","throughput":[{"per_iteration":1024,"unit":"bytes"}],"typical":{"estimate":4501.0618688689765,"lower_bound":4500.6739318352575,"upper_bound":4501.493927862353,"unit":"ns"},"mean":{"estimate":4505.2629933914895,"lower_bound":4501.071307473298,"upper_bound":4512.868957029731,"unit":"ns"},"median":{"estimate":4500.264992252067,"lower_bound":4500.165992618493,"upper_bound":4500.371428571429,"unit":"ns"},"median_abs_dev":{"estimate":0.5122509802261236,"lower_bound":0.3833773548078575,"upper_bound":0.7294997822362578,"unit":"ns"},"slope":{"estimate":4501.0618688689765,"lower_bound":4500.6739318352575,"upper_bound":4501.493927862353,"unit":"ns"},"change":{"mean":{"estimate":0.0010153796537135662,"lower_bound":-0.002716632260322432,"upper_bound":0.0038852320093196815,"unit":"%"},"median":{"estimate":0.0017902018326243496,"lower_bound":0.0015940744886441816,"upper_bound":0.0020403659946856435,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^11","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_11","iteration_count":[115,230,345,460,575,690,805,920,1035,1150,1265,1380,1495,1610,1725,1840,1955,2070,2185,2300,2415,2530,2645,2760,2875,2990,3105,3220,3335,3450,3565,3680,3795,3910,4025,4140,4255,4370,4485,4600,4715,4830,4945,5060,5175,5290,5405,5520,5635,5750,5865,5980,6095,6210,6325,6440,6555,6670,6785,6900,7015,7130,7245,7360,7475,7590,7705,7820,7935,8050,8165,8280,8395,8510,8625,8740,8855,8970,9085,9200,9315,9430,9545,9660,9775,9890,10005,10120,10235,10350,10465,10580,10695,10810,10925,11040,11155,11270,11385,11500],"measured_values":[1069559.0,1981768.0,2967907.0,3958898.0,4950210.0,5937755.0,6924211.0,7916616.0,8903041.0,9894156.0,10878053.0,11900024.0,12868800.0,13853532.0,14838282.0,15833025.0,16840914.0,17807501.0,18802742.0,19793387.0,20773553.0,21769535.0,22752392.0,23772094.0,24736589.0,25716159.0,26715393.0,27698148.0,28734422.0,29682275.0,30671263.0,31732421.0,32649754.0,33641341.0,34737078.0,35684889.0,36649408.0,37597245.0,38582425.0,39579110.0,40590224.0,41580941.0,42655242.0,43552922.0,44601449.0,45594394.0,46557829.0,47639320.0,48545784.0,49601623.0,50503409.0,51591965.0,52427969.0,53560458.0,54444249.0,55520497.0,56415655.0,57445571.0,58462531.0,59433877.0,60593172.0,61397337.0,62404748.0,63435757.0,64400258.0,65452271.0,66359800.0,67394583.0,68378533.0,69254613.0,70342095.0,71401121.0,72456479.0,73258811.0,74336178.0,75331443.0,76250465.0,77276553.0,78372070.0,79213758.0,80227656.0,81255058.0,82195542.0,83218168.0,84200461.0,85271034.0,86183502.0,87240113.0,88174960.0,89150154.0,90148814.0,91203763.0,92149401.0,93101639.0,94102434.0,95116809.0,96094784.0,96992893.0,97944288.0,98940638.0],"unit":"ns","throughput":[{"per_iteration":2048,"unit":"bytes"}],"typical":{"estimate":8614.578459840273,"lower_bound":8612.889440055578,"upper_bound":8616.267818250264,"unit":"ns"},"mean":{"estimate":8619.22411904451,"lower_bound":8611.114136534543,"upper_bound":8634.029825335,"unit":"ns"},"median":{"estimate":8612.907850241547,"lower_bound":8609.060869565217,"upper_bound":8614.278260869565,"unit":"ns"},"median_abs_dev":{"estimate":9.82073389397061,"lower_bound":7.53448711841121,"upper_bound":12.286804274618671,"unit":"ns"},"slope":{"estimate":8614.578459840273,"lower_bound":8612.889440055578,"upper_bound":8616.267818250264,"unit":"ns"},"change":{"mean":{"estimate":-0.0023826692606692124,"lower_bound":-0.006505707786993315,"upper_bound":0.0008056470204927697,"unit":"%"},"median":{"estimate":-0.0022150702727805616,"lower_bound":-0.002609227968865535,"upper_bound":-0.0019419423208696385,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^12","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_12","iteration_count":[59,118,177,236,295,354,413,472,531,590,649,708,767,826,885,944,1003,1062,1121,1180,1239,1298,1357,1416,1475,1534,1593,1652,1711,1770,1829,1888,1947,2006,2065,2124,2183,2242,2301,2360,2419,2478,2537,2596,2655,2714,2773,2832,2891,2950,3009,3068,3127,3186,3245,3304,3363,3422,3481,3540,3599,3658,3717,3776,3835,3894,3953,4012,4071,4130,4189,4248,4307,4366,4425,4484,4543,4602,4661,4720,4779,4838,4897,4956,5015,5074,5133,5192,5251,5310,5369,5428,5487,5546,5605,5664,5723,5782,5841,5900],"measured_values":[1062102.0,2001438.0,2998331.0,3999817.0,5000475.0,5998999.0,7000216.0,7999809.0,8998351.0,10000300.0,10997707.0,11998553.0,13000296.0,13997433.0,14999983.0,15998239.0,16998308.0,18002275.0,19060870.0,20009296.0,21009534.0,22009570.0,23009118.0,24011281.0,25027073.0,26009228.0,27010039.0,28025516.0,29013029.0,30014092.0,31011953.0,32012404.0,33001720.0,34015766.0,35013804.0,36028069.0,36981042.0,37978592.0,38977027.0,40016137.0,41015711.0,42018010.0,43042009.0,44015282.0,45072589.0,46014146.0,47017406.0,48086212.0,49052610.0,50020019.0,50989320.0,51965706.0,52983778.0,53964821.0,54967369.0,55954330.0,56966577.0,57957227.0,58958469.0,59985430.0,60996032.0,62035052.0,62991809.0,64005284.0,65008216.0,65963646.0,66970838.0,68029919.0,68980420.0,70021194.0,71105552.0,71968024.0,73045139.0,73986938.0,75029952.0,76006372.0,77010914.0,77998678.0,79040778.0,79974345.0,80984804.0,81987458.0,82982600.0,83995743.0,85023033.0,85982639.0,87025850.0,87985680.0,88988526.0,89985241.0,90965142.0,91997838.0,92980482.0,93967447.0,94990894.0,96030117.0,97052465.0,97997075.0,98990753.0,99956830.0],"unit":"ns","throughput":[{"per_iteration":4096,"unit":"bytes"}],"typical":{"estimate":16949.44363864517,"lower_bound":16947.833930739842,"upper_bound":16951.223477236093,"unit":"ns"},"mean":{"estimate":16961.82624552363,"lower_bound":16949.882397095535,"upper_bound":16984.095350722106,"unit":"ns"},"median":{"estimate":16949.599739243808,"lower_bound":16947.569423044,"upper_bound":16953.745363908274,"unit":"ns"},"median_abs_dev":{"estimate":8.70088062471768,"lower_bound":6.448475942974617,"upper_bound":10.338605826880544,"unit":"ns"},"slope":{"estimate":16949.44363864517,"lower_bound":16947.833930739842,"upper_bound":16951.223477236093,"unit":"ns"},"change":{"mean":{"estimate":0.0003635574003488795,"lower_bound":-0.001087124540996719,"upper_bound":0.00200941495901142,"unit":"%"},"median":{"estimate":0.0006927764481488019,"lower_bound":0.0005335918357197545,"upper_bound":0.0009499094715228473,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^13","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_13","iteration_count":[30,60,90,120,150,180,210,240,270,300,330,360,390,420,450,480,510,540,570,600,630,660,690,720,750,780,810,840,870,900,930,960,990,1020,1050,1080,1110,1140,1170,1200,1230,1260,1290,1320,1350,1380,1410,1440,1470,1500,1530,1560,1590,1620,1650,1680,1710,1740,1770,1800,1830,1860,1890,1920,1950,1980,2010,2040,2070,2100,2130,2160,2190,2220,2250,2280,2310,2340,2370,2400,2430,2460,2490,2520,2550,2580,2610,2640,2670,2700,2730,2760,2790,2820,2850,2880,2910,2940,2970,3000],"measured_values":[1079165.0,2019697.0,3034378.0,4041269.0,5052665.0,6064151.0,7072265.0,8080654.0,9092240.0,10101278.0,11113106.0,12125876.0,13133289.0,14179620.0,15184356.0,16162702.0,17173492.0,18183084.0,19190410.0,20201413.0,21242086.0,22251979.0,23255650.0,24244461.0,25264546.0,26263700.0,27274566.0,28290325.0,29305305.0,30328607.0,31317735.0,32330381.0,33360057.0,34346014.0,35356100.0,36383195.0,37446912.0,38402268.0,39397718.0,40411059.0,41491703.0,42429219.0,43508833.0,44447670.0,45530531.0,46478321.0,47513783.0,48519959.0,49496394.0,50575421.0,51520459.0,52599140.0,53584562.0,54551581.0,55561464.0,56605355.0,57651218.0,58662761.0,59739522.0,60654446.0,61630193.0,62677892.0,63645584.0,64663978.0,65662391.0,66692117.0,67791028.0,68698101.0,69705196.0,70717129.0,71725601.0,72747714.0,73778221.0,74760881.0,75848579.0,76818416.0,77802474.0,78839970.0,79810118.0,80869194.0,81861407.0,82890426.0,83874656.0,84872524.0,85961231.0,86912948.0,88032335.0,88939737.0,89920287.0,90929969.0,91982299.0,92982519.0,93982466.0,95107045.0,96007117.0,97050263.0,97989748.0,99049371.0,100015246.0,101135322.0],"unit":"ns","throughput":[{"per_iteration":8192,"unit":"bytes"}],"typical":{"estimate":33691.19737441505,"lower_bound":33687.09964601179,"upper_bound":33695.61925548386,"unit":"ns"},"mean":{"estimate":33712.932833599145,"lower_bound":33687.08836349231,"upper_bound":33761.248753003296,"unit":"ns"},"median":{"estimate":33684.34597701149,"lower_bound":33678.01011235955,"upper_bound":33688.71891835017,"unit":"ns"},"median_abs_dev":{"estimate":15.985157982110445,"lower_bound":9.249182734719318,"upper_bound":20.78115233132892,"unit":"ns"},"slope":{"estimate":33691.19737441505,"lower_bound":33687.09964601179,"upper_bound":33695.61925548386,"unit":"ns"},"change":{"mean":{"estimate":0.0002038827783343855,"lower_bound":-0.0017601831394486506,"upper_bound":0.002163389998420694,"unit":"%"},"median":{"estimate":0.00039562409993809666,"lower_bound":0.00012111464697817098,"upper_bound":0.0008239893076739826,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^14","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_14","iteration_count":[15,30,45,60,75,90,105,120,135,150,165,180,195,210,225,240,255,270,285,300,315,330,345,360,375,390,405,420,435,450,465,480,495,510,525,540,555,570,585,600,615,630,645,660,675,690,705,720,735,750,765,780,795,810,825,840,855,870,885,900,915,930,945,960,975,990,1005,1020,1035,1050,1065,1080,1095,1110,1125,1140,1155,1170,1185,1200,1215,1230,1245,1260,1275,1290,1305,1320,1335,1350,1365,1380,1395,1410,1425,1440,1455,1470,1485,1500],"measured_values":[1113443.0,2012875.0,3014042.0,4020778.0,5026982.0,6029460.0,7036441.0,8040616.0,9045417.0,10051631.0,11056635.0,12060273.0,13126198.0,14068529.0,15074992.0,16079255.0,17125636.0,18089977.0,19109985.0,20100274.0,21105342.0,22110759.0,23112892.0,24120689.0,25126353.0,26129635.0,27136043.0,28156642.0,29148965.0,30154206.0,31162224.0,32162556.0,33167343.0,34189261.0,35183480.0,36182898.0,37187984.0,38190131.0,39249260.0,40222671.0,41209646.0,42252936.0,43220225.0,44235219.0,45262646.0,46236621.0,47236558.0,48249267.0,49263266.0,50249603.0,51253236.0,52256735.0,53292257.0,54309623.0,55279244.0,56319394.0,57336569.0,58292070.0,59296385.0,60380989.0,61313418.0,62307267.0,63388484.0,64422857.0,65326733.0,66427257.0,67344921.0,68348034.0,69388478.0,70423881.0,71385804.0,72418131.0,73382691.0,74422240.0,75418719.0,76427017.0,77488067.0,78453900.0,79415763.0,80510327.0,81509520.0,82432193.0,83522739.0,84460776.0,85501242.0,86474309.0,87500101.0,88502866.0,89469732.0,90642941.0,91513236.0,92514599.0,93543346.0,94497358.0,95524246.0,96555854.0,97499111.0,98521499.0,99538765.0,100547725.0],"unit":"ns","throughput":[{"per_iteration":16384,"unit":"bytes"}],"typical":{"estimate":67040.57770651692,"lower_bound":67032.98825108494,"upper_bound":67048.94198384856,"unit":"ns"},"mean":{"estimate":67104.90550030138,"lower_bound":67026.69478275796,"upper_bound":67254.21732948993,"unit":"ns"},"median":{"estimate":67018.28446606376,"lower_bound":67009.90909090909,"upper_bound":67032.3619047619,"unit":"ns"},"median_abs_dev":{"estimate":26.261125972539038,"lower_bound":16.5763462835026,"upper_bound":38.118668666692315,"unit":"ns"},"slope":{"estimate":67040.57770651692,"lower_bound":67032.98825108494,"upper_bound":67048.94198384856,"unit":"ns"},"change":{"mean":{"estimate":0.0010600017916171378,"lower_bound":-0.0006921675681355509,"upper_bound":0.003649889957054375,"unit":"%"},"median":{"estimate":0.0006241862849369895,"lower_bound":0.00047451912856688594,"upper_bound":0.0008255825589129628,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^15","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_15","iteration_count":[8,16,24,32,40,48,56,64,72,80,88,96,104,112,120,128,136,144,152,160,168,176,184,192,200,208,216,224,232,240,248,256,264,272,280,288,296,304,312,320,328,336,344,352,360,368,376,384,392,400,408,416,424,432,440,448,456,464,472,480,488,496,504,512,520,528,536,544,552,560,568,576,584,592,600,608,616,624,632,640,648,656,664,672,680,688,696,704,712,720,728,736,744,752,760,768,776,784,792,800],"measured_values":[1204682.0,2157991.0,3260269.0,4317573.0,5419136.0,6474851.0,7555446.0,8634691.0,9738788.0,10814525.0,11873422.0,13018804.0,14051061.0,15155222.0,16231395.0,17290383.0,18349789.0,19427140.0,20555222.0,21647466.0,22665882.0,23827355.0,24847398.0,25948912.0,26981141.0,28061894.0,29146917.0,30295543.0,31426394.0,32423350.0,33627893.0,34538772.0,35618505.0,36821637.0,37824508.0,38931851.0,39996519.0,41058150.0,42157737.0,43197744.0,44273995.0,45406869.0,46409439.0,47628260.0,48643339.0,49755739.0,50731877.0,51932374.0,52890771.0,54125727.0,55108243.0,56239970.0,57231831.0,58414777.0,59461839.0,60468090.0,61634153.0,62601310.0,63752546.0,64907111.0,65908699.0,67029427.0,68075802.0,69123869.0,70269919.0,71263470.0,72386140.0,73820206.0,74575723.0,75569680.0,76715891.0,77822926.0,78844325.0,79977277.0,81056158.0,82134790.0,83202017.0,84298720.0,85317756.0,86395459.0,87490594.0,88580184.0,89737379.0,90664184.0,91899627.0,92893857.0,93919989.0,95057854.0,96144767.0,97273856.0,98348331.0,99321237.0,100397247.0,101522704.0,102654267.0,103631204.0,104716366.0,105792632.0,106955328.0,107954394.0],"unit":"ns","throughput":[{"per_iteration":32768,"unit":"bytes"}],"typical":{"estimate":135053.57113861386,"lower_bound":135028.17390204215,"upper_bound":135084.13745666863,"unit":"ns"},"mean":{"estimate":135250.18933626922,"lower_bound":135069.1442807078,"upper_bound":135581.5356556518,"unit":"ns"},"median":{"estimate":135069.0882145231,"lower_bound":135030.07295390707,"upper_bound":135096.7516891892,"unit":"ns"},"median_abs_dev":{"estimate":165.6244049992917,"lower_bound":113.83424400843954,"upper_bound":205.47735074755275,"unit":"ns"},"slope":{"estimate":135053.57113861386,"lower_bound":135028.17390204215,"upper_bound":135084.13745666863,"unit":"ns"},"change":{"mean":{"estimate":0.000853039601670158,"lower_bound":-0.0010059242031976224,"upper_bound":0.0037564621608411996,"unit":"%"},"median":{"estimate":0.00026711302015614,"lower_bound":-0.000153794186425249,"upper_bound":0.000574998391199788,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^16","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_16","iteration_count":[4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236,240,244,248,252,256,260,264,268,272,276,280,284,288,292,296,300,304,308,312,316,320,324,328,332,336,340,344,348,352,356,360,364,368,372,376,380,384,388,392,396,400],"measured_values":[1128513.0,2168399.0,3250036.0,4332615.0,5415464.0,6498659.0,7581791.0,8664992.0,9746817.0,10831393.0,11913556.0,12995746.0,14109868.0,15162761.0,16250126.0,17344828.0,18478092.0,19498215.0,20580640.0,21664280.0,22789546.0,23828505.0,24910161.0,25992807.0,27091872.0,28194991.0,29289406.0,30329732.0,31456316.0,32534613.0,33583585.0,34740393.0,35817525.0,36843146.0,38080359.0,39049680.0,40123825.0,41170057.0,42253442.0,43339685.0,44413032.0,45547358.0,46606063.0,47696418.0,48781311.0,49859126.0,50946719.0,52021630.0,53106920.0,54185882.0,55286210.0,56359895.0,57417858.0,58563852.0,59590281.0,60686795.0,61775455.0,62838328.0,63951682.0,65004735.0,66122965.0,67184207.0,68237054.0,69453540.0,70528669.0,71560583.0,72603644.0,73770024.0,74930124.0,75830987.0,77034261.0,78145951.0,79184805.0,80231088.0,81511128.0,82521529.0,83515064.0,84633142.0,85639204.0,86750708.0,87936098.0,88841445.0,89992736.0,91212598.0,92117139.0,93215565.0,94276813.0,95397821.0,96478505.0,97500866.0,98717570.0,99774331.0,100747985.0,101856459.0,102946886.0,104007603.0,105109155.0,106196263.0,107277436.0,108388681.0],"unit":"ns","throughput":[{"per_iteration":65536,"unit":"bytes"}],"typical":{"estimate":271041.795786907,"lower_bound":270992.5405758141,"upper_bound":271096.343602744,"unit":"ns"},"mean":{"estimate":271126.1451856473,"lower_bound":270981.0047596699,"upper_bound":271378.6286251196,"unit":"ns"},"median":{"estimate":270957.35356161697,"lower_bound":270909.1194029851,"upper_bound":271007.03651685396,"unit":"ns"},"median_abs_dev":{"estimate":200.89891518336827,"lower_bound":138.28118917662312,"upper_bound":253.2536229983228,"unit":"ns"},"slope":{"estimate":271041.795786907,"lower_bound":270992.5405758141,"upper_bound":271096.343602744,"unit":"ns"},"change":{"mean":{"estimate":-0.0006658245037917121,"lower_bound":-0.003435667416008181,"upper_bound":0.0012434209682237567,"unit":"%"},"median":{"estimate":0.0006038822609677474,"lower_bound":0.0002676268183264998,"upper_bound":0.0007931668900338362,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^17","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_17","iteration_count":[2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112,114,116,118,120,122,124,126,128,130,132,134,136,138,140,142,144,146,148,150,152,154,156,158,160,162,164,166,168,170,172,174,176,178,180,182,184,186,188,190,192,194,196,198,200],"measured_values":[1211598.0,2167467.0,3253710.0,4337024.0,5420699.0,6508285.0,7591427.0,8680110.0,9772229.0,10870493.0,11951517.0,13014982.0,14096356.0,15181561.0,16265682.0,17349080.0,18438088.0,19518567.0,20631767.0,21702882.0,22786507.0,23888592.0,25063780.0,26112191.0,27151788.0,28195277.0,29281523.0,30364542.0,31460972.0,32580002.0,33615310.0,34702946.0,35846335.0,36911035.0,37951727.0,39044162.0,40125160.0,41208463.0,42335938.0,43377008.0,44461183.0,45542932.0,46632246.0,47768169.0,48828805.0,49885298.0,50968823.0,52066357.0,53207887.0,54218528.0,55306535.0,56390227.0,57473124.0,58559789.0,59644377.0,60726226.0,61810085.0,62968881.0,63982998.0,65069018.0,66190397.0,67234079.0,68318482.0,69403022.0,70510524.0,71571988.0,72656228.0,73739671.0,74893307.0,75914099.0,77015844.0,78080758.0,79166580.0,80249177.0,81336702.0,82420407.0,83508033.0,84588889.0,85717334.0,86759594.0,87895812.0,88979482.0,90047284.0,91153978.0,92225720.0,93263910.0,94349643.0,95470860.0,96515823.0,97593862.0,98689733.0,99838009.0,100847311.0,101931236.0,103023571.0,104103727.0,105187525.0,106274090.0,107359687.0,108497254.0],"unit":"ns","throughput":[{"per_iteration":131072,"unit":"bytes"}],"typical":{"estimate":542334.4609782769,"lower_bound":542294.242723826,"upper_bound":542379.2897571236,"unit":"ns"},"mean":{"estimate":543050.5883994016,"lower_bound":542358.919587681,"upper_bound":544367.8005186459,"unit":"ns"},"median":{"estimate":542238.0884506376,"lower_bound":542226.4827645442,"upper_bound":542265.2268518519,"unit":"ns"},"median_abs_dev":{"estimate":73.13271228362177,"lower_bound":41.673981640641706,"upper_bound":134.03553998590792,"unit":"ns"},"slope":{"estimate":542334.4609782769,"lower_bound":542294.242723826,"upper_bound":542379.2897571236,"unit":"ns"},"change":{"mean":{"estimate":0.00017895945859391915,"lower_bound":-0.002011692918826077,"upper_bound":0.00336992042648731,"unit":"%"},"median":{"estimate":-0.00015628200128225966,"lower_bound":-0.0004233408752865042,"upper_bound":0.00003897765756954996,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^18","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_18","iteration_count":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100],"measured_values":[1155296.0,2177911.0,3287144.0,4345577.0,5430462.0,6519420.0,7607571.0,8690725.0,9776837.0,10864662.0,11953082.0,13043034.0,14126348.0,15209093.0,16295347.0,17432307.0,18474259.0,19559426.0,20646353.0,21767595.0,22815759.0,23910155.0,25039374.0,26083096.0,27157064.0,28252949.0,29381802.0,30419462.0,31505058.0,32603699.0,33691546.0,34826085.0,35937024.0,36944831.0,38021627.0,39148668.0,40194933.0,41293403.0,42410920.0,43453425.0,44574956.0,45626168.0,46737455.0,47858452.0,48946594.0,50035740.0,51113486.0,52154866.0,53230996.0,54365482.0,55400928.0,56547770.0,57594636.0,58674992.0,59823522.0,60851113.0,61990420.0,63014017.0,64220336.0,65213204.0,66335687.0,67411125.0,68464359.0,69550625.0,70652179.0,71739736.0,72797525.0,73927930.0,75097828.0,76095656.0,77167112.0,78254641.0,79358619.0,80410687.0,81517390.0,82607991.0,83727431.0,84809809.0,85822039.0,86956671.0,87994155.0,89149446.0,90281954.0,91375058.0,92396459.0,93568674.0,94547369.0,95635475.0,96754397.0,97813126.0,98909765.0,100111684.0,101056257.0,102147665.0,103299091.0,104353261.0,105508191.0,106508108.0,107590561.0,108678627.0],"unit":"ns","throughput":[{"per_iteration":262144,"unit":"bytes"}],"typical":{"estimate":1087078.698504507,"lower_bound":1086957.9100056905,"upper_bound":1087210.097142331,"unit":"ns"},"mean":{"estimate":1087816.4232493483,"lower_bound":1086983.3878692081,"upper_bound":1089317.0208262685,"unit":"ns"},"median":{"estimate":1086842.9798335468,"lower_bound":1086762.3556252178,"upper_bound":1086961.1484848484,"unit":"ns"},"median_abs_dev":{"estimate":559.7151312795553,"lower_bound":354.6893928698131,"upper_bound":750.5338783422295,"unit":"ns"},"slope":{"estimate":1087078.698504507,"lower_bound":1086957.9100056905,"upper_bound":1087210.097142331,"unit":"ns"},"change":{"mean":{"estimate":-0.0005033570503081286,"lower_bound":-0.002163359247760263,"upper_bound":0.0012578673931834482,"unit":"%"},"median":{"estimate":-0.0005165502539222766,"lower_bound":-0.0007460862563590798,"upper_bound":-0.00010250458872806956,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^19","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_19","iteration_count":[23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23],"measured_values":[50104021.0,50117503.0,50045085.0,50091105.0,50046045.0,50048283.0,50047062.0,50006332.0,49985459.0,50069752.0,50025673.0,50067069.0,50025965.0,49988740.0,49984202.0,49991764.0,49984281.0,49986749.0,49984812.0,49987427.0,49983941.0,50132978.0,49986484.0,49988297.0,49983616.0,49987587.0,49983859.0,49988589.0,49983931.0,49987340.0,49984729.0,49987798.0,49982626.0,50029561.0,49983734.0,49987198.0,49984198.0,49987122.0,49984016.0,49986737.0,49985566.0,49985010.0,49984788.0,49986428.0,49984852.0,49988614.0,49985080.0,49985958.0,49984505.0,49988207.0,49987737.0,50065426.0,49986993.0,49986264.0,50032123.0,49989030.0,49985462.0,49986887.0,50026315.0,49986874.0,49983487.0,49986218.0,49986904.0,49988674.0,49986887.0,49986763.0,49983934.0,49989657.0,49984499.0,49990126.0,50029202.0,49987990.0,49984449.0,49987855.0,49986640.0,50058618.0,49984172.0,49989207.0,49983668.0,49988526.0,49984377.0,49987999.0,49984916.0,49991055.0,49984999.0,49987263.0,49984379.0,49987767.0,49983630.0,49984813.0,50013366.0,50060151.0,50032446.0,49988362.0,49985895.0,49992202.0,49985720.0,49987508.0,49992058.0,49985744.0],"unit":"ns","throughput":[{"per_iteration":524288,"unit":"bytes"}],"typical":{"estimate":2173963.4413043465,"lower_bound":2173709.079108694,"upper_bound":2174247.864858696,"unit":"ns"},"mean":{"estimate":2173963.4413043465,"lower_bound":2173709.079108694,"upper_bound":2174247.864858696,"unit":"ns"},"median":{"estimate":2173354.782608696,"lower_bound":2173330.8913043477,"upper_bound":2173386.695652174,"unit":"ns"},"median_abs_dev":{"estimate":152.1276494733475,"lower_bound":114.6436544871278,"upper_bound":213.68777881513796,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0005502161328621025,"lower_bound":-0.0009257212289860094,"upper_bound":-0.00021657957880067723,"unit":"%"},"median":{"estimate":-0.00028555178753042476,"lower_bound":-0.0004892436089454222,"upper_bound":-0.00020874944173732146,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^20","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_20","iteration_count":[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12],"measured_values":[53120642.0,52559083.0,52535676.0,52558491.0,52546756.0,52532780.0,52543327.0,52626979.0,52603682.0,52535550.0,52550488.0,52530690.0,52552801.0,52533936.0,52544166.0,52539929.0,52553258.0,52544654.0,52544105.0,52550681.0,52552769.0,52537239.0,52565957.0,52637289.0,52555491.0,52534694.0,52561087.0,52572860.0,52566188.0,52634942.0,52563015.0,52551813.0,52522872.0,52551457.0,52555981.0,52559223.0,52542617.0,52543659.0,52551427.0,52791922.0,52570399.0,52592524.0,52541534.0,52548629.0,52526701.0,52535678.0,52554479.0,52539562.0,52558646.0,52546332.0,52531001.0,52551042.0,52549755.0,52555263.0,52548728.0,52537075.0,52554260.0,52548368.0,52538996.0,52548436.0,52537163.0,52672108.0,52600777.0,52637469.0,52581720.0,52571370.0,52573672.0,52605012.0,52612269.0,52607510.0,52632780.0,52551183.0,52619941.0,52555090.0,52612804.0,52645819.0,52591018.0,52543744.0,52610514.0,52573449.0,52600212.0,52607006.0,52645909.0,52567860.0,52701803.0,52602047.0,52618490.0,52558066.0,52643438.0,52550402.0,52648477.0,52609698.0,52642105.0,52548766.0,52622516.0,52534528.0,52622508.0,52535842.0,52574095.0,52648289.0],"unit":"ns","throughput":[{"per_iteration":1048576,"unit":"bytes"}],"typical":{"estimate":4381712.5441666655,"lower_bound":4380716.728125003,"upper_bound":4382991.447958335,"unit":"ns"},"mean":{"estimate":4381712.5441666655,"lower_bound":4380716.728125003,"upper_bound":4382991.447958335,"unit":"ns"},"median":{"estimate":4379644.666666666,"lower_bound":4379288.083333333,"upper_bound":4380558.916666666,"unit":"ns"},"median_abs_dev":{"estimate":2202.2169359035242,"lower_bound":1491.6191235180067,"upper_bound":3552.803736925355,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0002489404836114595,"lower_bound":-0.00013003085824111468,"upper_bound":0.0006449345136847909,"unit":"%"},"median":{"estimate":0.00013116368583832028,"lower_bound":-0.00008199182093409076,"upper_bound":0.000431825817794218,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^21","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_21","iteration_count":[6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6],"measured_values":[52647614.0,52507085.0,52505645.0,52517885.0,52498922.0,52540562.0,52513638.0,52530486.0,52510328.0,52515818.0,52490867.0,52529731.0,52510102.0,52521552.0,52490117.0,52589648.0,52525836.0,52521692.0,52505120.0,52519433.0,52534127.0,52506798.0,52549702.0,52508148.0,52509706.0,52518805.0,52530693.0,52549386.0,52554730.0,52514091.0,52577873.0,52598845.0,52555057.0,52524324.0,52508552.0,52511380.0,52521785.0,52509927.0,52534299.0,52503497.0,52543381.0,52506632.0,52513444.0,52552249.0,52510464.0,52501932.0,52559939.0,52511284.0,52505737.0,52499641.0,52573536.0,52494794.0,52533919.0,52494514.0,52540636.0,52560351.0,52527202.0,52503760.0,52517601.0,52495671.0,52536530.0,52544567.0,52493748.0,52514006.0,52508999.0,52502752.0,52532479.0,52512250.0,52576941.0,52540438.0,52541427.0,52494067.0,52494736.0,52556386.0,52535401.0,52539045.0,52512395.0,52540857.0,52602055.0,52508022.0,52491556.0,52558499.0,52515611.0,52486276.0,52516944.0,52500598.0,52511661.0,52494077.0,52522035.0,52574256.0,52531683.0,52602870.0,52547717.0,52544659.0,52508161.0,52510743.0,52540859.0,52627070.0,52518490.0,52533987.0],"unit":"ns","throughput":[{"per_iteration":2097152,"unit":"bytes"}],"typical":{"estimate":8754642.243333332,"lower_bound":8753684.179666666,"upper_bound":8755662.685083333,"unit":"ns"},"mean":{"estimate":8754642.243333332,"lower_bound":8753684.179666666,"upper_bound":8755662.685083333,"unit":"ns"},"median":{"estimate":8753107.916666666,"lower_bound":8752169.416666668,"upper_bound":8754955.166666666,"unit":"ns"},"median_abs_dev":{"estimate":3807.6873824014165,"lower_bound":2744.6632012738683,"upper_bound":4990.681700149448,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0011227998270126882,"lower_bound":-0.0015717897777931726,"upper_bound":-0.000754955431967555,"unit":"%"},"median":{"estimate":-0.0007664729491984046,"lower_bound":-0.0008871502598816194,"upper_bound":-0.0005610520907251004,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^22","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_22","iteration_count":[3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3],"measured_values":[52835359.0,52677302.0,52807349.0,52608002.0,52653457.0,52565089.0,52555817.0,52574314.0,52648792.0,52562499.0,52543042.0,52649950.0,52598874.0,52643451.0,52576215.0,52685712.0,52602191.0,52586629.0,52563905.0,52727625.0,52572530.0,52668593.0,52580307.0,52766896.0,52581352.0,52568677.0,52705035.0,52614061.0,52578189.0,52553039.0,52563347.0,52634380.0,52665240.0,52628295.0,52606677.0,52583160.0,52587198.0,52570959.0,52696442.0,52698548.0,52579749.0,52574205.0,52623278.0,52608095.0,52590571.0,52606525.0,52648597.0,52577740.0,52585370.0,52535434.0,52645756.0,52613440.0,52638152.0,52584874.0,52704914.0,52548465.0,52622695.0,52600522.0,52591362.0,52600218.0,52631228.0,52562721.0,52642118.0,52581906.0,52529128.0,52557471.0,52647046.0,52596289.0,52583026.0,52598466.0,52678900.0,52596063.0,52625870.0,52579007.0,52674495.0,52576015.0,52656981.0,52580194.0,52671518.0,52562466.0,52639637.0,52570627.0,52597117.0,52565752.0,52605531.0,52629529.0,52633425.0,52591281.0,52574390.0,52676804.0,52619737.0,52573300.0,52588669.0,52567080.0,52572000.0,52557482.0,52654797.0,52565281.0,52593084.0,52717373.0],"unit":"ns","throughput":[{"per_iteration":4194304,"unit":"bytes"}],"typical":{"estimate":17537974.21666666,"lower_bound":17534469.65975,"upper_bound":17541698.131999996,"unit":"ns"},"mean":{"estimate":17537974.21666666,"lower_bound":17534469.65975,"upper_bound":17541698.131999996,"unit":"ns"},"median":{"estimate":17532597.166666664,"lower_bound":17528761.333333336,"upper_bound":17536907.0,"unit":"ns"},"median_abs_dev":{"estimate":15126.226231455803,"lower_bound":9927.983623746739,"upper_bound":18808.609206076915,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0006544097358270884,"lower_bound":-0.001068640369583268,"upper_bound":-0.0002637849647283642,"unit":"%"},"median":{"estimate":-0.0005030854017044062,"lower_bound":-0.000887364098213772,"upper_bound":-0.00019495098981903158,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^23","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_23","iteration_count":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],"measured_values":[75650075.0,75634605.0,75618270.0,75558626.0,75530303.0,75547132.0,75517851.0,75506354.0,75458598.0,75466563.0,75504150.0,75552545.0,75529369.0,75443716.0,75552028.0,75497004.0,75592793.0,75669913.0,75564663.0,75550118.0,75521981.0,75550922.0,75487041.0,75463436.0,75549321.0,75500977.0,75513774.0,75506756.0,75624676.0,75504964.0,75536148.0,75520779.0,75542819.0,75488798.0,75481224.0,75504583.0,75523754.0,75546912.0,75611514.0,75467603.0,75476701.0,75474283.0,75604471.0,75693785.0,75481531.0,75633004.0,75583787.0,75591175.0,75586442.0,75773001.0,75758851.0,75633167.0,75673957.0,75727991.0,75645949.0,75622913.0,75593303.0,75624997.0,75644091.0,75596705.0,75579915.0,75593523.0,75665939.0,75754550.0,75745634.0,75538516.0,75608356.0,75680631.0,75705198.0,75640093.0,75689431.0,75689539.0,75679925.0,75610794.0,75676856.0,75675209.0,75505378.0,75575983.0,75593931.0,75603856.0,75670421.0,75776363.0,75632120.0,75671729.0,75682664.0,75621045.0,75615867.0,75712760.0,75633371.0,75587609.0,75634133.0,75690196.0,75667437.0,75569296.0,75590497.0,75606287.0,75580385.0,75571453.0,75704685.0,75639084.0],"unit":"ns","throughput":[{"per_iteration":8388608,"unit":"bytes"}],"typical":{"estimate":37797417.105,"lower_bound":37789680.073875,"upper_bound":37805194.39875,"unit":"ns"},"mean":{"estimate":37797417.105,"lower_bound":37789680.073875,"upper_bound":37805194.39875,"unit":"ns"},"median":{"estimate":37796706.5,"lower_bound":37787842.0,"upper_bound":37807933.5,"unit":"ns"},"median_abs_dev":{"estimate":44616.992957890034,"lower_bound":33628.999772965915,"upper_bound":56897.739189863205,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.008523041726895997,"lower_bound":-0.008864191873334166,"upper_bound":-0.008180649325211273,"unit":"%"},"median":{"estimate":-0.008383087226610075,"lower_bound":-0.008638510895283669,"upper_bound":-0.008014239794680189,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^24","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_24","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[76152176.0,75909078.0,76075905.0,75979768.0,76107328.0,75932995.0,75923765.0,76171571.0,76078019.0,75929282.0,75977598.0,75949339.0,75886745.0,75999102.0,76333484.0,76034814.0,75974746.0,75982110.0,75965121.0,75978841.0,75979557.0,76013883.0,75975972.0,76060182.0,76138961.0,76106835.0,76015976.0,75932107.0,75923388.0,76039781.0,75875732.0,75898292.0,75889206.0,75896065.0,75968838.0,75999500.0,75932727.0,75957329.0,75983881.0,76072257.0,76029829.0,75982205.0,76036242.0,75963297.0,76021490.0,76020980.0,75948198.0,75995860.0,76017278.0,76083429.0,76025472.0,75997223.0,75999331.0,75968335.0,75985307.0,75871319.0,76133050.0,76001996.0,75903259.0,76038909.0,75958346.0,76043891.0,76122620.0,75948970.0,75994121.0,75925892.0,75946998.0,75891826.0,75989452.0,75964255.0,75895680.0,75955229.0,75971707.0,75957315.0,75942482.0,75905470.0,75910886.0,76202488.0,76021534.0,75990897.0,75935240.0,75961522.0,75950587.0,76110961.0,75895505.0,75946259.0,75949947.0,76013930.0,76072216.0,75999594.0,75930915.0,75897056.0,76082627.0,76009432.0,75928282.0,75974931.0,75969343.0,75932380.0,75926160.0,75911708.0],"unit":"ns","throughput":[{"per_iteration":16777216,"unit":"bytes"}],"typical":{"estimate":75989639.19,"lower_bound":75974926.928,"upper_bound":76005265.36075,"unit":"ns"},"mean":{"estimate":75989639.19,"lower_bound":75974926.928,"upper_bound":76005265.36075,"unit":"ns"},"median":{"estimate":75976785.0,"lower_bound":75962888.5,"upper_bound":75991786.5,"unit":"ns"},"median_abs_dev":{"estimate":65679.17883396149,"lower_bound":47635.93715429306,"upper_bound":78625.24180412292,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.00839426349544703,"lower_bound":-0.008785356054066565,"upper_bound":-0.008020628016441659,"unit":"%"},"median":{"estimate":-0.008277920845129128,"lower_bound":-0.008651129650167011,"upper_bound":-0.007853172420568377,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^25","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_25","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[152411591.0,152564732.0,152263035.0,152511501.0,152379509.0,152705293.0,152398361.0,152288473.0,152269720.0,152290604.0,152380769.0,152413380.0,152215516.0,152267302.0,152329815.0,152438309.0,152456552.0,152504688.0,152614924.0,152380096.0,152595478.0,152456235.0,152600873.0,152687331.0,152409149.0,152327251.0,152406235.0,152714014.0,152893490.0,152503775.0,152394341.0,152531415.0,152605333.0,152384284.0,152312633.0,152542896.0,152342323.0,152748932.0,152282453.0,152404406.0,152527550.0,152460219.0,152548545.0,152345312.0,152527704.0,152423100.0,152562470.0,152333230.0,152749423.0,152317396.0,152673472.0,152370364.0,152620367.0,152610662.0,152532634.0,152573979.0,152381371.0,152570682.0,152561816.0,152391832.0,152282794.0,152450392.0,152292245.0,152402958.0,152346406.0,152389955.0,152436957.0,152180923.0,152205122.0,152504595.0,152311090.0,152269650.0,152233174.0,152317365.0,152257663.0,152279121.0,152498324.0,153335003.0,152298182.0,152311247.0,152458991.0,152584634.0,152349477.0,152277718.0,152510635.0,152184256.0,152879816.0,152333127.0,152258110.0,152372756.0,152245696.0,152153739.0,152356572.0,152212416.0,152389574.0,152414538.0,152355159.0,152262071.0,152246629.0,152388527.0],"unit":"ns","throughput":[{"per_iteration":33554432,"unit":"bytes"}],"typical":{"estimate":152431467.52,"lower_bound":152398137.26375,"upper_bound":152467530.847,"unit":"ns"},"mean":{"estimate":152431467.52,"lower_bound":152398137.26375,"upper_bound":152467530.847,"unit":"ns"},"median":{"estimate":152393086.5,"lower_bound":152372756.0,"upper_bound":152425168.5,"unit":"ns"},"median_abs_dev":{"estimate":164065.99568724632,"lower_bound":112370.40328502658,"upper_bound":189919.57402825356,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0030440249088373728,"lower_bound":-0.003420262587149086,"upper_bound":-0.002676226331978543,"unit":"%"},"median":{"estimate":-0.0029650377853647214,"lower_bound":-0.0034009593090541523,"upper_bound":-0.0025986409197617456,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"contract_root","benchmarks":["contract_root/root_from_bytecode_size_2^01","contract_root/root_from_bytecode_size_2^02","contract_root/root_from_bytecode_size_2^03","contract_root/root_from_bytecode_size_2^04","contract_root/root_from_bytecode_size_2^05","contract_root/root_from_bytecode_size_2^06","contract_root/root_from_bytecode_size_2^07","contract_root/root_from_bytecode_size_2^08","contract_root/root_from_bytecode_size_2^09","contract_root/root_from_bytecode_size_2^10","contract_root/root_from_bytecode_size_2^11","contract_root/root_from_bytecode_size_2^12","contract_root/root_from_bytecode_size_2^13","contract_root/root_from_bytecode_size_2^14","contract_root/root_from_bytecode_size_2^15","contract_root/root_from_bytecode_size_2^16","contract_root/root_from_bytecode_size_2^17","contract_root/root_from_bytecode_size_2^18","contract_root/root_from_bytecode_size_2^19","contract_root/root_from_bytecode_size_2^20","contract_root/root_from_bytecode_size_2^21","contract_root/root_from_bytecode_size_2^22","contract_root/root_from_bytecode_size_2^23","contract_root/root_from_bytecode_size_2^24","contract_root/root_from_bytecode_size_2^25"],"report_directory":"/root/fuel-core/target/criterion/reports/contract_root"} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^01","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_01","iteration_count":[220,440,660,880,1100,1320,1540,1760,1980,2200,2420,2640,2860,3080,3300,3520,3740,3960,4180,4400,4620,4840,5060,5280,5500,5720,5940,6160,6380,6600,6820,7040,7260,7480,7700,7920,8140,8360,8580,8800,9020,9240,9460,9680,9900,10120,10340,10560,10780,11000,11220,11440,11660,11880,12100,12320,12540,12760,12980,13200,13420,13640,13860,14080,14300,14520,14740,14960,15180,15400,15620,15840,16060,16280,16500,16720,16940,17160,17380,17600,17820,18040,18260,18480,18700,18920,19140,19360,19580,19800,20020,20240,20460,20680,20900,21120,21340,21560,21780,22000],"measured_values":[1109136.0,1976666.0,2968375.0,3958482.0,5225874.0,6002227.0,6953889.0,7986891.0,8995266.0,9953784.0,10965523.0,11960248.0,12916668.0,13869368.0,14834298.0,15823837.0,16817290.0,17886071.0,18843558.0,19781605.0,20769309.0,22022192.0,23002138.0,23919910.0,24891499.0,25749617.0,26750318.0,27710704.0,28695814.0,29670970.0,30725263.0,31650742.0,32641164.0,33634055.0,34625760.0,35607825.0,36616810.0,37692525.0,38574553.0,39593020.0,40550385.0,41551803.0,42574483.0,43518263.0,44530788.0,45502204.0,46497021.0,47536170.0,48484521.0,49502960.0,50443682.0,51448541.0,52597975.0,53424919.0,54415897.0,55389019.0,56574550.0,57600411.0,58474058.0,59346537.0,60339842.0,61362108.0,62363224.0,63369833.0,64294106.0,65354858.0,66269052.0,67294824.0,68274007.0,69251835.0,70221090.0,71276360.0,72243109.0,73229165.0,74255374.0,75217020.0,76249828.0,77158695.0,78374694.0,79153247.0,80171668.0,81145658.0,82155635.0,83161339.0,84088046.0,85133892.0,86173682.0,87059018.0,88264324.0,89043350.0,90083568.0,91257074.0,92000662.0,93053100.0,93996931.0,95026857.0,96047048.0,96997770.0,97969516.0,99039697.0],"unit":"ns","throughput":[{"per_iteration":2,"unit":"bytes"}],"typical":{"estimate":4500.027906189126,"lower_bound":4499.107841629825,"upper_bound":4501.073077295865,"unit":"ns"},"mean":{"estimate":4511.446661190179,"lower_bound":4502.464033400303,"upper_bound":4525.19074655552,"unit":"ns"},"median":{"estimate":4498.656933940423,"lower_bound":4497.936415245814,"upper_bound":4499.723684519615,"unit":"ns"},"median_abs_dev":{"estimate":3.638329948954792,"lower_bound":2.6249726071411477,"upper_bound":5.2375401636183705,"unit":"ns"},"slope":{"estimate":4500.027906189126,"lower_bound":4499.107841629825,"upper_bound":4501.073077295865,"unit":"ns"},"change":{"mean":{"estimate":0.0006485899088304325,"lower_bound":-0.0018476397466983233,"upper_bound":0.003757970176344632,"unit":"%"},"median":{"estimate":-0.0010928452245509979,"lower_bound":-0.0013300624079315426,"upper_bound":-0.0007305890216440236,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^02","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_02","iteration_count":[147,294,441,588,735,882,1029,1176,1323,1470,1617,1764,1911,2058,2205,2352,2499,2646,2793,2940,3087,3234,3381,3528,3675,3822,3969,4116,4263,4410,4557,4704,4851,4998,5145,5292,5439,5586,5733,5880,6027,6174,6321,6468,6615,6762,6909,7056,7203,7350,7497,7644,7791,7938,8085,8232,8379,8526,8673,8820,8967,9114,9261,9408,9555,9702,9849,9996,10143,10290,10437,10584,10731,10878,11025,11172,11319,11466,11613,11760,11907,12054,12201,12348,12495,12642,12789,12936,13083,13230,13377,13524,13671,13818,13965,14112,14259,14406,14553,14700],"measured_values":[1059777.0,2026551.0,2980934.0,4053047.0,5109467.0,6005382.0,7009239.0,8001107.0,8935961.0,9929263.0,10939325.0,11923708.0,12896597.0,13906879.0,14878876.0,15873280.0,16942668.0,17926540.0,18848659.0,19857345.0,20837066.0,21827105.0,22851834.0,23884229.0,24929350.0,25875715.0,26788744.0,27843313.0,28810458.0,29951784.0,30902719.0,31870518.0,32739129.0,33763076.0,34794777.0,35723507.0,36820214.0,37789623.0,38885081.0,39866438.0,40837851.0,41800734.0,42746723.0,43795419.0,44832495.0,45795400.0,46892076.0,47772864.0,48883537.0,49646155.0,50650403.0,51795008.0,52660145.0,53641793.0,54669926.0,55583310.0,56632554.0,57603490.0,58563076.0,59523529.0,60577247.0,61517389.0,62550564.0,63510631.0,64528659.0,65543115.0,66619232.0,67542772.0,68591506.0,69523436.0,70525912.0,71619403.0,72585310.0,73462307.0,74580886.0,75637243.0,76634935.0,77534810.0,78607900.0,79394976.0,80586126.0,81453725.0,82423171.0,83511930.0,84460701.0,85623850.0,86421356.0,87465818.0,88645712.0,89452405.0,90384671.0,91344981.0,92634360.0,93489773.0,94552667.0,95335491.0,96393535.0,97471298.0,98587753.0,99543705.0],"unit":"ns","throughput":[{"per_iteration":4,"unit":"bytes"}],"typical":{"estimate":6763.162592452971,"lower_bound":6761.13747157014,"upper_bound":6765.187343939757,"unit":"ns"},"mean":{"estimate":6773.215097031198,"lower_bound":6764.790551794848,"upper_bound":6784.986398177905,"unit":"ns"},"median":{"estimate":6762.2987168111395,"lower_bound":6758.897959183673,"upper_bound":6765.363588319682,"unit":"ns"},"median_abs_dev":{"estimate":11.943222673775262,"lower_bound":8.461332959711017,"upper_bound":14.904019939482737,"unit":"ns"},"slope":{"estimate":6763.162592452971,"lower_bound":6761.13747157014,"upper_bound":6765.187343939757,"unit":"ns"},"change":{"mean":{"estimate":-0.006131191447113826,"lower_bound":-0.00896544737320358,"upper_bound":-0.0037704585445331204,"unit":"%"},"median":{"estimate":-0.005776706904435769,"lower_bound":-0.006302541242434012,"upper_bound":-0.0052718291768539816,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^03","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_03","iteration_count":[67,134,201,268,335,402,469,536,603,670,737,804,871,938,1005,1072,1139,1206,1273,1340,1407,1474,1541,1608,1675,1742,1809,1876,1943,2010,2077,2144,2211,2278,2345,2412,2479,2546,2613,2680,2747,2814,2881,2948,3015,3082,3149,3216,3283,3350,3417,3484,3551,3618,3685,3752,3819,3886,3953,4020,4087,4154,4221,4288,4355,4422,4489,4556,4623,4690,4757,4824,4891,4958,5025,5092,5159,5226,5293,5360,5427,5494,5561,5628,5695,5762,5829,5896,5963,6030,6097,6164,6231,6298,6365,6432,6499,6566,6633,6700],"measured_values":[1061334.0,1993034.0,2982022.0,3975740.0,4971863.0,5977747.0,6966304.0,7975447.0,8953561.0,9972734.0,10943504.0,11964992.0,12943184.0,14000920.0,14915127.0,15931016.0,16921351.0,17921832.0,18890135.0,19915357.0,20888723.0,21897233.0,22884191.0,23922610.0,24887403.0,25853321.0,26912920.0,27848461.0,28843676.0,29854974.0,30854870.0,31822052.0,32850907.0,33908796.0,34842442.0,35842812.0,36826275.0,37839303.0,38874744.0,39831295.0,40810038.0,41801686.0,42766601.0,43753568.0,44759753.0,45818093.0,46793523.0,47730310.0,48766712.0,49774165.0,50830301.0,51779921.0,52789023.0,53721901.0,54776765.0,55852331.0,56743552.0,57803104.0,58763261.0,59716543.0,60770746.0,61718004.0,62881522.0,63738312.0,64788675.0,65701842.0,66735750.0,67643617.0,68691476.0,69697871.0,70649719.0,71751926.0,72660181.0,73618505.0,74690032.0,75658739.0,76651393.0,77612593.0,78772688.0,79682569.0,80616945.0,81597671.0,82660249.0,83625835.0,84621005.0,85594263.0,86567932.0,87643047.0,88578189.0,89572710.0,90673137.0,91563260.0,92583738.0,93556974.0,94497069.0,95586562.0,96534640.0,97649386.0,98687504.0,99886146.0],"unit":"ns","throughput":[{"per_iteration":8,"unit":"bytes"}],"typical":{"estimate":14862.005093330452,"lower_bound":14858.676840436448,"upper_bound":14865.9350012068,"unit":"ns"},"mean":{"estimate":14870.396110327049,"lower_bound":14858.470365620627,"upper_bound":14891.741185953782,"unit":"ns"},"median":{"estimate":14858.203396551078,"lower_bound":14855.894704559394,"upper_bound":14860.578642501776,"unit":"ns"},"median_abs_dev":{"estimate":10.315249048781563,"lower_bound":6.923538925644175,"upper_bound":15.035002696202154,"unit":"ns"},"slope":{"estimate":14862.005093330452,"lower_bound":14858.676840436448,"upper_bound":14865.9350012068,"unit":"ns"},"change":{"mean":{"estimate":-0.0143287246674898,"lower_bound":-0.01699743218042391,"upper_bound":-0.01216953143654769,"unit":"%"},"median":{"estimate":-0.014010522022442018,"lower_bound":-0.014322351814254786,"upper_bound":-0.0136913218136,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^04","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_04","iteration_count":[33,66,99,132,165,198,231,264,297,330,363,396,429,462,495,528,561,594,627,660,693,726,759,792,825,858,891,924,957,990,1023,1056,1089,1122,1155,1188,1221,1254,1287,1320,1353,1386,1419,1452,1485,1518,1551,1584,1617,1650,1683,1716,1749,1782,1815,1848,1881,1914,1947,1980,2013,2046,2079,2112,2145,2178,2211,2244,2277,2310,2343,2376,2409,2442,2475,2508,2541,2574,2607,2640,2673,2706,2739,2772,2805,2838,2871,2904,2937,2970,3003,3036,3069,3102,3135,3168,3201,3234,3267,3300],"measured_values":[1098754.0,2082056.0,3055229.0,4074621.0,5112349.0,6115865.0,7136026.0,8153803.0,9176854.0,10198810.0,11224718.0,12235874.0,13252149.0,14279049.0,15298281.0,16320401.0,17340687.0,18353150.0,19374719.0,20397524.0,21503398.0,22410352.0,23417177.0,24440724.0,25471029.0,26500087.0,27508418.0,28544374.0,29589308.0,30574685.0,31586583.0,32605976.0,33766166.0,34694248.0,35731840.0,36694678.0,37710528.0,38693262.0,39725054.0,40821618.0,41783350.0,42877471.0,43877404.0,44816634.0,45849396.0,46860421.0,47860568.0,48932653.0,49877437.0,50947495.0,51917737.0,52962266.0,54029732.0,55071904.0,56016365.0,57005690.0,58028223.0,59042436.0,60038383.0,61068784.0,62093507.0,63119520.0,64203009.0,65200852.0,66339460.0,67255882.0,68289578.0,69299708.0,70334823.0,71353607.0,72372718.0,73327519.0,74369356.0,75392537.0,76464400.0,77497646.0,78418007.0,79752156.0,80489537.0,81469622.0,82582066.0,83600900.0,84608426.0,85667619.0,86601478.0,87664082.0,88888730.0,89687913.0,90717366.0,91769026.0,92815263.0,93924542.0,94819713.0,95834964.0,96881454.0,97855803.0,98853082.0,100021981.0,101029376.0,101909546.0],"unit":"ns","throughput":[{"per_iteration":16,"unit":"bytes"}],"typical":{"estimate":30891.15119246253,"lower_bound":30884.170872657956,"upper_bound":30898.388952369132,"unit":"ns"},"mean":{"estimate":30921.622874767356,"lower_bound":30888.125672849972,"upper_bound":30978.67891888821,"unit":"ns"},"median":{"estimate":30888.51688762626,"lower_bound":30882.222816399288,"upper_bound":30892.003021284272,"unit":"ns"},"median_abs_dev":{"estimate":24.99949966980515,"lower_bound":18.698211147702406,"upper_bound":31.55360179994915,"unit":"ns"},"slope":{"estimate":30891.15119246253,"lower_bound":30884.170872657956,"upper_bound":30898.388952369132,"unit":"ns"},"change":{"mean":{"estimate":-0.008864683931306572,"lower_bound":-0.011123129149187196,"upper_bound":-0.006500819937982996,"unit":"%"},"median":{"estimate":-0.008569675135197907,"lower_bound":-0.008902592131929343,"upper_bound":-0.008310228609292092,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^05","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_05","iteration_count":[16,32,48,64,80,96,112,128,144,160,176,192,208,224,240,256,272,288,304,320,336,352,368,384,400,416,432,448,464,480,496,512,528,544,560,576,592,608,624,640,656,672,688,704,720,736,752,768,784,800,816,832,848,864,880,896,912,928,944,960,976,992,1008,1024,1040,1056,1072,1088,1104,1120,1136,1152,1168,1184,1200,1216,1232,1248,1264,1280,1296,1312,1328,1344,1360,1376,1392,1408,1424,1440,1456,1472,1488,1504,1520,1536,1552,1568,1584,1600],"measured_values":[1170071.0,2068803.0,3105968.0,4139307.0,5172253.0,6208206.0,7241443.0,8276191.0,9310111.0,10345273.0,11384879.0,12412098.0,13447360.0,14482293.0,15520245.0,16549790.0,17581020.0,18669790.0,19653662.0,20688334.0,21718869.0,22756145.0,23790900.0,24819806.0,25854155.0,26889255.0,27963025.0,28962501.0,29989517.0,31020638.0,32055331.0,33089006.0,34172591.0,35155798.0,36195057.0,37230154.0,38261419.0,39296241.0,40367473.0,41356015.0,42395709.0,43429571.0,44465032.0,45546880.0,46546800.0,47569779.0,48600560.0,49672119.0,50654055.0,51689498.0,52757992.0,53816572.0,54881331.0,55839415.0,56874982.0,57976080.0,58945472.0,59981764.0,61059317.0,62262861.0,63090140.0,64145599.0,65213449.0,66185980.0,67260437.0,68249720.0,69316238.0,70413637.0,71362659.0,72387519.0,73791968.0,74553753.0,75521707.0,76582996.0,77594316.0,78620282.0,79650450.0,80690842.0,81758171.0,82718379.0,83773802.0,84908611.0,85843994.0,86873436.0,87880669.0,88954025.0,90012326.0,91035131.0,92100766.0,93079649.0,94130432.0,95149780.0,96197613.0,97212224.0,98308403.0,99294646.0,100371871.0,101347535.0,102408691.0,103429244.0],"unit":"ns","throughput":[{"per_iteration":32,"unit":"bytes"}],"typical":{"estimate":64661.154243941186,"lower_bound":64651.25070311111,"upper_bound":64674.124042713585,"unit":"ns"},"mean":{"estimate":64745.404490927496,"lower_bound":64653.93238896309,"upper_bound":64920.79097319045,"unit":"ns"},"median":{"estimate":64649.60338031534,"lower_bound":64643.256784952304,"upper_bound":64653.78223039216,"unit":"ns"},"median_abs_dev":{"estimate":23.709309589862944,"lower_bound":17.42842594810788,"upper_bound":31.096861258812606,"unit":"ns"},"slope":{"estimate":64661.154243941186,"lower_bound":64651.25070311111,"upper_bound":64674.124042713585,"unit":"ns"},"change":{"mean":{"estimate":-0.012626457183593343,"lower_bound":-0.015258787744121085,"upper_bound":-0.009235649991166637,"unit":"%"},"median":{"estimate":-0.012831551100692451,"lower_bound":-0.0130767357028645,"upper_bound":-0.012618135556268117,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^06","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_06","iteration_count":[8,16,24,32,40,48,56,64,72,80,88,96,104,112,120,128,136,144,152,160,168,176,184,192,200,208,216,224,232,240,248,256,264,272,280,288,296,304,312,320,328,336,344,352,360,368,376,384,392,400,408,416,424,432,440,448,456,464,472,480,488,496,504,512,520,528,536,544,552,560,568,576,584,592,600,608,616,624,632,640,648,656,664,672,680,688,696,704,712,720,728,736,744,752,760,768,776,784,792,800],"measured_values":[1093954.0,2131302.0,3198426.0,4264870.0,5525017.0,6408145.0,7467191.0,8532419.0,9595607.0,10706130.0,11729246.0,12795364.0,13864072.0,14929356.0,16011591.0,17061572.0,18154369.0,19191999.0,20284420.0,21323921.0,22387425.0,23492434.0,24513087.0,25618329.0,26668153.0,27717570.0,28784714.0,29870589.0,30912742.0,31982559.0,33062345.0,34137234.0,35181170.0,36339058.0,37310404.0,38401945.0,39458869.0,40505231.0,41583199.0,42645777.0,43752507.0,44862949.0,45841432.0,46904402.0,47978628.0,49066732.0,50103942.0,51167525.0,52238383.0,53326564.0,54373348.0,55440016.0,56499874.0,57611805.0,58624454.0,59689378.0,60849013.0,61932102.0,62898123.0,63955655.0,65069060.0,66109689.0,67160488.0,68238881.0,69282652.0,70372403.0,71443812.0,72487489.0,73605433.0,74626726.0,75701035.0,76831302.0,77849519.0,78877478.0,80164734.0,81026331.0,82098309.0,83134643.0,84245384.0,85288658.0,86498646.0,87461478.0,88473563.0,90039740.0,90693436.0,91754783.0,92791095.0,93937531.0,94936048.0,95960779.0,97070877.0,98050221.0,99168238.0,100246849.0,101388494.0,102314568.0,103395856.0,104473554.0,105548690.0,106599902.0],"unit":"ns","throughput":[{"per_iteration":64,"unit":"bytes"}],"typical":{"estimate":133320.90371434906,"lower_bound":133292.1592586318,"upper_bound":133358.94007893658,"unit":"ns"},"mean":{"estimate":133406.71837778215,"lower_bound":133313.99312678236,"upper_bound":133541.52347048558,"unit":"ns"},"median":{"estimate":133283.0539772727,"lower_bound":133273.41284722224,"upper_bound":133306.98005319148,"unit":"ns"},"median_abs_dev":{"estimate":52.1014201687577,"lower_bound":37.507975071720125,"upper_bound":73.1749655914054,"unit":"ns"},"slope":{"estimate":133320.90371434906,"lower_bound":133292.1592586318,"upper_bound":133358.94007893658,"unit":"ns"},"change":{"mean":{"estimate":-0.013025643523905006,"lower_bound":-0.014755109104463926,"upper_bound":-0.011591654192375274,"unit":"%"},"median":{"estimate":-0.012459764789159333,"lower_bound":-0.012771864205037065,"upper_bound":-0.012097072491212946,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^07","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_07","iteration_count":[4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236,240,244,248,252,256,260,264,268,272,276,280,284,288,292,296,300,304,308,312,316,320,324,328,332,336,340,344,348,352,356,360,364,368,372,376,380,384,388,392,396,400],"measured_values":[1056570.0,2057262.0,3089464.0,4117230.0,5145358.0,6176477.0,7204864.0,8234773.0,9263281.0,10294920.0,11320724.0,12352313.0,13381624.0,14409401.0,15461000.0,16468172.0,17501274.0,18611504.0,19555964.0,20584684.0,21619190.0,22694738.0,23673045.0,24703941.0,25751603.0,26789484.0,27791820.0,28813523.0,29840632.0,30900562.0,31930584.0,32948852.0,34014283.0,34986194.0,36047041.0,37048901.0,38125742.0,39129012.0,40467166.0,41215498.0,42204991.0,43234949.0,44282879.0,45289982.0,46369421.0,47349475.0,48449296.0,49436482.0,50441761.0,51535184.0,52563917.0,53525755.0,54577636.0,55619204.0,56679059.0,57675372.0,58703391.0,59758908.0,60751072.0,61774476.0,62778983.0,63870208.0,64843964.0,65935681.0,67040701.0,67987366.0,68986371.0,70071344.0,71097191.0,72144834.0,73132839.0,74154752.0,75217741.0,76174520.0,77194454.0,78327133.0,79327864.0,80294785.0,81386852.0,82379105.0,83625369.0,84402057.0,85524604.0,86489518.0,87488704.0,88654227.0,89542175.0,90623479.0,91600295.0,92756220.0,93690062.0,94808039.0,95999405.0,96756831.0,97900658.0,98892359.0,99863871.0,100859810.0,101910164.0,103022124.0],"unit":"ns","throughput":[{"per_iteration":128,"unit":"bytes"}],"typical":{"estimate":257511.89922491502,"lower_bound":257461.53386664865,"upper_bound":257568.33992056132,"unit":"ns"},"mean":{"estimate":257559.30319381412,"lower_bound":257453.7497022604,"upper_bound":257724.880803244,"unit":"ns"},"median":{"estimate":257431.2068256579,"lower_bound":257371.67647058822,"upper_bound":257488.99594907407,"unit":"ns"},"median_abs_dev":{"estimate":170.5995921264293,"lower_bound":104.1231814983882,"upper_bound":217.21014831130202,"unit":"ns"},"slope":{"estimate":257511.89922491502,"lower_bound":257461.53386664865,"upper_bound":257568.33992056132,"unit":"ns"},"change":{"mean":{"estimate":-0.012959262994089005,"lower_bound":-0.014975575024722753,"upper_bound":-0.01166675489713076,"unit":"%"},"median":{"estimate":-0.012486840573302072,"lower_bound":-0.01277609950536751,"upper_bound":-0.0121048472328803,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^08","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_08","iteration_count":[2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112,114,116,118,120,122,124,126,128,130,132,134,136,138,140,142,144,146,148,150,152,154,156,158,160,162,164,166,168,170,172,174,176,178,180,182,184,186,188,190,192,194,196,198,200],"measured_values":[1110694.0,2011935.0,3012748.0,4024550.0,5025382.0,6028327.0,7039567.0,8065817.0,9065425.0,10088368.0,11057475.0,12060709.0,13068475.0,14086566.0,15103919.0,16119210.0,17109831.0,18135758.0,19109440.0,20111662.0,21161684.0,22147911.0,23106991.0,24130769.0,25177041.0,26175749.0,27138939.0,28141856.0,29229547.0,30194139.0,31179490.0,32184245.0,33252970.0,34173978.0,35198698.0,36266424.0,37232107.0,38328179.0,39292606.0,40213325.0,41257376.0,42219033.0,43261220.0,44454464.0,45254073.0,46327468.0,47254789.0,48300487.0,49477918.0,50369750.0,51344103.0,52429435.0,53270856.0,54575288.0,55291724.0,56368507.0,57289678.0,58330986.0,59461480.0,60361026.0,61379173.0,62353224.0,63394555.0,64386584.0,65453153.0,66418056.0,67490610.0,68451389.0,69433452.0,70369406.0,71470980.0,72512747.0,73481576.0,74497272.0,75520013.0,76464495.0,77504316.0,78512252.0,79520840.0,80511391.0,81494964.0,82558075.0,83468604.0,84511898.0,85484323.0,86588854.0,87493875.0,88575224.0,89545197.0,90453667.0,91576303.0,92491482.0,93514912.0,94484089.0,95569544.0,96524482.0,97649809.0,98558887.0,99630367.0,100622901.0],"unit":"ns","throughput":[{"per_iteration":256,"unit":"bytes"}],"typical":{"estimate":503139.42127087334,"lower_bound":503047.7664304913,"upper_bound":503240.08557858656,"unit":"ns"},"mean":{"estimate":503709.2029070827,"lower_bound":503105.0639871643,"upper_bound":504819.6110414706,"unit":"ns"},"median":{"estimate":503130.73090277775,"lower_bound":503033.59970238095,"upper_bound":503249.32085561496,"unit":"ns"},"median_abs_dev":{"estimate":456.27963763482734,"lower_bound":370.8818634550582,"upper_bound":622.4895506040239,"unit":"ns"},"slope":{"estimate":503139.42127087334,"lower_bound":503047.7664304913,"upper_bound":503240.08557858656,"unit":"ns"},"change":{"mean":{"estimate":-0.012671869414307202,"lower_bound":-0.0157291588829112,"upper_bound":-0.00963829606744781,"unit":"%"},"median":{"estimate":-0.012083288750338261,"lower_bound":-0.01230695872574239,"upper_bound":-0.011836236250985177,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^09","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_09","iteration_count":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100],"measured_values":[1155396.0,2055504.0,3039255.0,4056894.0,5068380.0,6077976.0,7096939.0,8133530.0,9121748.0,10145210.0,11156511.0,12172191.0,13182460.0,14196042.0,15209100.0,16228011.0,17246769.0,18242779.0,19256669.0,20270135.0,21300265.0,22283448.0,23326008.0,24329278.0,25624232.0,26991604.0,27438843.0,28389187.0,29617669.0,30706665.0,31425597.0,32611408.0,33751288.0,34524105.0,35996183.0,36513139.0,37524167.0,38495419.0,39520400.0,40546664.0,41565352.0,42564362.0,43586998.0,44596540.0,45614384.0,46625238.0,47637231.0,48632398.0,49676064.0,50691502.0,51706802.0,52697508.0,53826831.0,54733222.0,55735984.0,56788636.0,57769019.0,58797522.0,59796230.0,60821366.0,61864743.0,62843870.0,63871079.0,64881287.0,65894907.0,66893302.0,67952012.0,68945076.0,69879042.0,70829736.0,71851483.0,72882772.0,73882347.0,74966782.0,75917288.0,76899206.0,77918804.0,78911541.0,79946932.0,80961891.0,81993384.0,83075811.0,83997920.0,84978984.0,86032455.0,87012929.0,88046533.0,89034659.0,90078351.0,91119004.0,92089056.0,93075001.0,94133201.0,95139295.0,96204884.0,97135924.0,98152205.0,99221606.0,100170918.0,101196515.0],"unit":"ns","throughput":[{"per_iteration":512,"unit":"bytes"}],"typical":{"estimate":1012854.9232688044,"lower_bound":1012594.5996719995,"upper_bound":1013189.0332175094,"unit":"ns"},"mean":{"estimate":1015694.791586506,"lower_bound":1013735.2357026902,"upper_bound":1018990.7664819144,"unit":"ns"},"median":{"estimate":1013568.1457840819,"lower_bound":1013437.1904761905,"upper_bound":1013735.1479885057,"unit":"ns"},"median_abs_dev":{"estimate":995.3202593269783,"lower_bound":717.3450303123782,"upper_bound":1567.6677612159592,"unit":"ns"},"slope":{"estimate":1012854.9232688044,"lower_bound":1012594.5996719995,"upper_bound":1013189.0332175094,"unit":"ns"},"change":{"mean":{"estimate":-0.01238788290000481,"lower_bound":-0.01564817900476306,"upper_bound":-0.008567543928040261,"unit":"%"},"median":{"estimate":-0.013019383643334326,"lower_bound":-0.013389107256161381,"upper_bound":-0.012668247405724475,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^10","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_10","iteration_count":[25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25],"measured_values":[52045903.0,51854563.0,51876361.0,51852805.0,52099665.0,51906205.0,51824067.0,51832493.0,51921124.0,51846185.0,51871873.0,51840612.0,51865976.0,51830389.0,51814920.0,51855268.0,51845253.0,51871912.0,51812628.0,51840778.0,51831975.0,51983586.0,51907376.0,51877339.0,51848285.0,51823456.0,52258297.0,51811507.0,51864441.0,51831070.0,51817769.0,51809671.0,51875365.0,51826967.0,51808536.0,51809168.0,51853144.0,51894949.0,51852138.0,51841358.0,51803274.0,51852795.0,51847510.0,51819240.0,51855436.0,51819621.0,51847062.0,51819756.0,51816923.0,51842919.0,51815144.0,51847639.0,51835074.0,51812495.0,51825228.0,51829605.0,51835024.0,51885844.0,51839507.0,51865164.0,52016920.0,51848486.0,51821978.0,51841673.0,51826138.0,51900493.0,51816940.0,51807342.0,51830914.0,51964117.0,51827719.0,51810029.0,51846385.0,51846633.0,51833276.0,51836484.0,52036439.0,51825495.0,51864611.0,51848356.0,51811358.0,51845307.0,51881024.0,51947997.0,51886259.0,51814154.0,51877321.0,51823067.0,51862329.0,51841564.0,51846351.0,51805381.0,51850341.0,51797616.0,51845965.0,51846253.0,51858765.0,51822170.0,51847409.0,51910082.0],"unit":"ns","throughput":[{"per_iteration":1024,"unit":"bytes"}],"typical":{"estimate":2074368.7112000003,"lower_bound":2073894.4130999998,"upper_bound":2074920.53616,"unit":"ns"},"mean":{"estimate":2074368.7112000003,"lower_bound":2073894.4130999998,"upper_bound":2074920.53616,"unit":"ns"},"median":{"estimate":2073825.44,"lower_bound":2073459.36,"upper_bound":2073913.88,"unit":"ns"},"median_abs_dev":{"estimate":1208.2596745490475,"lower_bound":887.3056909471511,"upper_bound":1572.2676200866424,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.014151208559103123,"lower_bound":-0.014534593023958334,"upper_bound":-0.013749170784135413,"unit":"%"},"median":{"estimate":-0.014250004832514707,"lower_bound":-0.014513982324049036,"upper_bound":-0.013830991168071738,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^11","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_11","iteration_count":[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12],"measured_values":[50197762.0,50151044.0,50171957.0,50157511.0,50191660.0,50182742.0,50208864.0,50175317.0,50135756.0,50177386.0,50178276.0,50173720.0,50279862.0,50155070.0,50169643.0,50152830.0,50170989.0,50147920.0,50194327.0,50149951.0,50167766.0,50153657.0,50157869.0,50150202.0,50148035.0,50183767.0,50188066.0,50178663.0,50153902.0,50191676.0,50195805.0,50155426.0,50170286.0,50152389.0,50190593.0,50142416.0,50277476.0,50168256.0,50158508.0,50153066.0,50152681.0,50161435.0,50270095.0,50124120.0,50178402.0,50135945.0,50146929.0,50151284.0,50141335.0,50228127.0,50127355.0,50220304.0,50245687.0,50151632.0,50143892.0,50185658.0,50143275.0,50209605.0,50178332.0,50151915.0,50132944.0,50164270.0,50153319.0,50193414.0,50150129.0,50137531.0,50180147.0,50206212.0,50150656.0,50204021.0,50147448.0,50191925.0,50103885.0,50175046.0,50159081.0,50218092.0,50143324.0,50139489.0,50147599.0,50190633.0,50156938.0,50166024.0,50144591.0,50180072.0,50138733.0,50134110.0,50139684.0,50161572.0,50161331.0,50155825.0,50164424.0,50180931.0,50249576.0,50169432.0,50216891.0,50164185.0,50164543.0,50169423.0,50148874.0,50229858.0],"unit":"ns","throughput":[{"per_iteration":2048,"unit":"bytes"}],"typical":{"estimate":4180912.1675,"lower_bound":4180403.622458333,"upper_bound":4181453.174624998,"unit":"ns"},"mean":{"estimate":4180912.1675,"lower_bound":4180403.622458333,"upper_bound":4181453.174624998,"unit":"ns"},"median":{"estimate":4180352.291666667,"lower_bound":4179652.0833333335,"upper_bound":4180859.666666667,"unit":"ns"},"median_abs_dev":{"estimate":1983.718764781952,"lower_bound":1464.0056990085882,"upper_bound":2607.213828712817,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.012501329739710632,"lower_bound":-0.012866932450429802,"upper_bound":-0.012165137683714272,"unit":"%"},"median":{"estimate":-0.012145714187308476,"lower_bound":-0.012439367609972884,"upper_bound":-0.011910252136933419,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^12","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_12","iteration_count":[6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6],"measured_values":[50587344.0,50575510.0,50501716.0,50576067.0,50567150.0,50531438.0,50528753.0,50628994.0,50529187.0,50564281.0,50459018.0,50553286.0,50476715.0,50468899.0,50488211.0,50529658.0,50519007.0,50517236.0,50534102.0,50559136.0,50518538.0,50526772.0,50499882.0,50543342.0,50472569.0,50492605.0,50522986.0,50528753.0,50605166.0,50518865.0,50520082.0,50560324.0,50559795.0,50498309.0,50499454.0,50537603.0,50496421.0,50505591.0,50535360.0,50553148.0,50479203.0,50496739.0,50509617.0,50547409.0,50538155.0,50518128.0,50584002.0,50592475.0,50539340.0,50550851.0,50533982.0,50526803.0,50665604.0,50505944.0,50521394.0,50556126.0,50563660.0,50515610.0,50561175.0,50511402.0,50551174.0,50503983.0,50502507.0,50526407.0,50486238.0,50550994.0,50529112.0,50530886.0,50657045.0,50557561.0,50508453.0,50548388.0,50567885.0,50488186.0,50512441.0,50464884.0,50529590.0,50494560.0,50471470.0,50496087.0,50508920.0,50500933.0,50489728.0,50491618.0,50522854.0,50581687.0,50485840.0,50500096.0,50539528.0,50525255.0,50495569.0,50586240.0,50542596.0,50531280.0,50491039.0,50565434.0,50582762.0,50499455.0,50507855.0,50519209.0],"unit":"ns","throughput":[{"per_iteration":4096,"unit":"bytes"}],"typical":{"estimate":8421591.068333331,"lower_bound":8420370.483333332,"upper_bound":8422873.14095833,"unit":"ns"},"mean":{"estimate":8421591.068333331,"lower_bound":8420370.483333332,"upper_bound":8422873.14095833,"unit":"ns"},"median":{"estimate":8421098.25,"lower_bound":8419756.333333334,"upper_bound":8421880.0,"unit":"ns"},"median_abs_dev":{"estimate":6443.1323856124545,"lower_bound":4717.4972112481555,"upper_bound":7434.25046801383,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.013004228829643916,"lower_bound":-0.013499600455471286,"upper_bound":-0.012538867992903348,"unit":"%"},"median":{"estimate":-0.012227891885082331,"lower_bound":-0.012653963614609132,"upper_bound":-0.011953386787708742,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^13","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_13","iteration_count":[3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3],"measured_values":[50714722.0,50676543.0,50637374.0,50666433.0,50710058.0,50686089.0,50680467.0,50630308.0,50671697.0,50715092.0,50723209.0,50637599.0,50666446.0,50670489.0,50649999.0,50636475.0,50643865.0,50683056.0,50746469.0,50641400.0,50656544.0,50674201.0,50677401.0,50907785.0,50829476.0,50683015.0,50649331.0,50637477.0,50679329.0,50636189.0,50648086.0,50709625.0,50722771.0,50665877.0,50784111.0,50648015.0,50709048.0,50637433.0,50744040.0,50658646.0,50691402.0,50625793.0,50731668.0,50722728.0,50779528.0,50739886.0,50791531.0,50682616.0,50663291.0,50718579.0,50696886.0,50644121.0,50659840.0,50734410.0,50647169.0,50664060.0,50641142.0,50647840.0,50710302.0,50775514.0,50715815.0,50656504.0,50677710.0,50702073.0,50696667.0,50670928.0,50655303.0,50721592.0,50647945.0,50634130.0,50656557.0,50712890.0,50709873.0,50667184.0,50699280.0,50635947.0,50695617.0,50692668.0,50704968.0,50716259.0,50699422.0,50709448.0,50635511.0,50759131.0,50618402.0,50725423.0,50645926.0,50774485.0,50652852.0,50696792.0,50662768.0,50772631.0,50797652.0,50718259.0,50662342.0,50678717.0,50787934.0,50657218.0,50663392.0,50627247.0],"unit":"ns","throughput":[{"per_iteration":8192,"unit":"bytes"}],"typical":{"estimate":16896766.52666666,"lower_bound":16893605.3915,"upper_bound":16900151.98808333,"unit":"ns"},"mean":{"estimate":16896766.52666666,"lower_bound":16893605.3915,"upper_bound":16900151.98808333,"unit":"ns"},"median":{"estimate":16893007.666666668,"lower_bound":16888815.333333332,"upper_bound":16898889.0,"unit":"ns"},"median_abs_dev":{"estimate":15348.122027518206,"lower_bound":12076.518085598946,"upper_bound":18073.88207912077,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.012587143295951342,"lower_bound":-0.012958912212549769,"upper_bound":-0.012247762021416215,"unit":"%"},"median":{"estimate":-0.012513765010961575,"lower_bound":-0.012873997304243137,"upper_bound":-0.012125581423113128,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^14","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_14","iteration_count":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],"measured_values":[67808822.0,67755934.0,67827116.0,67685486.0,67748861.0,67684700.0,67763931.0,68949131.0,67921403.0,67657901.0,67756698.0,67611704.0,67681243.0,67694865.0,67781747.0,67850741.0,67688140.0,67730508.0,67762322.0,67847327.0,67733321.0,67746606.0,67720756.0,67916222.0,67988209.0,67834201.0,67878838.0,67813509.0,67851165.0,67832214.0,67874004.0,67606490.0,67730558.0,67773520.0,67704257.0,67829660.0,67808583.0,67675098.0,67852994.0,67849769.0,67855718.0,67739999.0,67792985.0,67805387.0,68923525.0,67894268.0,67707225.0,67872906.0,67809274.0,67895255.0,67779539.0,67718208.0,67830285.0,67725946.0,67732138.0,67858727.0,67680322.0,67597419.0,67773328.0,67712526.0,67696606.0,68017339.0,67774595.0,67661410.0,67681048.0,67886209.0,67819728.0,67768807.0,67957495.0,67716663.0,67774406.0,67659273.0,67681087.0,67697987.0,67774970.0,67719803.0,67777936.0,67846681.0,69244652.0,67787674.0,67770521.0,67655520.0,67704149.0,67705797.0,67651555.0,67690085.0,67697035.0,67901132.0,67778946.0,67738709.0,67782599.0,67838975.0,67672656.0,67805539.0,67691497.0,67698619.0,67725731.0,67773708.0,67678404.0,67807382.0],"unit":"ns","throughput":[{"per_iteration":16384,"unit":"bytes"}],"typical":{"estimate":33903232.31,"lower_bound":33883073.9295,"upper_bound":33928571.3865,"unit":"ns"},"mean":{"estimate":33903232.31,"lower_bound":33883073.9295,"upper_bound":33928571.3865,"unit":"ns"},"median":{"estimate":33885962.25,"lower_bound":33868330.0,"upper_bound":33890873.5,"unit":"ns"},"median_abs_dev":{"estimate":49933.225813508034,"lower_bound":36952.32174396515,"upper_bound":57130.136735737324,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.011156090699536936,"lower_bound":-0.011963762974639445,"upper_bound":-0.010376684943945598,"unit":"%"},"median":{"estimate":-0.010987179696162364,"lower_bound":-0.011584996045587014,"upper_bound":-0.010737930405799734,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^15","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_15","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[69234803.0,68644037.0,68408236.0,68478076.0,69380427.0,68612940.0,68603638.0,68682116.0,68476938.0,68629828.0,68625630.0,68485426.0,68538002.0,68600079.0,68575786.0,68670277.0,68471510.0,68575730.0,68487506.0,68607980.0,68369063.0,68707309.0,68464796.0,68387832.0,68610638.0,68483144.0,68737373.0,68721841.0,68471768.0,68457130.0,68550032.0,68520433.0,68635645.0,68503501.0,68534874.0,68513854.0,68615089.0,68684460.0,68566390.0,68645975.0,68379464.0,68609408.0,68502000.0,68451112.0,68551274.0,68728162.0,68521377.0,68413652.0,68567062.0,68339976.0,68487743.0,68493809.0,68453089.0,68492574.0,68622756.0,68389021.0,68652379.0,68526357.0,68468632.0,68456126.0,68660087.0,68540203.0,68472866.0,68515768.0,68510848.0,68890988.0,68602795.0,68520584.0,68558053.0,68532304.0,68492710.0,68517322.0,68562851.0,68515750.0,68497035.0,68543776.0,68686080.0,68609518.0,68627231.0,68495806.0,68536449.0,68418826.0,68718221.0,68549426.0,68560649.0,68506107.0,68652639.0,68570340.0,68427270.0,68520427.0,68506741.0,68684540.0,68396407.0,68773904.0,68643779.0,68487826.0,68578951.0,68486728.0,68707814.0,68448370.0],"unit":"ns","throughput":[{"per_iteration":32768,"unit":"bytes"}],"typical":{"estimate":68566040.74,"lower_bound":68539634.828,"upper_bound":68596203.7145,"unit":"ns"},"mean":{"estimate":68566040.74,"lower_bound":68539634.828,"upper_bound":68596203.7145,"unit":"ns"},"median":{"estimate":68537225.5,"lower_bound":68515768.0,"upper_bound":68566390.0,"unit":"ns"},"median_abs_dev":{"estimate":97946.4846611023,"lower_bound":69204.80157136917,"upper_bound":119375.2804456651,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.01958041790254772,"lower_bound":-0.020553364190442194,"upper_bound":-0.01869997373776999,"unit":"%"},"median":{"estimate":-0.018710697308939928,"lower_bound":-0.019918625332301487,"upper_bound":-0.018016665538100884,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^16","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_16","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[146002963.0,147830715.0,145670903.0,145989500.0,147534412.0,145782414.0,145834497.0,145549187.0,145787394.0,145532997.0,145666052.0,145700694.0,145759093.0,147893861.0,146564834.0,146140902.0,145530237.0,145666700.0,145842520.0,145781998.0,147748357.0,145684945.0,145835351.0,145567149.0,145435752.0,145680020.0,145886464.0,145750628.0,147671929.0,145802938.0,145379140.0,145565537.0,146135893.0,146066472.0,147463224.0,145664121.0,145286641.0,145330194.0,145408882.0,145608867.0,145450610.0,145887512.0,145581083.0,145460373.0,145605762.0,145248266.0,145893485.0,145850404.0,147633934.0,147339182.0,147120790.0,147246268.0,147041994.0,147187322.0,147213693.0,147543581.0,147157265.0,147675803.0,147537734.0,147618363.0,147266103.0,147313963.0,147476386.0,147326035.0,147124800.0,147243507.0,147510189.0,145901798.0,146101623.0,145904039.0,145972133.0,145807056.0,145994941.0,147273714.0,147658270.0,147578085.0,145685743.0,146067187.0,147887157.0,147034863.0,145834995.0,147620583.0,145500923.0,145405945.0,145244965.0,145824970.0,145908741.0,147742037.0,145615028.0,145689627.0,145914949.0,145950350.0,146216540.0,147474668.0,145835774.0,145775866.0,145553608.0,145741923.0,147827611.0,145492352.0],"unit":"ns","throughput":[{"per_iteration":65536,"unit":"bytes"}],"typical":{"estimate":146326268.48,"lower_bound":146160768.70975,"upper_bound":146495376.37524998,"unit":"ns"},"mean":{"estimate":146326268.48,"lower_bound":146160768.70975,"upper_bound":146495376.37524998,"unit":"ns"},"median":{"estimate":145897641.5,"lower_bound":145820776.5,"upper_bound":146066472.0,"unit":"ns"},"median_abs_dev":{"estimate":513341.3452863693,"lower_bound":343746.06712728745,"upper_bound":895029.2955100536,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.01803938065141253,"lower_bound":-0.01971710747762722,"upper_bound":-0.01640325459783154,"unit":"%"},"median":{"estimate":-0.019406926108724742,"lower_bound":-0.020316407738499298,"upper_bound":-0.018387195170346444,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^17","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_17","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[298962472.0,297623835.0,297423522.0,297706582.0,299175923.0,297574699.0,297712475.0,297446562.0,297320763.0,298162888.0,297079797.0,297579486.0,297567030.0,296982250.0,297826929.0,297407824.0,296344041.0,297364348.0,297491024.0,297796484.0,297279602.0,297509256.0,297327854.0,297905344.0,297136397.0,297254910.0,297512037.0,297340051.0,297394774.0,297448812.0,297116671.0,297504846.0,296649498.0,296902820.0,297652768.0,297961873.0,297144817.0,297362466.0,296975921.0,298235477.0,297067261.0,298021146.0,297732044.0,297507376.0,296957043.0,297234938.0,297998380.0,297769167.0,297402556.0,297786729.0,298487119.0,297896079.0,297972731.0,297711730.0,297807958.0,298377512.0,297953377.0,297346495.0,298335706.0,298043642.0,297049009.0,297973580.0,297837990.0,298441448.0,297947862.0,297937346.0,297705023.0,298171812.0,297787214.0,298374672.0,297211582.0,297788997.0,297807603.0,297560698.0,297387031.0,297391608.0,297622553.0,297237454.0,297890255.0,298326976.0,297814087.0,297741168.0,296737042.0,297148958.0,297663726.0,297225311.0,297799798.0,297744104.0,297090173.0,297658241.0,297033803.0,297377187.0,297211535.0,297876588.0,297808944.0,297725169.0,297406352.0,298481322.0,297746315.0,298376165.0],"unit":"ns","throughput":[{"per_iteration":131072,"unit":"bytes"}],"typical":{"estimate":297626908.18,"lower_bound":297536913.69325,"upper_bound":297719169.437,"unit":"ns"},"mean":{"estimate":297626908.18,"lower_bound":297536913.69325,"upper_bound":297719169.437,"unit":"ns"},"median":{"estimate":297638301.5,"lower_bound":297499200.0,"upper_bound":297741168.0,"unit":"ns"},"median_abs_dev":{"estimate":407558.57846438885,"lower_bound":330858.49272608757,"upper_bound":510694.01477336854,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.015271692227376121,"lower_bound":-0.016021617449299745,"upper_bound":-0.014525181169009766,"unit":"%"},"median":{"estimate":-0.015117374430620223,"lower_bound":-0.016937927270203712,"upper_bound":-0.013321947827481487,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^18","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_18","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[600807619.0,601522310.0,603026054.0,601073191.0,601703602.0,600606613.0,600690448.0,601739332.0,603305814.0,602897390.0,601656476.0,601641377.0,601805240.0,601860681.0,602220525.0,601242865.0,600989844.0,601816363.0,601893544.0,600917473.0,601341911.0,600565621.0,600644649.0,601064410.0,601207749.0,601727967.0,602307762.0,601532630.0,602023811.0,601736302.0,604110071.0,601492103.0,602247312.0,600779897.0,601667174.0,601485576.0,600876270.0,601980922.0,601295771.0,602313861.0,601287108.0,602413926.0,601007677.0,601015204.0,600773477.0,602015715.0,601208808.0,601082838.0,600775126.0,600653495.0,600514921.0,599880423.0,601147223.0,602263305.0,600137200.0,601199057.0,602974118.0,602183218.0,601151761.0,601367496.0,600980137.0,601680926.0,606242422.0,600646112.0,601298898.0,601560340.0,601712299.0,601587928.0,604316687.0,602902529.0,602843299.0,601466561.0,601573713.0,602240979.0,602380257.0,601399157.0,601847095.0,602555620.0,603907030.0,603109770.0,602394104.0,601934663.0,603606774.0,602280423.0,601834408.0,603105485.0,601124135.0,600711683.0,601804170.0,602304879.0,600743864.0,601723958.0,601673586.0,601717806.0,601875955.0,603819711.0,602830536.0,601411225.0,601753658.0,601887811.0],"unit":"ns","throughput":[{"per_iteration":262144,"unit":"bytes"}],"typical":{"estimate":601776612.19,"lower_bound":601591981.3255,"upper_bound":601971604.9682499,"unit":"ns"},"mean":{"estimate":601776612.19,"lower_bound":601591981.3255,"upper_bound":601971604.9682499,"unit":"ns"},"median":{"estimate":601677256.0,"lower_bound":601492103.0,"upper_bound":601804170.0,"unit":"ns"},"median_abs_dev":{"estimate":827916.442501545,"lower_bound":572992.2726273537,"upper_bound":968840.5351996422,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.015553272448275313,"lower_bound":-0.01602393687307166,"upper_bound":-0.015105558658443142,"unit":"%"},"median":{"estimate":-0.015529072977407132,"lower_bound":-0.01595947793460495,"upper_bound":-0.015112926942669969,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^19","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_19","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[1232004046.0,1231822687.0,1234407461.0,1230533640.0,1231181473.0,1230256132.0,1230206946.0,1230683252.0,1230751328.0,1230951174.0,1230829996.0,1230913525.0,1233746520.0,1236956172.0,1232012419.0,1232320489.0,1232423363.0,1231985081.0,1231028188.0,1231799449.0,1230915600.0,1232468829.0,1231568693.0,1230141055.0,1229751787.0,1232080852.0,1234975061.0,1232699506.0,1231108466.0,1230295423.0,1230414816.0,1233985834.0,1230435927.0,1231228180.0,1230679163.0,1230556128.0,1232482905.0,1231596782.0,1230066162.0,1234176299.0,1232736207.0,1230956173.0,1230759561.0,1231692564.0,1230287606.0,1230852514.0,1230132781.0,1230941302.0,1230201480.0,1232449100.0,1231578299.0,1230696903.0,1232861950.0,1231706194.0,1230983207.0,1231460021.0,1230070440.0,1229911155.0,1232583043.0,1230055865.0,1229873851.0,1232300130.0,1231535409.0,1229432204.0,1232041523.0,1229957486.0,1229819268.0,1231281964.0,1231495530.0,1230334356.0,1232244494.0,1230972035.0,1230702938.0,1229692492.0,1230990231.0,1229935391.0,1229744874.0,1231293719.0,1231058802.0,1232005470.0,1231227137.0,1232731527.0,1231460107.0,1230819328.0,1231439619.0,1232712139.0,1231437702.0,1230681017.0,1231042009.0,1230333615.0,1231433146.0,1231002645.0,1229828642.0,1231636673.0,1230623652.0,1230439937.0,1231220341.0,1231520633.0,1228891910.0,1234120658.0],"unit":"ns","throughput":[{"per_iteration":524288,"unit":"bytes"}],"typical":{"estimate":1231326717.78,"lower_bound":1231087125.9177501,"upper_bound":1231583255.3315,"unit":"ns"},"mean":{"estimate":1231326717.78,"lower_bound":1231087125.9177501,"upper_bound":1231583255.3315,"unit":"ns"},"median":{"estimate":1231050405.5,"lower_bound":1230915600.0,"upper_bound":1231437702.0,"unit":"ns"},"median_abs_dev":{"estimate":1062164.2731428146,"lower_bound":773241.8619722128,"upper_bound":1342470.5545663834,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.001273461735313397,"lower_bound":0.0008705066878671619,"upper_bound":0.0016704407816398592,"unit":"%"},"median":{"estimate":0.0012780791347759557,"lower_bound":0.0007633737909451543,"upper_bound":0.0018314925976155028,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^20","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_20","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[2482038195.0,2487310764.0,2490299641.0,2486756232.0,2481596527.0,2482955696.0,2484855853.0,2484084676.0,2482462712.0,2484925677.0,2490710077.0,2484776336.0,2490964738.0,2484147901.0,2482716195.0,2490107790.0,2486792419.0,2486327556.0,2483734300.0,2484946391.0,2490736117.0,2491219750.0,2484286236.0,2488478392.0,2492058252.0,2485241981.0,2482492616.0,2485954944.0,2485716389.0,2486118827.0,2485125506.0,2482290499.0,2487112812.0,2482845774.0,2481317678.0,2489089478.0,2485437677.0,2484990387.0,2485278597.0,2486765725.0,2493666331.0,2488162854.0,2484680544.0,2485565389.0,2482776528.0,2486217392.0,2486609352.0,2487019227.0,2483079456.0,2485341869.0,2482203499.0,2488301652.0,2485704991.0,2492260028.0,2486697570.0,2491363523.0,2482096119.0,2480520258.0,2483224788.0,2484016175.0,2483229557.0,2486819536.0,2482180842.0,2486484461.0,2484767123.0,2483819843.0,2484330540.0,2484879239.0,2483516938.0,2483596033.0,2487206683.0,2480968421.0,2481047642.0,2483812471.0,2483463350.0,2485346965.0,2485569842.0,2487485833.0,2488165724.0,2485692621.0,2480469222.0,2485176904.0,2491762098.0,2485839927.0,2489144044.0,2486923943.0,2485769096.0,2485115036.0,2481418134.0,2484636116.0,2490225986.0,2484797720.0,2488846562.0,2486569446.0,2488423219.0,2485866746.0,2484335463.0,2482742960.0,2479269569.0,2482681117.0],"unit":"ns","throughput":[{"per_iteration":1048576,"unit":"bytes"}],"typical":{"estimate":2485569718.3,"lower_bound":2484999637.24625,"upper_bound":2486154034.63725,"unit":"ns"},"mean":{"estimate":2485569718.3,"lower_bound":2484999637.24625,"upper_bound":2486154034.63725,"unit":"ns"},"median":{"estimate":2485260289.0,"lower_bound":2484797720.0,"upper_bound":2485778158.0,"unit":"ns"},"median_abs_dev":{"estimate":2596246.7896074057,"lower_bound":2008540.4535412788,"upper_bound":3531518.2962030172,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0012243430993792437,"lower_bound":0.0008766776086790495,"upper_bound":0.00160179749405776,"unit":"%"},"median":{"estimate":0.0009631106147460766,"lower_bound":0.0007076718528606918,"upper_bound":0.0014468569039700618,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"state_root","benchmarks":["state_root/state_root_from_slots_2^01","state_root/state_root_from_slots_2^02","state_root/state_root_from_slots_2^03","state_root/state_root_from_slots_2^04","state_root/state_root_from_slots_2^05","state_root/state_root_from_slots_2^06","state_root/state_root_from_slots_2^07","state_root/state_root_from_slots_2^08","state_root/state_root_from_slots_2^09","state_root/state_root_from_slots_2^10","state_root/state_root_from_slots_2^11","state_root/state_root_from_slots_2^12","state_root/state_root_from_slots_2^13","state_root/state_root_from_slots_2^14","state_root/state_root_from_slots_2^15","state_root/state_root_from_slots_2^16","state_root/state_root_from_slots_2^17","state_root/state_root_from_slots_2^18","state_root/state_root_from_slots_2^19","state_root/state_root_from_slots_2^20"],"report_directory":"/root/fuel-core/target/criterion/reports/state_root"} +{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_928","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_928","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[74343312.0,73687508.0,74260110.0,74874102.0,74725889.0,73691499.0,74018196.0,73688069.0,74281936.0,74060986.0,76973859.0,73443085.0,76420051.0,73682734.0,74416918.0,74350054.0,74086056.0,73973054.0,74273514.0,73927574.0,74064931.0,74606910.0,79630561.0,74738270.0,74231285.0,74151373.0,74480229.0,73875117.0,74516595.0,74175539.0,74912143.0,77434288.0,76398067.0,74810070.0,73901274.0,73996027.0,73985137.0,74564504.0,74018778.0,75385997.0,74089421.0,74310192.0,73566980.0,74903945.0,74610071.0,77199900.0,75462988.0,73957325.0,74526711.0,74744620.0,74505668.0,74722672.0,73905042.0,74132269.0,74391832.0,73602797.0,74404491.0,74653984.0,74536999.0,74618559.0,74603220.0,73808443.0,73744686.0,74384014.0,74198955.0,74565509.0,74402789.0,74380069.0,74247931.0,75153712.0,73786774.0,74313378.0,74839123.0,73903331.0,74185888.0,74448595.0,74188821.0,74343736.0,74040351.0,74625050.0,74397224.0,74374248.0,74358501.0,74408626.0,74677579.0,76262814.0,73956449.0,74359689.0,74181640.0,73556650.0,74255477.0,74505048.0,74202958.0,74266168.0,73334277.0,74667618.0,73909631.0,74120953.0,74430752.0,73631349.0],"unit":"ns","throughput":[{"per_iteration":928,"unit":"bytes"}],"typical":{"estimate":74479240.93,"lower_bound":74318405.32325,"upper_bound":74665707.05875,"unit":"ns"},"mean":{"estimate":74479240.93,"lower_bound":74318405.32325,"upper_bound":74665707.05875,"unit":"ns"},"median":{"estimate":74343524.0,"lower_bound":74225444.5,"upper_bound":74402789.0,"unit":"ns"},"median_abs_dev":{"estimate":418140.6357765198,"lower_bound":325247.7784506978,"upper_bound":533359.4101309776,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.012568555634073553,"lower_bound":-0.015814998641057957,"upper_bound":-0.009651665649291248,"unit":"%"},"median":{"estimate":-0.01305186988333673,"lower_bound":-0.015261896321532076,"upper_bound":-0.01070107916795282,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_1440","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_1440","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[74272362.0,74504609.0,74794096.0,74626233.0,74730671.0,74082035.0,76675930.0,75678736.0,75029046.0,75034486.0,74385439.0,74107891.0,74404637.0,74275185.0,74724937.0,74085730.0,74463698.0,74639962.0,74294077.0,74686477.0,73504008.0,74065744.0,74438831.0,74661783.0,74623244.0,74241403.0,74608019.0,74080480.0,74603039.0,74273345.0,74293218.0,74418523.0,74163805.0,74087170.0,74791292.0,73835038.0,74612787.0,74006860.0,74216857.0,74685215.0,74666533.0,74168864.0,74592479.0,74501055.0,74333749.0,74292078.0,74560579.0,73921702.0,74062318.0,74885031.0,73782514.0,74092111.0,74692304.0,74071608.0,74249882.0,74643218.0,74267295.0,75268717.0,74457937.0,74727994.0,74249151.0,74315370.0,74734751.0,74716717.0,74852755.0,74686513.0,73730560.0,74305482.0,74359441.0,74678548.0,75117021.0,73776125.0,75656900.0,78254956.0,76310231.0,74715759.0,74275317.0,74249572.0,74013607.0,74110348.0,74307848.0,74362893.0,74660806.0,74523027.0,74009687.0,73544883.0,74760573.0,74259115.0,74049375.0,74916602.0,74152657.0,73989294.0,74533991.0,74315221.0,74517172.0,73954935.0,74940799.0,74677858.0,74891726.0,74824522.0],"unit":"ns","throughput":[{"per_iteration":1440,"unit":"bytes"}],"typical":{"estimate":74512469.74,"lower_bound":74402548.26550001,"upper_bound":74640336.86175,"unit":"ns"},"mean":{"estimate":74512469.74,"lower_bound":74402548.26550001,"upper_bound":74640336.86175,"unit":"ns"},"median":{"estimate":74428677.0,"lower_bound":74304649.0,"upper_bound":74592479.0,"unit":"ns"},"median_abs_dev":{"estimate":388026.0651111603,"lower_bound":315148.86340498924,"upper_bound":465973.01742732525,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.00844318585206616,"lower_bound":-0.01024431719675903,"upper_bound":-0.006365453782935397,"unit":"%"},"median":{"estimate":-0.008695029893710293,"lower_bound":-0.010614823641854822,"upper_bound":-0.00637454784319802,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_2464","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_2464","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[74856497.0,74380420.0,74020919.0,74559292.0,75190434.0,74528242.0,76681795.0,74383118.0,74323378.0,74077228.0,74671909.0,74122290.0,74358231.0,74787173.0,74370487.0,73999384.0,74653271.0,74186659.0,74252133.0,74540125.0,74708738.0,74166277.0,74547882.0,74556729.0,74211867.0,75367640.0,73922602.0,74562793.0,75317542.0,74228616.0,74738208.0,75022656.0,74355117.0,74105267.0,73925663.0,74589087.0,74878205.0,74564638.0,74823673.0,76431232.0,74012143.0,74671448.0,74960648.0,74170926.0,74769625.0,75282243.0,74789869.0,74997551.0,74801660.0,74071821.0,74704545.0,74109961.0,76458112.0,75040303.0,74900086.0,74486616.0,74408237.0,74803117.0,74459066.0,74681027.0,74467396.0,74471015.0,74488361.0,74797122.0,74375553.0,74990516.0,74453676.0,76508600.0,74664453.0,75090581.0,74485864.0,75130025.0,74706164.0,74136894.0,75204406.0,75058033.0,74417003.0,75111212.0,75047949.0,74955199.0,74824966.0,75387111.0,73966358.0,74538459.0,75150486.0,75219885.0,74584432.0,74677884.0,74469995.0,74861737.0,74260993.0,74322129.0,76510484.0,74762151.0,75195482.0,74656429.0,74561661.0,73984139.0,74838293.0,74771390.0],"unit":"ns","throughput":[{"per_iteration":2464,"unit":"bytes"}],"typical":{"estimate":74706509.07,"lower_bound":74603129.72,"upper_bound":74819116.38374999,"unit":"ns"},"mean":{"estimate":74706509.07,"lower_bound":74603129.72,"upper_bound":74819116.38374999,"unit":"ns"},"median":{"estimate":74654850.0,"lower_bound":74540125.0,"upper_bound":74738208.0,"unit":"ns"},"median_abs_dev":{"estimate":417841.1505818367,"lower_bound":302495.6139296293,"upper_bound":535806.608180031,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.01301072589353014,"lower_bound":-0.015117449014612924,"upper_bound":-0.0109878368178262,"unit":"%"},"median":{"estimate":-0.012692047437666831,"lower_bound":-0.015138597007289256,"upper_bound":-0.010512107691475201,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_4512","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_4512","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[75263452.0,75762353.0,80765519.0,75222375.0,74273136.0,74716313.0,74931742.0,74575771.0,74923868.0,74742785.0,74898224.0,75381238.0,74561386.0,75277803.0,75350702.0,74868792.0,74551164.0,75001046.0,74583540.0,74624079.0,74827553.0,75479248.0,74544772.0,75005315.0,74855615.0,75122414.0,74843060.0,74581848.0,74847880.0,75331187.0,74334228.0,74738867.0,74469779.0,74810826.0,74756144.0,75666167.0,74619758.0,74459593.0,74828464.0,74554654.0,75016832.0,74925649.0,74759412.0,74511941.0,74907152.0,73990889.0,75298062.0,74828053.0,75027770.0,75165206.0,74597798.0,74918500.0,74651762.0,74384347.0,75231637.0,75085717.0,74289404.0,74388001.0,74688426.0,74467812.0,74634281.0,75062810.0,74256232.0,75276905.0,74687252.0,80317700.0,74682378.0,74383239.0,74500489.0,75181233.0,74895287.0,74714545.0,74485273.0,75145174.0,74587082.0,74894753.0,74448338.0,75441241.0,74736608.0,74796168.0,74710862.0,75316397.0,74656041.0,74863714.0,74474925.0,74771870.0,74399003.0,74359246.0,74802511.0,74326998.0,74907254.0,74390939.0,75316677.0,74999088.0,74311119.0,74804036.0,74889014.0,74434774.0,74450191.0,74937258.0],"unit":"ns","throughput":[{"per_iteration":4512,"unit":"bytes"}],"typical":{"estimate":74913359.35,"lower_bound":74767301.055,"upper_bound":75104966.709,"unit":"ns"},"mean":{"estimate":74913359.35,"lower_bound":74767301.055,"upper_bound":75104966.709,"unit":"ns"},"median":{"estimate":74799339.5,"lower_bound":74701485.5,"upper_bound":74863714.0,"unit":"ns"},"median_abs_dev":{"estimate":345730.4530620575,"lower_bound":259890.87978601456,"upper_bound":466993.78750920296,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0006872355622651316,"lower_bound":-0.003155155352171079,"upper_bound":0.0017678361587563569,"unit":"%"},"median":{"estimate":-0.0021233215571061503,"lower_bound":-0.003782808046295938,"upper_bound":-0.0005101732787357038,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_8608","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_8608","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[75610854.0,75400115.0,75092304.0,75387380.0,75811277.0,75475687.0,75112304.0,75042599.0,75515889.0,75450145.0,75192102.0,75249338.0,75339487.0,74871788.0,79849167.0,77241381.0,75173356.0,74732761.0,75269306.0,75257401.0,75003582.0,74915351.0,74978656.0,74866746.0,76030715.0,77650049.0,75498234.0,74907258.0,74739752.0,74781885.0,75044232.0,75126214.0,74284503.0,74567156.0,75076771.0,75174868.0,74824807.0,74678603.0,75274776.0,75031103.0,75357922.0,75720822.0,74914275.0,75020687.0,74793020.0,74814204.0,74782454.0,74886610.0,74942753.0,74836058.0,74786585.0,75031461.0,74783415.0,75239898.0,74461585.0,77598629.0,77425514.0,76056446.0,75101901.0,75562640.0,75759216.0,75035850.0,75370159.0,75825742.0,75413911.0,75137903.0,75393520.0,75411486.0,75340547.0,75813317.0,75583762.0,75183737.0,75683334.0,75204099.0,75968902.0,75064964.0,75875410.0,75213147.0,75391943.0,75408633.0,75786231.0,75982902.0,74861173.0,74976923.0,75412032.0,75849305.0,74846836.0,75378086.0,75744051.0,75087785.0,75349911.0,75502657.0,75346124.0,75679877.0,75107317.0,74947447.0,75975388.0,75318395.0,74950964.0,75240296.0],"unit":"ns","throughput":[{"per_iteration":8608,"unit":"bytes"}],"typical":{"estimate":75370700.63,"lower_bound":75239336.55375001,"upper_bound":75525417.01025,"unit":"ns"},"mean":{"estimate":75370700.63,"lower_bound":75239336.55375001,"upper_bound":75525417.01025,"unit":"ns"},"median":{"estimate":75240097.0,"lower_bound":75112304.0,"upper_bound":75352023.0,"unit":"ns"},"median_abs_dev":{"estimate":399535.48870682716,"lower_bound":305357.031878829,"upper_bound":546430.0114989281,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0019904082784317767,"lower_bound":-0.003942043882436036,"upper_bound":0.00011153459625125034,"unit":"%"},"median":{"estimate":-0.003716533752352702,"lower_bound":-0.005771780795583603,"upper_bound":-0.0015976730110910387,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_16800","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_16800","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[75068728.0,75410668.0,74904706.0,74975871.0,75299354.0,74893174.0,75138502.0,75409644.0,75024532.0,74724103.0,74633968.0,75312782.0,74901041.0,74693003.0,74784826.0,75663982.0,75751920.0,75393304.0,75542680.0,75480718.0,74778503.0,75204293.0,74988144.0,75296528.0,74745447.0,74980906.0,77436995.0,74700607.0,76681581.0,74768370.0,75042103.0,73613071.0,74872600.0,75358389.0,74227683.0,74394884.0,74782902.0,74074357.0,74574282.0,74807117.0,74729834.0,74994296.0,74455456.0,74665939.0,75173378.0,75025049.0,74140462.0,74744885.0,74525104.0,74804073.0,74468877.0,74903747.0,73730398.0,75422924.0,74551421.0,74717007.0,74994674.0,74257140.0,74046030.0,74749200.0,74426114.0,74814368.0,74795288.0,73980979.0,74746154.0,74601763.0,74614351.0,74411405.0,74905636.0,75067861.0,75527276.0,76920253.0,76428041.0,75363017.0,75025492.0,74728989.0,75332566.0,75278277.0,74893126.0,74841504.0,75449119.0,74880393.0,74717209.0,74847350.0,74725705.0,74556466.0,74666390.0,74700871.0,74780729.0,75134272.0,74855663.0,74938585.0,75334818.0,74836550.0,75218307.0,75080344.0,74740378.0,75353894.0,75048631.0,74800448.0],"unit":"ns","throughput":[{"per_iteration":16800,"unit":"bytes"}],"typical":{"estimate":74948047.44,"lower_bound":74842415.40924999,"upper_bound":75061174.414,"unit":"ns"},"mean":{"estimate":74948047.44,"lower_bound":74842415.40924999,"upper_bound":75061174.414,"unit":"ns"},"median":{"estimate":74864131.5,"lower_bound":74784826.0,"upper_bound":74975871.0,"unit":"ns"},"median_abs_dev":{"estimate":302692.05842614174,"lower_bound":230465.7181084156,"upper_bound":464926.30184590816,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.008597844694507306,"lower_bound":-0.010712303780492118,"upper_bound":-0.006643604415083643,"unit":"%"},"median":{"estimate":-0.008999983605586626,"lower_bound":-0.010497844868666673,"upper_bound":-0.007410513998514334,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_33184","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_33184","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[75793622.0,80023079.0,75392446.0,75238057.0,75008697.0,74663795.0,75117178.0,75067870.0,74947528.0,74629455.0,75181413.0,74814090.0,74743132.0,76232611.0,77264603.0,75137870.0,77339240.0,75768447.0,76356975.0,74655286.0,74942727.0,75073533.0,74780467.0,74842753.0,75063664.0,74416948.0,75573211.0,75952741.0,74743784.0,74965007.0,74957386.0,75192844.0,75122535.0,75161397.0,74703848.0,75164235.0,74422376.0,75005992.0,75097702.0,75326237.0,74789056.0,75241923.0,75298755.0,75080478.0,77129603.0,75378759.0,75125370.0,74647799.0,75422784.0,74894482.0,75124434.0,75015159.0,75385883.0,75306012.0,74476659.0,74832918.0,74938044.0,75650153.0,75280003.0,74897858.0,74891179.0,75095036.0,75036696.0,75060342.0,75429190.0,75227885.0,75402337.0,75172479.0,75458896.0,74698803.0,74396752.0,75265507.0,74410176.0,74314274.0,74795888.0,74753385.0,75203326.0,75564892.0,74007309.0,74899115.0,74628593.0,75160612.0,74920697.0,75082693.0,74704232.0,75218577.0,74650217.0,75371118.0,75174512.0,74322873.0,75484312.0,74919512.0,75251364.0,79596607.0,74458468.0,74297718.0,75006223.0,74773638.0,74855641.0,74602225.0],"unit":"ns","throughput":[{"per_iteration":33184,"unit":"bytes"}],"typical":{"estimate":75193642.12,"lower_bound":75041210.93824999,"upper_bound":75374393.515,"unit":"ns"},"mean":{"estimate":75193642.12,"lower_bound":75041210.93824999,"upper_bound":75374393.515,"unit":"ns"},"median":{"estimate":75070701.5,"lower_bound":74957386.0,"upper_bound":75142991.0,"unit":"ns"},"median_abs_dev":{"estimate":379654.5643597841,"lower_bound":272022.99537062645,"upper_bound":473372.6738959551,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0004958498807783318,"lower_bound":-0.0018395347954787864,"upper_bound":0.003048020461652422,"unit":"%"},"median":{"estimate":-0.0007160780105860409,"lower_bound":-0.002606320417428254,"upper_bound":0.0016244974146102376,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_65952","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_65952","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[73513306.0,73713566.0,73528279.0,73436155.0,73463010.0,73537154.0,72888014.0,72952512.0,73543970.0,73077160.0,73011404.0,73140845.0,72961042.0,72983204.0,73350918.0,72890286.0,73367419.0,73133626.0,73299793.0,73354228.0,73891862.0,72998638.0,72831359.0,73455557.0,74262410.0,73995388.0,73000824.0,73201310.0,72919862.0,73115981.0,73556736.0,78779950.0,73336395.0,73669012.0,72867265.0,73611303.0,73771275.0,73217636.0,73608553.0,73729141.0,73611660.0,73232749.0,73087592.0,72880067.0,73725817.0,73192085.0,73557970.0,73558478.0,73274366.0,73704143.0,73739404.0,73033202.0,72716713.0,73132987.0,73588002.0,73254772.0,73327541.0,72771721.0,73397089.0,73529691.0,78722046.0,73231379.0,73315768.0,73181266.0,73798262.0,73509660.0,73897961.0,73024270.0,78553895.0,73554296.0,78085831.0,73336681.0,73694126.0,72833037.0,73311142.0,73077053.0,73606054.0,73011810.0,73574867.0,73384465.0,73260930.0,73043993.0,73668050.0,73364129.0,73952347.0,74412009.0,73207543.0,73159326.0,73612635.0,73608087.0,73337848.0,73430054.0,73244682.0,73540443.0,73155619.0,73378321.0,73081396.0,73176276.0,73350310.0,73777084.0],"unit":"ns","throughput":[{"per_iteration":65952,"unit":"bytes"}],"typical":{"estimate":73567473.48,"lower_bound":73381873.70775001,"upper_bound":73796251.50125,"unit":"ns"},"mean":{"estimate":73567473.48,"lower_bound":73381873.70775001,"upper_bound":73796251.50125,"unit":"ns"},"median":{"estimate":73352573.0,"lower_bound":73274366.0,"upper_bound":73482608.5,"unit":"ns"},"median_abs_dev":{"estimate":363291.10845029354,"lower_bound":287884.59118902683,"upper_bound":431006.63834810257,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0034851192956941723,"lower_bound":0.0005101041335795817,"upper_bound":0.007142549015596538,"unit":"%"},"median":{"estimate":0.0018960850026628062,"lower_bound":0.00045619454066686,"upper_bound":0.004113704403501339,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"vm_initialization","benchmarks":["vm_initialization/vm_initialization_with_tx_size_4528","vm_initialization/vm_initialization_with_tx_size_262576","vm_initialization/vm_initialization","vm_initialization/vm_initialization_with_tx_size_33200","vm_initialization/vm_initialization_with_tx_size_16816","vm_initialization/vm_initialization_with_tx_size_524720","vm_initialization/vm_initialization_with_tx_size_65968","vm_initialization/vm_initialization_with_tx_size_2480","vm_initialization/vm_initialization_with_tx_size_131504","vm_initialization/vm_initialization_with_tx_size_8624","vm_initialization/vm_initialization_with_tx_size_1456","vm_initialization/vm_initialization_with_tx_size_944","vm_initialization/vm_initialization_with_tx_size_2097584","vm_initialization/vm_initialization_with_tx_size_1049008","vm_initialization/vm_initialization_with_tx_size_928","vm_initialization/vm_initialization_with_tx_size_1440","vm_initialization/vm_initialization_with_tx_size_2464","vm_initialization/vm_initialization_with_tx_size_4512","vm_initialization/vm_initialization_with_tx_size_8608","vm_initialization/vm_initialization_with_tx_size_16800","vm_initialization/vm_initialization_with_tx_size_33184","vm_initialization/vm_initialization_with_tx_size_65952"],"report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization"} diff --git a/version-compatibility/forkless-upgrade/chain-configurations/ignition/chain_config.json b/version-compatibility/forkless-upgrade/chain-configurations/ignition/chain_config.json new file mode 100644 index 00000000000..797a69daf62 --- /dev/null +++ b/version-compatibility/forkless-upgrade/chain-configurations/ignition/chain_config.json @@ -0,0 +1,271 @@ +{ + "chain_name": "Ignition", + "consensus_parameters": { + "V1": { + "tx_params": { + "V1": { + "max_inputs": 255, + "max_outputs": 255, + "max_witnesses": 255, + "max_gas_per_tx": 30000000, + "max_size": 112640, + "max_bytecode_subsections": 256 + } + }, + "predicate_params": { + "V1": { + "max_predicate_length": 102400, + "max_predicate_data_length": 102400, + "max_message_data_length": 102400, + "max_gas_per_predicate": 30000000 + } + }, + "script_params": { + "V1": { + "max_script_length": 102400, + "max_script_data_length": 102400 + } + }, + "contract_params": { + "V1": { + "contract_max_size": 102400, + "max_storage_slots": 1760 + } + }, + "fee_params": { + "V1": { + "gas_price_factor": 92, + "gas_per_byte": 63 + } + }, + "chain_id": 0, + "gas_costs": { + "V1": { + "add": 2, + "addi": 2, + "aloc": 2, + "and": 2, + "andi": 2, + "bal": 86, + "bhei": 2, + "bhsh": 2, + "burn": 25770, + "cb": 2, + "cfei": 2, + "cfsi": 2, + "div": 2, + "divi": 2, + "eck1": 3114, + "ecr1": 42270, + "ed19": 2878, + "eq": 2, + "exp": 2, + "expi": 2, + "flag": 1, + "gm": 2, + "gt": 2, + "gtf": 12, + "ji": 2, + "jmp": 2, + "jne": 2, + "jnei": 2, + "jnzi": 2, + "jmpf": 1, + "jmpb": 1, + "jnzf": 1, + "jnzb": 1, + "jnef": 1, + "jneb": 1, + "lb": 2, + "log": 165, + "lt": 2, + "lw": 2, + "mint": 29024, + "mlog": 2, + "mod": 2, + "modi": 2, + "move": 2, + "movi": 2, + "mroo": 4, + "mul": 2, + "muli": 2, + "mldv": 3, + "noop": 1, + "not": 2, + "or": 2, + "ori": 2, + "poph": 3, + "popl": 3, + "pshh": 4, + "pshl": 4, + "ret_contract": 134, + "rvrt_contract": 153, + "sb": 2, + "sll": 2, + "slli": 2, + "srl": 2, + "srli": 2, + "srw": 209, + "sub": 2, + "subi": 2, + "sw": 2, + "sww": 22501, + "time": 50, + "tr": 33912, + "tro": 24294, + "wdcm": 2, + "wqcm": 3, + "wdop": 3, + "wqop": 3, + "wdml": 3, + "wqml": 4, + "wddv": 5, + "wqdv": 6, + "wdmd": 10, + "wqmd": 17, + "wdam": 9, + "wqam": 11, + "wdmm": 10, + "wqmm": 10, + "xor": 2, + "xori": 2, + "call": { + "LightOperation": { + "base": 18190, + "units_per_gas": 5 + } + }, + "ccp": { + "LightOperation": { + "base": 48, + "units_per_gas": 22 + } + }, + "croo": { + "LightOperation": { + "base": 131, + "units_per_gas": 2 + } + }, + "csiz": { + "LightOperation": { + "base": 45, + "units_per_gas": 237 + } + }, + "k256": { + "LightOperation": { + "base": 37, + "units_per_gas": 3 + } + }, + "ldc": { + "LightOperation": { + "base": 39, + "units_per_gas": 68 + } + }, + "logd": { + "LightOperation": { + "base": 565, + "units_per_gas": 2 + } + }, + "mcl": { + "LightOperation": { + "base": 3, + "units_per_gas": 564 + } + }, + "mcli": { + "LightOperation": { + "base": 3, + "units_per_gas": 560 + } + }, + "mcp": { + "LightOperation": { + "base": 4, + "units_per_gas": 185 + } + }, + "mcpi": { + "LightOperation": { + "base": 9, + "units_per_gas": 455 + } + }, + "meq": { + "LightOperation": { + "base": 3, + "units_per_gas": 766 + } + }, + "retd_contract": { + "LightOperation": { + "base": 485, + "units_per_gas": 3 + } + }, + "s256": { + "LightOperation": { + "base": 42, + "units_per_gas": 3 + } + }, + "scwq": { + "HeavyOperation": { + "base": 21672, + "gas_per_unit": 22146 + } + }, + "smo": { + "LightOperation": { + "base": 44437, + "units_per_gas": 1 + } + }, + "srwq": { + "HeavyOperation": { + "base": 239, + "gas_per_unit": 234 + } + }, + "swwq": { + "HeavyOperation": { + "base": 22724, + "gas_per_unit": 21231 + } + }, + "contract_root": { + "LightOperation": { + "base": 42, + "units_per_gas": 2 + } + }, + "state_root": { + "HeavyOperation": { + "base": 323, + "gas_per_unit": 169 + } + }, + "new_storage_per_byte": 63, + "vm_initialization": { + "HeavyOperation": { + "base": 5254820, + "gas_per_unit": 0 + } + } + } + }, + "base_asset_id": "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", + "block_gas_limit": 30000000, + "privileged_address": "f034f7859dbf1d775cba16fc175eef249a045d6484a8b9388c9e280267125b73" + } + }, + "consensus": { + "PoA": { + "signing_key": "3ba3b213c8d5ec4d4901ac34b0e924d635384a8b0a5df6e116bce9a783da8e02" + } + } +} \ No newline at end of file diff --git a/version-compatibility/forkless-upgrade/chain-configurations/ignition/metadata.json b/version-compatibility/forkless-upgrade/chain-configurations/ignition/metadata.json new file mode 100644 index 00000000000..9d12c38b64e --- /dev/null +++ b/version-compatibility/forkless-upgrade/chain-configurations/ignition/metadata.json @@ -0,0 +1,8 @@ +{ + "chain_config": "chain_config.json", + "table_encoding": { + "Json": { + "filepath": "state_config.json" + } + } +} diff --git a/version-compatibility/forkless-upgrade/chain-configurations/ignition/state_config.json b/version-compatibility/forkless-upgrade/chain-configurations/ignition/state_config.json new file mode 100644 index 00000000000..c49f816568f --- /dev/null +++ b/version-compatibility/forkless-upgrade/chain-configurations/ignition/state_config.json @@ -0,0 +1,27 @@ +{ + "coins": [], + "messages": [], + "contracts": [ + { + "contract_id": "7777777777777777777777777777777777777777777777777777777777777777", + "code": "900000095a72f2b311ed44c5e9bbc70290c1f287abb56536bcb87eaaecdefcff628817a16140000a504d00205d4d30001a4860004945048076440001240400005050c0043d51345024040000", + "tx_id": "0000000000000000000000000000000000000000000000000000000000000000", + "output_index": 0, + "tx_pointer_block_height": 0, + "tx_pointer_tx_idx": 0, + "states": [], + "balances": [] + }, + { + "contract_id": "0x7e2becd64cd598da59b4d1064b711661898656c6b1f4918a787156b8965dc83c", + "code": "1af030007400000200000000000014605dffc00110ffff00740000001aec500091000b285d43f015104103001a4460005d4d10491b441000104934405d47f008104404405d4920001b44144010453440504fb0205fed10045fed20055047ba8872500010284535005047ba88504fb46072500010284d15005d453000504fb0105fed10025fed20035047ba2872480010284534805047ba285fed00005d43f0085fed00015043b2d0724800102843b480504bb650724c0010284914c05047b660724c0010284504c01ae920001ae5100020f8330058fbe00250fbe0047400041a1a43d00076400001740000a71a4060005d41004a1b441000104104405047ba9872480020284504805043ba985047b03072480020284504805043b0b072480020284114805047b95072480020284504805043b95071440006504bb0f8724c0020284914c05047b890724c0020284504c05043b8f0724c0020284124c0a1411420764000065043b2e05fec005c504bb7907244001028490440740000085043b2805fec10505045000f5c4bf0505e452000504bb79072440010284904405d43f00b264000001a4070005fed01365d43f00b5fed01375fec01385057b9b05043b53072440010284124405d43b0f213410000764000475d43b0a613410040764000025d43f00c364000005043b5305041000f5c4100001ae810001ae5500020f8330058fbe00250fbe0047400042e5d4550005d4950015d4d5002104d3040165124c076500001135124c0765000065047b3605fec006c504fb7a072480018284d14807400000d124d3480104d30401b4d24c0264c0000281d14801a447000504bb1185fec10235fed10245fed3025504fb7a072440018284d24405047b54072480018284534805d47b0f4134510007644000f5d47b0a813451040764400025d43f00c364000005047b54050451008504bb5405049200850492008724c0008285514c050455008724c0008284524c05d4550005d4950021b481480104514805e4500005d415002104100405f550002740000061ae800001ae5500020f8330058fbe00250fbe004740003ef5043b9b050450010504bb1e0724c0008284904c050412008724c0008284114c05043ba3872440010284124405043ba385047b6c072480010284504801ae9100020f8330058fbe00250fbe004740004311a43d0005047ba38504bb780724c0010284914c01ae9200020f8330058fbe00250fbe004740003c01a47d000254110005d43f016104103005047ba28504bb3505fed006a5d43f00d5fed006b5043b3f0724c0010284124c0504bb670724c0010284914c05047b710724c0010284504c01ae920001ae5100020f8330058fbe00250fbe0047400035a1a43d000764000017400012f1a4060005d41004a1b441000104104405047bab872480020284504805043bab85047b05072480020284504805043b13072480020284114805047b97072480020284504805043b97071440006504bb150724c0020284914c05047b8b0724c0020284504c05043b910724c0020284124c0a1411420764000065043b3105fec0062504bb7b872440020284904407400002d5043b2905fec10525047b6405d4bf01710492300724c0008284524c05d4bf008264800001a4c7000284d14805047b1f05fed303e5d4bf00f5fed203f504bb470724c0010284914c05d492001504fb48072500010284d15005d4530001b492040504fb4b05fed10965fed20975047b4c072480010284534805d451000504bb4d072500010284935005d4920015053b4e072540010285135405d4d40015fed10535fed20545fed3055504bb7b872440020284904405d43f00b264000001a4070005fed01395d43f00b5fed013a5fec013b5057b9c85043b58872440020284124405d43b0f713410000764000aa5d43b0b113410040764000025d43f00c364000005043b588504100085047baf872480018284504801ae810001ae5500020f8330058fbe00250fbe00474000347505bbaf85d43b1615d4550005d4950015d4d50025d53f008104d3500165124c076500001135124c0765000065047b3a85fec0075504fb7d872480018284d14807400000d124d3480104d30401b4d24c0264c0000281d14801a447000504bb1705fec102e5fed102f5fed3030504fb7d872440018284d24405047b5d872480018284534805d47b0fb134510007644000f5d47b0bb13451040764400025d43f00c364000005047b5d850451008504bb5d85049200850492008724c0008285514c050455008724c0008284524c05d4550005d4950021b481480104514805f4500005d4150025d47f008104104405f5500021a5c00005d41600216417400764000017400005f5d416002164505c076440001134505c07644000b5d416000104105c05047b2f05fec105e5c4100005049100f5e490000504bb7f07240001028491400740000055043b0705fec000e504bb7f072440010284904405043b62072440010284124405d43b0fe1341004076400001360000005043b6205041000f5c4100005d4550005d4950015d4d5002104d3040165124c076500001135124c0765000065047b3785fec006f504fb80072480018284d14807400000d124d3480104d30401b4d24c0264c0000281d14801a447000504bb2005fec10405fed10415fed3042504fb80072440018284d24405047b55872480018284534805d47b100134510007644000f5d47b0ab13451040764400025d43f00c364000005047b55850451008504bb5585049200850492008724c0008285514c050455008724c0008284524c05d4550005d4950021b481480104514805e4500005d415002104100405f550002105d70407500005b1ae800001ae5500020f8330058fbe00250fbe004740002a75043b9c850450010504bb260724c0008284904c050412008724c0008284114c05043ba4872440010284124405043ba485047b6d072480010284504801ae9100020f8330058fbe00250fbe004740002e91a43d0005047ba48504bb680724c0010284914c01ae9200020f8330058fbe00250fbe004740002781a47d000254110005d43f018104103005047ba28504bb4005fed00805d43f0105fed00815043b410724c0010284124c0504bb720724c0010284914c05047b730724c0010284504c01ae920001ae5100020f8330058fbe00250fbe004740002121a43d000764000017400012f1a4060005d41004a1b441000104104405047bad872480020284504805043bad85047b08072480020284504805043b18872480020284114805047b99072480020284504805043b99071440006504bb1a8724c0020284914c05047b8d0724c0020284504c05043b930724c0020284124c0a1411420764000065043b3305fec0066504bb81872440020284904407400002d5043b2b05fec10565047b6485d4bf01910492300724c0008284524c05d4bf008264800001a4c7000284d14805047b2185fed30435d4bf0125fed2044504bb4f0724c0010284914c05d492001504fb50072500010284d15005d4530001b492040504fb5105fed10a25fed20a35047b52072480010284534805d451000504bb49072500010284935005d4920015053b4a072540010285135405d4d40015fed10575fed20585fed3059504bb81872440020284904405d43f00b264000001a4070005fed013c5d43f00b5fed013d5fec013e5057b9e05043b5a872440020284124405d43b10313410000764000aa5d43b0b513410040764000025d43f00c364000005043b5a8504100085047bb1072480018284504801ae810001ae5500020f8330058fbe00250fbe004740001ff505bbb105d43b1645d4550005d4950015d4d50025d53f008104d3500165124c076500001135124c0765000065047b3c05fec0078504fb83872480018284d14807400000d124d3480104d30401b4d24c0264c0000281d14801a447000504bb1c85fec10395fed103a5fed303b504fb83872440018284d24405047b5f072480018284534805d47b107134510007644000f5d47b0be13451040764400025d43f00c364000005047b5f050451008504bb5f05049200850492008724c0008285514c050455008724c0008284524c05d4550005d4950021b481480104514805f4500005d4150025d47f008104104405f5500021a5c00005d41600216417400764000017400005f5d416002164505c076440001134505c07644000b5d416000104105c05047b3005fec10605c4100005049100f5e490000504bb8507240001028491400740000055043b0a05fec0014504bb85072440010284904405043b63072440010284124405d43b10a1341004076400001360000005043b6305041000f5c4100005d4550005d4950015d4d5002104d3040165124c076500001135124c0765000065047b3905fec0072504fb86072480018284d14807400000d124d3480104d30401b4d24c0264c0000281d14801a447000504bb2285fec10455fed10465fed3047504fb86072440018284d24405047b57072480018284534805d47b10c134510007644000f5d47b0ae13451040764400025d43f00c364000005047b57050451008504bb5705049200850492008724c0008285514c050455008724c0008284524c05d4550005d4950021b481480104514805e4500005d415002104100405f550002105d70407500005b1ae800001ae5500020f8330058fbe00250fbe0047400015f5043b9e050450010504bb270724c0008284904c050412008724c0008284114c05043ba5872440010284124405043ba585047b6e072480010284504801ae9100020f8330058fbe00250fbe004740001a11a43d0005047ba58504bb690724c0010284914c01ae9200020f8330058fbe00250fbe004740001301a47d000254110005d43f01a104103005047ba28504bb4205fed00845d43f0135fed00855043b430724c0010284124c0504bb740724c0010284914c05047b750724c0010284504c01ae920001ae5100020f8330058fbe00250fbe004740000ca1a43d00076400001740000635d43f00b264000001a4070005fed013f5d43f00b5fed01405fec01415053b9f85d43b13f5d47b1405d4bb1415d4ff008104924c0164d1480764c0001134d1480764c00065043b3d85fec007b504bb87872440018284904407400000d12492440104920401b49148026480000281d04401a4070005047b0d05fec101a5fed001b5fed201c504bb87872400018284914005043b60872440018284124405d43b10f134100007640000f5d43b0c113410040764000025d43f00c364000005043b608504100085047b608504510085045100872480008285104805041400872480008284114805d4140005d4540021b441440104104401a4410005f4110005d4140025d47f008104104405f5100025043b9f850450010504bb240724c0008284904c050412008724c0008284114c05043ba6872440010284124405043ba685047b6f072480010284504801ae9100020f8330058fbe00250fbe004740001251a43d0005047ba68504bb6a0724c0010284914c01ae9200020f8330058fbe00250fbe004740000b41a47d000254110005d43f01b104103005047ba28504bb4405fed00885d43f0135fed00895043b450724c0010284124c0504bb760724c0010284914c05047b770724c0010284504c01ae920001ae5100020f8330058fbe00250fbe0047400004e1a43d00076400001740000495043b2505fec004a5d47f00b264400001a4470005fed11425d47f00b5fed11435fec01445047ba10504bb5c8724c0010284904c05d43b04a13410000764000135d43b0b913410040764000025d43f00c364000005d43b0ba1ae810001ae5100020f8330058fbe00250fbe0047400008e1ae900001ae5100020f8330058fbe00250fbe00474000088740000061ae800001ae5100020f8330058fbe00250fbe004740000815043ba1050450010504bb0e8724c0008284904c050412008724c0008284114c05043ba7872440010284124405043ba785047b70072480010284504801ae9100020f8330058fbe00250fbe004740000c31a43d0005047ba78504bb6b0724c0010284914c01ae9200020f8330058fbe00250fbe004740000521a47d000254110005d43f014364000009500003f960800001aec5000910000501a43a0001a4790001a4be000724c001028ed04c01aebb00020f8330058fbe00250fbe004740000301a4fd0005053b01072540010285115401ae9400020f8330058fbe00250fbe004740000271a53d000134d3500134d30001a500000764c001c504fb03072500010284d05001ae9300020f8330058fbe00250fbe004740000811a4fd0005053b04072540010285115401ae9400020f8330058fbe00250fbe004740000781a47d0005053b02072540010285105401ae9400020f8330058fbe00250fbe004740000081a43d000295134501af54000920000501af92000980800009700003f4af8000095000007960800001aec5000910000101a43a0001a47e0007248001028ed04801a43b0005d4100011af50000920000101af9100098080000970000074af8000095000007960800001aec5000910000101a43a0001a47e0007248001028ed04801a43b0005d410001124100401af50000920000101af9100098080000970000074af800009500007f960800001aec5000910000601a4fa0001a5790001a53e0005d5950005d4150015d4550025d4bf00810451480164904407648000113490440764800065043b0185fec0003504bb04872440018284904407400000c12451400104510401b45044026440000281d64001a4070005fec10005fed00015fed1002504bb04872400018284bb4005043b03072440018284124405d43b009134100007640000f5d43b00613410040764000025d43f00c364000005043b030504100085047b030504510085045100872480008285504805041500872480008284114805d4150005d4550021b441440104104405f4130005d4150025d47f008104104405f5500021af40000920000601af94000980800009700007f4af8000095000007960800001aec5000910000101a43a0001a47e0007248001028ed04801a43b0005d4100001af50000920000101af9100098080000970000074af8000095000007960800001aec5000910000101a43a0001a47e0007248001028ed04801a43b0005d4100001af50000920000101af9100098080000970000074af8000047000000646563696d616c736e616d650000000073796d626f6c0000746f74616c5f61737365747300000000746f74616c5f737570706c790000000000000000000002480000000000000008000000000000025009000000000000000000000000000400cccccccccccc0002000000000000000445746865720000000000000000000005000000000000000645544800000000000000000000000003000000000000000c000000000000007b0000000000001460000000000000146800000000000014d0000000000000147000000000000014e800000000000014780000000000001488", + "tx_id": "0000000000000000000000000000000000000000000000000000000000000001", + "output_index": 0, + "tx_pointer_block_height": 0, + "tx_pointer_tx_idx": 0, + "states": [], + "balances": [] + } + ], + "last_block": null +} \ No newline at end of file diff --git a/version-compatibility/forkless-upgrade/chain-configurations/ignition/state_transition_bytecode.wasm b/version-compatibility/forkless-upgrade/chain-configurations/ignition/state_transition_bytecode.wasm new file mode 100755 index 00000000000..7547b6d1b09 Binary files /dev/null and b/version-compatibility/forkless-upgrade/chain-configurations/ignition/state_transition_bytecode.wasm differ diff --git a/version-compatibility/forkless-upgrade/src/backward_compatibility.rs b/version-compatibility/forkless-upgrade/src/backward_compatibility.rs new file mode 100644 index 00000000000..277e8b40afb --- /dev/null +++ b/version-compatibility/forkless-upgrade/src/backward_compatibility.rs @@ -0,0 +1,112 @@ +use crate::tests_helper::{ + default_multiaddr, + GenesisFuelCoreDriver, + LatestFuelCoreDriver, + IGNITION_SNAPSHOT, + POA_SECRET_KEY, +}; +use latest_fuel_core_services::Service; +use libp2p::{ + futures::StreamExt, + identity::{ + secp256k1::Keypair as SecpKeypair, + Keypair, + }, + PeerId, +}; +use std::time::Duration; + +#[tokio::test] +async fn latest_binary_is_backward_compatible_and_can_load_testnet_config() { + // When + let latest_node = LatestFuelCoreDriver::spawn(&[ + "--debug", + "--poa-instant", + "true", + "--snapshot", + IGNITION_SNAPSHOT, + // We need to set the native executor version to 1 to be + // sure it is not zero to force the usage of the WASM executor + "--native-executor-version", + "1", + ]) + .await; + + // Then + let latest_node = latest_node.expect("Failed to spawn latest node"); + assert!(latest_node.node.state().started()) +} + +#[tokio::test] +async fn latest_binary_is_backward_compatible_and_follows_blocks_created_by_genesis_binary( +) { + // Given + let genesis_keypair = SecpKeypair::generate(); + let hexed_secret = hex::encode(genesis_keypair.secret().to_bytes()); + let genesis_port = "30333"; + let genesis_node = GenesisFuelCoreDriver::spawn(&[ + "--service-name", + "GenesisProducer", + "--debug", + "--poa-instant", + "true", + "--consensus-key", + POA_SECRET_KEY, + "--snapshot", + IGNITION_SNAPSHOT, + "--enable-p2p", + "--keypair", + hexed_secret.as_str(), + "--peering-port", + genesis_port, + ]) + .await + .unwrap(); + let public_key = Keypair::from(genesis_keypair).public(); + let genesis_peer_id = PeerId::from_public_key(&public_key); + let genesis_multiaddr = default_multiaddr(genesis_port, genesis_peer_id); + + // Starting node that uses latest fuel core. + // It will connect to the genesis node and sync blocks. + let latest_keypair = SecpKeypair::generate(); + let hexed_secret = hex::encode(latest_keypair.secret().to_bytes()); + let latest_node = LatestFuelCoreDriver::spawn(&[ + "--service-name", + "LatestValidator", + "--debug", + "--poa-instant", + "false", + "--snapshot", + IGNITION_SNAPSHOT, + "--enable-p2p", + "--keypair", + hexed_secret.as_str(), + "--reserved-nodes", + genesis_multiaddr.as_str(), + "--peering-port", + "0", + // We need to set the native executor version to 1 to be + // sure it is not zero to force the usage of the WASM executor + "--native-executor-version", + "1", + ]) + .await + .unwrap(); + let mut imported_blocks = latest_node.node.shared.block_importer.events(); + + // When + const BLOCKS_TO_PRODUCE: u32 = 10; + genesis_node + .client + .produce_blocks(BLOCKS_TO_PRODUCE, None) + .await + .unwrap(); + + // Then + for i in 0..BLOCKS_TO_PRODUCE { + let _ = tokio::time::timeout(Duration::from_secs(120), imported_blocks.next()) + .await + .expect(format!("Timed out waiting for block import {i}").as_str()) + .expect(format!("Failed to import block {i}").as_str()); + } +} diff --git a/version-compatibility/forkless-upgrade/src/forward_compatibility.rs b/version-compatibility/forkless-upgrade/src/forward_compatibility.rs new file mode 100644 index 00000000000..c87d9ea5e42 --- /dev/null +++ b/version-compatibility/forkless-upgrade/src/forward_compatibility.rs @@ -0,0 +1,167 @@ +//! Changes in the API break forward compatibility. In this case, +//! we need to remove old tests(usually, we need to create a new test per each release) +//! and write a new test(only one) to track new forward compatibility. + +use crate::tests_helper::{ + default_multiaddr, + transactions_from_subsections, + upgrade_transaction, + GenesisFuelCoreDriver, + IGNITION_SNAPSHOT, + POA_SECRET_KEY, + SUBSECTION_SIZE, +}; +use fuel_tx::{ + field::ChargeableBody, + UpgradePurpose, + UploadSubsection, +}; +use libp2p::{ + futures::StreamExt, + identity::{ + secp256k1::Keypair as SecpKeypair, + Keypair, + }, + PeerId, +}; +use rand::{ + rngs::StdRng, + SeedableRng, +}; +use std::time::Duration; + +#[tokio::test] +async fn latest_state_transition_function_is_forward_compatible_with_genesis_binary() { + // The test has a genesis block producer and one genesis validator. + // Genesis nodes execute several blocks by using the genesis state transition function. + // At some point, we upgrade the network to use the latest state transition function. + // The network should be able to generate several new blocks with a new version. + // Genesis block producer and validator should process all blocks. + // + // These actions test that old nodes could use a new state transition function, + // and it is forward compatible. + // + // To simplify the upgrade of the network `utxo_validation` is `false`. + + let genesis_keypair = SecpKeypair::generate(); + let hexed_secret = hex::encode(genesis_keypair.secret().to_bytes()); + let genesis_port = "40333"; + let genesis_node = GenesisFuelCoreDriver::spawn(&[ + "--service-name", + "GenesisProducer", + "--debug", + "--poa-instant", + "true", + "--consensus-key", + POA_SECRET_KEY, + "--snapshot", + IGNITION_SNAPSHOT, + "--enable-p2p", + "--keypair", + hexed_secret.as_str(), + "--peering-port", + genesis_port, + ]) + .await + .unwrap(); + let public_key = Keypair::from(genesis_keypair).public(); + let genesis_peer_id = PeerId::from_public_key(&public_key); + let genesis_multiaddr = default_multiaddr(genesis_port, genesis_peer_id); + + // Starting a genesis validator node. + // It will connect to the genesis node and sync blocks. + let latest_keypair = SecpKeypair::generate(); + let hexed_secret = hex::encode(latest_keypair.secret().to_bytes()); + let validator_node = GenesisFuelCoreDriver::spawn(&[ + "--service-name", + "GenesisValidator", + "--debug", + "--poa-instant", + "false", + "--snapshot", + IGNITION_SNAPSHOT, + "--enable-p2p", + "--keypair", + hexed_secret.as_str(), + "--reserved-nodes", + genesis_multiaddr.as_str(), + "--peering-port", + "0", + ]) + .await + .unwrap(); + + // Given + let mut imported_blocks = validator_node.node.shared.block_importer.events(); + const BLOCKS_TO_PRODUCE: u32 = 10; + genesis_node + .client + .produce_blocks(BLOCKS_TO_PRODUCE, None) + .await + .unwrap(); + for i in 0..BLOCKS_TO_PRODUCE { + let block = + tokio::time::timeout(Duration::from_secs(120), imported_blocks.next()) + .await + .expect(format!("Timed out waiting for block import {i}").as_str()) + .expect(format!("Failed to import block {i}").as_str()); + assert_eq!( + block + .sealed_block + .entity + .header() + .state_transition_bytecode_version, + 0 + ); + } + drop(imported_blocks); + + // When + let subsections = UploadSubsection::split_bytecode( + latest_fuel_core_upgradable_executor::WASM_BYTECODE, + SUBSECTION_SIZE, + ) + .unwrap(); + let mut rng = StdRng::seed_from_u64(12345); + let amount = 100000; + let transactions = transactions_from_subsections(&mut rng, subsections, amount); + let root = transactions[0].body().root; + for upload in transactions { + let tx = upload.into(); + validator_node + .client + .submit_and_await_commit(&tx) + .await + .unwrap(); + } + let upgrade = + upgrade_transaction(UpgradePurpose::StateTransition { root }, &mut rng, amount); + validator_node + .client + .submit_and_await_commit(&upgrade.into()) + .await + .unwrap(); + + // Then + let mut imported_blocks = validator_node.node.shared.block_importer.events(); + genesis_node + .client + .produce_blocks(BLOCKS_TO_PRODUCE, None) + .await + .unwrap(); + for i in 0..BLOCKS_TO_PRODUCE { + let block = + tokio::time::timeout(Duration::from_secs(120), imported_blocks.next()) + .await + .expect(format!("Timed out waiting for block import {i}").as_str()) + .expect(format!("Failed to import block {i}").as_str()); + assert_eq!( + block + .sealed_block + .entity + .header() + .state_transition_bytecode_version, + 1 + ); + } +} diff --git a/version-compatibility/forkless-upgrade/src/lib.rs b/version-compatibility/forkless-upgrade/src/lib.rs new file mode 100644 index 00000000000..b40ca55c722 --- /dev/null +++ b/version-compatibility/forkless-upgrade/src/lib.rs @@ -0,0 +1,12 @@ +#![deny(unused_crate_dependencies)] +#![deny(warnings)] + +#[cfg(test)] +mod backward_compatibility; +#[cfg(test)] +mod forward_compatibility; +#[cfg(test)] +pub(crate) mod tests_helper; + +#[cfg(test)] +fuel_core_trace::enable_tracing!(); diff --git a/version-compatibility/forkless-upgrade/src/tests_helper.rs b/version-compatibility/forkless-upgrade/src/tests_helper.rs new file mode 100644 index 00000000000..216d311f8fb --- /dev/null +++ b/version-compatibility/forkless-upgrade/src/tests_helper.rs @@ -0,0 +1,152 @@ +use fuel_crypto::{ + fuel_types::ChainId, + SecretKey, +}; +use fuel_tx::{ + policies::Policies, + Input, + Signable, + Transaction, + Upgrade, + UpgradePurpose, + Upload, + UploadSubsection, + Witness, +}; +use genesis_fuel_core_bin::FuelService as GenesisFuelService; +use genesis_fuel_core_client::client::FuelClient as GenesisClient; +use genesis_fuel_core_services::Service as _; +use latest_fuel_core_bin::FuelService as LatestFuelService; +use latest_fuel_core_client::client::FuelClient as LatestClient; +use latest_fuel_core_services::Service as _; +use libp2p::PeerId; +use rand::{ + prelude::StdRng, + Rng, +}; +use std::str::FromStr; + +macro_rules! define_core_driver { + ($bin_crate:ident, $service:ident, $client:ident, $name:ident) => { + pub struct $name { + /// This must be before the db_dir as the drop order matters here. + pub node: $service, + pub db_dir: tempfile::TempDir, + pub client: $client, + } + + impl $name { + pub async fn spawn(extra_args: &[&str]) -> anyhow::Result { + use clap::Parser; + use tempfile::tempdir; + + // Generate temp params + let db_dir = tempdir()?; + + let mut args = vec![ + "_IGNORED_", + "--db-path", + db_dir.path().to_str().unwrap(), + "--port", + "0", + ]; + args.extend(extra_args); + + let node = $bin_crate::cli::run::get_service( + $bin_crate::cli::run::Command::parse_from(args), + )?; + + node.start_and_await().await?; + + let client = $client::from(node.shared.graph_ql.bound_address); + Ok(Self { + node, + db_dir, + client, + }) + } + } + }; +} + +define_core_driver!( + genesis_fuel_core_bin, + GenesisFuelService, + GenesisClient, + GenesisFuelCoreDriver +); + +define_core_driver!( + latest_fuel_core_bin, + LatestFuelService, + LatestClient, + LatestFuelCoreDriver +); + +pub const IGNITION_SNAPSHOT: &str = "./chain-configurations/ignition"; +pub const POA_SECRET_KEY: &str = + "e3d6eb39607650e22f0befa26d52e921d2e7924d0e165f38ffa8d9d0ac73de93"; +pub const PRIVILEGED_ADDRESS_KEY: &str = + "dcbe36d8e890d7489b6e1be442eab98ae2fdbb5c7d77e1f9e1e12a545852304f"; +pub const BASE_ASSET_ID: &str = + "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07"; + +pub fn default_multiaddr(port: &str, peer_id: PeerId) -> String { + format!("/ip4/127.0.0.1/tcp/{}/p2p/{}", port, peer_id) +} + +pub const SUBSECTION_SIZE: usize = 64 * 1024; + +pub fn valid_input(secret_key: &SecretKey, rng: &mut StdRng, amount: u64) -> Input { + let pk = secret_key.public_key(); + let owner = Input::owner(&pk); + Input::coin_signed( + rng.gen(), + owner, + amount, + BASE_ASSET_ID.parse().unwrap(), + Default::default(), + Default::default(), + ) +} + +pub fn transactions_from_subsections( + rng: &mut StdRng, + subsections: Vec, + amount: u64, +) -> Vec { + subsections + .into_iter() + .map(|subsection| { + let secret_key: SecretKey = + SecretKey::from_str(PRIVILEGED_ADDRESS_KEY).unwrap(); + let mut tx = Transaction::upload_from_subsection( + subsection, + Policies::new().with_max_fee(amount), + vec![valid_input(&secret_key, rng, amount)], + vec![], + vec![Witness::default()], + ); + tx.sign_inputs(&secret_key, &ChainId::new(0)); + + tx + }) + .collect::>() +} + +pub fn upgrade_transaction( + purpose: UpgradePurpose, + rng: &mut StdRng, + amount: u64, +) -> Upgrade { + let secret_key: SecretKey = SecretKey::from_str(PRIVILEGED_ADDRESS_KEY).unwrap(); + let mut tx = Transaction::upgrade( + purpose, + Policies::new().with_max_fee(100000), + vec![valid_input(&secret_key, rng, amount)], + vec![], + vec![Witness::default()], + ); + tx.sign_inputs(&secret_key, &ChainId::new(0)); + tx +}