diff --git a/CHANGELOG.md b/CHANGELOG.md index 226a2119a6a..48543746b2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Added - [2131](https://github.com/FuelLabs/fuel-core/pull/2131): Add flow in TxPool in order to ask to newly connected peers to share their transaction pool +### Changed + +#### Breaking +- [2153](https://github.com/FuelLabs/fuel-core/pull/2153): Updated default gas costs for the local testnet configuration to match `fuel-core 0.35.0`. + ## [Version 0.36.0] ### Added diff --git a/benches/Cargo.toml b/benches/Cargo.toml index 7005debf627..e4ee7db927b 100644 --- a/benches/Cargo.toml +++ b/benches/Cargo.toml @@ -25,7 +25,7 @@ fuel-core = { path = "../crates/fuel-core", default-features = false, features = fuel-core-chain-config = { workspace = true } fuel-core-database = { path = "./../crates/database" } fuel-core-services = { path = "./../crates/services" } -fuel-core-storage = { path = "./../crates/storage" } +fuel-core-storage = { path = "./../crates/storage", features = ["smt"] } fuel-core-sync = { path = "./../crates/services/sync", features = [ "benchmarking", ] } diff --git a/benches/benches/vm_set/blockchain.rs b/benches/benches/vm_set/blockchain.rs index e88fcc3a88f..2d85a4f2028 100644 --- a/benches/benches/vm_set/blockchain.rs +++ b/benches/benches/vm_set/blockchain.rs @@ -367,7 +367,7 @@ pub fn run(c: &mut Criterion) { let mut ccp = c.benchmark_group("ccp"); for i in linear.clone() { - let mut code = vec![op::noop(); i as usize].into_iter().collect::>(); + let mut code = vec![0; i as usize]; rng.fill_bytes(&mut code); @@ -391,10 +391,7 @@ pub fn run(c: &mut Criterion) { op::movi(0x12, 100_000), op::movi(0x13, i.try_into().unwrap()), op::cfe(0x13), - op::movi(0x14, i.try_into().unwrap()), op::movi(0x15, i.try_into().unwrap()), - op::add(0x15, 0x15, 0x15), - op::addi(0x15, 0x15, 32), op::aloc(0x15), op::move_(0x15, RegId::HP), ]; @@ -413,6 +410,51 @@ pub fn run(c: &mut Criterion) { ccp.finish(); + let mut bldd = c.benchmark_group("bldd"); + + for i in linear.clone() { + let mut code = vec![0; i as usize]; + + rng.fill_bytes(&mut code); + + let blob = BlobCode::from(code); + + let data = blob + .id + .iter() + .copied() + .chain((0 as Word).to_be_bytes().iter().copied()) + .chain((0 as Word).to_be_bytes().iter().copied()) + .chain(AssetId::default().iter().copied()) + .collect(); + + let prepare_script = vec![ + op::gtf_args(0x10, 0x00, GTFArgs::ScriptData), + op::addi(0x11, 0x10, BlobId::LEN.try_into().unwrap()), + op::addi(0x11, 0x11, WORD_SIZE.try_into().unwrap()), + op::addi(0x11, 0x11, WORD_SIZE.try_into().unwrap()), + op::movi(0x12, 100_000), + op::movi(0x13, i.try_into().unwrap()), + op::cfe(0x13), + op::movi(0x15, i.try_into().unwrap()), + op::aloc(0x15), + op::move_(0x15, RegId::HP), + ]; + + bldd.throughput(Throughput::Bytes(i)); + + run_group_ref( + &mut bldd, + format!("{i}"), + VmBench::new(op::bldd(0x15, 0x10, RegId::ZERO, 0x13)) + .with_blob(blob) + .with_data(data) + .with_prepare_script(prepare_script), + ); + } + + bldd.finish(); + let mut csiz = c.benchmark_group("csiz"); for i in linear.clone() { @@ -441,6 +483,33 @@ pub fn run(c: &mut Criterion) { csiz.finish(); + let mut bsiz = c.benchmark_group("bsiz"); + + for i in linear.clone() { + let mut code = vec![0u8; i as usize]; + + rng.fill_bytes(&mut code); + + let blob = BlobCode::from(code); + + let data = blob.id.iter().copied().collect(); + + let prepare_script = vec![op::gtf_args(0x10, 0x00, GTFArgs::ScriptData)]; + + bsiz.throughput(Throughput::Bytes(i)); + + run_group_ref( + &mut bsiz, + format!("{i}"), + VmBench::new(op::bsiz(0x11, 0x10)) + .with_blob(blob) + .with_data(data) + .with_prepare_script(prepare_script), + ); + } + + bsiz.finish(); + run_group_ref( &mut c.benchmark_group("bhei"), "bhei", diff --git a/benches/benches/vm_set/mem.rs b/benches/benches/vm_set/mem.rs index c4747dbad92..328bf826680 100644 --- a/benches/benches/vm_set/mem.rs +++ b/benches/benches/vm_set/mem.rs @@ -11,7 +11,13 @@ use criterion::{ Throughput, }; use fuel_core_benches::*; -use fuel_core_types::fuel_asm::*; +use fuel_core_types::{ + fuel_asm::*, + fuel_vm::{ + consts::MEM_SIZE, + interpreter::MemoryInstance, + }, +}; pub fn run(c: &mut Criterion) { run_group_ref( @@ -60,8 +66,11 @@ pub fn run(c: &mut Criterion) { cfe_linear.push(30_000_000); cfe_linear.push(60_000_000); for i in cfe_linear { - let bench = - VmBench::new(op::cfe(0x10)).with_prepare_script(set_full_word(0x10, i)); + let prepare_script = set_full_word(0x10, i); + let memory = MemoryInstance::from(vec![123; MEM_SIZE]); + let bench = VmBench::new(op::cfe(0x10)) + .with_prepare_script(prepare_script) + .with_memory(memory); cfe.throughput(Throughput::Bytes(i)); run_group_ref(&mut cfe, format!("{i}"), bench); } @@ -77,7 +86,8 @@ pub fn run(c: &mut Criterion) { cfei_linear.push(1_000_000); cfei_linear.push(10_000_000); for i in cfei_linear { - let bench = VmBench::new(op::cfei(i as u32)); + let memory = MemoryInstance::from(vec![123; MEM_SIZE]); + let bench = VmBench::new(op::cfei(i as u32)).with_memory(memory); cfei.throughput(Throughput::Bytes(i)); run_group_ref(&mut cfei, format!("{i}"), bench); } diff --git a/benches/src/bin/collect.rs b/benches/src/bin/collect.rs index 4dee5114b4f..3fe0b3a0850 100644 --- a/benches/src/bin/collect.rs +++ b/benches/src/bin/collect.rs @@ -642,12 +642,12 @@ fn linear_regression(x_y: Vec<(u64, u64)>) -> f64 { } fn dependent_cost(name: &String, x_y: Vec<(u64, u64)>) -> DependentCost { - const NEAR_LINEAR: f64 = 0.1; + const NEAR_LINEAR: f64 = 0.2; #[derive(PartialEq, Eq)] enum Type { /// The points have a linear property. The first point - /// and the last points are almost the same(The difference is < 0.1). + /// and the last points are almost the same(The difference is < `NEAR_LINEAR`). Linear, /// When the delta of the last point is much lower than /// the first point, it is a logarithmic chart. diff --git a/benches/src/default_gas_costs.rs b/benches/src/default_gas_costs.rs index 59109081608..4ef866f9a27 100644 --- a/benches/src/default_gas_costs.rs +++ b/benches/src/default_gas_costs.rs @@ -6,23 +6,23 @@ pub fn default_gas_costs() -> GasCostsValues { addi: 2, and: 2, andi: 2, - bal: 29, + bal: 274, bhei: 2, bhsh: 2, - burn: 19976, + burn: 7566, cb: 2, cfsi: 2, div: 2, divi: 2, - eck1: 1907, - ecr1: 26135, + eck1: 1489, + ecr1: 20513, eq: 2, exp: 2, expi: 2, - flag: 2, + flag: 1, gm: 2, gt: 2, - gtf: 13, + gtf: 3, ji: 2, jmp: 2, jne: 2, @@ -35,166 +35,166 @@ pub fn default_gas_costs() -> GasCostsValues { jnef: 2, jneb: 2, lb: 2, - log: 102, + log: 80, lt: 2, lw: 2, - mint: 18042, + mint: 6566, mlog: 2, vm_initialization: DependentCost::LightOperation { - base: 3957, - units_per_gas: 48, + base: 3127, + units_per_gas: 61, }, modi: 2, mod_op: 2, - movi: 2, - mroo: 4, + movi: 1, + mroo: 3, mul: 2, muli: 2, mldv: 3, noop: 1, not: 2, - or: 2, + or: 1, ori: 2, - poph: 3, - popl: 3, - pshh: 5, - pshl: 5, + poph: 2, + popl: 2, + pshh: 3073, + pshl: 3016, move_op: 2, - ret: 53, + ret: 43, sb: 2, sll: 2, slli: 2, srl: 2, srli: 2, - srw: 177, + srw: 237, sub: 2, subi: 2, sw: 2, - sww: 17302, - time: 35, - tr: 27852, - tro: 19718, + sww: 5708, + time: 106, + tr: 9253, + tro: 7199, wdcm: 2, wqcm: 2, - wdop: 3, + wdop: 2, wqop: 3, wdml: 3, wqml: 3, - wddv: 4, - wqdv: 5, - wdmd: 8, - wqmd: 12, - wdam: 7, - wqam: 8, - wdmm: 8, - wqmm: 8, + wddv: 3, + wqdv: 4, + wdmd: 6, + wqmd: 9, + wdam: 6, + wqam: 6, + wdmm: 6, + wqmm: 6, xor: 2, xori: 2, aloc: DependentCost::LightOperation { base: 2, - units_per_gas: 15, - }, - bldd: DependentCost::LightOperation { - base: 15, - units_per_gas: 272, + units_per_gas: 35, }, bsiz: DependentCost::LightOperation { - base: 17, - units_per_gas: 790, + base: 25, + units_per_gas: 564, + }, + bldd: DependentCost::LightOperation { + base: 33, + units_per_gas: 130, }, cfe: DependentCost::LightOperation { base: 10, - units_per_gas: 1818181, + units_per_gas: 62, }, cfei: DependentCost::LightOperation { - base: 2, - units_per_gas: 1000000, + base: 10, + units_per_gas: 66, }, call: DependentCost::LightOperation { - base: 13513, - units_per_gas: 7, + base: 6934, + units_per_gas: 14, }, ccp: DependentCost::LightOperation { - base: 34, - units_per_gas: 39, + base: 21, + units_per_gas: 155, }, croo: DependentCost::LightOperation { - base: 91, - units_per_gas: 3, + base: 69, + units_per_gas: 4, }, csiz: DependentCost::LightOperation { - base: 31, - units_per_gas: 438, + base: 25, + units_per_gas: 580, }, ed19: DependentCost::LightOperation { - base: 3000, - units_per_gas: 214, + base: 3232, + units_per_gas: 7, }, k256: DependentCost::LightOperation { - base: 27, - units_per_gas: 5, + base: 21, + units_per_gas: 6, }, ldc: DependentCost::LightOperation { - base: 43, - units_per_gas: 102, + base: 84, + units_per_gas: 113, }, logd: DependentCost::LightOperation { - base: 363, - units_per_gas: 4, + base: 278, + units_per_gas: 5, }, mcl: DependentCost::LightOperation { base: 2, - units_per_gas: 1041, + units_per_gas: 1282, }, mcli: DependentCost::LightOperation { base: 2, - units_per_gas: 1025, + units_per_gas: 1250, }, mcp: DependentCost::LightOperation { - base: 4, - units_per_gas: 325, + base: 3, + units_per_gas: 385, }, mcpi: DependentCost::LightOperation { - base: 8, - units_per_gas: 511, + base: 7, + units_per_gas: 585, }, meq: DependentCost::LightOperation { - base: 3, - units_per_gas: 940, + base: 2, + units_per_gas: 1234, }, - rvrt: 52, + rvrt: 39, s256: DependentCost::LightOperation { - base: 31, - units_per_gas: 4, + base: 25, + units_per_gas: 5, }, scwq: DependentCost::HeavyOperation { - base: 16346, - gas_per_unit: 17163, + base: 5666, + gas_per_unit: 6628, }, smo: DependentCost::LightOperation { - base: 40860, - units_per_gas: 2, + base: 14635, + units_per_gas: 3, }, srwq: DependentCost::HeavyOperation { - base: 187, - gas_per_unit: 179, + base: 245, + gas_per_unit: 243, }, swwq: DependentCost::HeavyOperation { - base: 17046, - gas_per_unit: 16232, + base: 5661, + gas_per_unit: 5776, }, contract_root: DependentCost::LightOperation { - base: 31, - units_per_gas: 2, + base: 24, + units_per_gas: 3, }, state_root: DependentCost::HeavyOperation { - base: 236, - gas_per_unit: 122, + base: 189, + gas_per_unit: 96, }, new_storage_per_byte: 63, retd: DependentCost::LightOperation { - base: 305, - units_per_gas: 4, + base: 227, + units_per_gas: 5, }, } .into() diff --git a/benches/src/lib.rs b/benches/src/lib.rs index a06e26d1eee..4aa68c51656 100644 --- a/benches/src/lib.rs +++ b/benches/src/lib.rs @@ -1,7 +1,10 @@ use fuel_core::database::GenesisDatabase; -use fuel_core_storage::transactional::{ - IntoTransaction, - StorageTransaction, +use fuel_core_storage::{ + transactional::{ + IntoTransaction, + StorageTransaction, + }, + StorageAsMut, }; use fuel_core_types::{ fuel_asm::{ @@ -81,6 +84,22 @@ impl From> for ContractCode { } } +pub struct BlobCode { + pub code: BlobBytes, + pub id: BlobId, +} + +impl From> for BlobCode { + fn from(bytes: Vec) -> Self { + let id = BlobId::compute(&bytes); + + Self { + code: BlobBytes::from(bytes), + id, + } + } +} + pub struct PrepareCall { pub ra: RegId, pub rb: RegId, @@ -94,6 +113,7 @@ pub struct VmBench { pub gas_limit: Word, pub maturity: BlockHeight, pub height: BlockHeight, + pub memory: Option, pub prepare_script: Vec, pub post_call: Vec, pub data: Vec, @@ -105,6 +125,7 @@ pub struct VmBench { pub prepare_call: Option, pub dummy_contract: Option, pub contract_code: Option, + pub blob: Option, pub empty_contracts: Vec, pub receipts_ctx: Option, } @@ -138,6 +159,7 @@ impl VmBench { gas_limit: LARGE_GAS_LIMIT, maturity: Default::default(), height: Default::default(), + memory: Some(MemoryInstance::from(vec![123; MEM_SIZE])), prepare_script: vec![], post_call: vec![], data: vec![], @@ -149,6 +171,7 @@ impl VmBench { prepare_call: None, dummy_contract: None, contract_code: None, + blob: None, empty_contracts: vec![], receipts_ctx: None, } @@ -251,6 +274,11 @@ impl VmBench { self } + pub fn with_memory(mut self, memory: MemoryInstance) -> Self { + self.memory = Some(memory); + self + } + /// Replaces the current prepare script with the given one. /// Not that if you've constructed this instance with `contract` or `using_contract_db`, /// then this will remove the script added by it. Use `extend_prepare_script` instead. @@ -310,6 +338,11 @@ impl VmBench { self } + pub fn with_blob(mut self, blob: BlobCode) -> Self { + self.blob.replace(blob); + self + } + pub fn with_empty_contracts_count(mut self, count: usize) -> Self { let mut contract_ids = Vec::with_capacity(count); for n in 0..count { @@ -334,6 +367,7 @@ impl TryFrom for VmBenchPrepared { gas_limit, maturity, height, + memory, prepare_script, post_call, data, @@ -345,6 +379,7 @@ impl TryFrom for VmBenchPrepared { prepare_call, dummy_contract, contract_code, + blob, empty_contracts, receipts_ctx, } = case; @@ -418,6 +453,10 @@ impl TryFrom for VmBenchPrepared { db.deploy_contract_with_id(&slots, &contract, &id)?; } + if let Some(BlobCode { code, id }) = blob { + db.storage_as_mut::().insert(&id, &code.0)?; + } + for contract_id in empty_contracts { let input_count = tx.inputs().len(); let output = Output::contract( @@ -469,8 +508,9 @@ impl TryFrom for VmBenchPrepared { .unwrap(); let tx = tx.into_checked(height, ¶ms).unwrap(); let interpreter_params = InterpreterParams::new(gas_price, ¶ms); + let memory = memory.unwrap_or_else(MemoryInstance::new); - let mut txtor = Transactor::new(MemoryInstance::new(), db, interpreter_params); + let mut txtor = Transactor::new(memory, db, interpreter_params); txtor.transact(tx); @@ -492,6 +532,7 @@ impl TryFrom for VmBenchPrepared { let start_vm = vm.clone(); let original_db = vm.as_mut().database_mut().clone(); + let original_memory = vm.memory().clone(); let mut vm = vm.add_recording(); match instruction { Instruction::CALL(call) => { @@ -509,6 +550,7 @@ impl TryFrom for VmBenchPrepared { let diff: diff::Diff = diff.into(); vm.reset_vm_state(&diff); *vm.as_mut().database_mut() = original_db; + *vm.memory_mut() = original_memory; Ok(Self { vm, diff --git a/bin/fuel-core/chainspec/local-testnet/README.md b/bin/fuel-core/chainspec/local-testnet/README.md index d46b03d1368..2fbd4ae0bfe 100644 --- a/bin/fuel-core/chainspec/local-testnet/README.md +++ b/bin/fuel-core/chainspec/local-testnet/README.md @@ -14,7 +14,7 @@ ### Gas costs -The gas costs was created from the [benchmarks_fuel_core_0_30_0.json](benchmarks_fuel_core_0_30_0.json) benchmark results. +The gas costs was created from the [benchmarks_fuel_core_0_35_0.json](benchmarks_fuel_core_0_35_0.json) benchmark results. The `new_storage_per_byte` is manually set to be `63`. The `gtf` is manually set to be `13`. The "jmpb", "jmpf", "jneb", "jnef", "jnzb", "jnzf" is manually set to be the same price as "jnei". diff --git a/bin/fuel-core/chainspec/local-testnet/benchmarks_fuel_core_0_30_0.json b/bin/fuel-core/chainspec/local-testnet/benchmarks_fuel_core_0_30_0.json deleted file mode 100644 index 7be35fa15e9..00000000000 --- a/bin/fuel-core/chainspec/local-testnet/benchmarks_fuel_core_0_30_0.json +++ /dev/null @@ -1,443 +0,0 @@ -{"reason":"benchmark-complete","id":"add/add","report_directory":"/root/fuel-core/target/criterion/reports/add/add","iteration_count":[5513,11026,16539,22052,27565,33078,38591,44104,49617,55130,60643,66156,71669,77182,82695,88208,93721,99234,104747,110260,115773,121286,126799,132312,137825,143338,148851,154364,159877,165390,170903,176416,181929,187442,192955,198468,203981,209494,215007,220520,226033,231546,237059,242572,248085,253598,259111,264624,270137,275650,281163,286676,292189,297702,303215,308728,314241,319754,325267,330780,336293,341806,347319,352832,358345,363858,369371,374884,380397,385910,391423,396936,402449,407962,413475,418988,424501,430014,435527,441040,446553,452066,457579,463092,468605,474118,479631,485144,490657,496170,501683,507196,512709,518222,523735,529248,534761,540274,545787,551300],"measured_values":[162146.0,235609.0,402642.0,480031.0,664288.0,696584.0,916761.0,977603.0,1136340.0,1099926.0,1247430.0,1362040.0,1468601.0,1644309.0,1885143.0,2002966.0,2431015.0,2523113.0,2494036.0,2494109.0,2667993.0,2664720.0,2717039.0,2931533.0,3113629.0,3427648.0,3312800.0,3284775.0,3737352.0,3849533.0,3770108.0,3649096.0,4313311.0,4308876.0,4605377.0,4533511.0,4425213.0,4638499.0,4746205.0,4757466.0,5032822.0,5614440.0,5864263.0,5363782.0,5912544.0,5602542.0,6087843.0,5877546.0,7254774.0,6840934.0,7021328.0,6726642.0,6775828.0,7583682.0,7175338.0,6874414.0,8230730.0,7538252.0,7287235.0,7020467.0,8137018.0,8229114.0,7858946.0,8057373.0,8973318.0,9048311.0,10526096.0,8476887.0,9305177.0,9423368.0,9065220.0,9430907.0,10102830.0,9656447.0,9433712.0,9457058.0,9636264.0,10076082.0,10545872.0,10278959.0,12316234.0,10300216.0,10408509.0,11143652.0,11645216.0,11873084.0,11496990.0,11515940.0,12202397.0,12041038.0,12182844.0,11543061.0,13752407.0,12169507.0,12119508.0,12344469.0,13402377.0,12986500.0,12156534.0,12477899.0],"unit":"ns","throughput":[],"typical":{"estimate":23.821480779031607,"lower_bound":23.492994773688345,"upper_bound":24.175984345661906,"unit":"ns"},"mean":{"estimate":23.392001806690164,"lower_bound":23.07771922839674,"upper_bound":23.72034502548885,"unit":"ns"},"median":{"estimate":23.29083567628031,"lower_bound":22.81567688493863,"upper_bound":23.686476042851883,"unit":"ns"},"median_abs_dev":{"estimate":1.4605429761759186,"lower_bound":1.0865137547838362,"upper_bound":1.7900104048842753,"unit":"ns"},"slope":{"estimate":23.821480779031607,"lower_bound":23.492994773688345,"upper_bound":24.175984345661906,"unit":"ns"},"change":{"mean":{"estimate":0.1586158590690392,"lower_bound":0.13620427115752712,"upper_bound":0.17822528924632455,"unit":"%"},"median":{"estimate":0.17649238299154657,"lower_bound":0.1456327925454437,"upper_bound":0.19545608489109867,"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":[5700,11400,17100,22800,28500,34200,39900,45600,51300,57000,62700,68400,74100,79800,85500,91200,96900,102600,108300,114000,119700,125400,131100,136800,142500,148200,153900,159600,165300,171000,176700,182400,188100,193800,199500,205200,210900,216600,222300,228000,233700,239400,245100,250800,256500,262200,267900,273600,279300,285000,290700,296400,302100,307800,313500,319200,324900,330600,336300,342000,347700,353400,359100,364800,370500,376200,381900,387600,393300,399000,404700,410400,416100,421800,427500,433200,438900,444600,450300,456000,461700,467400,473100,478800,484500,490200,495900,501600,507300,513000,518700,524400,530100,535800,541500,547200,552900,558600,564300,570000],"measured_values":[125383.0,297711.0,359592.0,509168.0,577031.0,772512.0,800974.0,1039511.0,1113564.0,1248160.0,1254277.0,1520119.0,1559164.0,1715976.0,1851297.0,2039762.0,2049969.0,2283308.0,2430142.0,2628981.0,2566058.0,2876847.0,3165932.0,3125192.0,3116842.0,3305745.0,3389871.0,3554955.0,3456073.0,3810102.0,3910916.0,3953687.0,3939698.0,4333256.0,4069651.0,4442541.0,4658491.0,4772362.0,4520127.0,5028564.0,5094619.0,5363147.0,5225330.0,5599891.0,5592692.0,5692496.0,5640418.0,5769767.0,6073182.0,6294848.0,6103627.0,6417971.0,6686100.0,6696519.0,6734382.0,7033129.0,6514771.0,7164147.0,7493272.0,7398978.0,7903887.0,7732614.0,7298672.0,8150650.0,8116085.0,8301070.0,8202523.0,8827950.0,8249797.0,8634366.0,8456279.0,8912424.0,8914153.0,9557093.0,9435350.0,9376382.0,9256568.0,9712766.0,9425173.0,10112461.0,9689836.0,9979556.0,9986787.0,10427586.0,10325340.0,10771587.0,10947176.0,10989431.0,10593981.0,11397653.0,10849645.0,11313032.0,11164740.0,11635776.0,11492372.0,11943583.0,11973887.0,12609223.0,12481680.0,12333129.0],"unit":"ns","throughput":[],"typical":{"estimate":21.660655234510095,"lower_bound":21.524315421462987,"upper_bound":21.798075932809223,"unit":"ns"},"mean":{"estimate":21.766996940125047,"lower_bound":21.610689000258493,"upper_bound":21.933844486249928,"unit":"ns"},"median":{"estimate":21.767328042328042,"lower_bound":21.65307354925776,"upper_bound":21.939812086118696,"unit":"ns"},"median_abs_dev":{"estimate":0.6718519678108048,"lower_bound":0.4700959252459565,"upper_bound":0.8687021800966653,"unit":"ns"},"slope":{"estimate":21.660655234510095,"lower_bound":21.524315421462987,"upper_bound":21.798075932809223,"unit":"ns"},"change":{"mean":{"estimate":0.0667111977103989,"lower_bound":0.051681038202060825,"upper_bound":0.08125490259356027,"unit":"%"},"median":{"estimate":0.08152946409191086,"lower_bound":0.06332028095154008,"upper_bound":0.09530275874203054,"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/1","report_directory":"/root/fuel-core/target/criterion/reports/aloc/1","iteration_count":[5019,10038,15057,20076,25095,30114,35133,40152,45171,50190,55209,60228,65247,70266,75285,80304,85323,90342,95361,100380,105399,110418,115437,120456,125475,130494,135513,140532,145551,150570,155589,160608,165627,170646,175665,180684,185703,190722,195741,200760,205779,210798,215817,220836,225855,230874,235893,240912,245931,250950,255969,260988,266007,271026,276045,281064,286083,291102,296121,301140,306159,311178,316197,321216,326235,331254,336273,341292,346311,351330,356349,361368,366387,371406,376425,381444,386463,391482,396501,401520,406539,411558,416577,421596,426615,431634,436653,441672,446691,451710,456729,461748,466767,471786,476805,481824,486843,491862,496881,501900],"measured_values":[167666.0,266723.0,421599.0,550063.0,666628.0,837438.0,966782.0,1099450.0,1224375.0,1306194.0,1506848.0,1745829.0,1777113.0,1897907.0,2096577.0,2187987.0,2327128.0,2434666.0,2588884.0,2739906.0,2997783.0,3057528.0,3135082.0,3453017.0,3459335.0,3664167.0,3768377.0,4061417.0,3901337.0,4059084.0,4227055.0,4342324.0,4464988.0,4626604.0,4866562.0,5216277.0,5126420.0,5167139.0,5455179.0,5505432.0,5693433.0,5980347.0,5881263.0,6253012.0,6240694.0,6566383.0,6505925.0,6484167.0,6778594.0,7264604.0,7137663.0,7127914.0,7274236.0,7632694.0,7617217.0,7566989.0,7906903.0,8044380.0,8181413.0,8553946.0,8420573.0,8549749.0,8697074.0,9619959.0,8896921.0,8825456.0,9503599.0,9792684.0,9476918.0,10068358.0,9635853.0,10031432.0,9912425.0,10426299.0,10319335.0,10412311.0,10481202.0,10814391.0,10598315.0,11602517.0,11259145.0,11391629.0,11229022.0,12093962.0,11521091.0,11946978.0,12030101.0,11899538.0,12033836.0,12205738.0,12490318.0,13122662.0,12887245.0,13423665.0,13056707.0,14293762.0,13420070.0,13470550.0,13620048.0,13657087.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":27.669434072204357,"lower_bound":27.49394062807866,"upper_bound":27.863751879203818,"unit":"ns"},"mean":{"estimate":27.67138655960091,"lower_bound":27.512306796073222,"upper_bound":27.858066513113283,"unit":"ns"},"median":{"estimate":27.511507066796966,"lower_bound":27.374542611455567,"upper_bound":27.624235597038943,"unit":"ns"},"median_abs_dev":{"estimate":0.5345707814230292,"lower_bound":0.3805754084212451,"upper_bound":0.7546354990192963,"unit":"ns"},"slope":{"estimate":27.669434072204357,"lower_bound":27.49394062807866,"upper_bound":27.863751879203818,"unit":"ns"},"change":{"mean":{"estimate":0.09018929804935527,"lower_bound":0.07976702756837879,"upper_bound":0.100718746574992,"unit":"%"},"median":{"estimate":0.09482100712269115,"lower_bound":0.08258457770965388,"upper_bound":0.10588472177009822,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"aloc/10","report_directory":"/root/fuel-core/target/criterion/reports/aloc/10","iteration_count":[5120,10240,15360,20480,25600,30720,35840,40960,46080,51200,56320,61440,66560,71680,76800,81920,87040,92160,97280,102400,107520,112640,117760,122880,128000,133120,138240,143360,148480,153600,158720,163840,168960,174080,179200,184320,189440,194560,199680,204800,209920,215040,220160,225280,230400,235520,240640,245760,250880,256000,261120,266240,271360,276480,281600,286720,291840,296960,302080,307200,312320,317440,322560,327680,332800,337920,343040,348160,353280,358400,363520,368640,373760,378880,384000,389120,394240,399360,404480,409600,414720,419840,424960,430080,435200,440320,445440,450560,455680,460800,465920,471040,476160,481280,486400,491520,496640,501760,506880,512000],"measured_values":[163136.0,276790.0,455554.0,549038.0,745726.0,830448.0,1017235.0,1096250.0,1241529.0,1328060.0,1528578.0,1711125.0,1880228.0,1889555.0,2204954.0,2233490.0,2480911.0,2374667.0,2744898.0,2694017.0,2848343.0,2848772.0,3181914.0,3108695.0,3443011.0,3392864.0,3766372.0,3606107.0,3890670.0,3906644.0,4200870.0,4084938.0,4444482.0,4394447.0,4713274.0,4631055.0,5025245.0,5106352.0,5475750.0,5364648.0,5624445.0,5754714.0,5795015.0,5711621.0,6160438.0,5952473.0,6667282.0,6353592.0,6653780.0,6383707.0,6968445.0,6704436.0,7259073.0,7042774.0,7422956.0,7643046.0,7721408.0,7517536.0,7924580.0,8381127.0,8182746.0,7984687.0,8762801.0,8555721.0,9122498.0,8589989.0,9329767.0,8906040.0,9447127.0,9262673.0,9632889.0,9308224.0,10037505.0,9657719.0,10264053.0,9740683.0,10509512.0,10051354.0,10749695.0,10291111.0,10934714.0,10545329.0,11197669.0,11051136.0,11488409.0,11149084.0,11798756.0,11382639.0,12176458.0,12326309.0,12333296.0,11888892.0,12548123.0,12154340.0,12854376.0,12390486.0,13035102.0,12674774.0,13314874.0,12875671.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":26.028183239895817,"lower_bound":25.854524789187636,"upper_bound":26.206906302626297,"unit":"ns"},"mean":{"estimate":26.404221612340965,"lower_bound":26.196376481285917,"upper_bound":26.63148122277569,"unit":"ns"},"median":{"estimate":26.36045416497565,"lower_bound":26.23998145503888,"upper_bound":26.50652436755952,"unit":"ns"},"median_abs_dev":{"estimate":0.9894410566526596,"lower_bound":0.6021698435407735,"upper_bound":1.317306838279294,"unit":"ns"},"slope":{"estimate":26.028183239895817,"lower_bound":25.854524789187636,"upper_bound":26.206906302626297,"unit":"ns"},"change":{"mean":{"estimate":0.05812971510024556,"lower_bound":0.04268999920719177,"upper_bound":0.07351426814305913,"unit":"%"},"median":{"estimate":0.061110787752883144,"lower_bound":0.05279236504034057,"upper_bound":0.08008108384857415,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"aloc/100","report_directory":"/root/fuel-core/target/criterion/reports/aloc/100","iteration_count":[5261,10522,15783,21044,26305,31566,36827,42088,47349,52610,57871,63132,68393,73654,78915,84176,89437,94698,99959,105220,110481,115742,121003,126264,131525,136786,142047,147308,152569,157830,163091,168352,173613,178874,184135,189396,194657,199918,205179,210440,215701,220962,226223,231484,236745,242006,247267,252528,257789,263050,268311,273572,278833,284094,289355,294616,299877,305138,310399,315660,320921,326182,331443,336704,341965,347226,352487,357748,363009,368270,373531,378792,384053,389314,394575,399836,405097,410358,415619,420880,426141,431402,436663,441924,447185,452446,457707,462968,468229,473490,478751,484012,489273,494534,499795,505056,510317,515578,520839,526100],"measured_values":[163953.0,291957.0,435586.0,534658.0,681787.0,803843.0,937648.0,1090747.0,1234672.0,1382451.0,1509287.0,1582612.0,1814682.0,1848838.0,2074880.0,2127369.0,2298496.0,2417871.0,2585693.0,2690212.0,3086614.0,3019335.0,3114649.0,3327230.0,3408957.0,3424631.0,3681480.0,3785265.0,3979838.0,4099145.0,4165029.0,4360186.0,4565803.0,4736866.0,4776885.0,4772636.0,5093314.0,5198725.0,5381940.0,5428318.0,5672164.0,5788655.0,5937374.0,5932529.0,6405757.0,6247275.0,6520393.0,6421938.0,6921529.0,6868852.0,6977880.0,6994570.0,7490900.0,7544649.0,7526281.0,7450936.0,7874310.0,8160699.0,8035926.0,8143053.0,8459236.0,8384546.0,8691764.0,8488674.0,9181613.0,9243922.0,9211948.0,9196553.0,9503593.0,9671518.0,10771700.0,10126882.0,10786169.0,10008627.0,10365296.0,10212228.0,11058580.0,10895898.0,11185487.0,10809315.0,11601807.0,11452061.0,11344574.0,11228226.0,11706263.0,11775151.0,12053136.0,11721964.0,12180057.0,12217665.0,12316335.0,12347526.0,12901472.0,12948384.0,12791244.0,12804680.0,13496276.0,13404992.0,13495769.0,13426097.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":26.131469851272094,"lower_bound":25.97689732517564,"upper_bound":26.30363302786195,"unit":"ns"},"mean":{"estimate":26.15652796428953,"lower_bound":26.00544678430444,"upper_bound":26.32957671881149,"unit":"ns"},"median":{"estimate":26.011789180857306,"lower_bound":25.91719967686752,"upper_bound":26.177673669734002,"unit":"ns"},"median_abs_dev":{"estimate":0.4826489381783124,"lower_bound":0.393289426100546,"upper_bound":0.6708079423537747,"unit":"ns"},"slope":{"estimate":26.131469851272094,"lower_bound":25.97689732517564,"upper_bound":26.30363302786195,"unit":"ns"},"change":{"mean":{"estimate":0.055558576356757206,"lower_bound":0.043107199291203914,"upper_bound":0.06820901994320283,"unit":"%"},"median":{"estimate":0.051623897735287194,"lower_bound":0.043487027024148306,"upper_bound":0.06649208744495912,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"aloc/1000","report_directory":"/root/fuel-core/target/criterion/reports/aloc/1000","iteration_count":[3165,6330,9495,12660,15825,18990,22155,25320,28485,31650,34815,37980,41145,44310,47475,50640,53805,56970,60135,63300,66465,69630,72795,75960,79125,82290,85455,88620,91785,94950,98115,101280,104445,107610,110775,113940,117105,120270,123435,126600,129765,132930,136095,139260,142425,145590,148755,151920,155085,158250,161415,164580,167745,170910,174075,177240,180405,183570,186735,189900,193065,196230,199395,202560,205725,208890,212055,215220,218385,221550,224715,227880,231045,234210,237375,240540,243705,246870,250035,253200,256365,259530,262695,265860,269025,272190,275355,278520,281685,284850,288015,291180,294345,297510,300675,303840,307005,310170,313335,316500],"measured_values":[384240.0,636098.0,986715.0,1354326.0,1592269.0,1973727.0,2387096.0,2543500.0,2892061.0,3305064.0,3428701.0,3864307.0,4293288.0,4342996.0,4815648.0,5285834.0,5280798.0,5801606.0,6284201.0,6207007.0,6748817.0,7279624.0,7153889.0,7703786.0,8268236.0,8082036.0,8697728.0,9249155.0,9012639.0,9645635.0,10302409.0,9930551.0,10612850.0,11440417.0,11041737.0,11558048.0,12261534.0,11793610.0,12540489.0,13238746.0,12725980.0,13509816.0,14224384.0,13680397.0,14551384.0,15290531.0,14637420.0,15420784.0,16212642.0,15535329.0,16397599.0,17194659.0,16503193.0,17349906.0,18191000.0,17422978.0,18443902.0,19182710.0,18355628.0,19279907.0,20183591.0,19236975.0,20259769.0,21197647.0,20222540.0,21209551.0,22168388.0,21172609.0,22215996.0,23189159.0,22110731.0,23173493.0,24151899.0,22997713.0,24130817.0,25137717.0,23939215.0,25080190.0,26169151.0,24856961.0,26016928.0,27137268.0,25802025.0,27004261.0,28122619.0,26788195.0,28019466.0,29087330.0,27630352.0,28984796.0,30150080.0,28567790.0,29902191.0,31083487.0,29489570.0,30834837.0,32104569.0,30444163.0,31855442.0,33075762.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":101.54653021971929,"lower_bound":100.86374197522602,"upper_bound":102.22105778031688,"unit":"ns"},"mean":{"estimate":101.87232410095156,"lower_bound":101.25816576732147,"upper_bound":102.54647727139589,"unit":"ns"},"median":{"estimate":101.60104817071641,"lower_bound":101.52206424433913,"upper_bound":101.76798782985196,"unit":"ns"},"median_abs_dev":{"estimate":4.315332587222729,"lower_bound":4.024163895016877,"upper_bound":4.506870117441905,"unit":"ns"},"slope":{"estimate":101.54653021971929,"lower_bound":100.86374197522602,"upper_bound":102.22105778031688,"unit":"ns"},"change":{"mean":{"estimate":-0.00019515869088271298,"lower_bound":-0.010186394415771557,"upper_bound":0.010112961711519056,"unit":"%"},"median":{"estimate":0.023557990550824304,"lower_bound":0.02165316838550746,"upper_bound":0.025422985004755816,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"aloc/10000","report_directory":"/root/fuel-core/target/criterion/reports/aloc/10000","iteration_count":[441,882,1323,1764,2205,2646,3087,3528,3969,4410,4851,5292,5733,6174,6615,7056,7497,7938,8379,8820,9261,9702,10143,10584,11025,11466,11907,12348,12789,13230,13671,14112,14553,14994,15435,15876,16317,16758,17199,17640,18081,18522,18963,19404,19845,20286,20727,21168,21609,22050,22491,22932,23373,23814,24255,24696,25137,25578,26019,26460,26901,27342,27783,28224,28665,29106,29547,29988,30429,30870,31311,31752,32193,32634,33075,33516,33957,34398,34839,35280,35721,36162,36603,37044,37485,37926,38367,38808,39249,39690,40131,40572,41013,41454,41895,42336,42777,43218,43659,44100],"measured_values":[680829.0,1279806.0,1904103.0,2567279.0,3212032.0,3791837.0,4455207.0,5162906.0,5752452.0,6427115.0,7036042.0,7712701.0,8404652.0,8963732.0,9555775.0,10152619.0,10765853.0,11535076.0,11967070.0,12693336.0,13316386.0,14044743.0,14787355.0,15564198.0,15899437.0,16593455.0,17013307.0,17778430.0,18330586.0,19175378.0,19888534.0,20232058.0,21037988.0,21740306.0,22133705.0,23065492.0,23390363.0,24280571.0,24720950.0,25347038.0,26391533.0,26703061.0,27298200.0,28191969.0,28561147.0,29419142.0,29889515.0,30410875.0,31012354.0,32213241.0,32330116.0,32953594.0,33754678.0,34165758.0,34960673.0,35451298.0,36231728.0,36632567.0,37253251.0,38244092.0,38559667.0,39111073.0,40499529.0,40652023.0,41367991.0,41835551.0,42805931.0,43372538.0,44227548.0,44283009.0,45105705.0,45580115.0,46015091.0,46913253.0,47354973.0,48102418.0,48556998.0,49229956.0,49635284.0,50322794.0,50584907.0,51189874.0,51400449.0,52422999.0,53127179.0,54074106.0,54338271.0,55289299.0,55683319.0,56468515.0,56980792.0,57734364.0,58134671.0,59045534.0,59398699.0,60231535.0,60756552.0,61595187.0,61881422.0,62777155.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":1429.521954067475,"lower_bound":1426.8921063367252,"upper_bound":1432.5773887824935,"unit":"ns"},"mean":{"estimate":1439.150836586028,"lower_bound":1436.0426414183064,"upper_bound":1442.6287397811936,"unit":"ns"},"median":{"estimate":1437.5132897002645,"lower_bound":1435.2076023391812,"upper_bound":1440.5810981535471,"unit":"ns"},"median_abs_dev":{"estimate":14.05951608931786,"lower_bound":9.652480177325351,"upper_bound":18.16135108492223,"unit":"ns"},"slope":{"estimate":1429.521954067475,"lower_bound":1426.8921063367252,"upper_bound":1432.5773887824935,"unit":"ns"},"change":{"mean":{"estimate":0.003249776792198844,"lower_bound":-0.0009065074611443704,"upper_bound":0.0071428188811097195,"unit":"%"},"median":{"estimate":0.001235344139234762,"lower_bound":-0.0004881703902057666,"upper_bound":0.00400551711227326,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"aloc/100000","report_directory":"/root/fuel-core/target/criterion/reports/aloc/100000","iteration_count":[63,126,189,252,315,378,441,504,567,630,693,756,819,882,945,1008,1071,1134,1197,1260,1323,1386,1449,1512,1575,1638,1701,1764,1827,1890,1953,2016,2079,2142,2205,2268,2331,2394,2457,2520,2583,2646,2709,2772,2835,2898,2961,3024,3087,3150,3213,3276,3339,3402,3465,3528,3591,3654,3717,3780,3843,3906,3969,4032,4095,4158,4221,4284,4347,4410,4473,4536,4599,4662,4725,4788,4851,4914,4977,5040,5103,5166,5229,5292,5355,5418,5481,5544,5607,5670,5733,5796,5859,5922,5985,6048,6111,6174,6237,6300],"measured_values":[799664.0,1419785.0,2096150.0,2853144.0,3504986.0,4277560.0,4903680.0,5718764.0,6311454.0,7140002.0,7693017.0,8572322.0,9097457.0,9966831.0,10472556.0,11488373.0,11870553.0,12828603.0,13289575.0,14302506.0,14740916.0,15681486.0,16140031.0,17200453.0,17503633.0,18586065.0,18877182.0,19989300.0,20256817.0,21446696.0,21686483.0,22901906.0,23083856.0,24260226.0,24473721.0,25775946.0,25860709.0,27091771.0,27309209.0,28614803.0,29073831.0,30010221.0,30120447.0,31540390.0,31481430.0,32856861.0,32890493.0,34359482.0,34291430.0,35910596.0,35778631.0,37243681.0,37092342.0,38542481.0,38478977.0,40104072.0,39877441.0,41408554.0,41294423.0,42947802.0,42874671.0,44311753.0,44126041.0,45919238.0,44945040.0,32808725.0,33470872.0,33782504.0,34449316.0,34786114.0,35431712.0,35766507.0,36600879.0,36871366.0,37447592.0,37721049.0,38492456.0,38727798.0,39500199.0,39732453.0,40477854.0,40753988.0,41490467.0,41713683.0,42494246.0,42718009.0,43450308.0,43692326.0,44407816.0,44673987.0,45482189.0,45707709.0,46556579.0,46771328.0,47577371.0,47622724.0,48590464.0,48688801.0,49652745.0,49606392.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":8829.056448591555,"lower_bound":8550.170650363267,"upper_bound":9182.29547002129,"unit":"ns"},"mean":{"estimate":10081.38896245907,"lower_bound":9762.531828533742,"upper_bound":10390.429500900507,"unit":"ns"},"median":{"estimate":11106.472119369992,"lower_bound":11094.218694885361,"upper_bound":11122.799298634181,"unit":"ns"},"median_abs_dev":{"estimate":356.80102085508736,"lower_bound":316.2873648701305,"upper_bound":411.89665609250494,"unit":"ns"},"slope":{"estimate":8829.056448591555,"lower_bound":8550.170650363267,"upper_bound":9182.29547002129,"unit":"ns"},"change":{"mean":{"estimate":-0.01440802741753111,"lower_bound":-0.057695756991778785,"upper_bound":0.030215181753067012,"unit":"%"},"median":{"estimate":0.0009144006670429583,"lower_bound":-0.0017256092899766706,"upper_bound":0.002748524274607697,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"aloc/1000000","report_directory":"/root/fuel-core/target/criterion/reports/aloc/1000000","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":[845761.0,1541644.0,2529837.0,3295080.0,4248143.0,4981955.0,6004676.0,6738993.0,7831434.0,8524844.0,9527591.0,10143908.0,11221036.0,11983526.0,12876952.0,13648260.0,14851668.0,15477419.0,16509552.0,17137710.0,18132824.0,18802017.0,19864270.0,20568751.0,21586611.0,22286004.0,23350752.0,23938273.0,24986179.0,25670989.0,26726485.0,27446617.0,28518805.0,29111130.0,30322046.0,30912317.0,32039282.0,32581199.0,33825807.0,34305112.0,35552352.0,36124842.0,37203616.0,37741030.0,39039630.0,40307402.0,40718869.0,41305598.0,42388905.0,43053801.0,44137367.0,44736173.0,46398343.0,47266427.0,47856201.0,48291448.0,49369085.0,49966294.0,51338233.0,51789686.0,52870636.0,53435910.0,54575496.0,55285072.0,56228136.0,56860400.0,57942797.0,58606101.0,59683925.0,60211904.0,61402549.0,62141675.0,63028299.0,63816058.0,64967641.0,65531759.0,66526003.0,67198522.0,68364275.0,68904185.0,70051002.0,70898827.0,71613902.0,72423309.0,73624592.0,74258637.0,75403312.0,75925768.0,77074932.0,77722536.0,78991313.0,79387720.0,80485711.0,80902576.0,82156342.0,82843275.0,83947637.0,84431353.0,85657877.0,86414854.0],"unit":"ns","throughput":[{"per_iteration":1000000,"unit":"bytes"}],"typical":{"estimate":216006.679944584,"lower_bound":215853.43588539763,"upper_bound":216163.14538971265,"unit":"ns"},"mean":{"estimate":215176.37816772383,"lower_bound":214525.3504054072,"upper_bound":215685.66118505588,"unit":"ns"},"median":{"estimate":215779.4293536325,"lower_bound":215506.47076612903,"upper_bound":215997.22375,"unit":"ns"},"median_abs_dev":{"estimate":1056.6448539625094,"lower_bound":731.7107627742579,"upper_bound":1422.769271380522,"unit":"ns"},"slope":{"estimate":216006.679944584,"lower_bound":215853.43588539763,"upper_bound":216163.14538971265,"unit":"ns"},"change":{"mean":{"estimate":-0.00919118201826874,"lower_bound":-0.013106652722588439,"upper_bound":-0.005391187595385718,"unit":"%"},"median":{"estimate":-0.009713247808253778,"lower_bound":-0.011269848167508867,"upper_bound":-0.008393437546875271,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"aloc/10000000","report_directory":"/root/fuel-core/target/criterion/reports/aloc/10000000","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":[31123688.0,38344895.0,31003044.0,38418850.0,30867472.0,38180077.0,30712956.0,38320911.0,30867765.0,38389294.0,30976794.0,38817729.0,31271807.0,38480151.0,30735838.0,38808873.0,30975527.0,38263996.0,30911513.0,38269805.0,30583509.0,38601658.0,31010644.0,38331265.0,30881751.0,38254891.0,30697446.0,38433757.0,30882023.0,38303538.0,30735874.0,38266141.0,30904937.0,38787000.0,30917273.0,38710359.0,31360917.0,38745081.0,30820440.0,38457532.0,30891625.0,38578682.0,30746351.0,38390435.0,31118841.0,38340233.0,31135108.0,38418578.0,31045595.0,38701404.0,30812227.0,38730257.0,31036610.0,38463901.0,30905444.0,38496474.0,30885127.0,38145660.0,30665427.0,38344763.0,30831739.0,38265888.0,30752215.0,38347565.0,30717587.0,38351429.0,30772087.0,38558156.0,30813260.0,38627073.0,30840620.0,38223085.0,30701411.0,38404295.0,31019108.0,38363193.0,31047755.0,38754017.0,30916251.0,38186232.0,30709175.0,38447517.0,31076105.0,38388540.0,30921103.0,38617339.0,30910805.0,38272245.0,30728449.0,38448940.0,30768551.0,38304747.0,31010524.0,38208142.0,31284012.0,38347767.0,30812118.0,38544286.0,30807403.0,38426344.0],"unit":"ns","throughput":[{"per_iteration":10000000,"unit":"bytes"}],"typical":{"estimate":11556022.803333327,"lower_bound":11307277.948666668,"upper_bound":11803707.381749999,"unit":"ns"},"mean":{"estimate":11556022.803333327,"lower_bound":11307277.948666668,"upper_bound":11803707.381749999,"unit":"ns"},"median":{"estimate":11584429.5,"lower_bound":10344117.166666666,"upper_bound":12756601.666666666,"unit":"ns"},"median_abs_dev":{"estimate":1859857.1738809347,"lower_bound":146551.05379819687,"upper_bound":1870240.315696598,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0030020871220584056,"lower_bound":-0.026327162905670526,"upper_bound":0.03456456824465105,"unit":"%"},"median":{"estimate":0.0005901195619402166,"lower_bound":-0.18471026190461004,"upper_bound":0.2359198648680354,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"aloc/30000000","report_directory":"/root/fuel-core/target/criterion/reports/aloc/30000000","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":[46504825.0,46650862.0,46472748.0,46568298.0,46367891.0,46451870.0,46488121.0,46516025.0,47109133.0,46926506.0,46837378.0,46438137.0,46527940.0,46634000.0,47280548.0,46416614.0,46990804.0,46555595.0,46759836.0,46737073.0,47147012.0,46890670.0,46451775.0,46413052.0,46600033.0,46544105.0,46788731.0,46895574.0,46369138.0,46590666.0,46955827.0,46575053.0,46661853.0,47053882.0,46601754.0,46557696.0,46583141.0,46426245.0,46377833.0,46571309.0,46814821.0,46708122.0,46668626.0,46395409.0,46816008.0,46731905.0,46732573.0,46658005.0,47045360.0,46332627.0,46470958.0,46695192.0,46675132.0,46373264.0,46573639.0,47088166.0,47174987.0,46580215.0,47515851.0,46371428.0,46727057.0,46503652.0,46900593.0,46497179.0,46394202.0,46629496.0,46850406.0,46834290.0,46344527.0,46503868.0,47066476.0,46459077.0,47108921.0,46582528.0,46400692.0,47373179.0,46757226.0,46152878.0,46236084.0,46565694.0,46760343.0,46827550.0,46610302.0,46294710.0,46308059.0,46790082.0,46583552.0,46545311.0,46246554.0,47009965.0,46386250.0,46854070.0,46623921.0,46411545.0,46681331.0,46533691.0,46631713.0,46758530.0,46708573.0,46494261.0],"unit":"ns","throughput":[{"per_iteration":30000000,"unit":"bytes"}],"typical":{"estimate":23328300.895,"lower_bound":23303474.835,"upper_bound":23354150.95775,"unit":"ns"},"mean":{"estimate":23328300.895,"lower_bound":23303474.835,"upper_bound":23354150.95775,"unit":"ns"},"median":{"estimate":23300446.75,"lower_bound":23284149.0,"upper_bound":23334313.0,"unit":"ns"},"median_abs_dev":{"estimate":117340.0042667985,"lower_bound":90222.50944823027,"upper_bound":148192.90971904993,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.00320030681811323,"lower_bound":0.0016672179317564876,"upper_bound":0.004768255717490565,"unit":"%"},"median":{"estimate":0.0029020868894695795,"lower_bound":0.001150236896292612,"upper_bound":0.005043620704231699,"unit":"%"},"change":"NoChange"}} -{"reason":"group-complete","group_name":"aloc","benchmarks":["aloc/aloc","aloc/1","aloc/10","aloc/100","aloc/1000","aloc/10000","aloc/100000","aloc/1000000","aloc/10000000","aloc/30000000"],"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":[5827,11654,17481,23308,29135,34962,40789,46616,52443,58270,64097,69924,75751,81578,87405,93232,99059,104886,110713,116540,122367,128194,134021,139848,145675,151502,157329,163156,168983,174810,180637,186464,192291,198118,203945,209772,215599,221426,227253,233080,238907,244734,250561,256388,262215,268042,273869,279696,285523,291350,297177,303004,308831,314658,320485,326312,332139,337966,343793,349620,355447,361274,367101,372928,378755,384582,390409,396236,402063,407890,413717,419544,425371,431198,437025,442852,448679,454506,460333,466160,471987,477814,483641,489468,495295,501122,506949,512776,518603,524430,530257,536084,541911,547738,553565,559392,565219,571046,576873,582700],"measured_values":[146545.0,293956.0,347809.0,455030.0,531159.0,683692.0,804659.0,912664.0,989424.0,1153978.0,1223250.0,1319213.0,1525142.0,1615468.0,1795536.0,1824007.0,1938684.0,1972980.0,2107739.0,2354633.0,2579825.0,2462501.0,2681977.0,2620509.0,3110646.0,3081878.0,3199191.0,3359679.0,3487040.0,3528273.0,3682096.0,3949957.0,3920053.0,3983193.0,4158996.0,4263045.0,4428819.0,4488760.0,4549772.0,4716418.0,4828732.0,5099870.0,5199787.0,5380223.0,5367429.0,5357455.0,5544705.0,5938909.0,5581599.0,5852601.0,6064947.0,6019178.0,6218457.0,6168803.0,6613564.0,7103910.0,7072272.0,6863424.0,6934004.0,7171126.0,7367055.0,7259683.0,7357544.0,7802643.0,9137825.0,8340187.0,7942931.0,7955782.0,8271179.0,8366734.0,8420759.0,8581267.0,8563309.0,8777715.0,8758477.0,9319854.0,8917897.0,9261192.0,9613614.0,9824872.0,9605699.0,9519865.0,9831406.0,10488983.0,10550746.0,9863694.0,10010129.0,10155559.0,10374301.0,10641193.0,10579087.0,10770134.0,10626257.0,10764770.0,11244159.0,11296629.0,11291970.0,11311196.0,11577805.0,11702314.0],"unit":"ns","throughput":[],"typical":{"estimate":20.333722467595482,"lower_bound":20.188378508261167,"upper_bound":20.506181417347,"unit":"ns"},"mean":{"estimate":20.328731526125875,"lower_bound":20.141973516933376,"upper_bound":20.541836584287964,"unit":"ns"},"median":{"estimate":20.20813465072183,"lower_bound":20.09038508890398,"upper_bound":20.335030369792726,"unit":"ns"},"median_abs_dev":{"estimate":0.4954649114079012,"lower_bound":0.34762892152825303,"upper_bound":0.684795406804741,"unit":"ns"},"slope":{"estimate":20.333722467595482,"lower_bound":20.188378508261167,"upper_bound":20.506181417347,"unit":"ns"},"change":{"mean":{"estimate":0.03262947916585324,"lower_bound":0.0156973867080094,"upper_bound":0.050420577476321185,"unit":"%"},"median":{"estimate":0.04202224069377447,"lower_bound":0.027196775869043233,"upper_bound":0.06157299250603909,"unit":"%"},"change":"Regressed"}} -{"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":[5774,11548,17322,23096,28870,34644,40418,46192,51966,57740,63514,69288,75062,80836,86610,92384,98158,103932,109706,115480,121254,127028,132802,138576,144350,150124,155898,161672,167446,173220,178994,184768,190542,196316,202090,207864,213638,219412,225186,230960,236734,242508,248282,254056,259830,265604,271378,277152,282926,288700,294474,300248,306022,311796,317570,323344,329118,334892,340666,346440,352214,357988,363762,369536,375310,381084,386858,392632,398406,404180,409954,415728,421502,427276,433050,438824,444598,450372,456146,461920,467694,473468,479242,485016,490790,496564,502338,508112,513886,519660,525434,531208,536982,542756,548530,554304,560078,565852,571626,577400],"measured_values":[151316.0,291313.0,390881.0,506283.0,619723.0,829017.0,888439.0,1092594.0,1122784.0,1412416.0,1349300.0,1587996.0,1635688.0,1803113.0,1866291.0,2070237.0,2084487.0,2149139.0,2159900.0,2288127.0,2429411.0,2736135.0,2883615.0,2862403.0,3115052.0,3176474.0,3224255.0,3320280.0,3604257.0,3689113.0,3919059.0,3628861.0,4038753.0,4158356.0,4166376.0,4424875.0,4513130.0,4400592.0,4687009.0,5119417.0,4870639.0,5109745.0,5274710.0,5424561.0,5524597.0,5785622.0,5815428.0,5869185.0,6148181.0,6074725.0,6141069.0,6381997.0,6407924.0,6617922.0,6719627.0,7030296.0,6981072.0,7023709.0,7070943.0,7355577.0,7414282.0,7783343.0,7598998.0,7829692.0,8087999.0,8229896.0,8021326.0,8359912.0,8244400.0,8753452.0,8753191.0,8872411.0,9006373.0,8994909.0,9011321.0,9245203.0,9255773.0,9419344.0,9693882.0,9900901.0,9278131.0,9647533.0,9978228.0,9564435.0,11550995.0,10826616.0,10416925.0,10261275.0,10497772.0,10882169.0,11066271.0,10880441.0,11365533.0,11666281.0,11705339.0,11496879.0,11985795.0,12104899.0,12561501.0,12179724.0],"unit":"ns","throughput":[],"typical":{"estimate":21.116880628392366,"lower_bound":20.956553692915477,"upper_bound":21.291215285569663,"unit":"ns"},"mean":{"estimate":21.357108285142107,"lower_bound":21.167564148024006,"upper_bound":21.566428917803723,"unit":"ns"},"median":{"estimate":21.233965392530408,"lower_bound":21.142320994988125,"upper_bound":21.339469126574663,"unit":"ns"},"median_abs_dev":{"estimate":0.5572794073044354,"lower_bound":0.411030394949637,"upper_bound":0.7237755753062394,"unit":"ns"},"slope":{"estimate":21.116880628392366,"lower_bound":20.956553692915477,"upper_bound":21.291215285569663,"unit":"ns"},"change":{"mean":{"estimate":0.11272980718555559,"lower_bound":0.09279000479850677,"upper_bound":0.13240138085240716,"unit":"%"},"median":{"estimate":0.13245024684203544,"lower_bound":0.10545368436512215,"upper_bound":0.14906235132297474,"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":[5652,11304,16956,22608,28260,33912,39564,45216,50868,56520,62172,67824,73476,79128,84780,90432,96084,101736,107388,113040,118692,124344,129996,135648,141300,146952,152604,158256,163908,169560,175212,180864,186516,192168,197820,203472,209124,214776,220428,226080,231732,237384,243036,248688,254340,259992,265644,271296,276948,282600,288252,293904,299556,305208,310860,316512,322164,327816,333468,339120,344772,350424,356076,361728,367380,373032,378684,384336,389988,395640,401292,406944,412596,418248,423900,429552,435204,440856,446508,452160,457812,463464,469116,474768,480420,486072,491724,497376,503028,508680,514332,519984,525636,531288,536940,542592,548244,553896,559548,565200],"measured_values":[142587.0,274067.0,381242.0,590434.0,648953.0,865302.0,953337.0,1117355.0,1170504.0,1364879.0,1375062.0,1649082.0,1681009.0,1934709.0,1867459.0,2100265.0,2167087.0,2454881.0,2550961.0,2749601.0,2719901.0,2988485.0,2930365.0,3200407.0,3193342.0,3349047.0,3514755.0,3905702.0,3604762.0,4325692.0,4189141.0,4488826.0,4201979.0,4535899.0,4475995.0,4754750.0,4797774.0,5075175.0,4981791.0,5588099.0,5240699.0,5629175.0,5450766.0,5755427.0,5743803.0,6164356.0,5832116.0,6341411.0,6255612.0,7154885.0,6736669.0,7366489.0,6812603.0,7359155.0,7212443.0,7855569.0,7658601.0,8836157.0,7893331.0,8372460.0,8074327.0,8611634.0,8226230.0,8881404.0,8441482.0,8720085.0,8555964.0,8888917.0,8846115.0,9275582.0,9132424.0,9663681.0,9476205.0,10062398.0,9661887.0,10248809.0,9865806.0,10195372.0,10332628.0,11611952.0,10446686.0,10627895.0,10449352.0,10961094.0,11096744.0,11938242.0,11203486.0,12850001.0,11955836.0,13076743.0,12560936.0,13060145.0,12019080.0,12333626.0,12316041.0,12499689.0,12594030.0,13593450.0,12602390.0,13571713.0],"unit":"ns","throughput":[],"typical":{"estimate":23.59980547222894,"lower_bound":23.346210310013973,"upper_bound":23.86996305194996,"unit":"ns"},"mean":{"estimate":23.597125233690452,"lower_bound":23.401492805567468,"upper_bound":23.80077273964987,"unit":"ns"},"median":{"estimate":23.369421258713437,"lower_bound":23.09800591149411,"upper_bound":23.709791070494475,"unit":"ns"},"median_abs_dev":{"estimate":1.0195873246277563,"lower_bound":0.7237575184173244,"upper_bound":1.2479658336390955,"unit":"ns"},"slope":{"estimate":23.59980547222894,"lower_bound":23.346210310013973,"upper_bound":23.86996305194996,"unit":"ns"},"change":{"mean":{"estimate":0.15586801596881306,"lower_bound":0.14335120418441227,"upper_bound":0.1679184319256431,"unit":"%"},"median":{"estimate":0.15076347697798576,"lower_bound":0.1330781862481687,"upper_bound":0.16807505374882337,"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":[5584,11168,16752,22336,27920,33504,39088,44672,50256,55840,61424,67008,72592,78176,83760,89344,94928,100512,106096,111680,117264,122848,128432,134016,139600,145184,150768,156352,161936,167520,173104,178688,184272,189856,195440,201024,206608,212192,217776,223360,228944,234528,240112,245696,251280,256864,262448,268032,273616,279200,284784,290368,295952,301536,307120,312704,318288,323872,329456,335040,340624,346208,351792,357376,362960,368544,374128,379712,385296,390880,396464,402048,407632,413216,418800,424384,429968,435552,441136,446720,452304,457888,463472,469056,474640,480224,485808,491392,496976,502560,508144,513728,519312,524896,530480,536064,541648,547232,552816,558400],"measured_values":[143235.0,255811.0,373844.0,505037.0,699810.0,819906.0,923313.0,1046665.0,1154435.0,1325870.0,1313463.0,1608888.0,1746558.0,1859889.0,1860766.0,2183948.0,2106544.0,2401717.0,2347442.0,2581578.0,2612468.0,2845071.0,2969392.0,3181638.0,3330540.0,3416775.0,3300556.0,3905266.0,3602810.0,3918499.0,4020126.0,4211827.0,4307209.0,4436692.0,4580295.0,4689876.0,4969803.0,5007272.0,5285424.0,5317291.0,5080623.0,5493041.0,5341398.0,5909814.0,5395373.0,5884674.0,5858465.0,6328002.0,6756177.0,7277988.0,7059865.0,7116283.0,6895726.0,7360986.0,7650781.0,7751160.0,6938242.0,7672131.0,7884175.0,7734126.0,7585005.0,7996361.0,7940382.0,8242268.0,8316231.0,8849504.0,8919818.0,8882051.0,8659336.0,8544052.0,9762791.0,9301514.0,9767193.0,10314191.0,10096317.0,9685814.0,9705039.0,11465471.0,11094306.0,10152387.0,10323043.0,10718870.0,10595103.0,10865357.0,11390334.0,11513443.0,12223440.0,12349724.0,11589826.0,11514419.0,12163053.0,11931476.0,11342682.0,11758405.0,11427227.0,11857904.0,12734226.0,11988061.0,12908966.0,12264516.0],"unit":"ns","throughput":[],"typical":{"estimate":23.337063089119074,"lower_bound":23.059046256616195,"upper_bound":23.632584044509017,"unit":"ns"},"mean":{"estimate":23.4087291201642,"lower_bound":23.21112337546364,"upper_bound":23.611096374498768,"unit":"ns"},"median":{"estimate":23.382711155248764,"lower_bound":23.159278132326126,"upper_bound":23.597835922183684,"unit":"ns"},"median_abs_dev":{"estimate":0.931839009081711,"lower_bound":0.7281409188342817,"upper_bound":1.2929290697051419,"unit":"ns"},"slope":{"estimate":23.337063089119074,"lower_bound":23.059046256616195,"upper_bound":23.632584044509017,"unit":"ns"},"change":{"mean":{"estimate":0.09234101888060287,"lower_bound":0.07602808778627285,"upper_bound":0.10862148551704469,"unit":"%"},"median":{"estimate":0.10551171951358129,"lower_bound":0.08923747797939074,"upper_bound":0.12089383725666147,"unit":"%"},"change":"Regressed"}} -{"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":[5679,11358,17037,22716,28395,34074,39753,45432,51111,56790,62469,68148,73827,79506,85185,90864,96543,102222,107901,113580,119259,124938,130617,136296,141975,147654,153333,159012,164691,170370,176049,181728,187407,193086,198765,204444,210123,215802,221481,227160,232839,238518,244197,249876,255555,261234,266913,272592,278271,283950,289629,295308,300987,306666,312345,318024,323703,329382,335061,340740,346419,352098,357777,363456,369135,374814,380493,386172,391851,397530,403209,408888,414567,420246,425925,431604,437283,442962,448641,454320,459999,465678,471357,477036,482715,488394,494073,499752,505431,511110,516789,522468,528147,533826,539505,545184,550863,556542,562221,567900],"measured_values":[140460.0,264587.0,341449.0,473890.0,583137.0,711678.0,838614.0,905082.0,1037329.0,1151628.0,1300246.0,1376739.0,1530501.0,1598063.0,1821808.0,1942124.0,1963812.0,2069704.0,2277942.0,2272892.0,2511592.0,2651361.0,2710979.0,2865445.0,2940307.0,3052789.0,3192934.0,3267002.0,3260982.0,3364746.0,3795983.0,3932197.0,3869401.0,3954296.0,4068657.0,4542264.0,4413640.0,4273023.0,4555607.0,4580681.0,5077860.0,5115867.0,5194775.0,5301179.0,5397428.0,5269225.0,5372771.0,5603174.0,5836694.0,5756817.0,6007369.0,6175152.0,6254244.0,6305760.0,6437738.0,7061083.0,7192196.0,7647972.0,7237730.0,7395357.0,7203225.0,7762173.0,8312680.0,7648681.0,7681223.0,7524253.0,7727677.0,7802161.0,8021195.0,8095970.0,8286715.0,9225818.0,8688183.0,8561865.0,9020746.0,9295900.0,8828238.0,9182174.0,9192128.0,9536249.0,9437660.0,9215428.0,9894805.0,9818641.0,10012251.0,10745596.0,11208311.0,10328686.0,10422698.0,10478360.0,10759411.0,10771485.0,10706139.0,11030177.0,11398437.0,11595591.0,11317830.0,11252609.0,11620339.0,12080448.0],"unit":"ns","throughput":[],"typical":{"estimate":20.908779181818648,"lower_bound":20.746119054117266,"upper_bound":21.090506207793982,"unit":"ns"},"mean":{"estimate":20.92184901797035,"lower_bound":20.767346592890988,"upper_bound":21.090132680183366,"unit":"ns"},"median":{"estimate":20.736224193444293,"lower_bound":20.616195466659327,"upper_bound":20.86150730762458,"unit":"ns"},"median_abs_dev":{"estimate":0.5749163761653557,"lower_bound":0.409193436648615,"upper_bound":0.724453739368475,"unit":"ns"},"slope":{"estimate":20.908779181818648,"lower_bound":20.746119054117266,"upper_bound":21.090506207793982,"unit":"ns"},"change":{"mean":{"estimate":0.02231746209633667,"lower_bound":0.008028760836695454,"upper_bound":0.0373503417301792,"unit":"%"},"median":{"estimate":0.005697173218548235,"lower_bound":-0.005026758047871197,"upper_bound":0.01884828915866832,"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":[5464,10928,16392,21856,27320,32784,38248,43712,49176,54640,60104,65568,71032,76496,81960,87424,92888,98352,103816,109280,114744,120208,125672,131136,136600,142064,147528,152992,158456,163920,169384,174848,180312,185776,191240,196704,202168,207632,213096,218560,224024,229488,234952,240416,245880,251344,256808,262272,267736,273200,278664,284128,289592,295056,300520,305984,311448,316912,322376,327840,333304,338768,344232,349696,355160,360624,366088,371552,377016,382480,387944,393408,398872,404336,409800,415264,420728,426192,431656,437120,442584,448048,453512,458976,464440,469904,475368,480832,486296,491760,497224,502688,508152,513616,519080,524544,530008,535472,540936,546400],"measured_values":[180608.0,331413.0,538171.0,659857.0,863112.0,917808.0,1154090.0,1245122.0,1449965.0,1525445.0,1748438.0,1893097.0,2015688.0,2177183.0,2422321.0,2435000.0,2546501.0,2701970.0,2911817.0,2979356.0,3239848.0,3362138.0,3324137.0,3576481.0,3784439.0,3955154.0,4131459.0,4621822.0,4672069.0,4586131.0,4891713.0,4915496.0,5274060.0,4942788.0,5551805.0,5370360.0,5485203.0,5752292.0,5795835.0,6067984.0,5902275.0,6124626.0,6430004.0,6489120.0,6694569.0,6570198.0,7027162.0,6901011.0,7314242.0,7444109.0,7593826.0,7654987.0,8126288.0,8289263.0,8401216.0,8053643.0,9061293.0,9174693.0,9246592.0,9190740.0,9101063.0,9157871.0,9882593.0,9696410.0,10141457.0,10197999.0,10187018.0,10015873.0,10270796.0,10928191.0,11126429.0,10987788.0,10684007.0,11234241.0,12573682.0,12076261.0,11856928.0,11834337.0,12647350.0,12563168.0,12758240.0,12442920.0,12923386.0,13145559.0,14159878.0,13407724.0,12636180.0,13231300.0,13488884.0,13254063.0,13575395.0,13839865.0,13901138.0,14192700.0,15144696.0,14644130.0,14570209.0,14502429.0,14856185.0,14834070.0],"unit":"ns","throughput":[],"typical":{"estimate":27.915307706138286,"lower_bound":27.690769473510663,"upper_bound":28.15805718805226,"unit":"ns"},"mean":{"estimate":28.137688708524728,"lower_bound":27.902282293170785,"upper_bound":28.391031801992877,"unit":"ns"},"median":{"estimate":27.91796493716447,"lower_bound":27.72127144784247,"upper_bound":28.07086353277451,"unit":"ns"},"median_abs_dev":{"estimate":0.9796951995752172,"lower_bound":0.743384603046421,"upper_bound":1.1910539614344247,"unit":"ns"},"slope":{"estimate":27.915307706138286,"lower_bound":27.690769473510663,"upper_bound":28.15805718805226,"unit":"ns"},"change":{"mean":{"estimate":0.09431327830230285,"lower_bound":0.08080962660513678,"upper_bound":0.10901036517542845,"unit":"%"},"median":{"estimate":0.10635074443702508,"lower_bound":0.09402184209171348,"upper_bound":0.11514158047233525,"unit":"%"},"change":"Regressed"}} -{"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":[5524,11048,16572,22096,27620,33144,38668,44192,49716,55240,60764,66288,71812,77336,82860,88384,93908,99432,104956,110480,116004,121528,127052,132576,138100,143624,149148,154672,160196,165720,171244,176768,182292,187816,193340,198864,204388,209912,215436,220960,226484,232008,237532,243056,248580,254104,259628,265152,270676,276200,281724,287248,292772,298296,303820,309344,314868,320392,325916,331440,336964,342488,348012,353536,359060,364584,370108,375632,381156,386680,392204,397728,403252,408776,414300,419824,425348,430872,436396,441920,447444,452968,458492,464016,469540,475064,480588,486112,491636,497160,502684,508208,513732,519256,524780,530304,535828,541352,546876,552400],"measured_values":[143307.0,250024.0,412774.0,431358.0,615416.0,724494.0,983548.0,1083829.0,1189952.0,1288782.0,1516015.0,1519158.0,1842142.0,1804610.0,1970030.0,2089322.0,2103718.0,2177761.0,2446775.0,2639622.0,2751014.0,2859987.0,3001925.0,3221008.0,3492338.0,3388631.0,3665547.0,3693843.0,3482665.0,3802906.0,4292524.0,3695487.0,3906843.0,3965245.0,4545528.0,4521542.0,5095492.0,4795439.0,5093490.0,5305171.0,5548073.0,5804373.0,5409276.0,5855161.0,6027575.0,6352216.0,6315698.0,6008399.0,5935284.0,6691248.0,6304104.0,6554774.0,7375988.0,6950140.0,7715294.0,6827729.0,8302699.0,8269057.0,8218568.0,7982571.0,8273584.0,7947382.0,8599291.0,7882731.0,8483572.0,8665292.0,9533955.0,8558048.0,9615935.0,8365355.0,9576430.0,8965174.0,10269635.0,9574860.0,10401955.0,9104509.0,10652523.0,9995787.0,10928358.0,10228771.0,11145008.0,9812807.0,10420652.0,10890073.0,11638560.0,10939102.0,11983011.0,11156529.0,12241797.0,11567786.0,11550462.0,11145836.0,12109386.0,11754249.0,13519008.0,12847368.0,13037377.0,11812702.0,14076142.0,12029449.0],"unit":"ns","throughput":[],"typical":{"estimate":23.71675185257672,"lower_bound":23.36986302094362,"upper_bound":24.06667838878864,"unit":"ns"},"mean":{"estimate":23.66983548570805,"lower_bound":23.408648657329596,"upper_bound":23.930069500375698,"unit":"ns"},"median":{"estimate":23.633336645625413,"lower_bound":23.32352877124019,"upper_bound":24.08451303403331,"unit":"ns"},"median_abs_dev":{"estimate":1.4601787311002823,"lower_bound":1.1649047919857405,"upper_bound":1.8784431591187996,"unit":"ns"},"slope":{"estimate":23.71675185257672,"lower_bound":23.36986302094362,"upper_bound":24.06667838878864,"unit":"ns"},"change":{"mean":{"estimate":0.1412146025902672,"lower_bound":0.11847476054391533,"upper_bound":0.16255789625705758,"unit":"%"},"median":{"estimate":0.16249895170889062,"lower_bound":0.136095319882924,"upper_bound":0.19168108089794345,"unit":"%"},"change":"Regressed"}} -{"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":[5644,11288,16932,22576,28220,33864,39508,45152,50796,56440,62084,67728,73372,79016,84660,90304,95948,101592,107236,112880,118524,124168,129812,135456,141100,146744,152388,158032,163676,169320,174964,180608,186252,191896,197540,203184,208828,214472,220116,225760,231404,237048,242692,248336,253980,259624,265268,270912,276556,282200,287844,293488,299132,304776,310420,316064,321708,327352,332996,338640,344284,349928,355572,361216,366860,372504,378148,383792,389436,395080,400724,406368,412012,417656,423300,428944,434588,440232,445876,451520,457164,462808,468452,474096,479740,485384,491028,496672,502316,507960,513604,519248,524892,530536,536180,541824,547468,553112,558756,564400],"measured_values":[151568.0,285116.0,357673.0,565755.0,595289.0,730805.0,867678.0,999474.0,1164224.0,1397690.0,1316619.0,1622450.0,1710953.0,1821892.0,1763531.0,2106176.0,1954879.0,2163530.0,2509219.0,2642140.0,2455988.0,2778786.0,2592341.0,3151871.0,3024475.0,3296865.0,3260375.0,3777882.0,3393935.0,3994984.0,4071913.0,4150266.0,4323014.0,4635939.0,4453779.0,4755724.0,4938638.0,4948974.0,5106129.0,5308077.0,5031310.0,5397840.0,5353830.0,5235743.0,5126156.0,5792112.0,5316873.0,5974226.0,6701591.0,6443645.0,6341579.0,6885688.0,6678417.0,7220854.0,7322241.0,7402940.0,7542867.0,8090801.0,7876483.0,7800519.0,7933931.0,7771432.0,7779075.0,7908615.0,8037040.0,8235966.0,8017566.0,8207252.0,8683199.0,8328620.0,9125607.0,8384763.0,8690713.0,9456346.0,9956357.0,10369505.0,9814115.0,9958178.0,10122864.0,10207526.0,10393902.0,10128261.0,11032368.0,10459938.0,10855784.0,10341411.0,10888789.0,11157371.0,11203843.0,11475049.0,12300877.0,11728636.0,11918511.0,11687582.0,12591671.0,12586837.0,12062579.0,13542786.0,12393032.0,13621987.0],"unit":"ns","throughput":[],"typical":{"estimate":22.630428869748414,"lower_bound":22.3931606780569,"upper_bound":22.871993782506788,"unit":"ns"},"mean":{"estimate":22.613670853655016,"lower_bound":22.376570394706764,"upper_bound":22.85040239321149,"unit":"ns"},"median":{"estimate":22.613662625615586,"lower_bound":22.30961698456229,"upper_bound":22.91959996850146,"unit":"ns"},"median_abs_dev":{"estimate":1.127813188228273,"lower_bound":0.9007082202697816,"upper_bound":1.4593019136290413,"unit":"ns"},"slope":{"estimate":22.630428869748414,"lower_bound":22.3931606780569,"upper_bound":22.871993782506788,"unit":"ns"},"change":{"mean":{"estimate":0.1765366231551957,"lower_bound":0.15850116790456323,"upper_bound":0.19428225637759375,"unit":"%"},"median":{"estimate":0.18774799054786206,"lower_bound":0.16883656877998066,"upper_bound":0.2093839408452396,"unit":"%"},"change":"Regressed"}} -{"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":[560,1120,1680,2240,2800,3360,3920,4480,5040,5600,6160,6720,7280,7840,8400,8960,9520,10080,10640,11200,11760,12320,12880,13440,14000,14560,15120,15680,16240,16800,17360,17920,18480,19040,19600,20160,20720,21280,21840,22400,22960,23520,24080,24640,25200,25760,26320,26880,27440,28000,28560,29120,29680,30240,30800,31360,31920,32480,33040,33600,34160,34720,35280,35840,36400,36960,37520,38080,38640,39200,39760,40320,40880,41440,42000,42560,43120,43680,44240,44800,45360,45920,46480,47040,47600,48160,48720,49280,49840,50400,50960,51520,52080,52640,53200,53760,54320,54880,55440,56000],"measured_values":[28621.0,52322.0,76192.0,104393.0,126274.0,155849.0,177991.0,209064.0,228326.0,259814.0,280781.0,315025.0,330944.0,370377.0,385714.0,435240.0,434085.0,473789.0,487901.0,528538.0,532324.0,573457.0,583050.0,633942.0,637153.0,682455.0,692837.0,737721.0,740477.0,791338.0,794229.0,843786.0,843004.0,900886.0,888358.0,947211.0,938417.0,995739.0,996535.0,1049514.0,1048418.0,1098456.0,1099508.0,1151430.0,1143004.0,1209518.0,1191374.0,1259748.0,1251844.0,1307660.0,1309779.0,1383685.0,1356761.0,1420422.0,1401889.0,1471869.0,1455879.0,1519132.0,1536887.0,1591929.0,1585737.0,1639486.0,1639597.0,1643404.0,1662092.0,1753713.0,1746507.0,1729361.0,1767090.0,1751589.0,1829315.0,1798184.0,1884801.0,1851534.0,1936148.0,1901023.0,1988805.0,1954194.0,2038786.0,1980474.0,2085554.0,2049241.0,2148724.0,2095846.0,2204338.0,2139173.0,2250820.0,2187334.0,2300577.0,2243069.0,2360313.0,2294281.0,2425224.0,2329935.0,2476966.0,2401206.0,2517899.0,2447909.0,2569230.0,2486610.0],"unit":"ns","throughput":[],"typical":{"estimate":45.67930905761152,"lower_bound":45.43614062386098,"upper_bound":45.932480927961386,"unit":"ns"},"mean":{"estimate":46.04230217360569,"lower_bound":45.84349260030734,"upper_bound":46.250020291854376,"unit":"ns"},"median":{"estimate":46.04680153707052,"lower_bound":45.69747386759582,"upper_bound":46.342532467532465,"unit":"ns"},"median_abs_dev":{"estimate":1.002669011974675,"lower_bound":0.7832187360950889,"upper_bound":1.2636326778023725,"unit":"ns"},"slope":{"estimate":45.67930905761152,"lower_bound":45.43614062386098,"upper_bound":45.932480927961386,"unit":"ns"},"change":{"mean":{"estimate":-0.05815056668062879,"lower_bound":-0.06713209592727665,"upper_bound":-0.04926038332350594,"unit":"%"},"median":{"estimate":-0.04156624058909053,"lower_bound":-0.057731915825856794,"upper_bound":-0.03092858275404666,"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":[5790,11580,17370,23160,28950,34740,40530,46320,52110,57900,63690,69480,75270,81060,86850,92640,98430,104220,110010,115800,121590,127380,133170,138960,144750,150540,156330,162120,167910,173700,179490,185280,191070,196860,202650,208440,214230,220020,225810,231600,237390,243180,248970,254760,260550,266340,272130,277920,283710,289500,295290,301080,306870,312660,318450,324240,330030,335820,341610,347400,353190,358980,364770,370560,376350,382140,387930,393720,399510,405300,411090,416880,422670,428460,434250,440040,445830,451620,457410,463200,468990,474780,480570,486360,492150,497940,503730,509520,515310,521100,526890,532680,538470,544260,550050,555840,561630,567420,573210,579000],"measured_values":[131312.0,260517.0,376234.0,557071.0,664322.0,852846.0,868627.0,1099843.0,1079026.0,1370081.0,1371054.0,1662118.0,1617070.0,1843775.0,1883448.0,2049602.0,2213864.0,2304413.0,2352224.0,2730032.0,2589042.0,3113653.0,2808576.0,3234113.0,3158615.0,3479109.0,3461237.0,3903915.0,3556771.0,4232154.0,3913340.0,4316574.0,4236151.0,4435010.0,4335381.0,4747098.0,4660833.0,5066479.0,5362337.0,5191313.0,5557704.0,5708619.0,5428248.0,5815354.0,5783722.0,6141323.0,6017359.0,6325800.0,6853284.0,6681746.0,7000139.0,6877154.0,6594138.0,7178731.0,6873118.0,7534108.0,7147720.0,7151082.0,7158843.0,7678086.0,7550375.0,7858088.0,7396954.0,8069610.0,7598370.0,8503493.0,7998628.0,8213326.0,8203021.0,8212204.0,8423736.0,8612142.0,8609517.0,8867964.0,8825358.0,9458477.0,9090587.0,9435349.0,9357455.0,9437036.0,10208380.0,9848769.0,10909324.0,10812180.0,10382486.0,10496792.0,10340891.0,10465568.0,10934681.0,11052824.0,10794267.0,10802425.0,10905868.0,11126538.0,11166837.0,11610764.0,11511517.0,11632168.0,11799028.0,11801655.0],"unit":"ns","throughput":[],"typical":{"estimate":21.17345019783859,"lower_bound":20.98277806945052,"upper_bound":21.402297796110183,"unit":"ns"},"mean":{"estimate":21.873243041681484,"lower_bound":21.641400372398063,"upper_bound":22.11054094263515,"unit":"ns"},"median":{"estimate":21.721214115670072,"lower_bound":21.39344189489267,"upper_bound":22.112972797927462,"unit":"ns"},"median_abs_dev":{"estimate":1.530490619236429,"lower_bound":1.1423161327891247,"upper_bound":1.765060855691465,"unit":"ns"},"slope":{"estimate":21.17345019783859,"lower_bound":20.98277806945052,"upper_bound":21.402297796110183,"unit":"ns"},"change":{"mean":{"estimate":0.16313257942250914,"lower_bound":0.1463331381530859,"upper_bound":0.17876831510650557,"unit":"%"},"median":{"estimate":0.1673564378021417,"lower_bound":0.14588409873216435,"upper_bound":0.18684560226981173,"unit":"%"},"change":"Regressed"}} -{"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":[4972,9944,14916,19888,24860,29832,34804,39776,44748,49720,54692,59664,64636,69608,74580,79552,84524,89496,94468,99440,104412,109384,114356,119328,124300,129272,134244,139216,144188,149160,154132,159104,164076,169048,174020,178992,183964,188936,193908,198880,203852,208824,213796,218768,223740,228712,233684,238656,243628,248600,253572,258544,263516,268488,273460,278432,283404,288376,293348,298320,303292,308264,313236,318208,323180,328152,333124,338096,343068,348040,353012,357984,362956,367928,372900,377872,382844,387816,392788,397760,402732,407704,412676,417648,422620,427592,432564,437536,442508,447480,452452,457424,462396,467368,472340,477312,482284,487256,492228,497200],"measured_values":[226966.0,472194.0,672314.0,918306.0,1115761.0,1352857.0,1553506.0,1806624.0,1989908.0,2330536.0,2430890.0,2781387.0,2918288.0,3193944.0,3311861.0,3659207.0,3772457.0,4140602.0,4235902.0,4837062.0,4671148.0,5181998.0,5114923.0,5736152.0,5508698.0,6018646.0,5966131.0,6692108.0,6464665.0,6968909.0,7239488.0,7729793.0,7388620.0,7902440.0,7747379.0,8226974.0,8177207.0,8760275.0,8600305.0,9317618.0,9056500.0,9816097.0,9583781.0,10127829.0,9955041.0,10494262.0,10429594.0,11028656.0,10865747.0,11540754.0,11318226.0,12147146.0,11768437.0,12454767.0,12230488.0,13073281.0,12627682.0,14112466.0,13082789.0,13872515.0,13498160.0,14546225.0,13966031.0,15117067.0,15680797.0,15870200.0,15698797.0,16601214.0,16431829.0,16948353.0,18134419.0,17814176.0,17642930.0,18521106.0,18264877.0,18675097.0,19272313.0,18789189.0,19651730.0,19060838.0,19805458.0,19863823.0,20597072.0,20552085.0,21154553.0,21984633.0,21242185.0,21822918.0,21813630.0,22149874.0,21734873.0,22481509.0,22597191.0,23187162.0,22918735.0,23441742.0,23298351.0,23353487.0,25119150.0,25073773.0],"unit":"ns","throughput":[],"typical":{"estimate":48.35897990413227,"lower_bound":47.91178587996388,"upper_bound":48.743675771742836,"unit":"ns"},"mean":{"estimate":47.02302553735434,"lower_bound":46.62884707605512,"upper_bound":47.41861781258615,"unit":"ns"},"median":{"estimate":46.861831255028164,"lower_bound":46.294837453375266,"upper_bound":47.6355403169475,"unit":"ns"},"median_abs_dev":{"estimate":2.956306194368421,"lower_bound":2.2195911170706486,"upper_bound":3.1858764166895965,"unit":"ns"},"slope":{"estimate":48.35897990413227,"lower_bound":47.91178587996388,"upper_bound":48.743675771742836,"unit":"ns"},"change":{"mean":{"estimate":-0.016758511661844833,"lower_bound":-0.02801524183598157,"upper_bound":-0.0063888701599936985,"unit":"%"},"median":{"estimate":-0.009417145582854447,"lower_bound":-0.026803812240974056,"upper_bound":0.008742222215182949,"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":[5466,10932,16398,21864,27330,32796,38262,43728,49194,54660,60126,65592,71058,76524,81990,87456,92922,98388,103854,109320,114786,120252,125718,131184,136650,142116,147582,153048,158514,163980,169446,174912,180378,185844,191310,196776,202242,207708,213174,218640,224106,229572,235038,240504,245970,251436,256902,262368,267834,273300,278766,284232,289698,295164,300630,306096,311562,317028,322494,327960,333426,338892,344358,349824,355290,360756,366222,371688,377154,382620,388086,393552,399018,404484,409950,415416,420882,426348,431814,437280,442746,448212,453678,459144,464610,470076,475542,481008,486474,491940,497406,502872,508338,513804,519270,524736,530202,535668,541134,546600],"measured_values":[151645.0,307652.0,430565.0,623305.0,726855.0,853194.0,1035808.0,1131347.0,1261465.0,1399923.0,1543700.0,1686225.0,1856967.0,1977736.0,2221744.0,2253040.0,2413374.0,2532755.0,2674008.0,2796744.0,2946407.0,3084703.0,3224023.0,3361885.0,3508988.0,3640733.0,3940045.0,3981415.0,4285454.0,4316982.0,4608891.0,4638901.0,4879898.0,4908442.0,5156203.0,5130406.0,5188588.0,5345387.0,5631267.0,5613441.0,5783012.0,5939523.0,6049194.0,6148958.0,6280607.0,6423785.0,6578556.0,6716015.0,6864237.0,6967326.0,7150298.0,7461044.0,7958106.0,7761776.0,8167996.0,8074920.0,8446353.0,8393649.0,8870326.0,8647172.0,9139653.0,8884843.0,9479118.0,9293500.0,9645087.0,9472112.0,9485075.0,9467225.0,9650199.0,9774188.0,9998325.0,10021818.0,10283702.0,10359037.0,11144862.0,10645560.0,10952230.0,10955069.0,11111880.0,11165522.0,11392079.0,11503445.0,11707290.0,11691826.0,12031134.0,12100179.0,12228310.0,12271922.0,12498650.0,12653712.0,12748361.0,12836593.0,13104905.0,13093217.0,13421430.0,13434385.0,13634283.0,13718369.0,14108693.0,13893811.0],"unit":"ns","throughput":[],"typical":{"estimate":25.909145797028053,"lower_bound":25.801997217162555,"upper_bound":26.03790134612756,"unit":"ns"},"mean":{"estimate":26.09106992657788,"lower_bound":25.96416382293176,"upper_bound":26.22742749526091,"unit":"ns"},"median":{"estimate":25.762575820823223,"lower_bound":25.715261353220093,"upper_bound":25.895124943501,"unit":"ns"},"median_abs_dev":{"estimate":0.31405249490873194,"lower_bound":0.19389038075095041,"upper_bound":0.49904477807263053,"unit":"ns"},"slope":{"estimate":25.909145797028053,"lower_bound":25.801997217162555,"upper_bound":26.03790134612756,"unit":"ns"},"change":{"mean":{"estimate":-0.01007313012521971,"lower_bound":-0.020682132213331605,"upper_bound":0.0000624916245406335,"unit":"%"},"median":{"estimate":-0.008938462190216434,"lower_bound":-0.017900901442415226,"upper_bound":-0.0021274945315523644,"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":[5574,11148,16722,22296,27870,33444,39018,44592,50166,55740,61314,66888,72462,78036,83610,89184,94758,100332,105906,111480,117054,122628,128202,133776,139350,144924,150498,156072,161646,167220,172794,178368,183942,189516,195090,200664,206238,211812,217386,222960,228534,234108,239682,245256,250830,256404,261978,267552,273126,278700,284274,289848,295422,300996,306570,312144,317718,323292,328866,334440,340014,345588,351162,356736,362310,367884,373458,379032,384606,390180,395754,401328,406902,412476,418050,423624,429198,434772,440346,445920,451494,457068,462642,468216,473790,479364,484938,490512,496086,501660,507234,512808,518382,523956,529530,535104,540678,546252,551826,557400],"measured_values":[141529.0,300901.0,410627.0,572494.0,657901.0,931459.0,981336.0,1124581.0,1158014.0,1428604.0,1586246.0,1783768.0,1790636.0,2088777.0,2010673.0,2351123.0,2349709.0,2712563.0,2735211.0,2798738.0,2924722.0,3229873.0,3394327.0,3594214.0,3493936.0,3804190.0,3800559.0,4154174.0,4037071.0,4353716.0,4453128.0,4681578.0,4726011.0,5070049.0,4946477.0,5291630.0,5206047.0,5409570.0,5450771.0,5524280.0,5405456.0,5591781.0,5580092.0,5885783.0,6054183.0,5798086.0,5952961.0,5980346.0,6175907.0,6237459.0,6367860.0,6352807.0,6495675.0,6687288.0,7382947.0,7740842.0,7617470.0,7667190.0,7745594.0,7878543.0,8465666.0,7885356.0,8643188.0,8334004.0,8716053.0,8650374.0,8633146.0,8751812.0,8796118.0,9087348.0,9523042.0,9960250.0,10111391.0,10064986.0,9833814.0,10371285.0,10218705.0,10542845.0,11127062.0,9946200.0,10794297.0,10153575.0,10858316.0,10637607.0,11688735.0,11342222.0,11765318.0,11154303.0,11936335.0,11731759.0,12607770.0,11586940.0,12403403.0,11709283.0,12240784.0,13453176.0,13472087.0,13802819.0,14015682.0,13174023.0],"unit":"ns","throughput":[],"typical":{"estimate":23.89169155130252,"lower_bound":23.63410386207909,"upper_bound":24.14954241328559,"unit":"ns"},"mean":{"estimate":24.43577722270733,"lower_bound":24.170047413283775,"upper_bound":24.706414682613406,"unit":"ns"},"median":{"estimate":24.44183715824487,"lower_bound":23.99852806863033,"upper_bound":24.84969599559599,"unit":"ns"},"median_abs_dev":{"estimate":1.3914638660882404,"lower_bound":1.1593326281817302,"upper_bound":1.831957934585773,"unit":"ns"},"slope":{"estimate":23.89169155130252,"lower_bound":23.63410386207909,"upper_bound":24.14954241328559,"unit":"ns"},"change":{"mean":{"estimate":0.18340528141701595,"lower_bound":0.16323395790583264,"upper_bound":0.2023935620998268,"unit":"%"},"median":{"estimate":0.20340382398589885,"lower_bound":0.17420374363470303,"upper_bound":0.2256276313392911,"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":[5660,11320,16980,22640,28300,33960,39620,45280,50940,56600,62260,67920,73580,79240,84900,90560,96220,101880,107540,113200,118860,124520,130180,135840,141500,147160,152820,158480,164140,169800,175460,181120,186780,192440,198100,203760,209420,215080,220740,226400,232060,237720,243380,249040,254700,260360,266020,271680,277340,283000,288660,294320,299980,305640,311300,316960,322620,328280,333940,339600,345260,350920,356580,362240,367900,373560,379220,384880,390540,396200,401860,407520,413180,418840,424500,430160,435820,441480,447140,452800,458460,464120,469780,475440,481100,486760,492420,498080,503740,509400,515060,520720,526380,532040,537700,543360,549020,554680,560340,566000],"measured_values":[148026.0,264949.0,391403.0,556690.0,744209.0,886321.0,905840.0,1107899.0,1176291.0,1458413.0,1458379.0,1763218.0,1732114.0,1910987.0,1913024.0,2200070.0,2311710.0,2591546.0,2571901.0,2749797.0,2970323.0,3102680.0,2961159.0,3267456.0,3296946.0,3530005.0,3482876.0,3793153.0,3795958.0,4030100.0,4125823.0,4436383.0,4686272.0,4584904.0,4691322.0,4691000.0,4953519.0,4760127.0,5110368.0,5015699.0,5122704.0,5348672.0,5366903.0,5759755.0,5903507.0,6497897.0,5887840.0,6029388.0,6296756.0,6255003.0,6258745.0,6458195.0,6556813.0,6687289.0,6861057.0,7039907.0,7813799.0,7186925.0,7366831.0,7400014.0,7643038.0,7700374.0,7857018.0,8163381.0,8615075.0,8222224.0,8421611.0,8409432.0,8540949.0,8725467.0,8817825.0,9461650.0,9054482.0,9932668.0,9659312.0,9634541.0,9665701.0,10509182.0,10546845.0,10060309.0,10262200.0,10249477.0,10406029.0,10697354.0,11521498.0,11191899.0,11674790.0,12092613.0,11123630.0,11360925.0,11824772.0,12361270.0,11661995.0,12418914.0,12224396.0,11976928.0,13368364.0,12897771.0,13624098.0,13588784.0],"unit":"ns","throughput":[],"typical":{"estimate":22.85859046265367,"lower_bound":22.634053125396367,"upper_bound":23.08396375409938,"unit":"ns"},"mean":{"estimate":23.193025090265188,"lower_bound":22.973891451077257,"upper_bound":23.42292911090411,"unit":"ns"},"median":{"estimate":23.07126030624264,"lower_bound":22.63521914810768,"upper_bound":23.405388692579507,"unit":"ns"},"median_abs_dev":{"estimate":1.3590868326599153,"lower_bound":0.9535601382166835,"upper_bound":1.5475467547862634,"unit":"ns"},"slope":{"estimate":22.85859046265367,"lower_bound":22.634053125396367,"upper_bound":23.08396375409938,"unit":"ns"},"change":{"mean":{"estimate":0.15505878347233049,"lower_bound":0.13734101768594217,"upper_bound":0.1714499552397734,"unit":"%"},"median":{"estimate":0.15972020289561573,"lower_bound":0.14037353204476122,"upper_bound":0.17658389815573883,"unit":"%"},"change":"Regressed"}} -{"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":[5641,11282,16923,22564,28205,33846,39487,45128,50769,56410,62051,67692,73333,78974,84615,90256,95897,101538,107179,112820,118461,124102,129743,135384,141025,146666,152307,157948,163589,169230,174871,180512,186153,191794,197435,203076,208717,214358,219999,225640,231281,236922,242563,248204,253845,259486,265127,270768,276409,282050,287691,293332,298973,304614,310255,315896,321537,327178,332819,338460,344101,349742,355383,361024,366665,372306,377947,383588,389229,394870,400511,406152,411793,417434,423075,428716,434357,439998,445639,451280,456921,462562,468203,473844,479485,485126,490767,496408,502049,507690,513331,518972,524613,530254,535895,541536,547177,552818,558459,564100],"measured_values":[146628.0,220777.0,360642.0,521324.0,582809.0,663745.0,824082.0,1051583.0,1128758.0,1168874.0,1452706.0,1472392.0,1540395.0,1929027.0,2045040.0,2031214.0,1823547.0,2227549.0,2256117.0,2194733.0,2209318.0,2580544.0,2424168.0,2466261.0,2663164.0,2938701.0,3074823.0,3126837.0,3163087.0,3553297.0,3410028.0,3404421.0,3606540.0,4151976.0,4373845.0,3928399.0,4512137.0,4601410.0,4713315.0,4504141.0,4936531.0,5030230.0,5163779.0,4736630.0,5149662.0,5317012.0,5611209.0,5899510.0,5872045.0,5959508.0,5971999.0,6031777.0,5557172.0,6486840.0,6681419.0,6357315.0,6619324.0,7870287.0,7268180.0,6838708.0,7497225.0,7727953.0,7843544.0,7294002.0,7673435.0,9598739.0,8783692.0,7144424.0,7663210.0,8070560.0,9319599.0,9362453.0,9105051.0,8492769.0,9156732.0,8446703.0,9488303.0,10095734.0,10168368.0,9518112.0,9283514.0,9302299.0,10181972.0,9154665.0,9732810.0,10713845.0,10981530.0,9548804.0,9762607.0,11163883.0,11385860.0,11579332.0,10522829.0,11420409.0,11660418.0,11467414.0,11792817.0,12246995.0,12472857.0,10878938.0],"unit":"ns","throughput":[],"typical":{"estimate":21.208918046474484,"lower_bound":20.871441443579677,"upper_bound":21.53694234785357,"unit":"ns"},"mean":{"estimate":21.10591384903185,"lower_bound":20.814407321606847,"upper_bound":21.408700154225034,"unit":"ns"},"median":{"estimate":21.14674574826404,"lower_bound":20.716199631288443,"upper_bound":21.47975325507678,"unit":"ns"},"median_abs_dev":{"estimate":1.425092742667917,"lower_bound":1.1497877081223173,"upper_bound":1.7948210661756128,"unit":"ns"},"slope":{"estimate":21.208918046474484,"lower_bound":20.871441443579677,"upper_bound":21.53694234785357,"unit":"ns"},"change":{"mean":{"estimate":0.15931243290495223,"lower_bound":0.1396906553505617,"upper_bound":0.17962711176907897,"unit":"%"},"median":{"estimate":0.17091317298370612,"lower_bound":0.1434222596700434,"upper_bound":0.18978985103132318,"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":[5723,11446,17169,22892,28615,34338,40061,45784,51507,57230,62953,68676,74399,80122,85845,91568,97291,103014,108737,114460,120183,125906,131629,137352,143075,148798,154521,160244,165967,171690,177413,183136,188859,194582,200305,206028,211751,217474,223197,228920,234643,240366,246089,251812,257535,263258,268981,274704,280427,286150,291873,297596,303319,309042,314765,320488,326211,331934,337657,343380,349103,354826,360549,366272,371995,377718,383441,389164,394887,400610,406333,412056,417779,423502,429225,434948,440671,446394,452117,457840,463563,469286,475009,480732,486455,492178,497901,503624,509347,515070,520793,526516,532239,537962,543685,549408,555131,560854,566577,572300],"measured_values":[164329.0,230575.0,377186.0,434773.0,617075.0,708842.0,872885.0,867534.0,1080780.0,1134518.0,1298075.0,1334456.0,1416859.0,1568849.0,1692961.0,1709521.0,1918453.0,2215074.0,2442659.0,2188328.0,2320001.0,2703131.0,2681003.0,2524937.0,3013363.0,3119940.0,3454451.0,3331191.0,3264804.0,3634626.0,3601191.0,3562770.0,3796296.0,3839035.0,4093362.0,3933059.0,4323494.0,4184535.0,4491251.0,4458450.0,4680976.0,4696675.0,5029071.0,4823814.0,5023283.0,5015394.0,5360058.0,5294816.0,5655253.0,6135430.0,5962512.0,5920075.0,5804206.0,5721111.0,6358444.0,6084363.0,7103973.0,6958238.0,7549182.0,6790806.0,6835656.0,7393205.0,7793390.0,6875078.0,8195016.0,7684159.0,7727754.0,7669982.0,8029934.0,8339341.0,8521492.0,7819346.0,8521892.0,8507356.0,8762030.0,8620619.0,8892128.0,8771202.0,9232551.0,8507132.0,9513806.0,9693483.0,9683719.0,9306173.0,10748177.0,10775817.0,10700411.0,9741900.0,10566936.0,10660959.0,11412717.0,10170070.0,10931231.0,11190077.0,12016648.0,10693273.0,11815516.0,12559915.0,11997127.0,11371082.0],"unit":"ns","throughput":[],"typical":{"estimate":20.459751392426387,"lower_bound":20.192016928731306,"upper_bound":20.722229777980477,"unit":"ns"},"mean":{"estimate":20.37559207403425,"lower_bound":20.13587678906477,"upper_bound":20.64846118214974,"unit":"ns"},"median":{"estimate":20.249477925928353,"lower_bound":19.921172680002584,"upper_bound":20.428446618906168,"unit":"ns"},"median_abs_dev":{"estimate":1.0792639241334268,"lower_bound":0.8444117622917523,"upper_bound":1.3769643241962544,"unit":"ns"},"slope":{"estimate":20.459751392426387,"lower_bound":20.192016928731306,"upper_bound":20.722229777980477,"unit":"ns"},"change":{"mean":{"estimate":-0.04985758558766673,"lower_bound":-0.0649452384552077,"upper_bound":-0.034491263993415996,"unit":"%"},"median":{"estimate":-0.05122188852057841,"lower_bound":-0.07212502293339662,"upper_bound":-0.03896250253277933,"unit":"%"},"change":"Improved"}} -{"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":[4646,9292,13938,18584,23230,27876,32522,37168,41814,46460,51106,55752,60398,65044,69690,74336,78982,83628,88274,92920,97566,102212,106858,111504,116150,120796,125442,130088,134734,139380,144026,148672,153318,157964,162610,167256,171902,176548,181194,185840,190486,195132,199778,204424,209070,213716,218362,223008,227654,232300,236946,241592,246238,250884,255530,260176,264822,269468,274114,278760,283406,288052,292698,297344,301990,306636,311282,315928,320574,325220,329866,334512,339158,343804,348450,353096,357742,362388,367034,371680,376326,380972,385618,390264,394910,399556,404202,408848,413494,418140,422786,427432,432078,436724,441370,446016,450662,455308,459954,464600],"measured_values":[284056.0,540235.0,805253.0,1054903.0,1354583.0,1582115.0,1881028.0,2121106.0,2425826.0,2637253.0,2993856.0,3102311.0,3482042.0,3691888.0,4071153.0,4215621.0,4638760.0,4808834.0,5237037.0,5291474.0,5738720.0,5837534.0,6225473.0,6280289.0,6597849.0,6676340.0,7169282.0,7440187.0,7823026.0,7943406.0,8268830.0,8415763.0,8898952.0,8940470.0,9622511.0,9549808.0,9991740.0,10712249.0,10474604.0,10523126.0,10924248.0,10980456.0,11364457.0,11503870.0,11931264.0,12118753.0,12634049.0,12682020.0,13307144.0,13238415.0,13733738.0,13711537.0,14256747.0,14412945.0,14500969.0,14509922.0,15233568.0,15127087.0,16039731.0,15835377.0,16183299.0,16079875.0,16659657.0,16843227.0,17868639.0,17731384.0,18354528.0,18071224.0,18642233.0,18491002.0,18856188.0,18924925.0,19424473.0,19785318.0,19777744.0,19828208.0,20427433.0,20389073.0,21157959.0,20859309.0,21936222.0,21659224.0,22235869.0,22006512.0,22271204.0,22481604.0,23805897.0,23175132.0,24201284.0,23594263.0,24687608.0,24363155.0,25415014.0,24963558.0,25562207.0,25394150.0,25872225.0,25922870.0,26687218.0,26280456.0],"unit":"ns","throughput":[],"typical":{"estimate":57.28320961204132,"lower_bound":57.068292490655466,"upper_bound":57.50756181737753,"unit":"ns"},"mean":{"estimate":57.380940795645486,"lower_bound":57.19058087231486,"upper_bound":57.57838330112576,"unit":"ns"},"median":{"estimate":57.1320940065021,"lower_bound":56.94655617735687,"upper_bound":57.45737150853935,"unit":"ns"},"median_abs_dev":{"estimate":0.8329934904108465,"lower_bound":0.6171131920219581,"upper_bound":1.1282841966259125,"unit":"ns"},"slope":{"estimate":57.28320961204132,"lower_bound":57.068292490655466,"upper_bound":57.50756181737753,"unit":"ns"},"change":{"mean":{"estimate":0.05020543734650684,"lower_bound":0.0441461475410526,"upper_bound":0.05579115685107031,"unit":"%"},"median":{"estimate":0.04846197386886475,"lower_bound":0.0434539596975585,"upper_bound":0.05583739651739572,"unit":"%"},"change":"Regressed"}} -{"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":[5617,11234,16851,22468,28085,33702,39319,44936,50553,56170,61787,67404,73021,78638,84255,89872,95489,101106,106723,112340,117957,123574,129191,134808,140425,146042,151659,157276,162893,168510,174127,179744,185361,190978,196595,202212,207829,213446,219063,224680,230297,235914,241531,247148,252765,258382,263999,269616,275233,280850,286467,292084,297701,303318,308935,314552,320169,325786,331403,337020,342637,348254,353871,359488,365105,370722,376339,381956,387573,393190,398807,404424,410041,415658,421275,426892,432509,438126,443743,449360,454977,460594,466211,471828,477445,483062,488679,494296,499913,505530,511147,516764,522381,527998,533615,539232,544849,550466,556083,561700],"measured_values":[132717.0,231117.0,364147.0,521307.0,551505.0,674229.0,901129.0,950591.0,1096086.0,1287951.0,1291731.0,1371341.0,1514145.0,1605595.0,1799501.0,1903552.0,2047818.0,2561412.0,2462546.0,2385307.0,2504534.0,2544258.0,2840509.0,3070658.0,3147356.0,3256199.0,3281148.0,3413810.0,3433545.0,3682784.0,4361131.0,3754269.0,4362873.0,4359281.0,5036029.0,4475115.0,5019118.0,4730149.0,5329964.0,4967734.0,5383996.0,5131563.0,5864618.0,5523430.0,5581871.0,6031977.0,6641074.0,5979562.0,6095846.0,5990654.0,6323474.0,6451392.0,6325881.0,7243354.0,7590419.0,6974967.0,6884019.0,7354904.0,7342786.0,7412057.0,7555937.0,7270396.0,7762193.0,7889482.0,8343962.0,8745874.0,8484155.0,8050589.0,8497060.0,8927821.0,8695385.0,8654414.0,9386464.0,10069057.0,9990927.0,9098359.0,9259426.0,9227516.0,9841706.0,9933957.0,10036802.0,9914902.0,10215250.0,10134158.0,10486056.0,10403153.0,12349792.0,11682397.0,10998802.0,11551225.0,11869246.0,11561141.0,11684931.0,11781445.0,11548915.0,11544055.0,12747030.0,13753615.0,13213195.0,12115941.0],"unit":"ns","throughput":[],"typical":{"estimate":22.472974974979767,"lower_bound":22.19360935561548,"upper_bound":22.77214816361075,"unit":"ns"},"mean":{"estimate":22.308771286502925,"lower_bound":22.07087261372769,"upper_bound":22.554402691315065,"unit":"ns"},"median":{"estimate":22.08534881137694,"lower_bound":21.935092166354405,"upper_bound":22.23719346717611,"unit":"ns"},"median_abs_dev":{"estimate":1.0884471579426935,"lower_bound":0.7817785358908004,"upper_bound":1.3244118815231691,"unit":"ns"},"slope":{"estimate":22.472974974979767,"lower_bound":22.19360935561548,"upper_bound":22.77214816361075,"unit":"ns"},"change":{"mean":{"estimate":0.09159404687071082,"lower_bound":0.07226260248464961,"upper_bound":0.11139737306964129,"unit":"%"},"median":{"estimate":0.09527860345837391,"lower_bound":0.08275399682335483,"upper_bound":0.10576746344557186,"unit":"%"},"change":"Regressed"}} -{"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":[5675,11350,17025,22700,28375,34050,39725,45400,51075,56750,62425,68100,73775,79450,85125,90800,96475,102150,107825,113500,119175,124850,130525,136200,141875,147550,153225,158900,164575,170250,175925,181600,187275,192950,198625,204300,209975,215650,221325,227000,232675,238350,244025,249700,255375,261050,266725,272400,278075,283750,289425,295100,300775,306450,312125,317800,323475,329150,334825,340500,346175,351850,357525,363200,368875,374550,380225,385900,391575,397250,402925,408600,414275,419950,425625,431300,436975,442650,448325,454000,459675,465350,471025,476700,482375,488050,493725,499400,505075,510750,516425,522100,527775,533450,539125,544800,550475,556150,561825,567500],"measured_values":[148586.0,256267.0,368764.0,505495.0,639024.0,731516.0,801422.0,942965.0,1056545.0,1172823.0,1345897.0,1493697.0,1546143.0,1834310.0,1780619.0,1978682.0,2042632.0,2179340.0,2318058.0,2453867.0,2487048.0,2838273.0,2702148.0,2986631.0,2885847.0,3223061.0,3168509.0,3318749.0,3505896.0,3598883.0,3717426.0,3956712.0,3903995.0,4185414.0,4184681.0,4371767.0,4396651.0,4606386.0,4705402.0,4751803.0,4983752.0,5519973.0,5052670.0,5359712.0,5259627.0,5936664.0,5603929.0,6159943.0,5824313.0,6506707.0,6001635.0,6273678.0,6319310.0,6497033.0,6515369.0,7131177.0,6667464.0,7029688.0,6991959.0,7316795.0,7545708.0,7489853.0,7376698.0,7746806.0,7871896.0,8248064.0,8471880.0,8887325.0,8099124.0,8726728.0,8425820.0,8629781.0,8572887.0,8999787.0,9306352.0,9131847.0,9188135.0,9372427.0,9590748.0,10040111.0,9615142.0,10043202.0,10169504.0,10033318.0,10390281.0,10391004.0,10338790.0,11036841.0,10508827.0,11698408.0,10812380.0,11151384.0,11488248.0,11221619.0,11254288.0,11444238.0,11747016.0,12241283.0,11796886.0,12883652.0],"unit":"ns","throughput":[],"typical":{"estimate":21.43657810168419,"lower_bound":21.283382292039445,"upper_bound":21.603887941538083,"unit":"ns"},"mean":{"estimate":21.471734440465536,"lower_bound":21.320646400077333,"upper_bound":21.638897052258738,"unit":"ns"},"median":{"estimate":21.316018437642413,"lower_bound":21.138813509544786,"upper_bound":21.41937036639089,"unit":"ns"},"median_abs_dev":{"estimate":0.5953692193895396,"lower_bound":0.4315823738017913,"upper_bound":0.7391999704633339,"unit":"ns"},"slope":{"estimate":21.43657810168419,"lower_bound":21.283382292039445,"upper_bound":21.603887941538083,"unit":"ns"},"change":{"mean":{"estimate":0.09302653852017784,"lower_bound":0.07913182764081511,"upper_bound":0.10609942232880482,"unit":"%"},"median":{"estimate":0.08766391553310693,"lower_bound":0.07588974494175038,"upper_bound":0.10024527995760123,"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":[5795,11590,17385,23180,28975,34770,40565,46360,52155,57950,63745,69540,75335,81130,86925,92720,98515,104310,110105,115900,121695,127490,133285,139080,144875,150670,156465,162260,168055,173850,179645,185440,191235,197030,202825,208620,214415,220210,226005,231800,237595,243390,249185,254980,260775,266570,272365,278160,283955,289750,295545,301340,307135,312930,318725,324520,330315,336110,341905,347700,353495,359290,365085,370880,376675,382470,388265,394060,399855,405650,411445,417240,423035,428830,434625,440420,446215,452010,457805,463600,469395,475190,480985,486780,492575,498370,504165,509960,515755,521550,527345,533140,538935,544730,550525,556320,562115,567910,573705,579500],"measured_values":[140542.0,241406.0,299574.0,461666.0,486344.0,608080.0,727145.0,858746.0,952321.0,972030.0,1245256.0,1294751.0,1414171.0,1515483.0,1594657.0,1750690.0,1689892.0,1780753.0,1791599.0,2212610.0,2177221.0,2400693.0,2467581.0,2457385.0,2529930.0,2767991.0,2800077.0,3124688.0,3007194.0,2976242.0,3053224.0,3652461.0,3274563.0,4060001.0,3696693.0,3944643.0,3888344.0,4053498.0,4150985.0,4471011.0,4455638.0,5385481.0,4856276.0,4798839.0,4580510.0,5165187.0,5031925.0,5463056.0,5086142.0,5617833.0,5250303.0,5815860.0,5470136.0,6244669.0,5709554.0,6156000.0,5721711.0,6193275.0,6192120.0,6839888.0,6359266.0,8280579.0,6892121.0,7283930.0,8287752.0,7530711.0,7810170.0,7823314.0,7502433.0,8380236.0,8296769.0,7716827.0,7762873.0,8662250.0,8670859.0,8460066.0,8439784.0,8966681.0,8074512.0,8812052.0,8769816.0,9257833.0,8637312.0,8631226.0,9283980.0,9874233.0,9168396.0,10449345.0,9979220.0,10920795.0,11215752.0,10783774.0,10092195.0,11493429.0,9969202.0,11184539.0,10139636.0,10959892.0,10831476.0,12010897.0],"unit":"ns","throughput":[],"typical":{"estimate":19.294277041823406,"lower_bound":18.99723148114631,"upper_bound":19.591125206229908,"unit":"ns"},"mean":{"estimate":18.942113500052848,"lower_bound":18.68524359981331,"upper_bound":19.21400688391505,"unit":"ns"},"median":{"estimate":18.796109347942824,"lower_bound":18.494250602013445,"upper_bound":19.030118328608406,"unit":"ns"},"median_abs_dev":{"estimate":1.2709949040962447,"lower_bound":0.9381879951432578,"upper_bound":1.4563292357677518,"unit":"ns"},"slope":{"estimate":19.294277041823406,"lower_bound":18.99723148114631,"upper_bound":19.591125206229908,"unit":"ns"},"change":{"mean":{"estimate":0.0552831236664868,"lower_bound":0.029864038877517086,"upper_bound":0.08016663957006061,"unit":"%"},"median":{"estimate":0.06865036809865055,"lower_bound":0.03443849084342311,"upper_bound":0.09679027878210307,"unit":"%"},"change":"Regressed"}} -{"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":[5738,11476,17214,22952,28690,34428,40166,45904,51642,57380,63118,68856,74594,80332,86070,91808,97546,103284,109022,114760,120498,126236,131974,137712,143450,149188,154926,160664,166402,172140,177878,183616,189354,195092,200830,206568,212306,218044,223782,229520,235258,240996,246734,252472,258210,263948,269686,275424,281162,286900,292638,298376,304114,309852,315590,321328,327066,332804,338542,344280,350018,355756,361494,367232,372970,378708,384446,390184,395922,401660,407398,413136,418874,424612,430350,436088,441826,447564,453302,459040,464778,470516,476254,481992,487730,493468,499206,504944,510682,516420,522158,527896,533634,539372,545110,550848,556586,562324,568062,573800],"measured_values":[134602.0,265164.0,366027.0,509244.0,538112.0,762012.0,830251.0,951733.0,1018186.0,1240333.0,1226289.0,1497685.0,1509875.0,1726652.0,1754044.0,2150299.0,1855581.0,2223837.0,2116267.0,2447570.0,2332339.0,2552268.0,2571195.0,2898698.0,2659303.0,2983352.0,3109402.0,3187053.0,3194287.0,3296358.0,3215727.0,3541252.0,3540216.0,3848372.0,3789434.0,3752219.0,4066474.0,4073105.0,4226359.0,4339404.0,4497867.0,4592954.0,4540521.0,4801541.0,5020682.0,5334374.0,5065054.0,5976217.0,5782933.0,6280646.0,5733754.0,6062454.0,5976924.0,6127687.0,6015234.0,6292224.0,6137156.0,6710192.0,6653373.0,6684638.0,6400104.0,6886091.0,6742392.0,7462097.0,7453628.0,7982743.0,7477815.0,7953614.0,7459297.0,7763478.0,7870511.0,7912373.0,7775191.0,8091558.0,8096707.0,8173422.0,8455541.0,9027966.0,8874367.0,9431252.0,9724981.0,10371437.0,10040726.0,10178192.0,9613227.0,10376816.0,9690263.0,10567269.0,10005841.0,10855557.0,10333090.0,11314461.0,10863944.0,11950123.0,10864568.0,11771608.0,11096203.0,11509207.0,10849299.0,12003090.0],"unit":"ns","throughput":[],"typical":{"estimate":20.03833589164153,"lower_bound":19.780517454283128,"upper_bound":20.290830580927203,"unit":"ns"},"mean":{"estimate":20.02233159844925,"lower_bound":19.796891459186405,"upper_bound":20.256237438038124,"unit":"ns"},"median":{"estimate":19.721086575678257,"lower_bound":19.450885169828794,"upper_bound":20.16259419958895,"unit":"ns"},"median_abs_dev":{"estimate":1.038883768358502,"lower_bound":0.8457786483036289,"upper_bound":1.4604698960155886,"unit":"ns"},"slope":{"estimate":20.03833589164153,"lower_bound":19.780517454283128,"upper_bound":20.290830580927203,"unit":"ns"},"change":{"mean":{"estimate":0.09743548763816312,"lower_bound":0.07788672009973326,"upper_bound":0.11746146726102145,"unit":"%"},"median":{"estimate":0.10315807113631581,"lower_bound":0.07931413547357065,"upper_bound":0.13022502669519764,"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":[5521,11042,16563,22084,27605,33126,38647,44168,49689,55210,60731,66252,71773,77294,82815,88336,93857,99378,104899,110420,115941,121462,126983,132504,138025,143546,149067,154588,160109,165630,171151,176672,182193,187714,193235,198756,204277,209798,215319,220840,226361,231882,237403,242924,248445,253966,259487,265008,270529,276050,281571,287092,292613,298134,303655,309176,314697,320218,325739,331260,336781,342302,347823,353344,358865,364386,369907,375428,380949,386470,391991,397512,403033,408554,414075,419596,425117,430638,436159,441680,447201,452722,458243,463764,469285,474806,480327,485848,491369,496890,502411,507932,513453,518974,524495,530016,535537,541058,546579,552100],"measured_values":[143253.0,240975.0,402449.0,472540.0,623833.0,683073.0,778329.0,876184.0,993060.0,1073472.0,1254350.0,1441308.0,1417311.0,1515335.0,1652780.0,1836177.0,1792966.0,2053699.0,2129073.0,2255066.0,2293146.0,2522077.0,2509925.0,2807691.0,2655420.0,2825983.0,2988167.0,3068811.0,3142450.0,3468141.0,3412875.0,3653983.0,3712130.0,3594842.0,3917685.0,4326269.0,4198720.0,4376394.0,4253432.0,4920341.0,4622016.0,4651479.0,5112395.0,5261579.0,5387258.0,5195757.0,5262663.0,5466162.0,5376461.0,5452705.0,5401747.0,6009259.0,5829605.0,6133244.0,6008087.0,6713921.0,6214582.0,7022322.0,6467909.0,7233859.0,7373256.0,7557169.0,7357272.0,7241613.0,7264335.0,7756088.0,7194808.0,8066238.0,7765999.0,7782204.0,7844243.0,7961761.0,8032217.0,8513688.0,8587790.0,9941694.0,8983035.0,9774275.0,9841690.0,10032418.0,9316309.0,9726042.0,9309348.0,10434100.0,9790388.0,9828411.0,9986956.0,11058169.0,10854817.0,10215595.0,10237920.0,10609913.0,10398826.0,10484093.0,10383129.0,10733273.0,10778147.0,11523499.0,12207915.0,12450486.0],"unit":"ns","throughput":[],"typical":{"estimate":20.986743534975222,"lower_bound":20.721778570715347,"upper_bound":21.2573112262484,"unit":"ns"},"mean":{"estimate":20.813646509007327,"lower_bound":20.598052536313535,"upper_bound":21.045839551841972,"unit":"ns"},"median":{"estimate":20.565586279994903,"lower_bound":20.315308689930887,"upper_bound":20.786281923564573,"unit":"ns"},"median_abs_dev":{"estimate":0.989424365181148,"lower_bound":0.6915754784080721,"upper_bound":1.265820985537812,"unit":"ns"},"slope":{"estimate":20.986743534975222,"lower_bound":20.721778570715347,"upper_bound":21.2573112262484,"unit":"ns"},"change":{"mean":{"estimate":0.0550482130844443,"lower_bound":0.040419434614795344,"upper_bound":0.07176289427882007,"unit":"%"},"median":{"estimate":0.044617604992238435,"lower_bound":0.02438415918217718,"upper_bound":0.06376887832725808,"unit":"%"},"change":"Regressed"}} -{"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":[5662,11324,16986,22648,28310,33972,39634,45296,50958,56620,62282,67944,73606,79268,84930,90592,96254,101916,107578,113240,118902,124564,130226,135888,141550,147212,152874,158536,164198,169860,175522,181184,186846,192508,198170,203832,209494,215156,220818,226480,232142,237804,243466,249128,254790,260452,266114,271776,277438,283100,288762,294424,300086,305748,311410,317072,322734,328396,334058,339720,345382,351044,356706,362368,368030,373692,379354,385016,390678,396340,402002,407664,413326,418988,424650,430312,435974,441636,447298,452960,458622,464284,469946,475608,481270,486932,492594,498256,503918,509580,515242,520904,526566,532228,537890,543552,549214,554876,560538,566200],"measured_values":[141184.0,258467.0,414124.0,524103.0,661157.0,778873.0,844631.0,1032341.0,1234312.0,1206356.0,1444600.0,1489584.0,1612060.0,1731938.0,1930021.0,2014812.0,2083697.0,2203076.0,2236320.0,2564064.0,2708706.0,2693912.0,2837291.0,3109358.0,3008697.0,3357440.0,3506525.0,3549286.0,3692387.0,4056843.0,3897038.0,4073744.0,4358181.0,4517351.0,4441261.0,4564846.0,4444568.0,4779508.0,5384254.0,5039295.0,5578827.0,5252440.0,5199655.0,5490369.0,6042160.0,6161008.0,5937190.0,6019397.0,6331668.0,6388802.0,6468447.0,6383304.0,7032181.0,6388488.0,6766362.0,6449713.0,6762278.0,6664174.0,7604665.0,6830600.0,7718122.0,6826431.0,7897322.0,7298405.0,8357840.0,7496141.0,8385890.0,7879762.0,8227052.0,7865151.0,8041591.0,8195667.0,9178537.0,8465134.0,8604407.0,8491557.0,9075720.0,8722717.0,8851714.0,8822998.0,9166786.0,9204823.0,10068649.0,9479548.0,10188187.0,9685467.0,9747311.0,9773695.0,9909937.0,11105183.0,10354108.0,10325415.0,10922602.0,10697694.0,10712657.0,10794789.0,12032455.0,11048823.0,11339781.0,11551175.0],"unit":"ns","throughput":[],"typical":{"estimate":20.772469247225235,"lower_bound":20.539893625669475,"upper_bound":21.044308824149983,"unit":"ns"},"mean":{"estimate":21.629811108981666,"lower_bound":21.36324098118754,"upper_bound":21.897401759290616,"unit":"ns"},"median":{"estimate":21.79012720620733,"lower_bound":21.286265344558906,"upper_bound":22.171072119933232,"unit":"ns"},"median_abs_dev":{"estimate":1.5318035708064721,"lower_bound":1.1505028464438087,"upper_bound":2.0623756591714733,"unit":"ns"},"slope":{"estimate":20.772469247225235,"lower_bound":20.539893625669475,"upper_bound":21.044308824149983,"unit":"ns"},"change":{"mean":{"estimate":0.22704217765675616,"lower_bound":0.20846852078135178,"upper_bound":0.248513103990938,"unit":"%"},"median":{"estimate":0.2461319314236976,"lower_bound":0.21804520681720274,"upper_bound":0.27077475009617025,"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":[5523,11046,16569,22092,27615,33138,38661,44184,49707,55230,60753,66276,71799,77322,82845,88368,93891,99414,104937,110460,115983,121506,127029,132552,138075,143598,149121,154644,160167,165690,171213,176736,182259,187782,193305,198828,204351,209874,215397,220920,226443,231966,237489,243012,248535,254058,259581,265104,270627,276150,281673,287196,292719,298242,303765,309288,314811,320334,325857,331380,336903,342426,347949,353472,358995,364518,370041,375564,381087,386610,392133,397656,403179,408702,414225,419748,425271,430794,436317,441840,447363,452886,458409,463932,469455,474978,480501,486024,491547,497070,502593,508116,513639,519162,524685,530208,535731,541254,546777,552300],"measured_values":[134081.0,248927.0,406647.0,522299.0,636487.0,729789.0,959295.0,1138037.0,1217093.0,1287012.0,1363610.0,1491102.0,1741235.0,1751276.0,2191555.0,2218345.0,2105513.0,2317808.0,2400586.0,2563925.0,2519995.0,2707821.0,2880433.0,3115760.0,2891435.0,3108287.0,3282893.0,3795855.0,3491063.0,3585107.0,3792322.0,3792000.0,4077129.0,4214961.0,4452512.0,4654413.0,4341719.0,4772822.0,4515849.0,4784597.0,4825204.0,4924678.0,5317113.0,5254648.0,5539579.0,5846704.0,5570795.0,6154805.0,6622796.0,7300913.0,7251932.0,7752522.0,7310226.0,7579908.0,7405074.0,7899243.0,8078174.0,8623100.0,8823871.0,8643906.0,8775685.0,9023324.0,8701256.0,9039460.0,9265575.0,9503036.0,9643399.0,10145909.0,10111549.0,10471942.0,10407675.0,10797434.0,10553493.0,10625650.0,9765907.0,10304806.0,9823432.0,10287758.0,10899729.0,11334511.0,11004278.0,11450142.0,11166384.0,12298819.0,11717636.0,11953524.0,12723694.0,12574009.0,13038855.0,13568038.0,13104318.0,13407222.0,13719935.0,13192828.0,13927112.0,13623555.0,13909119.0,14206538.0,14564332.0,14203533.0],"unit":"ns","throughput":[],"typical":{"estimate":25.41952389541207,"lower_bound":25.10143441824282,"upper_bound":25.695553484230278,"unit":"ns"},"mean":{"estimate":24.35734133820899,"lower_bound":23.989858817815467,"upper_bound":24.718047037367178,"unit":"ns"},"median":{"estimate":24.547872771281817,"lower_bound":23.64199710302372,"upper_bound":25.289127209744002,"unit":"ns"},"median_abs_dev":{"estimate":2.3458654351317816,"lower_bound":1.7493585317571316,"upper_bound":2.828561283034564,"unit":"ns"},"slope":{"estimate":25.41952389541207,"lower_bound":25.10143441824282,"upper_bound":25.695553484230278,"unit":"ns"},"change":{"mean":{"estimate":0.17539290238354832,"lower_bound":0.15140818100676207,"upper_bound":0.19913945575446876,"unit":"%"},"median":{"estimate":0.19447588254796178,"lower_bound":0.14935609566914243,"upper_bound":0.23633754188240283,"unit":"%"},"change":"Regressed"}} -{"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":[5807,11614,17421,23228,29035,34842,40649,46456,52263,58070,63877,69684,75491,81298,87105,92912,98719,104526,110333,116140,121947,127754,133561,139368,145175,150982,156789,162596,168403,174210,180017,185824,191631,197438,203245,209052,214859,220666,226473,232280,238087,243894,249701,255508,261315,267122,272929,278736,284543,290350,296157,301964,307771,313578,319385,325192,330999,336806,342613,348420,354227,360034,365841,371648,377455,383262,389069,394876,400683,406490,412297,418104,423911,429718,435525,441332,447139,452946,458753,464560,470367,476174,481981,487788,493595,499402,505209,511016,516823,522630,528437,534244,540051,545858,551665,557472,563279,569086,574893,580700],"measured_values":[124786.0,216362.0,317892.0,434332.0,536830.0,637167.0,786091.0,879684.0,1031150.0,1062011.0,1260137.0,1301948.0,1503356.0,1499593.0,1681057.0,1747960.0,1925895.0,1909710.0,2109544.0,2198787.0,2376095.0,2348517.0,2580160.0,2638120.0,2847189.0,2758151.0,2962586.0,3043683.0,3271190.0,3182393.0,3516449.0,3507400.0,3735299.0,3609113.0,3898733.0,3952444.0,4148889.0,4044765.0,4435812.0,4354696.0,4669851.0,4470907.0,4858331.0,4771885.0,5059276.0,5002636.0,5883500.0,5293529.0,5411780.0,5305888.0,5673951.0,5672713.0,6023368.0,5734567.0,6129281.0,6061016.0,6475086.0,6154990.0,6699585.0,6564877.0,6837968.0,6599037.0,7153766.0,6986087.0,7387337.0,7002845.0,7519990.0,7417558.0,7945994.0,8173992.0,8577126.0,8952803.0,8730366.0,8476252.0,8969863.0,9043192.0,8988332.0,8986119.0,9373473.0,9403066.0,9325185.0,9665429.0,10377671.0,9959880.0,10112370.0,10188746.0,10168554.0,10358975.0,10548175.0,10626114.0,10821223.0,10619898.0,10754902.0,11162707.0,11158944.0,11180073.0,11599391.0,11553481.0,12053353.0,11973233.0],"unit":"ns","throughput":[],"typical":{"estimate":19.94420043440079,"lower_bound":19.755524324926217,"upper_bound":20.10949694313605,"unit":"ns"},"mean":{"estimate":19.45969990281388,"lower_bound":19.293711456016037,"upper_bound":19.628432714742388,"unit":"ns"},"median":{"estimate":19.44068340217659,"lower_bound":19.174738583067274,"upper_bound":19.578717243065086,"unit":"ns"},"median_abs_dev":{"estimate":1.0042908424060117,"lower_bound":0.768593383936924,"upper_bound":1.2051786807354103,"unit":"ns"},"slope":{"estimate":19.94420043440079,"lower_bound":19.755524324926217,"upper_bound":20.10949694313605,"unit":"ns"},"change":{"mean":{"estimate":0.011645224453282976,"lower_bound":-0.002698368644902461,"upper_bound":0.026697102145386356,"unit":"%"},"median":{"estimate":0.020746472946552963,"lower_bound":0.006042801778141316,"upper_bound":0.0360818321963472,"unit":"%"},"change":"NoChange"}} -{"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":[5656,11312,16968,22624,28280,33936,39592,45248,50904,56560,62216,67872,73528,79184,84840,90496,96152,101808,107464,113120,118776,124432,130088,135744,141400,147056,152712,158368,164024,169680,175336,180992,186648,192304,197960,203616,209272,214928,220584,226240,231896,237552,243208,248864,254520,260176,265832,271488,277144,282800,288456,294112,299768,305424,311080,316736,322392,328048,333704,339360,345016,350672,356328,361984,367640,373296,378952,384608,390264,395920,401576,407232,412888,418544,424200,429856,435512,441168,446824,452480,458136,463792,469448,475104,480760,486416,492072,497728,503384,509040,514696,520352,526008,531664,537320,542976,548632,554288,559944,565600],"measured_values":[139476.0,285144.0,409759.0,552771.0,695891.0,899970.0,924866.0,1124371.0,1100565.0,1396177.0,1437186.0,1678540.0,1682811.0,1945627.0,1830955.0,2253145.0,2141880.0,2408033.0,2456671.0,2592638.0,2612788.0,2894767.0,2675299.0,3029719.0,3067056.0,3381827.0,3417276.0,3480045.0,3603153.0,3949944.0,3718448.0,4172298.0,4322926.0,4215747.0,3997312.0,4154954.0,4473243.0,4635769.0,4597279.0,4535912.0,4751216.0,5173362.0,5577347.0,5982347.0,6759220.0,6356769.0,6158294.0,6621271.0,6220198.0,6557944.0,6436106.0,6718878.0,6665630.0,6740014.0,7146263.0,7577942.0,7114502.0,7800548.0,7721105.0,8236786.0,7794488.0,8398168.0,8093942.0,9363498.0,8240235.0,8560063.0,8266095.0,8957183.0,8731512.0,9163673.0,9107133.0,8955775.0,9073541.0,9570111.0,9355175.0,10089930.0,9858238.0,10582128.0,9830076.0,10360113.0,10755365.0,10414466.0,9978456.0,10445657.0,11768973.0,11229869.0,10756846.0,10279382.0,11584568.0,11762878.0,11948272.0,12042340.0,12566583.0,11442720.0,11877314.0,12391253.0,11522748.0,12057437.0,11765124.0,12503281.0],"unit":"ns","throughput":[],"typical":{"estimate":22.594671961902645,"lower_bound":22.332034709376995,"upper_bound":22.864861105851375,"unit":"ns"},"mean":{"estimate":22.823899781920712,"lower_bound":22.570302891272917,"upper_bound":23.080381904218708,"unit":"ns"},"median":{"estimate":22.862826910231156,"lower_bound":22.410590002148904,"upper_bound":23.052389055869874,"unit":"ns"},"median_abs_dev":{"estimate":1.2870595497974995,"lower_bound":0.8976565421665893,"upper_bound":1.5333831591719111,"unit":"ns"},"slope":{"estimate":22.594671961902645,"lower_bound":22.332034709376995,"upper_bound":22.864861105851375,"unit":"ns"},"change":{"mean":{"estimate":0.10427462871209525,"lower_bound":0.08433142710166183,"upper_bound":0.12291260962671295,"unit":"%"},"median":{"estimate":0.12188012399053827,"lower_bound":0.09687923343718485,"upper_bound":0.1373421701247699,"unit":"%"},"change":"Regressed"}} -{"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":[5730,11460,17190,22920,28650,34380,40110,45840,51570,57300,63030,68760,74490,80220,85950,91680,97410,103140,108870,114600,120330,126060,131790,137520,143250,148980,154710,160440,166170,171900,177630,183360,189090,194820,200550,206280,212010,217740,223470,229200,234930,240660,246390,252120,257850,263580,269310,275040,280770,286500,292230,297960,303690,309420,315150,320880,326610,332340,338070,343800,349530,355260,360990,366720,372450,378180,383910,389640,395370,401100,406830,412560,418290,424020,429750,435480,441210,446940,452670,458400,464130,469860,475590,481320,487050,492780,498510,504240,509970,515700,521430,527160,532890,538620,544350,550080,555810,561540,567270,573000],"measured_values":[138314.0,295877.0,405228.0,519020.0,605802.0,743419.0,775570.0,1040760.0,1143982.0,1303643.0,1436860.0,1595416.0,1619043.0,1902148.0,1943760.0,2039060.0,1998072.0,2283941.0,2456536.0,2621675.0,2596174.0,3012259.0,2800816.0,2855837.0,2934152.0,3121073.0,3164819.0,3431475.0,3677672.0,3598411.0,3777321.0,3821073.0,3861159.0,4130524.0,4401966.0,4022478.0,4495577.0,4634510.0,4801290.0,4840593.0,5220142.0,5123486.0,5350402.0,5363824.0,5335086.0,5515092.0,5614383.0,6266178.0,6161470.0,6533170.0,6533671.0,6907803.0,6601903.0,7095841.0,7316523.0,7414720.0,6865093.0,7421624.0,7758332.0,7901366.0,7688065.0,8226594.0,8496640.0,8226148.0,7994483.0,8459903.0,8631784.0,8987073.0,8519392.0,9054994.0,9248698.0,9485919.0,9042603.0,8689351.0,9134440.0,8669490.0,9576516.0,10227728.0,10845270.0,10515741.0,10194405.0,10765091.0,9924860.0,10760976.0,10884692.0,10922448.0,11035809.0,11333510.0,10634393.0,11090952.0,11009702.0,11220580.0,11363708.0,11488066.0,12245112.0,12014107.0,12372600.0,11907735.0,11911147.0,12730686.0],"unit":"ns","throughput":[],"typical":{"estimate":21.94179114432503,"lower_bound":21.733727705542815,"upper_bound":22.152612281444018,"unit":"ns"},"mean":{"estimate":21.975014580926235,"lower_bound":21.770901548426995,"upper_bound":22.18294392773705,"unit":"ns"},"median":{"estimate":21.979991650163022,"lower_bound":21.59952006980803,"upper_bound":22.286237738460613,"unit":"ns"},"median_abs_dev":{"estimate":1.130314012302921,"lower_bound":0.8998389885153649,"upper_bound":1.29889881403577,"unit":"ns"},"slope":{"estimate":21.94179114432503,"lower_bound":21.733727705542815,"upper_bound":22.152612281444018,"unit":"ns"},"change":{"mean":{"estimate":0.1344905896980928,"lower_bound":0.11577506562663395,"upper_bound":0.15292879826142874,"unit":"%"},"median":{"estimate":0.1529131961108967,"lower_bound":0.12286958669269699,"upper_bound":0.17399340741433034,"unit":"%"},"change":"Regressed"}} -{"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":[5592,11184,16776,22368,27960,33552,39144,44736,50328,55920,61512,67104,72696,78288,83880,89472,95064,100656,106248,111840,117432,123024,128616,134208,139800,145392,150984,156576,162168,167760,173352,178944,184536,190128,195720,201312,206904,212496,218088,223680,229272,234864,240456,246048,251640,257232,262824,268416,274008,279600,285192,290784,296376,301968,307560,313152,318744,324336,329928,335520,341112,346704,352296,357888,363480,369072,374664,380256,385848,391440,397032,402624,408216,413808,419400,424992,430584,436176,441768,447360,452952,458544,464136,469728,475320,480912,486504,492096,497688,503280,508872,514464,520056,525648,531240,536832,542424,548016,553608,559200],"measured_values":[134956.0,280175.0,387199.0,543251.0,710809.0,760187.0,888812.0,1113685.0,1173148.0,1382621.0,1921813.0,1675833.0,1726617.0,1771059.0,2119335.0,2109063.0,2078368.0,2350138.0,2374476.0,2512163.0,2747780.0,2833149.0,3077831.0,3150413.0,3274172.0,3324618.0,3522434.0,3561981.0,3796311.0,4167368.0,3993447.0,3885604.0,4671557.0,4556432.0,4515252.0,4812823.0,5100399.0,5049984.0,4826914.0,5155206.0,5109426.0,5471071.0,6149523.0,6090216.0,5770541.0,6128839.0,5995150.0,6164979.0,6212439.0,6235747.0,6823707.0,6461629.0,6361979.0,6781608.0,7061618.0,6796893.0,6814928.0,6951772.0,7968748.0,7394522.0,7751676.0,7528428.0,7489034.0,8114741.0,8012954.0,9059212.0,9371462.0,8769125.0,9855775.0,9486860.0,9454234.0,9375462.0,9399350.0,9638436.0,9925324.0,9489587.0,9627143.0,10291669.0,11009274.0,11041577.0,10257343.0,11085227.0,11029439.0,11349667.0,11388110.0,11323604.0,12192353.0,11216180.0,11568780.0,12033615.0,12025010.0,13032261.0,12299078.0,13425191.0,12978066.0,12127729.0,12575869.0,12628640.0,12302817.0,13073562.0],"unit":"ns","throughput":[],"typical":{"estimate":23.462399260232218,"lower_bound":23.201089026732753,"upper_bound":23.724655734981667,"unit":"ns"},"mean":{"estimate":23.49978796742473,"lower_bound":23.25611015104435,"upper_bound":23.7690443643787,"unit":"ns"},"median":{"estimate":23.339032612727177,"lower_bound":23.05859710300429,"upper_bound":23.63071656526592,"unit":"ns"},"median_abs_dev":{"estimate":1.0196909031203096,"lower_bound":0.8241800117492668,"upper_bound":1.3901010007601144,"unit":"ns"},"slope":{"estimate":23.462399260232218,"lower_bound":23.201089026732753,"upper_bound":23.724655734981667,"unit":"ns"},"change":{"mean":{"estimate":0.0849598950556183,"lower_bound":0.06468894800794658,"upper_bound":0.10487736948420963,"unit":"%"},"median":{"estimate":0.08487414001543869,"lower_bound":0.06669097044311112,"upper_bound":0.11561817197966755,"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":[5532,11064,16596,22128,27660,33192,38724,44256,49788,55320,60852,66384,71916,77448,82980,88512,94044,99576,105108,110640,116172,121704,127236,132768,138300,143832,149364,154896,160428,165960,171492,177024,182556,188088,193620,199152,204684,210216,215748,221280,226812,232344,237876,243408,248940,254472,260004,265536,271068,276600,282132,287664,293196,298728,304260,309792,315324,320856,326388,331920,337452,342984,348516,354048,359580,365112,370644,376176,381708,387240,392772,398304,403836,409368,414900,420432,425964,431496,437028,442560,448092,453624,459156,464688,470220,475752,481284,486816,492348,497880,503412,508944,514476,520008,525540,531072,536604,542136,547668,553200],"measured_values":[131642.0,232318.0,381863.0,478534.0,681469.0,707119.0,946143.0,1123326.0,1278034.0,1200150.0,1477387.0,1458558.0,1771265.0,1704283.0,2006046.0,2096585.0,2500957.0,2538413.0,2759299.0,2620927.0,3002712.0,2742370.0,3347237.0,3169685.0,3469823.0,3341061.0,3728547.0,3630570.0,4244531.0,3914622.0,4495371.0,4086434.0,4528040.0,4426948.0,4966405.0,4723988.0,4849227.0,4750308.0,5052432.0,4899360.0,5505453.0,5190661.0,5504250.0,5263185.0,5713244.0,5677262.0,5832362.0,6510906.0,6476457.0,6355473.0,6987195.0,6349966.0,7490190.0,7172198.0,7034242.0,6817554.0,7437094.0,9232626.0,8246018.0,7519087.0,8022762.0,7679644.0,8114320.0,7826403.0,8802161.0,8367191.0,8910242.0,8526066.0,8879947.0,8412040.0,9112157.0,8844904.0,9405511.0,9176197.0,9871139.0,9508577.0,10233519.0,9686128.0,10444886.0,10285352.0,10808308.0,10026142.0,11029717.0,10232170.0,10915355.0,11484246.0,11808396.0,11250413.0,11530884.0,11600537.0,11785028.0,11933497.0,12287738.0,11925748.0,12769670.0,12264320.0,12417095.0,12215503.0,12198778.0,11943099.0],"unit":"ns","throughput":[],"typical":{"estimate":23.306612973661792,"lower_bound":23.06976923177531,"upper_bound":23.557726808359693,"unit":"ns"},"mean":{"estimate":23.581212593256083,"lower_bound":23.32463933617681,"upper_bound":23.85098201802129,"unit":"ns"},"median":{"estimate":23.419200365470076,"lower_bound":23.176719977970393,"upper_bound":23.732906517875936,"unit":"ns"},"median_abs_dev":{"estimate":1.2699677086517718,"lower_bound":0.891288270272259,"upper_bound":1.5605712432842265,"unit":"ns"},"slope":{"estimate":23.306612973661792,"lower_bound":23.06976923177531,"upper_bound":23.557726808359693,"unit":"ns"},"change":{"mean":{"estimate":0.1413920548003922,"lower_bound":0.1254788858862405,"upper_bound":0.15782751061331446,"unit":"%"},"median":{"estimate":0.14293394423343808,"lower_bound":0.11617047102419353,"upper_bound":0.16363734130655017,"unit":"%"},"change":"Regressed"}} -{"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":[5635,11270,16905,22540,28175,33810,39445,45080,50715,56350,61985,67620,73255,78890,84525,90160,95795,101430,107065,112700,118335,123970,129605,135240,140875,146510,152145,157780,163415,169050,174685,180320,185955,191590,197225,202860,208495,214130,219765,225400,231035,236670,242305,247940,253575,259210,264845,270480,276115,281750,287385,293020,298655,304290,309925,315560,321195,326830,332465,338100,343735,349370,355005,360640,366275,371910,377545,383180,388815,394450,400085,405720,411355,416990,422625,428260,433895,439530,445165,450800,456435,462070,467705,473340,478975,484610,490245,495880,501515,507150,512785,518420,524055,529690,535325,540960,546595,552230,557865,563500],"measured_values":[147000.0,228439.0,371758.0,513586.0,601328.0,700328.0,817573.0,960600.0,999157.0,1131974.0,1211328.0,1425969.0,1528863.0,1634344.0,1767206.0,1871233.0,1977315.0,2050954.0,2114733.0,2322366.0,2352070.0,2518252.0,2621302.0,2734350.0,3077968.0,3922690.0,3662109.0,3285848.0,3166187.0,3466955.0,3611516.0,3691117.0,3789419.0,3864662.0,3897377.0,4105227.0,4435530.0,4291006.0,4622645.0,4561062.0,4643783.0,4803591.0,4896036.0,6004006.0,5548770.0,6066487.0,5882196.0,6845277.0,5927569.0,5933788.0,6073361.0,6068073.0,6420936.0,6273829.0,6393350.0,6945741.0,7003074.0,6650994.0,6826951.0,7102536.0,7592870.0,9215903.0,8057000.0,7762225.0,8517272.0,7889145.0,7853859.0,8009388.0,7663940.0,7955957.0,8000010.0,8180868.0,8471132.0,8508585.0,9378553.0,9244169.0,9050939.0,8980776.0,10287703.0,10177930.0,9657745.0,9753398.0,9924195.0,10338455.0,10030250.0,9843922.0,11833908.0,10289917.0,10771722.0,10588580.0,11463302.0,10487634.0,10583302.0,10870034.0,11071004.0,11352621.0,11955760.0,11063945.0,11630900.0,11750771.0],"unit":"ns","throughput":[],"typical":{"estimate":21.234905999927356,"lower_bound":20.972567859878183,"upper_bound":21.530256338850524,"unit":"ns"},"mean":{"estimate":21.219284688523558,"lower_bound":20.956456672794776,"upper_bound":21.507947200014268,"unit":"ns"},"median":{"estimate":20.83722738860272,"lower_bound":20.661005436499543,"upper_bound":21.010277526562465,"unit":"ns"},"median_abs_dev":{"estimate":0.8962666679784125,"lower_bound":0.6310335614120076,"upper_bound":1.0986235325834073,"unit":"ns"},"slope":{"estimate":21.234905999927356,"lower_bound":20.972567859878183,"upper_bound":21.530256338850524,"unit":"ns"},"change":{"mean":{"estimate":0.05956099454500552,"lower_bound":0.03927376774025552,"upper_bound":0.07945062972890779,"unit":"%"},"median":{"estimate":0.04225171326243715,"lower_bound":0.010627581521841734,"upper_bound":0.0710610131918663,"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":[5752,11504,17256,23008,28760,34512,40264,46016,51768,57520,63272,69024,74776,80528,86280,92032,97784,103536,109288,115040,120792,126544,132296,138048,143800,149552,155304,161056,166808,172560,178312,184064,189816,195568,201320,207072,212824,218576,224328,230080,235832,241584,247336,253088,258840,264592,270344,276096,281848,287600,293352,299104,304856,310608,316360,322112,327864,333616,339368,345120,350872,356624,362376,368128,373880,379632,385384,391136,396888,402640,408392,414144,419896,425648,431400,437152,442904,448656,454408,460160,465912,471664,477416,483168,488920,494672,500424,506176,511928,517680,523432,529184,534936,540688,546440,552192,557944,563696,569448,575200],"measured_values":[123392.0,257252.0,358074.0,538319.0,587173.0,794715.0,783812.0,1073347.0,1059390.0,1235925.0,1326509.0,1506622.0,1471433.0,1842399.0,1861244.0,2076298.0,2068800.0,2313434.0,2331200.0,2487922.0,2326629.0,2754961.0,2624635.0,2935856.0,3008471.0,3025255.0,3197821.0,3388319.0,3517670.0,3686347.0,3749552.0,3520565.0,3738430.0,3865907.0,4359068.0,5008223.0,5082855.0,5670561.0,4964519.0,5589762.0,5051755.0,5630472.0,5409943.0,5745407.0,5319860.0,5914925.0,5632173.0,5946283.0,5860018.0,6038715.0,5962411.0,6216633.0,6091192.0,6285722.0,6336186.0,6582114.0,6394201.0,6703506.0,6857599.0,6650314.0,7241244.0,7787838.0,7726653.0,8073349.0,8017662.0,8358331.0,8011767.0,8501494.0,8452695.0,8655195.0,8954829.0,9103711.0,8728637.0,9199433.0,8954420.0,9445557.0,8929689.0,8837229.0,9160350.0,10137590.0,9549627.0,10108714.0,9622241.0,10131071.0,9937596.0,10643343.0,10297718.0,10877377.0,10006590.0,10429766.0,10665508.0,10948554.0,11006404.0,10797791.0,10836004.0,11367699.0,11191366.0,11393281.0,11669610.0,11524001.0],"unit":"ns","throughput":[],"typical":{"estimate":20.80075277521836,"lower_bound":20.611859308291194,"upper_bound":21.00845288574905,"unit":"ns"},"mean":{"estimate":21.13103718210635,"lower_bound":20.904085710967493,"upper_bound":21.368613237472715,"unit":"ns"},"median":{"estimate":20.966595563974735,"lower_bound":20.68950308399347,"upper_bound":21.342447761441157,"unit":"ns"},"median_abs_dev":{"estimate":1.0879137367569989,"lower_bound":0.8477957617140127,"upper_bound":1.2765479931518193,"unit":"ns"},"slope":{"estimate":20.80075277521836,"lower_bound":20.611859308291194,"upper_bound":21.00845288574905,"unit":"ns"},"change":{"mean":{"estimate":0.15483479967412395,"lower_bound":0.1341742562902661,"upper_bound":0.17517821987115564,"unit":"%"},"median":{"estimate":0.1648076933735274,"lower_bound":0.1450006637450978,"upper_bound":0.1889901280020015,"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":[4867,9734,14601,19468,24335,29202,34069,38936,43803,48670,53537,58404,63271,68138,73005,77872,82739,87606,92473,97340,102207,107074,111941,116808,121675,126542,131409,136276,141143,146010,150877,155744,160611,165478,170345,175212,180079,184946,189813,194680,199547,204414,209281,214148,219015,223882,228749,233616,238483,243350,248217,253084,257951,262818,267685,272552,277419,282286,287153,292020,296887,301754,306621,311488,316355,321222,326089,330956,335823,340690,345557,350424,355291,360158,365025,369892,374759,379626,384493,389360,394227,399094,403961,408828,413695,418562,423429,428296,433163,438030,442897,447764,452631,457498,462365,467232,472099,476966,481833,486700],"measured_values":[190625.0,321357.0,473847.0,660103.0,831473.0,928481.0,1121275.0,1235478.0,1417810.0,1541334.0,1753653.0,1873217.0,2149822.0,2141013.0,2392728.0,2486971.0,2730713.0,2793672.0,3025586.0,3124809.0,3319139.0,3464476.0,3627140.0,3765570.0,4053242.0,4072723.0,4503292.0,4566378.0,4752839.0,4681675.0,4920341.0,4989908.0,5607458.0,5276703.0,5752962.0,5784620.0,6107717.0,5904904.0,6270826.0,6307059.0,6594371.0,6644485.0,7102637.0,7003864.0,7449657.0,7204860.0,7574447.0,7500180.0,8037071.0,7824551.0,8140597.0,8162337.0,8472623.0,8399493.0,8883952.0,8847495.0,9263008.0,9174341.0,10204581.0,9694605.0,9877308.0,9692043.0,10115081.0,9927272.0,10482263.0,10351565.0,10952026.0,10667645.0,11220818.0,10962061.0,12130791.0,11364954.0,11818331.0,11582562.0,12335917.0,11968405.0,12514678.0,12301209.0,12896243.0,12478185.0,13213951.0,12809394.0,13457563.0,13056224.0,13570530.0,13408524.0,14370801.0,13765982.0,14540461.0,14162017.0,15243192.0,14332205.0,14965492.0,14665018.0,15130694.0,15068026.0,16350709.0,15260595.0,16032703.0,15797095.0],"unit":"ns","throughput":[],"typical":{"estimate":32.87517570204745,"lower_bound":32.664102842964105,"upper_bound":33.10052209329676,"unit":"ns"},"mean":{"estimate":32.89504147336313,"lower_bound":32.70495835779283,"upper_bound":33.11196744828382,"unit":"ns"},"median":{"estimate":32.712152834783225,"lower_bound":32.403494491947335,"upper_bound":33.0039401007989,"unit":"ns"},"median_abs_dev":{"estimate":0.8843822781808474,"lower_bound":0.5926388597880495,"upper_bound":1.0727321910777905,"unit":"ns"},"slope":{"estimate":32.87517570204745,"lower_bound":32.664102842964105,"upper_bound":33.10052209329676,"unit":"ns"},"change":{"mean":{"estimate":0.020583684528890922,"lower_bound":0.010850746374331283,"upper_bound":0.030551507114187963,"unit":"%"},"median":{"estimate":0.019830766737515715,"lower_bound":0.007755780719459038,"upper_bound":0.030400999509634374,"unit":"%"},"change":"Regressed"}} -{"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":[4598,9196,13794,18392,22990,27588,32186,36784,41382,45980,50578,55176,59774,64372,68970,73568,78166,82764,87362,91960,96558,101156,105754,110352,114950,119548,124146,128744,133342,137940,142538,147136,151734,156332,160930,165528,170126,174724,179322,183920,188518,193116,197714,202312,206910,211508,216106,220704,225302,229900,234498,239096,243694,248292,252890,257488,262086,266684,271282,275880,280478,285076,289674,294272,298870,303468,308066,312664,317262,321860,326458,331056,335654,340252,344850,349448,354046,358644,363242,367840,372438,377036,381634,386232,390830,395428,400026,404624,409222,413820,418418,423016,427614,432212,436810,441408,446006,450604,455202,459800],"measured_values":[211514.0,367243.0,572304.0,743172.0,942619.0,1106524.0,1331409.0,1499255.0,1722847.0,1853713.0,2077950.0,2258016.0,2454956.0,2603458.0,2870020.0,2974608.0,3219451.0,3331686.0,3583758.0,3703595.0,3968816.0,4092451.0,4323745.0,4374541.0,4599932.0,4741733.0,5010118.0,5111856.0,5357513.0,5469598.0,5720215.0,5843804.0,6138386.0,6214660.0,6519493.0,6572066.0,6844346.0,6938652.0,7216717.0,7296667.0,7647749.0,7686028.0,7930275.0,8031632.0,8394611.0,8412414.0,8728672.0,8776557.0,9195048.0,9217699.0,9413652.0,9582910.0,9783822.0,9855369.0,10627469.0,10343080.0,10596624.0,10582818.0,11116956.0,10974219.0,11365029.0,11336405.0,11662204.0,11797416.0,12219064.0,12062585.0,12348432.0,12433735.0,12705051.0,12794933.0,13082693.0,13142244.0,13492408.0,13522038.0,13832698.0,13932871.0,14185853.0,14300675.0,15206596.0,14628309.0,15362283.0,15047185.0,15275346.0,15386603.0,15765711.0,15716579.0,16406840.0,16116240.0,16533967.0,16427419.0,16888217.0,17041650.0,17152258.0,17208821.0,17534405.0,18247236.0,19336664.0,18416299.0,18463242.0,18339564.0],"unit":"ns","throughput":[],"typical":{"estimate":40.30875493248104,"lower_bound":40.1176828224296,"upper_bound":40.54322727919402,"unit":"ns"},"mean":{"estimate":40.38797129906471,"lower_bound":40.23604203047598,"upper_bound":40.56912610186846,"unit":"ns"},"median":{"estimate":40.15857679830326,"lower_bound":40.090175076120055,"upper_bound":40.315637233579814,"unit":"ns"},"median_abs_dev":{"estimate":0.5668666860608956,"lower_bound":0.4302610984531435,"upper_bound":0.7509645608209393,"unit":"ns"},"slope":{"estimate":40.30875493248104,"lower_bound":40.1176828224296,"upper_bound":40.54322727919402,"unit":"ns"},"change":{"mean":{"estimate":-0.018908049196740828,"lower_bound":-0.02723417832779294,"upper_bound":-0.010977297028896243,"unit":"%"},"median":{"estimate":-0.016594695427169626,"lower_bound":-0.0279012752119423,"upper_bound":-0.00971028928568407,"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":[4379,8758,13137,17516,21895,26274,30653,35032,39411,43790,48169,52548,56927,61306,65685,70064,74443,78822,83201,87580,91959,96338,100717,105096,109475,113854,118233,122612,126991,131370,135749,140128,144507,148886,153265,157644,162023,166402,170781,175160,179539,183918,188297,192676,197055,201434,205813,210192,214571,218950,223329,227708,232087,236466,240845,245224,249603,253982,258361,262740,267119,271498,275877,280256,284635,289014,293393,297772,302151,306530,310909,315288,319667,324046,328425,332804,337183,341562,345941,350320,354699,359078,363457,367836,372215,376594,380973,385352,389731,394110,398489,402868,407247,411626,416005,420384,424763,429142,433521,437900],"measured_values":[216349.0,369260.0,547465.0,719058.0,918028.0,1089069.0,1254778.0,1451916.0,1683715.0,1848575.0,2040961.0,2166488.0,2374796.0,2552884.0,2743137.0,2942411.0,3100106.0,3404933.0,3462439.0,3630973.0,3816601.0,4047964.0,4258940.0,4349114.0,4845026.0,4872473.0,4983551.0,5063653.0,5334585.0,5505769.0,5837137.0,5844474.0,6165000.0,6236467.0,6534797.0,6637695.0,6938192.0,6910816.0,7284705.0,7375022.0,7584408.0,7658114.0,7806058.0,7898942.0,8388980.0,8307127.0,8616614.0,8814561.0,8947509.0,9167114.0,9265079.0,9332136.0,9723582.0,9985660.0,9939943.0,10113997.0,11150352.0,10807379.0,11380396.0,10923415.0,11207847.0,11521313.0,11786004.0,11817881.0,12473092.0,12134948.0,12290164.0,12354396.0,13160023.0,13098486.0,13132245.0,13040040.0,13773070.0,13686756.0,13922429.0,13782129.0,14370022.0,14268668.0,14313118.0,14730639.0,15245663.0,15242916.0,15338808.0,15449221.0,15737625.0,15786930.0,16082100.0,15851468.0,16578554.0,16637273.0,17474232.0,16700995.0,16999149.0,17288413.0,17302262.0,17594598.0,18001227.0,17948177.0,18027787.0,17999373.0],"unit":"ns","throughput":[],"typical":{"estimate":42.10646496152071,"lower_bound":41.93835433815569,"upper_bound":42.2888725572908,"unit":"ns"},"mean":{"estimate":42.144377974727156,"lower_bound":41.96378402674122,"upper_bound":42.36297364771871,"unit":"ns"},"median":{"estimate":41.972830007554236,"lower_bound":41.8610804407399,"upper_bound":42.150254159160305,"unit":"ns"},"median_abs_dev":{"estimate":0.611797004399505,"lower_bound":0.4619109215088205,"upper_bound":0.7972829024622498,"unit":"ns"},"slope":{"estimate":42.10646496152071,"lower_bound":41.93835433815569,"upper_bound":42.2888725572908,"unit":"ns"},"change":{"mean":{"estimate":-0.004470233818461344,"lower_bound":-0.010664273728702425,"upper_bound":0.0022662519347799496,"unit":"%"},"median":{"estimate":-0.005030547053567425,"lower_bound":-0.01149005178135929,"upper_bound":0.002275239671760687,"unit":"%"},"change":"NoChange"}} -{"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":[4182,8364,12546,16728,20910,25092,29274,33456,37638,41820,46002,50184,54366,58548,62730,66912,71094,75276,79458,83640,87822,92004,96186,100368,104550,108732,112914,117096,121278,125460,129642,133824,138006,142188,146370,150552,154734,158916,163098,167280,171462,175644,179826,184008,188190,192372,196554,200736,204918,209100,213282,217464,221646,225828,230010,234192,238374,242556,246738,250920,255102,259284,263466,267648,271830,276012,280194,284376,288558,292740,296922,301104,305286,309468,313650,317832,322014,326196,330378,334560,338742,342924,347106,351288,355470,359652,363834,368016,372198,376380,380562,384744,388926,393108,397290,401472,405654,409836,414018,418200],"measured_values":[317516.0,579388.0,879776.0,1103062.0,1448417.0,1661816.0,1949832.0,2207982.0,2441516.0,2680194.0,3098203.0,3321163.0,3670671.0,3798356.0,4236715.0,4405519.0,4752999.0,4916845.0,5488720.0,5496013.0,5920408.0,5955325.0,6334835.0,6497610.0,6860674.0,7136514.0,7401393.0,7574377.0,8061460.0,8118563.0,8618572.0,9142717.0,9273836.0,9405237.0,9737497.0,9764393.0,10329798.0,10467003.0,10999025.0,10871224.0,11501641.0,11313733.0,11887313.0,12086811.0,12921733.0,12732681.0,13374871.0,13231830.0,14060544.0,14026498.0,14484074.0,14459044.0,14712473.0,14600334.0,15363002.0,15280154.0,15751209.0,15637863.0,16674343.0,16294094.0,17180711.0,16932935.0,17598715.0,17245243.0,18657508.0,18211601.0,19284309.0,18819955.0,19703332.0,19317546.0,20165560.0,19750202.0,20317996.0,19951213.0,21102645.0,20789001.0,21543340.0,21284291.0,22606603.0,21934277.0,23349882.0,22806945.0,23651232.0,23251781.0,24448247.0,23362709.0,24322036.0,23839120.0,24819913.0,24226827.0,25749321.0,25260127.0,26600798.0,25823738.0,26776128.0,26098379.0,27352337.0,26909223.0,28180064.0,27766177.0],"unit":"ns","throughput":[],"typical":{"estimate":66.53564247105453,"lower_bound":66.19337845923253,"upper_bound":66.87935750499226,"unit":"ns"},"mean":{"estimate":66.57571934651318,"lower_bound":66.26606652189811,"upper_bound":66.91505976739943,"unit":"ns"},"median":{"estimate":66.30358243926501,"lower_bound":65.98874769419963,"upper_bound":66.68470276573221,"unit":"ns"},"median_abs_dev":{"estimate":1.5497201779661314,"lower_bound":1.0586739875334268,"upper_bound":1.8502514226950284,"unit":"ns"},"slope":{"estimate":66.53564247105453,"lower_bound":66.19337845923253,"upper_bound":66.87935750499226,"unit":"ns"},"change":{"mean":{"estimate":0.012087101662151545,"lower_bound":0.0065379484083260666,"upper_bound":0.017679802488798028,"unit":"%"},"median":{"estimate":0.008905738030696053,"lower_bound":0.0030873470126271396,"upper_bound":0.014775386382589017,"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":[3196,6392,9588,12784,15980,19176,22372,25568,28764,31960,35156,38352,41548,44744,47940,51136,54332,57528,60724,63920,67116,70312,73508,76704,79900,83096,86292,89488,92684,95880,99076,102272,105468,108664,111860,115056,118252,121448,124644,127840,131036,134232,137428,140624,143820,147016,150212,153408,156604,159800,162996,166192,169388,172584,175780,178976,182172,185368,188564,191760,194956,198152,201348,204544,207740,210936,214132,217328,220524,223720,226916,230112,233308,236504,239700,242896,246092,249288,252484,255680,258876,262072,265268,268464,271660,274856,278052,281248,284444,287640,290836,294032,297228,300424,303620,306816,310012,313208,316404,319600],"measured_values":[495187.0,847116.0,1302850.0,1697014.0,2168464.0,2551968.0,3034307.0,3365910.0,3849120.0,4186069.0,4700764.0,5027648.0,5539177.0,5819063.0,6436918.0,6663980.0,7238956.0,7498887.0,7958319.0,8304500.0,8967919.0,9026817.0,9583351.0,9872074.0,10411445.0,10697292.0,11255435.0,11510853.0,12190595.0,12389070.0,13019700.0,13172831.0,13803375.0,14082319.0,14635736.0,14859083.0,15520811.0,15700991.0,16350662.0,16509710.0,17130745.0,17354128.0,17873810.0,18147789.0,18823198.0,18988921.0,19606665.0,19825059.0,20579486.0,20690006.0,21401177.0,21456257.0,22172679.0,22345160.0,23111225.0,23062233.0,23859503.0,23947642.0,24702911.0,24846262.0,25782545.0,25678822.0,26424456.0,26373853.0,27227742.0,27230415.0,28125425.0,28038684.0,28764416.0,28959759.0,29834470.0,29744473.0,30676859.0,30570905.0,31632678.0,31338391.0,32385692.0,32194600.0,32984074.0,33056944.0,33991675.0,33835497.0,34811023.0,34644480.0,35469844.0,35457262.0,36431138.0,36222330.0,37270144.0,37057945.0,38031914.0,37871686.0,39020356.0,38711622.0,39871828.0,39645873.0,40796777.0,40511645.0,41515430.0,41187154.0],"unit":"ns","throughput":[],"typical":{"estimate":130.13453345239256,"lower_bound":129.84698305011347,"upper_bound":130.427205464103,"unit":"ns"},"mean":{"estimate":130.8416517077951,"lower_bound":130.3589336273906,"upper_bound":131.4870907035076,"unit":"ns"},"median":{"estimate":130.54683470890552,"lower_bound":129.8237187240353,"upper_bound":130.97837922403005,"unit":"ns"},"median_abs_dev":{"estimate":1.6300962054154513,"lower_bound":1.0891329072344222,"upper_bound":2.2566476159047455,"unit":"ns"},"slope":{"estimate":130.13453345239256,"lower_bound":129.84698305011347,"upper_bound":130.427205464103,"unit":"ns"},"change":{"mean":{"estimate":-0.019385865539546576,"lower_bound":-0.024144078379291074,"upper_bound":-0.014195634121689699,"unit":"%"},"median":{"estimate":-0.020131178683996054,"lower_bound":-0.025985789912302493,"upper_bound":-0.015769012293161966,"unit":"%"},"change":"Improved"}} -{"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":[3396,6792,10188,13584,16980,20376,23772,27168,30564,33960,37356,40752,44148,47544,50940,54336,57732,61128,64524,67920,71316,74712,78108,81504,84900,88296,91692,95088,98484,101880,105276,108672,112068,115464,118860,122256,125652,129048,132444,135840,139236,142632,146028,149424,152820,156216,159612,163008,166404,169800,173196,176592,179988,183384,186780,190176,193572,196968,200364,203760,207156,210552,213948,217344,220740,224136,227532,230928,234324,237720,241116,244512,247908,251304,254700,258096,261492,264888,268284,271680,275076,278472,281868,285264,288660,292056,295452,298848,302244,305640,309036,312432,315828,319224,322620,326016,329412,332808,336204,339600],"measured_values":[424884.0,773725.0,1161476.0,1535264.0,1939714.0,2302527.0,2727625.0,3023143.0,3418685.0,3769095.0,4170234.0,4537808.0,4972102.0,5330694.0,5743586.0,6086375.0,6484789.0,6800632.0,7213304.0,7553764.0,8058770.0,8874557.0,8927031.0,9117887.0,9627594.0,9858496.0,10337785.0,10887681.0,11278615.0,11401448.0,11861704.0,12116045.0,12624886.0,12835628.0,13330843.0,13621829.0,14218045.0,14375748.0,14943555.0,15158483.0,15736877.0,15933609.0,16324461.0,16630705.0,17187419.0,17357956.0,17875538.0,18078101.0,18724619.0,18969803.0,19495242.0,19586389.0,20180448.0,20417080.0,20971660.0,21440929.0,21717668.0,21918135.0,22475926.0,22668231.0,23334211.0,23437207.0,24070716.0,24163261.0,24769540.0,24892848.0,26041363.0,25692551.0,26316125.0,26412597.0,27255880.0,27224537.0,27930327.0,27951311.0,28738798.0,28816363.0,29401682.0,29495147.0,30201252.0,30191043.0,31068355.0,30981091.0,31686369.0,31704364.0,32582833.0,32456075.0,33420228.0,33375908.0,33952360.0,34033934.0,34583633.0,34744241.0,36412646.0,35904183.0,37063306.0,36452202.0,37109979.0,37065238.0,38482474.0,38159803.0],"unit":"ns","throughput":[],"typical":{"estimate":112.24262343601588,"lower_bound":111.95379860595463,"upper_bound":112.55985955266068,"unit":"ns"},"mean":{"estimate":112.44787315361607,"lower_bound":112.14216895960466,"upper_bound":112.82395376129696,"unit":"ns"},"median":{"estimate":112.16565472269042,"lower_bound":111.81108289163723,"upper_bound":112.44200918317952,"unit":"ns"},"median_abs_dev":{"estimate":1.1461729753440366,"lower_bound":0.8129034730301081,"upper_bound":1.2774268816913885,"unit":"ns"},"slope":{"estimate":112.24262343601588,"lower_bound":111.95379860595463,"upper_bound":112.55985955266068,"unit":"ns"},"change":{"mean":{"estimate":-0.010862777734077067,"lower_bound":-0.0160153300582043,"upper_bound":-0.006361278826079286,"unit":"%"},"median":{"estimate":-0.010234400043999448,"lower_bound":-0.013848546994335909,"upper_bound":-0.007534643540464847,"unit":"%"},"change":"NoChange"}} -{"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":[3275,6550,9825,13100,16375,19650,22925,26200,29475,32750,36025,39300,42575,45850,49125,52400,55675,58950,62225,65500,68775,72050,75325,78600,81875,85150,88425,91700,94975,98250,101525,104800,108075,111350,114625,117900,121175,124450,127725,131000,134275,137550,140825,144100,147375,150650,153925,157200,160475,163750,167025,170300,173575,176850,180125,183400,186675,189950,193225,196500,199775,203050,206325,209600,212875,216150,219425,222700,225975,229250,232525,235800,239075,242350,245625,248900,252175,255450,258725,262000,265275,268550,271825,275100,278375,281650,284925,288200,291475,294750,298025,301300,304575,307850,311125,314400,317675,320950,324225,327500],"measured_values":[430382.0,834465.0,1280099.0,1678611.0,2147537.0,2550788.0,2992257.0,3394675.0,3895943.0,4234877.0,4686087.0,5078187.0,5569043.0,5938160.0,6344554.0,6762447.0,7298912.0,7695572.0,8096516.0,8428967.0,8943902.0,9313349.0,9788938.0,10061594.0,10669310.0,11044407.0,11614634.0,11875984.0,12550778.0,12762524.0,13535131.0,13510881.0,14294658.0,14402374.0,14970625.0,15156880.0,15978620.0,16127278.0,16659392.0,16903165.0,17644407.0,17813212.0,18991879.0,18609131.0,19257600.0,19362500.0,20177632.0,20281099.0,21127509.0,21201687.0,21716712.0,21956047.0,22767991.0,22880549.0,23871835.0,23537631.0,24243768.0,24388424.0,25293169.0,25211688.0,26235124.0,26370446.0,26901451.0,26773765.0,27684659.0,27871521.0,28604726.0,28568221.0,29636871.0,29504161.0,30900601.0,30416090.0,31359424.0,31248772.0,32040793.0,31922714.0,33437963.0,32941605.0,33788125.0,33706115.0,34706684.0,34765191.0,35469134.0,35493489.0,36531987.0,36342777.0,36950244.0,36852224.0,38596781.0,38149075.0,39196866.0,38817914.0,39960390.0,39858349.0,41009919.0,40461158.0,41408494.0,41564030.0,42342650.0,43093709.0],"unit":"ns","throughput":[],"typical":{"estimate":130.07774402449246,"lower_bound":129.74022850824832,"upper_bound":130.41662068035458,"unit":"ns"},"mean":{"estimate":130.06672549189594,"lower_bound":129.80673558770212,"upper_bound":130.3366831629959,"unit":"ns"},"median":{"estimate":129.88507494049085,"lower_bound":129.5035405307161,"upper_bound":130.34860785393877,"unit":"ns"},"median_abs_dev":{"estimate":1.3716095622609183,"lower_bound":1.0469944101593567,"upper_bound":1.6700174059866704,"unit":"ns"},"slope":{"estimate":130.07774402449246,"lower_bound":129.74022850824832,"upper_bound":130.41662068035458,"unit":"ns"},"change":{"mean":{"estimate":0.0022348395106372987,"lower_bound":-0.0003907302538358743,"upper_bound":0.00473078991010265,"unit":"%"},"median":{"estimate":0.00168989475128134,"lower_bound":-0.0022357366714746973,"upper_bound":0.005292888818680952,"unit":"%"},"change":"NoChange"}} -{"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":[4747,9494,14241,18988,23735,28482,33229,37976,42723,47470,52217,56964,61711,66458,71205,75952,80699,85446,90193,94940,99687,104434,109181,113928,118675,123422,128169,132916,137663,142410,147157,151904,156651,161398,166145,170892,175639,180386,185133,189880,194627,199374,204121,208868,213615,218362,223109,227856,232603,237350,242097,246844,251591,256338,261085,265832,270579,275326,280073,284820,289567,294314,299061,303808,308555,313302,318049,322796,327543,332290,337037,341784,346531,351278,356025,360772,365519,370266,375013,379760,384507,389254,394001,398748,403495,408242,412989,417736,422483,427230,431977,436724,441471,446218,450965,455712,460459,465206,469953,474700],"measured_values":[196343.0,329289.0,492488.0,652542.0,821164.0,975704.0,1152831.0,1322816.0,1484030.0,1644601.0,1799718.0,1944679.0,2133494.0,2275403.0,2449912.0,2605495.0,2795903.0,2941214.0,3119958.0,3248593.0,3506740.0,3763349.0,3861496.0,3933397.0,4155526.0,4255128.0,4443668.0,4608030.0,4779164.0,4955094.0,5113908.0,5331113.0,5660972.0,5656425.0,5768819.0,5894756.0,6064493.0,6473913.0,6420242.0,6478506.0,6760797.0,6889689.0,7125409.0,7188521.0,7424997.0,7539271.0,7750538.0,7856871.0,8060044.0,8191565.0,8583982.0,8478718.0,8729465.0,8886064.0,9110438.0,9184340.0,9708440.0,9562538.0,9794493.0,9836518.0,10536967.0,10247673.0,10290715.0,10533597.0,10814914.0,10829173.0,11066345.0,11142163.0,11438799.0,11469871.0,11718016.0,12135749.0,12641177.0,12184801.0,12463321.0,12383629.0,12696696.0,12711555.0,13034394.0,13085522.0,13535470.0,13582003.0,13737631.0,13789577.0,14214103.0,14070589.0,14339066.0,14331313.0,14819050.0,14778357.0,15277690.0,15273772.0,15517879.0,15416661.0,15765523.0,15812002.0,16489431.0,16206442.0,16997409.0,16330697.0],"unit":"ns","throughput":[],"typical":{"estimate":34.89319952536113,"lower_bound":34.765757421027054,"upper_bound":35.03071823168064,"unit":"ns"},"mean":{"estimate":34.87247958545419,"lower_bound":34.73701838112805,"upper_bound":35.05064742505939,"unit":"ns"},"median":{"estimate":34.69528435323316,"lower_bound":34.646067485346784,"upper_bound":34.74428712854713,"unit":"ns"},"median_abs_dev":{"estimate":0.296879955533922,"lower_bound":0.2187311631653902,"upper_bound":0.39438059637111544,"unit":"ns"},"slope":{"estimate":34.89319952536113,"lower_bound":34.765757421027054,"upper_bound":35.03071823168064,"unit":"ns"},"change":{"mean":{"estimate":0.025286984215922237,"lower_bound":0.01852143802486925,"upper_bound":0.031938380575144115,"unit":"%"},"median":{"estimate":0.02386760402078303,"lower_bound":0.018357629587539614,"upper_bound":0.027770392877129346,"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":[4521,9042,13563,18084,22605,27126,31647,36168,40689,45210,49731,54252,58773,63294,67815,72336,76857,81378,85899,90420,94941,99462,103983,108504,113025,117546,122067,126588,131109,135630,140151,144672,149193,153714,158235,162756,167277,171798,176319,180840,185361,189882,194403,198924,203445,207966,212487,217008,221529,226050,230571,235092,239613,244134,248655,253176,257697,262218,266739,271260,275781,280302,284823,289344,293865,298386,302907,307428,311949,316470,320991,325512,330033,334554,339075,343596,348117,352638,357159,361680,366201,370722,375243,379764,384285,388806,393327,397848,402369,406890,411411,415932,420453,424974,429495,434016,438537,443058,447579,452100],"measured_values":[234097.0,397192.0,588553.0,765150.0,990191.0,1181270.0,1351107.0,1542299.0,1746605.0,1978422.0,2161050.0,2317538.0,2529361.0,2742155.0,2919147.0,3090807.0,3333571.0,3522579.0,3704950.0,3886008.0,4146307.0,4328532.0,4483630.0,4617954.0,4981795.0,5120164.0,5312438.0,5410480.0,5664993.0,5960221.0,6081113.0,6199733.0,6384418.0,6688749.0,6888943.0,6977353.0,7345434.0,7622161.0,7685033.0,7749817.0,8149214.0,8249609.0,8343828.0,8578086.0,8998639.0,9075980.0,9212366.0,9318646.0,9751318.0,9737623.0,10194334.0,10158953.0,10391726.0,10561340.0,10877203.0,10851036.0,11273241.0,11487676.0,11658346.0,11579314.0,11996288.0,12236589.0,12532682.0,12438961.0,12808324.0,12958086.0,13135633.0,13220940.0,13588481.0,13605748.0,13943053.0,13947564.0,14371642.0,14661189.0,14655101.0,14763039.0,15144995.0,15201604.0,15627338.0,15545124.0,16036893.0,16097307.0,16324206.0,16311678.0,16685429.0,16826692.0,17160637.0,17135790.0,17645164.0,17781553.0,17713961.0,17845762.0,18145084.0,18357330.0,18457276.0,18560362.0,19025028.0,19368713.0,19666062.0,19578357.0],"unit":"ns","throughput":[],"typical":{"estimate":43.36504036545936,"lower_bound":43.2737214116855,"upper_bound":43.457825581275806,"unit":"ns"},"mean":{"estimate":43.430760231978276,"lower_bound":43.284310359000855,"upper_bound":43.64373371968318,"unit":"ns"},"median":{"estimate":43.378314647539966,"lower_bound":43.22082430140824,"upper_bound":43.49932736482934,"unit":"ns"},"median_abs_dev":{"estimate":0.4968445631765874,"lower_bound":0.3846449169761069,"upper_bound":0.5819479464669797,"unit":"ns"},"slope":{"estimate":43.36504036545936,"lower_bound":43.2737214116855,"upper_bound":43.457825581275806,"unit":"ns"},"change":{"mean":{"estimate":-0.00007382944631439958,"lower_bound":-0.006707749989227304,"upper_bound":0.0067477491398142495,"unit":"%"},"median":{"estimate":-0.0006971130543018678,"lower_bound":-0.010866699994738105,"upper_bound":0.012154306821478222,"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":[4189,8378,12567,16756,20945,25134,29323,33512,37701,41890,46079,50268,54457,58646,62835,67024,71213,75402,79591,83780,87969,92158,96347,100536,104725,108914,113103,117292,121481,125670,129859,134048,138237,142426,146615,150804,154993,159182,163371,167560,171749,175938,180127,184316,188505,192694,196883,201072,205261,209450,213639,217828,222017,226206,230395,234584,238773,242962,247151,251340,255529,259718,263907,268096,272285,276474,280663,284852,289041,293230,297419,301608,305797,309986,314175,318364,322553,326742,330931,335120,339309,343498,347687,351876,356065,360254,364443,368632,372821,377010,381199,385388,389577,393766,397955,402144,406333,410522,414711,418900],"measured_values":[250532.0,406173.0,613964.0,798877.0,1023162.0,1217719.0,1403361.0,1635935.0,1819845.0,2030272.0,2243059.0,2427419.0,2656946.0,2923120.0,3128627.0,3228515.0,3608455.0,3766064.0,3920071.0,4029954.0,4359740.0,4466149.0,4782219.0,4919029.0,5147875.0,5347169.0,5532556.0,5629719.0,5914162.0,6171307.0,6224967.0,6412536.0,6932451.0,6969294.0,7184567.0,7315509.0,7544411.0,7741121.0,7934851.0,8024860.0,8397140.0,8641393.0,8747519.0,8960864.0,9555476.0,9328363.0,9809859.0,9609068.0,10354562.0,10372664.0,10739403.0,10656434.0,11314560.0,11027031.0,11421523.0,11218208.0,11793216.0,11890197.0,12839553.0,12296069.0,12557039.0,12701947.0,12889233.0,12946157.0,13810121.0,13669985.0,13783077.0,13999053.0,14716962.0,14418617.0,14586261.0,14590236.0,14966854.0,15161474.0,15260567.0,15338761.0,16347093.0,16088099.0,16688749.0,16517453.0,17340061.0,16842484.0,17113720.0,16913288.0,17936126.0,17523066.0,18254112.0,17962689.0,18857240.0,18493097.0,19128032.0,18527677.0,19257013.0,19531429.0,20047604.0,19596183.0,19944471.0,19875020.0,20687035.0,20458413.0],"unit":"ns","throughput":[],"typical":{"estimate":49.303209944571485,"lower_bound":49.0869735897749,"upper_bound":49.52478357613021,"unit":"ns"},"mean":{"estimate":49.229563131603754,"lower_bound":48.99603351738734,"upper_bound":49.52961682047781,"unit":"ns"},"median":{"estimate":48.93562089351179,"lower_bound":48.84994031988541,"upper_bound":49.111683661289774,"unit":"ns"},"median_abs_dev":{"estimate":0.7118696256036663,"lower_bound":0.49256947701454973,"upper_bound":0.9660532496300924,"unit":"ns"},"slope":{"estimate":49.303209944571485,"lower_bound":49.0869735897749,"upper_bound":49.52478357613021,"unit":"ns"},"change":{"mean":{"estimate":0.004130720228769924,"lower_bound":-0.0019581054474209847,"upper_bound":0.011634152686112821,"unit":"%"},"median":{"estimate":0.0004723775773025629,"lower_bound":-0.0036766094558839946,"upper_bound":0.005215089298368891,"unit":"%"},"change":"NoChange"}} -{"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":[3856,7712,11568,15424,19280,23136,26992,30848,34704,38560,42416,46272,50128,53984,57840,61696,65552,69408,73264,77120,80976,84832,88688,92544,96400,100256,104112,107968,111824,115680,119536,123392,127248,131104,134960,138816,142672,146528,150384,154240,158096,161952,165808,169664,173520,177376,181232,185088,188944,192800,196656,200512,204368,208224,212080,215936,219792,223648,227504,231360,235216,239072,242928,246784,250640,254496,258352,262208,266064,269920,273776,277632,281488,285344,289200,293056,296912,300768,304624,308480,312336,316192,320048,323904,327760,331616,335472,339328,343184,347040,350896,354752,358608,362464,366320,370176,374032,377888,381744,385600],"measured_values":[332139.0,628924.0,966937.0,1244372.0,1622546.0,1896346.0,2282484.0,2541386.0,2933380.0,3178098.0,3585891.0,3813696.0,4148200.0,4378032.0,4793155.0,4985654.0,5377836.0,5614574.0,6081125.0,6245081.0,6670837.0,6829672.0,7301861.0,7458089.0,8014395.0,8080880.0,8486444.0,8683898.0,9214666.0,9430484.0,9890711.0,9948130.0,10486251.0,10551201.0,10947127.0,11044829.0,11666992.0,11750581.0,12292373.0,12359577.0,12862222.0,12996615.0,13580489.0,13631345.0,14219696.0,14298870.0,14870993.0,15030736.0,15470687.0,15425065.0,16171720.0,16212683.0,16958270.0,16839333.0,17623912.0,17508848.0,18179638.0,18079810.0,18699406.0,18646225.0,19245885.0,19250723.0,20198036.0,19886220.0,20724714.0,20566481.0,21281687.0,21146071.0,21904167.0,21832616.0,22611938.0,22455191.0,23353574.0,23161446.0,23773365.0,23671083.0,24446578.0,24259556.0,24946798.0,24914183.0,25704534.0,25603032.0,26482989.0,26079334.0,27164809.0,26862337.0,27658319.0,27519246.0,28394732.0,28049026.0,28805722.0,28642896.0,29598397.0,29338089.0,30312672.0,29869767.0,30922376.0,30514212.0,31436908.0,31188506.0],"unit":"ns","throughput":[],"typical":{"estimate":81.60204291159747,"lower_bound":81.37215409893194,"upper_bound":81.8330662153206,"unit":"ns"},"mean":{"estimate":81.74562462109553,"lower_bound":81.5231760822499,"upper_bound":81.97661104666459,"unit":"ns"},"median":{"estimate":81.7574117466493,"lower_bound":81.09137766408901,"upper_bound":82.11649103519318,"unit":"ns"},"median_abs_dev":{"estimate":1.358509003940104,"lower_bound":0.895616602239009,"upper_bound":1.5005096979866408,"unit":"ns"},"slope":{"estimate":81.60204291159747,"lower_bound":81.37215409893194,"upper_bound":81.8330662153206,"unit":"ns"},"change":{"mean":{"estimate":-0.00357497299855547,"lower_bound":-0.007394099623476896,"upper_bound":0.00011298742259014613,"unit":"%"},"median":{"estimate":-0.002859229123660212,"lower_bound":-0.011340364435690975,"upper_bound":0.0023363546268801993,"unit":"%"},"change":"NoChange"}} -{"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":[2530,5060,7590,10120,12650,15180,17710,20240,22770,25300,27830,30360,32890,35420,37950,40480,43010,45540,48070,50600,53130,55660,58190,60720,63250,65780,68310,70840,73370,75900,78430,80960,83490,86020,88550,91080,93610,96140,98670,101200,103730,106260,108790,111320,113850,116380,118910,121440,123970,126500,129030,131560,134090,136620,139150,141680,144210,146740,149270,151800,154330,156860,159390,161920,164450,166980,169510,172040,174570,177100,179630,182160,184690,187220,189750,192280,194810,197340,199870,202400,204930,207460,209990,212520,215050,217580,220110,222640,225170,227700,230230,232760,235290,237820,240350,242880,245410,247940,250470,253000],"measured_values":[738481.0,1399026.0,2129467.0,2799076.0,3498501.0,4202922.0,3670482.0,4197852.0,4676833.0,5263336.0,5707210.0,6267238.0,6744576.0,7329696.0,7803587.0,8375512.0,8893012.0,9400085.0,9874358.0,10506088.0,10937052.0,11520895.0,11955161.0,12544459.0,12951191.0,13579206.0,14053420.0,14681198.0,15063776.0,15712954.0,16098460.0,16748614.0,17120921.0,17682749.0,18092082.0,18703212.0,19252723.0,19766791.0,20137826.0,20741314.0,21193715.0,21807242.0,22250785.0,22831830.0,23239900.0,23823297.0,24337508.0,25100015.0,25475587.0,26185501.0,26518035.0,27248150.0,27551683.0,28283201.0,28504760.0,29121565.0,29661529.0,30412099.0,30708954.0,31357555.0,31717689.0,32493486.0,32740214.0,33569849.0,33764656.0,34691826.0,35943780.0,35747862.0,35892510.0,36300455.0,36857071.0,37362567.0,37777227.0,38805915.0,39016912.0,39748853.0,39992512.0,40818475.0,40928313.0,41861209.0,41943400.0,43072095.0,43115517.0,43955718.0,44142326.0,45093980.0,45345354.0,46056539.0,46249893.0,47061406.0,47281578.0,48195029.0,48396538.0,49259002.0,49323408.0,49836300.0,50384376.0,51335698.0,51447009.0,52357117.0],"unit":"ns","throughput":[],"typical":{"estimate":206.1030306924268,"lower_bound":205.82722805514987,"upper_bound":206.39795126725127,"unit":"ns"},"mean":{"estimate":210.45416016802884,"lower_bound":207.3937639757077,"upper_bound":214.20496770473912,"unit":"ns"},"median":{"estimate":205.6858860622166,"lower_bound":205.50831097423094,"upper_bound":206.62656675450154,"unit":"ns"},"median_abs_dev":{"estimate":1.360426727899469,"lower_bound":0.8008625193798873,"upper_bound":1.6091692073273052,"unit":"ns"},"slope":{"estimate":206.1030306924268,"lower_bound":205.82722805514987,"upper_bound":206.39795126725127,"unit":"ns"},"change":{"mean":{"estimate":0.05047434902497616,"lower_bound":0.034558624910880964,"upper_bound":0.0729231251005659,"unit":"%"},"median":{"estimate":0.0279041768227839,"lower_bound":0.026622155442022954,"upper_bound":0.03257899345524378,"unit":"%"},"change":"Regressed"}} -{"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":[3100,6200,9300,12400,15500,18600,21700,24800,27900,31000,34100,37200,40300,43400,46500,49600,52700,55800,58900,62000,65100,68200,71300,74400,77500,80600,83700,86800,89900,93000,96100,99200,102300,105400,108500,111600,114700,117800,120900,124000,127100,130200,133300,136400,139500,142600,145700,148800,151900,155000,158100,161200,164300,167400,170500,173600,176700,179800,182900,186000,189100,192200,195300,198400,201500,204600,207700,210800,213900,217000,220100,223200,226300,229400,232500,235600,238700,241800,244900,248000,251100,254200,257300,260400,263500,266600,269700,272800,275900,279000,282100,285200,288300,291400,294500,297600,300700,303800,306900,310000],"measured_values":[436077.0,852325.0,1248701.0,1660318.0,2081710.0,2490172.0,2908942.0,3331834.0,3733060.0,4165623.0,4537590.0,4985736.0,5413800.0,5815670.0,6256512.0,6655765.0,7163520.0,7451577.0,7915271.0,8330052.0,8756729.0,9142084.0,9734461.0,10024511.0,10421365.0,10804358.0,11291728.0,11670133.0,12097648.0,12458719.0,12895823.0,13345409.0,13762548.0,14245274.0,14564956.0,14979360.0,15425057.0,15829830.0,16232544.0,16651691.0,17027564.0,17472841.0,17966089.0,18256367.0,18788353.0,19141277.0,19588824.0,19960256.0,20477494.0,20776193.0,21259229.0,21587251.0,22075083.0,22430420.0,22910277.0,23237864.0,23809424.0,24115745.0,24571165.0,24946194.0,25247105.0,25750993.0,26308650.0,26642912.0,27122975.0,27490793.0,28004734.0,28273684.0,28768281.0,29070590.0,29502208.0,29943358.0,30357690.0,30745331.0,31302608.0,31657181.0,32038367.0,32341799.0,32939689.0,33304793.0,33823411.0,34017849.0,34537397.0,34945616.0,35462867.0,35785413.0,36205547.0,36461220.0,36984839.0,37418280.0,37871043.0,38345111.0,38821684.0,39007094.0,39659934.0,39789396.0,40422096.0,40702274.0,41173082.0,41687674.0],"unit":"ns","throughput":[],"typical":{"estimate":134.2526727134052,"lower_bound":134.17262145996435,"upper_bound":134.3327676967736,"unit":"ns"},"mean":{"estimate":134.38880186037701,"lower_bound":134.24831904656273,"upper_bound":134.56877401866723,"unit":"ns"},"median":{"estimate":134.26657154673285,"lower_bound":134.20000768049155,"upper_bound":134.35963978494624,"unit":"ns"},"median_abs_dev":{"estimate":0.3359349752284262,"lower_bound":0.2593832566853535,"upper_bound":0.41675252011011565,"unit":"ns"},"slope":{"estimate":134.2526727134052,"lower_bound":134.17262145996435,"upper_bound":134.3327676967736,"unit":"ns"},"change":{"mean":{"estimate":0.013067070496886268,"lower_bound":0.009191755697202037,"upper_bound":0.015734606445716726,"unit":"%"},"median":{"estimate":0.014664418272217983,"lower_bound":0.013816903448325979,"upper_bound":0.015949090385793285,"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":[3209,6418,9627,12836,16045,19254,22463,25672,28881,32090,35299,38508,41717,44926,48135,51344,54553,57762,60971,64180,67389,70598,73807,77016,80225,83434,86643,89852,93061,96270,99479,102688,105897,109106,112315,115524,118733,121942,125151,128360,131569,134778,137987,141196,144405,147614,150823,154032,157241,160450,163659,166868,170077,173286,176495,179704,182913,186122,189331,192540,195749,198958,202167,205376,208585,211794,215003,218212,221421,224630,227839,231048,234257,237466,240675,243884,247093,250302,253511,256720,259929,263138,266347,269556,272765,275974,279183,282392,285601,288810,292019,295228,298437,301646,304855,308064,311273,314482,317691,320900],"measured_values":[488247.0,826530.0,1264435.0,1662738.0,2115345.0,2480813.0,2934150.0,3338149.0,3805038.0,4168185.0,4659985.0,5047618.0,5493801.0,5862675.0,6311472.0,6646195.0,7161882.0,7415891.0,8101215.0,8360286.0,8902557.0,9143703.0,9694043.0,10713180.0,10715216.0,10743738.0,11278859.0,11707101.0,12239934.0,12608763.0,13094256.0,13380589.0,13885860.0,14196285.0,14853381.0,15014352.0,15670704.0,15917394.0,16469003.0,16929550.0,17261103.0,17529665.0,18175281.0,18395089.0,19067360.0,19103764.0,19768751.0,20067891.0,20735681.0,20831799.0,21421936.0,22235033.0,22414112.0,22591113.0,23355705.0,23509927.0,24143927.0,24177840.0,24838784.0,25165028.0,25765679.0,25802743.0,26427642.0,26867397.0,27383525.0,27570783.0,28315442.0,28448046.0,29153566.0,29149559.0,29844394.0,30121816.0,30873302.0,30772903.0,31720860.0,31803731.0,32190484.0,32796860.0,33010307.0,33734735.0,34110368.0,34335582.0,34884563.0,35172143.0,35771038.0,35740647.0,36859417.0,37149168.0,37784201.0,37470443.0,38320210.0,38381104.0,39400834.0,40793205.0,40429677.0,40338116.0,41199196.0,40918476.0,41965087.0,41929081.0],"unit":"ns","throughput":[],"typical":{"estimate":131.14521476306362,"lower_bound":130.85234075298484,"upper_bound":131.4753083758914,"unit":"ns"},"mean":{"estimate":131.25622087645607,"lower_bound":130.84737879836382,"upper_bound":131.81184308692684,"unit":"ns"},"median":{"estimate":131.00905914106465,"lower_bound":130.6608943596136,"upper_bound":131.25369410894496,"unit":"ns"},"median_abs_dev":{"estimate":1.1304244013988636,"lower_bound":0.9282532214660351,"upper_bound":1.3325113309231553,"unit":"ns"},"slope":{"estimate":131.14521476306362,"lower_bound":130.85234075298484,"upper_bound":131.4753083758914,"unit":"ns"},"change":{"mean":{"estimate":0.0035254370201018848,"lower_bound":0.00002438171881540283,"upper_bound":0.007700865355789838,"unit":"%"},"median":{"estimate":0.0023355759897543127,"lower_bound":-0.00038532124281298596,"upper_bound":0.004810649721294524,"unit":"%"},"change":"NoChange"}} -{"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":[29,58,87,116,145,174,203,232,261,290,319,348,377,406,435,464,493,522,551,580,609,638,667,696,725,754,783,812,841,870,899,928,957,986,1015,1044,1073,1102,1131,1160,1189,1218,1247,1276,1305,1334,1363,1392,1421,1450,1479,1508,1537,1566,1595,1624,1653,1682,1711,1740,1769,1798,1827,1856,1885,1914,1943,1972,2001,2030,2059,2088,2117,2146,2175,2204,2233,2262,2291,2320,2349,2378,2407,2436,2465,2494,2523,2552,2581,2610,2639,2668,2697,2726,2755,2784,2813,2842,2871,2900],"measured_values":[1037331.0,2013535.0,2975664.0,4021983.0,5020116.0,5984954.0,7002083.0,7964713.0,8986927.0,9930931.0,10943811.0,11933705.0,12930668.0,13890692.0,14928169.0,15872932.0,16898859.0,17866100.0,18885835.0,19839176.0,20872297.0,21914225.0,22843207.0,23867038.0,24840490.0,25825238.0,27267021.0,28036779.0,28961853.0,29779393.0,30857754.0,31810098.0,32744269.0,33702093.0,34728161.0,35786493.0,36863235.0,37854779.0,39157757.0,40088573.0,40780325.0,41852361.0,42846571.0,43681599.0,44855354.0,45713924.0,46763219.0,47653178.0,48588160.0,49640404.0,50696807.0,51640476.0,52787729.0,53576665.0,54721698.0,55637639.0,56630673.0,57632842.0,58589082.0,59663097.0,60604327.0,61657148.0,62669786.0,63610928.0,64593581.0,65579164.0,66548668.0,67542169.0,68587134.0,69654247.0,70511650.0,71487866.0,72544796.0,73571947.0,74567207.0,75442702.0,76628673.0,77654834.0,78471364.0,79475731.0,80491579.0,81472109.0,82680337.0,83413429.0,84467693.0,85474972.0,86427384.0,87348374.0,88506340.0,89500564.0,90327119.0,91379938.0,92446524.0,93536589.0,94376355.0,95416330.0,96363204.0,97425583.0,98520664.0,99464007.0],"unit":"ns","throughput":[],"typical":{"estimate":34278.895998328604,"lower_bound":34269.892898829414,"upper_bound":34288.686183994214,"unit":"ns"},"mean":{"estimate":34320.634480294415,"lower_bound":34290.0055904964,"upper_bound":34361.16916675563,"unit":"ns"},"median":{"estimate":34275.995699518666,"lower_bound":34265.64231656991,"upper_bound":34289.13620689655,"unit":"ns"},"median_abs_dev":{"estimate":47.389179177966696,"lower_bound":34.43051673297061,"upper_bound":61.42473463564138,"unit":"ns"},"slope":{"estimate":34278.895998328604,"lower_bound":34269.892898829414,"upper_bound":34288.686183994214,"unit":"ns"},"change":{"mean":{"estimate":0.0026983257753390166,"lower_bound":0.001299405338349652,"upper_bound":0.004162176346897855,"unit":"%"},"median":{"estimate":0.0023320820076493387,"lower_bound":0.0019221854429130047,"upper_bound":0.0027186683006965584,"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":[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":[1439092.0,2793796.0,4208269.0,5638044.0,7027391.0,8470789.0,9833339.0,11273864.0,12710040.0,14090099.0,15500457.0,16936648.0,18348890.0,19757337.0,21138499.0,22453332.0,23985582.0,25365212.0,26801095.0,28211573.0,29619161.0,31133287.0,32437924.0,33912490.0,35256848.0,36672309.0,38110021.0,39513053.0,40922693.0,42308604.0,43742122.0,45177236.0,46535533.0,47969975.0,49376298.0,50877903.0,52309253.0,53522496.0,54793140.0,56450202.0,58494561.0,59414287.0,60679226.0,62159736.0,63421438.0,64789777.0,66437075.0,67755326.0,69163020.0,70574755.0,72138408.0,73537920.0,74771924.0,76186815.0,77567140.0,78977277.0,80801927.0,81916574.0,83297989.0,84673502.0,86052017.0,87459186.0,88899077.0,90359271.0,91803355.0,93125805.0,94645664.0,95936769.0,97417798.0,98579220.0,100202367.0,101549749.0,103013222.0,104640433.0,106021629.0,107191342.0,108678453.0,109868437.0,111496818.0,112907187.0,114297235.0,115701901.0,117081219.0,118803815.0,119896133.0,121312763.0,122805610.0,124131045.0,125627120.0,126914359.0,128672518.0,129966113.0,131184007.0,132542450.0,134121275.0,135463403.0,136872190.0,138248922.0,139795538.0,141181669.0],"unit":"ns","throughput":[],"typical":{"estimate":470489.85831436876,"lower_bound":470369.0694648102,"upper_bound":470620.1395482184,"unit":"ns"},"mean":{"estimate":470418.86593697796,"lower_bound":470168.5572183505,"upper_bound":470706.8632131583,"unit":"ns"},"median":{"estimate":470359.0149819959,"lower_bound":470263.6729559748,"upper_bound":470433.6478873239,"unit":"ns"},"median_abs_dev":{"estimate":363.77277080262746,"lower_bound":262.6741886253287,"upper_bound":492.7190294061204,"unit":"ns"},"slope":{"estimate":470489.85831436876,"lower_bound":470369.0694648102,"upper_bound":470620.1395482184,"unit":"ns"},"change":{"mean":{"estimate":-0.0013216870661125757,"lower_bound":-0.00331294444534424,"upper_bound":-0.00003709603157763614,"unit":"%"},"median":{"estimate":-0.00021410860481618776,"lower_bound":-0.0005013612494266822,"upper_bound":-0.00005163113890571669,"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":[1506,3012,4518,6024,7530,9036,10542,12048,13554,15060,16566,18072,19578,21084,22590,24096,25602,27108,28614,30120,31626,33132,34638,36144,37650,39156,40662,42168,43674,45180,46686,48192,49698,51204,52710,54216,55722,57228,58734,60240,61746,63252,64758,66264,67770,69276,70782,72288,73794,75300,76806,78312,79818,81324,82830,84336,85842,87348,88854,90360,91866,93372,94878,96384,97890,99396,100902,102408,103914,105420,106926,108432,109938,111444,112950,114456,115962,117468,118974,120480,121986,123492,124998,126504,128010,129516,131022,132528,134034,135540,137046,138552,140058,141564,143070,144576,146082,147588,149094,150600],"measured_values":[790534.0,1441846.0,2141227.0,2846872.0,3621223.0,4305740.0,5069205.0,5750730.0,6483236.0,7171691.0,7926324.0,8564600.0,9374711.0,10007591.0,10726952.0,11475742.0,12253589.0,12846773.0,13655697.0,14305850.0,15143100.0,15873824.0,16519722.0,17196923.0,17968905.0,18614167.0,19401006.0,20043769.0,20852365.0,21531139.0,22299269.0,22987297.0,23786568.0,24287718.0,25138694.0,25760727.0,26546951.0,27222083.0,28134622.0,28636956.0,29482213.0,29985499.0,30972019.0,31519178.0,32307452.0,32974191.0,33815890.0,34541882.0,35354712.0,35784684.0,36840653.0,37301976.0,38102424.0,38840781.0,39594072.0,40169068.0,41146448.0,41546163.0,42423775.0,43052526.0,43899182.0,44414164.0,45291810.0,45842535.0,46710567.0,47382659.0,48221549.0,48705552.0,49564806.0,50192515.0,51033166.0,51621102.0,52675993.0,53038021.0,53930818.0,54701703.0,55434708.0,55965219.0,56985621.0,57858671.0,58490121.0,58772438.0,59719354.0,60365588.0,61266627.0,61604310.0,62789276.0,63069404.0,64010502.0,64539135.0,65452569.0,66071163.0,66883985.0,67360948.0,68419224.0,68915729.0,69965886.0,70256805.0,71144342.0,71657907.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":477.1787882645076,"lower_bound":476.8605391239207,"upper_bound":477.50529639507255,"unit":"ns"},"mean":{"estimate":477.4882178041992,"lower_bound":476.77072396602847,"upper_bound":478.64810307202976,"unit":"ns"},"median":{"estimate":477.15135639777077,"lower_bound":476.56350154935814,"upper_bound":477.45486978639116,"unit":"ns"},"median_abs_dev":{"estimate":1.697839081660899,"lower_bound":1.2614251907540166,"upper_bound":2.0578802139064045,"unit":"ns"},"slope":{"estimate":477.1787882645076,"lower_bound":476.8605391239207,"upper_bound":477.50529639507255,"unit":"ns"},"change":{"mean":{"estimate":-0.0018170142792356403,"lower_bound":-0.005846446590840748,"upper_bound":0.0018749070620901291,"unit":"%"},"median":{"estimate":0.00034637974888873657,"lower_bound":-0.0008987312400463576,"upper_bound":0.0011616822513609293,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"k256/10","report_directory":"/root/fuel-core/target/criterion/reports/k256/10","iteration_count":[1514,3028,4542,6056,7570,9084,10598,12112,13626,15140,16654,18168,19682,21196,22710,24224,25738,27252,28766,30280,31794,33308,34822,36336,37850,39364,40878,42392,43906,45420,46934,48448,49962,51476,52990,54504,56018,57532,59046,60560,62074,63588,65102,66616,68130,69644,71158,72672,74186,75700,77214,78728,80242,81756,83270,84784,86298,87812,89326,90840,92354,93868,95382,96896,98410,99924,101438,102952,104466,105980,107494,109008,110522,112036,113550,115064,116578,118092,119606,121120,122634,124148,125662,127176,128690,130204,131718,133232,134746,136260,137774,139288,140802,142316,143830,145344,146858,148372,149886,151400],"measured_values":[761680.0,1433286.0,2152801.0,2879709.0,3591352.0,4317117.0,5051978.0,5795783.0,6460605.0,7230199.0,7888464.0,8626773.0,9375621.0,10059956.0,10775112.0,11811832.0,12189308.0,13098841.0,13720766.0,14463843.0,15116853.0,15896566.0,16533155.0,17300874.0,17941521.0,18785182.0,19430056.0,20168373.0,20878104.0,21728873.0,22361145.0,23067091.0,23706365.0,24469776.0,25154707.0,25931076.0,26609696.0,27374792.0,28050338.0,28910920.0,29520669.0,30375085.0,30974704.0,31717006.0,32350283.0,33169249.0,33796501.0,34620224.0,35217409.0,36019960.0,36643286.0,37511110.0,38136162.0,39034307.0,39537968.0,40351111.0,40965438.0,41876747.0,42568654.0,43337539.0,43933638.0,44736343.0,45213464.0,46150339.0,46752967.0,47610784.0,48321102.0,49039763.0,49690338.0,50548539.0,51017249.0,51976340.0,52521965.0,53322096.0,54065962.0,54808407.0,55455997.0,56244907.0,56840764.0,57662999.0,58334296.0,59107842.0,59713609.0,60519406.0,61262873.0,61970995.0,62576864.0,63745888.0,63985020.0,64939378.0,65504476.0,66437488.0,66878545.0,67807795.0,68391806.0,69218673.0,69757492.0,70737218.0,71337517.0,72182628.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":475.9624047601432,"lower_bound":475.75234179583475,"upper_bound":476.18074940149637,"unit":"ns"},"mean":{"estimate":476.2457280772432,"lower_bound":475.7413898691991,"upper_bound":476.95618564516946,"unit":"ns"},"median":{"estimate":475.8481899100459,"lower_bound":475.5722041434417,"upper_bound":476.1251105669577,"unit":"ns"},"median_abs_dev":{"estimate":1.11513451991613,"lower_bound":0.8505111246641428,"upper_bound":1.386863753180532,"unit":"ns"},"slope":{"estimate":475.9624047601432,"lower_bound":475.75234179583475,"upper_bound":476.18074940149637,"unit":"ns"},"change":{"mean":{"estimate":-0.0008496907257961039,"lower_bound":-0.0028877508600659847,"upper_bound":0.001011049297467397,"unit":"%"},"median":{"estimate":-0.0009072075608855812,"lower_bound":-0.0015479745023915248,"upper_bound":-0.0001359289988933643,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"k256/100","report_directory":"/root/fuel-core/target/criterion/reports/k256/100","iteration_count":[1512,3024,4536,6048,7560,9072,10584,12096,13608,15120,16632,18144,19656,21168,22680,24192,25704,27216,28728,30240,31752,33264,34776,36288,37800,39312,40824,42336,43848,45360,46872,48384,49896,51408,52920,54432,55944,57456,58968,60480,61992,63504,65016,66528,68040,69552,71064,72576,74088,75600,77112,78624,80136,81648,83160,84672,86184,87696,89208,90720,92232,93744,95256,96768,98280,99792,101304,102816,104328,105840,107352,108864,110376,111888,113400,114912,116424,117936,119448,120960,122472,123984,125496,127008,128520,130032,131544,133056,134568,136080,137592,139104,140616,142128,143640,145152,146664,148176,149688,151200],"measured_values":[762991.0,1533583.0,2303509.0,2896600.0,3613925.0,4321836.0,5050881.0,5765836.0,6442354.0,7162496.0,7893054.0,8583419.0,9334810.0,9990390.0,10744965.0,11444310.0,12140447.0,12854093.0,13578539.0,14340928.0,15028101.0,15759790.0,16533358.0,17133698.0,17918320.0,18554414.0,19455462.0,20068110.0,20815793.0,21459710.0,22217319.0,22885568.0,23640146.0,24438555.0,25165880.0,25809028.0,26534709.0,27120581.0,27913740.0,28556335.0,29338025.0,29997274.0,30876572.0,31529446.0,32299397.0,32888071.0,33655660.0,34274340.0,35162469.0,35715865.0,36549613.0,37225261.0,38027243.0,38622495.0,39430206.0,40143953.0,40828864.0,41431784.0,42333785.0,42931326.0,43760992.0,44294603.0,45178659.0,45749599.0,46520980.0,47186894.0,47967601.0,48615451.0,49391847.0,50052523.0,50816971.0,51642625.0,52341422.0,52888728.0,53689783.0,55157811.0,55255170.0,55901101.0,56644966.0,57244890.0,58188952.0,58666860.0,59540298.0,60132554.0,61009094.0,61619410.0,62346332.0,62973054.0,63744651.0,64412116.0,65142713.0,65832865.0,66650842.0,67159171.0,68240816.0,68702370.0,69574067.0,70068824.0,70919509.0,71818283.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":473.82157882988014,"lower_bound":473.56426239548136,"upper_bound":474.1313092078385,"unit":"ns"},"mean":{"estimate":474.895904213666,"lower_bound":473.9138423834037,"upper_bound":476.1560955172529,"unit":"ns"},"median":{"estimate":473.7715247715248,"lower_bound":473.44166919988606,"upper_bound":474.0076046087951,"unit":"ns"},"median_abs_dev":{"estimate":1.0446834989195435,"lower_bound":0.7829311552544266,"upper_bound":1.3182220062185308,"unit":"ns"},"slope":{"estimate":473.82157882988014,"lower_bound":473.56426239548136,"upper_bound":474.1313092078385,"unit":"ns"},"change":{"mean":{"estimate":-0.008015205576057727,"lower_bound":-0.010343949920424172,"upper_bound":-0.005480788511148333,"unit":"%"},"median":{"estimate":-0.009802002610990734,"lower_bound":-0.010739133578712198,"upper_bound":-0.009055365670958992,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"k256/1000","report_directory":"/root/fuel-core/target/criterion/reports/k256/1000","iteration_count":[273,546,819,1092,1365,1638,1911,2184,2457,2730,3003,3276,3549,3822,4095,4368,4641,4914,5187,5460,5733,6006,6279,6552,6825,7098,7371,7644,7917,8190,8463,8736,9009,9282,9555,9828,10101,10374,10647,10920,11193,11466,11739,12012,12285,12558,12831,13104,13377,13650,13923,14196,14469,14742,15015,15288,15561,15834,16107,16380,16653,16926,17199,17472,17745,18018,18291,18564,18837,19110,19383,19656,19929,20202,20475,20748,21021,21294,21567,21840,22113,22386,22659,22932,23205,23478,23751,24024,24297,24570,24843,25116,25389,25662,25935,26208,26481,26754,27027,27300],"measured_values":[1038557.0,1899798.0,2832298.0,3760053.0,4694746.0,5623363.0,6558087.0,7494900.0,8408376.0,9359554.0,10276035.0,11209444.0,12134416.0,13103061.0,13993195.0,14961771.0,15897694.0,16816632.0,17779951.0,18662064.0,19621716.0,20547715.0,21447672.0,22430362.0,23596199.0,24285827.0,25213618.0,26188664.0,27107837.0,27984238.0,28930559.0,29931179.0,30852848.0,31749435.0,32730722.0,33614558.0,34593637.0,35539612.0,36435767.0,37397530.0,38314861.0,39308223.0,40166037.0,41087158.0,42103773.0,43046976.0,43893052.0,44843347.0,45791362.0,46659192.0,47602300.0,48588259.0,49534781.0,50521669.0,51317013.0,52332306.0,53853811.0,54148945.0,55127150.0,56061808.0,57101273.0,57908843.0,58954481.0,59831700.0,60716062.0,61654657.0,62618132.0,63504156.0,64484216.0,65368418.0,66295371.0,67272796.0,68208460.0,69112499.0,70066776.0,70949828.0,71878076.0,73114946.0,73768280.0,74717703.0,75668976.0,76582716.0,77624532.0,78499005.0,79406610.0,80381305.0,81220512.0,82227437.0,83095596.0,84192998.0,84974089.0,85932317.0,86854945.0,87849638.0,88710688.0,89652727.0,90621826.0,91520445.0,92550226.0,93526336.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":3422.9595606019516,"lower_bound":3422.0726163260456,"upper_bound":3424.0771257544598,"unit":"ns"},"mean":{"estimate":3428.7670571252343,"lower_bound":3423.676348052984,"upper_bound":3437.518493408369,"unit":"ns"},"median":{"estimate":3422.5658247796628,"lower_bound":3421.923076923077,"upper_bound":3423.2741944046293,"unit":"ns"},"median_abs_dev":{"estimate":3.090303387658464,"lower_bound":2.1295277815499576,"upper_bound":4.073317340872723,"unit":"ns"},"slope":{"estimate":3422.9595606019516,"lower_bound":3422.0726163260456,"upper_bound":3424.0771257544598,"unit":"ns"},"change":{"mean":{"estimate":0.0020779062667439785,"lower_bound":-0.000564031772848364,"upper_bound":0.005171925771298875,"unit":"%"},"median":{"estimate":0.0019093393761335786,"lower_bound":0.0014200147093219595,"upper_bound":0.0021969136370070252,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"k256/10000","report_directory":"/root/fuel-core/target/criterion/reports/k256/10000","iteration_count":[32,64,96,128,160,192,224,256,288,320,352,384,416,448,480,512,544,576,608,640,672,704,736,768,800,832,864,896,928,960,992,1024,1056,1088,1120,1152,1184,1216,1248,1280,1312,1344,1376,1408,1440,1472,1504,1536,1568,1600,1632,1664,1696,1728,1760,1792,1824,1856,1888,1920,1952,1984,2016,2048,2080,2112,2144,2176,2208,2240,2272,2304,2336,2368,2400,2432,2464,2496,2528,2560,2592,2624,2656,2688,2720,2752,2784,2816,2848,2880,2912,2944,2976,3008,3040,3072,3104,3136,3168,3200],"measured_values":[1065766.0,1963556.0,2948708.0,3956569.0,4911058.0,5894248.0,6876425.0,7857603.0,8868719.0,9821575.0,10922864.0,11879021.0,12822169.0,13777984.0,14760321.0,15711450.0,16749934.0,17672750.0,18700740.0,19667099.0,20650900.0,21631961.0,22615340.0,23741720.0,24582815.0,25587039.0,26543452.0,27538118.0,28479237.0,29492558.0,30496261.0,31478080.0,32431216.0,33410761.0,34401841.0,35375587.0,36427237.0,37396934.0,38322593.0,39818963.0,40446806.0,41297113.0,42284232.0,43287972.0,44260105.0,45225909.0,46397550.0,47282529.0,48245157.0,49155142.0,50253798.0,51173621.0,52106160.0,53117629.0,54050770.0,55072505.0,56045614.0,57102230.0,58071201.0,58974890.0,60059854.0,60998714.0,61923453.0,62900464.0,63918624.0,64887412.0,65863332.0,67000307.0,67849235.0,68811586.0,69783094.0,70789815.0,71827563.0,72782581.0,73713062.0,74774174.0,75677451.0,76650709.0,77684958.0,78646157.0,79896075.0,80728648.0,81557254.0,82549526.0,83553291.0,84842126.0,85548326.0,86624135.0,87508584.0,88462372.0,89472504.0,90671854.0,91593887.0,92425116.0,93432802.0,94376833.0,95382599.0,96360783.0,97343981.0,98317132.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":30741.141659339442,"lower_bound":30733.061992185976,"upper_bound":30750.36941350293,"unit":"ns"},"mean":{"estimate":30774.547003603537,"lower_bound":30739.84265618122,"upper_bound":30834.075488578004,"unit":"ns"},"median":{"estimate":30728.69278641929,"lower_bound":30725.941321311668,"upper_bound":30735.18079436344,"unit":"ns"},"median_abs_dev":{"estimate":25.125390142460645,"lower_bound":17.539380765003433,"upper_bound":33.51038531089041,"unit":"ns"},"slope":{"estimate":30741.141659339442,"lower_bound":30733.061992185976,"upper_bound":30750.36941350293,"unit":"ns"},"change":{"mean":{"estimate":-0.00010525697696883718,"lower_bound":-0.0022507284862677613,"upper_bound":0.002324909032357868,"unit":"%"},"median":{"estimate":-0.0002535351999766178,"lower_bound":-0.0006602396738407679,"upper_bound":0.000030173140389333497,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"k256/19753","report_directory":"/root/fuel-core/target/criterion/reports/k256/19753","iteration_count":[17,34,51,68,85,102,119,136,153,170,187,204,221,238,255,272,289,306,323,340,357,374,391,408,425,442,459,476,493,510,527,544,561,578,595,612,629,646,663,680,697,714,731,748,765,782,799,816,833,850,867,884,901,918,935,952,969,986,1003,1020,1037,1054,1071,1088,1105,1122,1139,1156,1173,1190,1207,1224,1241,1258,1275,1292,1309,1326,1343,1360,1377,1394,1411,1428,1445,1462,1479,1496,1513,1530,1547,1564,1581,1598,1615,1632,1649,1666,1683,1700],"measured_values":[1071092.0,2069390.0,3110298.0,4108669.0,5135574.0,6163635.0,7188688.0,8219154.0,9273181.0,10271274.0,11297646.0,12357008.0,13354498.0,14378402.0,15435819.0,16462035.0,17490438.0,18487827.0,19603817.0,20613455.0,21598905.0,22654372.0,23680960.0,24738683.0,25735556.0,26732398.0,27733163.0,28803885.0,29847815.0,30842367.0,31873276.0,32952592.0,33925171.0,34981356.0,36055058.0,37077072.0,38024625.0,39063371.0,40091061.0,41133881.0,42169159.0,43244151.0,44228903.0,45224655.0,46321934.0,47342265.0,48405107.0,49360795.0,50431427.0,51531667.0,52443830.0,53498343.0,54530279.0,55523158.0,56524056.0,57584603.0,58751260.0,59635258.0,60662716.0,62141056.0,62752544.0,63807832.0,64797902.0,65850986.0,66919762.0,68090145.0,68907701.0,70097358.0,70953475.0,71987743.0,72989354.0,74111637.0,75093358.0,76046859.0,77202488.0,78119092.0,79187163.0,80657491.0,81300988.0,82490882.0,83356679.0,84333608.0,85348869.0,86505030.0,87417589.0,88425639.0,89528582.0,90595497.0,91554759.0,92520195.0,93764718.0,94607824.0,95624682.0,96659716.0,97827144.0,98743532.0,99773091.0,100845769.0,101948624.0,102951367.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":60535.3966797347,"lower_bound":60518.53087128871,"upper_bound":60554.90830615148,"unit":"ns"},"mean":{"estimate":60557.785195610915,"lower_bound":60519.05252867067,"upper_bound":60618.363206268725,"unit":"ns"},"median":{"estimate":60512.21576102351,"lower_bound":60497.51096421009,"upper_bound":60532.623529411765,"unit":"ns"},"median_abs_dev":{"estimate":59.33803786309849,"lower_bound":44.16901733868619,"upper_bound":76.27538674142998,"unit":"ns"},"slope":{"estimate":60535.3966797347,"lower_bound":60518.53087128871,"upper_bound":60554.90830615148,"unit":"ns"},"change":{"mean":{"estimate":-0.00041029164344053015,"lower_bound":-0.0021015501151013275,"upper_bound":0.0010414347646880429,"unit":"%"},"median":{"estimate":0.000046837169639379894,"lower_bound":-0.00037179121641561785,"upper_bound":0.00043652644673675134,"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":[1017771.0,1985378.0,2975740.0,3966808.0,4957989.0,5949020.0,6942811.0,7977740.0,8925096.0,9918266.0,10966091.0,11899540.0,12891711.0,13939532.0,14874168.0,15893485.0,16963423.0,17880142.0,18870573.0,19888942.0,20858868.0,21865794.0,22808741.0,23861411.0,24906647.0,25872376.0,26802959.0,27794064.0,28833954.0,29776829.0,30772468.0,31733157.0,32817946.0,33747094.0,34736086.0,35773271.0,36826627.0,37714705.0,38730156.0,39719106.0,40730567.0,41674755.0,42704446.0,43660157.0,44682500.0,45690486.0,46633991.0,47679666.0,48619867.0,49651205.0,50722523.0,51796845.0,52589051.0,53647426.0,54653596.0,55616149.0,56604395.0,57707842.0,58571390.0,59551531.0,60652171.0,61570870.0,62528993.0,63590676.0,64520194.0,65623267.0,66551079.0,67602863.0,68536727.0,69523309.0,70463697.0,72027560.0,72630010.0,73469169.0,74715474.0,75535825.0,76449730.0,77500742.0,78489236.0,79528680.0,80623789.0,81430079.0,82433586.0,83381220.0,84623994.0,85563780.0,86361777.0,87710961.0,88312844.0,89422328.0,90388952.0,91342627.0,92444067.0,93273082.0,94348655.0,95321392.0,96439971.0,97244357.0,98329020.0,99246944.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":90326.83635691927,"lower_bound":90297.06999014557,"upper_bound":90360.91317575455,"unit":"ns"},"mean":{"estimate":90338.03317663139,"lower_bound":90296.01605679703,"upper_bound":90395.61110023514,"unit":"ns"},"median":{"estimate":90287.32967258645,"lower_bound":90267.67676767676,"upper_bound":90302.39772727272,"unit":"ns"},"median_abs_dev":{"estimate":97.44709045778144,"lower_bound":71.10121222699424,"upper_bound":130.63171541054862,"unit":"ns"},"slope":{"estimate":90326.83635691927,"lower_bound":90297.06999014557,"upper_bound":90360.91317575455,"unit":"ns"},"change":{"mean":{"estimate":-0.0009947558725668104,"lower_bound":-0.00215121352244447,"upper_bound":0.000028706671374495206,"unit":"%"},"median":{"estimate":-0.00034207592606116943,"lower_bound":-0.0008589923663155918,"upper_bound":0.000021171207361669886,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"k256/44444","report_directory":"/root/fuel-core/target/criterion/reports/k256/44444","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":[1116254.0,2161646.0,3272779.0,4355852.0,5519846.0,6486945.0,7603211.0,8678835.0,9819781.0,10842345.0,11939054.0,13004189.0,14087129.0,15165066.0,16221734.0,17358306.0,18414854.0,19490426.0,20548032.0,21654051.0,22792978.0,23815633.0,24927239.0,25980698.0,27097270.0,28544046.0,29482687.0,30322649.0,31421737.0,32526298.0,33552605.0,34631390.0,35742715.0,36796151.0,37940308.0,39012754.0,40053515.0,41149056.0,42484459.0,43284088.0,44422896.0,45451454.0,46584492.0,47750180.0,48925293.0,49825374.0,50881224.0,51959870.0,53072792.0,54128884.0,55311790.0,56315483.0,57398155.0,58420749.0,59600043.0,60643126.0,61804875.0,62747875.0,63885422.0,64967328.0,66291243.0,67156356.0,68209352.0,69261740.0,70566850.0,71539986.0,72512795.0,73615962.0,74701274.0,75842452.0,76863877.0,77940523.0,79145918.0,80161644.0,81304351.0,82302455.0,83324848.0,84514434.0,85768120.0,86660572.0,87681107.0,88822460.0,89918125.0,90947244.0,92009400.0,93357321.0,94191362.0,95268120.0,96439975.0,97514076.0,98492711.0,99602961.0,100778242.0,101813836.0,102865858.0,104094738.0,105309718.0,106144366.0,107244938.0,108482791.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":135433.32344133293,"lower_bound":135399.35000447187,"upper_bound":135470.32490527205,"unit":"ns"},"mean":{"estimate":135546.69514137268,"lower_bound":135451.0443193177,"upper_bound":135667.18662550347,"unit":"ns"},"median":{"estimate":135401.2332317073,"lower_bound":135368.96875,"upper_bound":135436.21666666667,"unit":"ns"},"median_abs_dev":{"estimate":126.3477764749469,"lower_bound":96.01953639853473,"upper_bound":171.7197343723291,"unit":"ns"},"slope":{"estimate":135433.32344133293,"lower_bound":135399.35000447187,"upper_bound":135470.32490527205,"unit":"ns"},"change":{"mean":{"estimate":0.00023769857597444322,"lower_bound":-0.000979192545046348,"upper_bound":0.0013417233692259276,"unit":"%"},"median":{"estimate":0.00027238124615425185,"lower_bound":-0.00013780933725782152,"upper_bound":0.0005617947555927039,"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":[1057160.0,2030686.0,3044361.0,4058259.0,5072408.0,6116268.0,7129160.0,8152887.0,9134326.0,10144588.0,11216697.0,12174530.0,13218553.0,14203404.0,15218956.0,16265934.0,17247111.0,18299648.0,19277630.0,20347751.0,21335889.0,22321400.0,23363910.0,24404407.0,25394320.0,26405800.0,27449298.0,28436030.0,29452758.0,30465793.0,31480485.0,32523721.0,33539074.0,34663915.0,35566770.0,36698657.0,37569883.0,38610219.0,39597669.0,40996284.0,41682331.0,42693417.0,43725835.0,44782827.0,45679068.0,46958059.0,47797761.0,48762136.0,49773263.0,50810593.0,51829877.0,52814145.0,53831059.0,54846342.0,55891336.0,57039383.0,58078904.0,58899722.0,59943549.0,60956556.0,62190260.0,63393269.0,64004107.0,65646038.0,66034398.0,67053418.0,68121551.0,69102362.0,70177489.0,71321927.0,72252189.0,73208038.0,74180359.0,75192224.0,76197022.0,77305083.0,78178833.0,79249953.0,80268412.0,81221545.0,82295309.0,83369041.0,84296787.0,85502958.0,86306397.0,87399818.0,88324253.0,89539310.0,90356206.0,91458853.0,92431242.0,93469647.0,94445096.0,95415390.0,96693884.0,97602756.0,98555456.0,99608182.0,100558848.0,101599742.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":203311.30469572928,"lower_bound":203245.08455716728,"upper_bound":203391.6384944577,"unit":"ns"},"mean":{"estimate":203397.22849442624,"lower_bound":203261.0928845322,"upper_bound":203600.566282111,"unit":"ns"},"median":{"estimate":203209.1476967245,"lower_bound":203188.52,"upper_bound":203254.41960784313,"unit":"ns"},"median_abs_dev":{"estimate":192.66682940353346,"lower_bound":138.59949696795084,"upper_bound":247.9857948911769,"unit":"ns"},"slope":{"estimate":203311.30469572928,"lower_bound":203245.08455716728,"upper_bound":203391.6384944577,"unit":"ns"},"change":{"mean":{"estimate":-0.001643626353712846,"lower_bound":-0.0055074362411092195,"upper_bound":0.0008371633884100447,"unit":"%"},"median":{"estimate":-0.00013706353246634162,"lower_bound":-0.0003711773986166955,"upper_bound":0.00022195924854218063,"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":[1244152.0,2431844.0,3654691.0,4922662.0,6108960.0,7353944.0,8569699.0,10333741.0,11097651.0,12314276.0,13488336.0,14600824.0,15842603.0,17030685.0,18275549.0,19491654.0,20708278.0,21910946.0,23142241.0,24384550.0,25576331.0,26997452.0,28001717.0,29293639.0,30440239.0,31684938.0,32899101.0,34088968.0,35306988.0,36591032.0,37768473.0,38979918.0,40197506.0,41508962.0,42704086.0,43970122.0,45038232.0,46257108.0,47499463.0,49107973.0,49972667.0,51323520.0,52351970.0,53656583.0,54796495.0,56028504.0,57245562.0,58450332.0,59679167.0,60866753.0,62118640.0,63345990.0,64674373.0,65800688.0,66992555.0,68290357.0,69468964.0,70774382.0,71828576.0,73089162.0,74298122.0,75480427.0,76734667.0,78086700.0,79199717.0,80487829.0,81616023.0,82826045.0,84046488.0,85260793.0,86584227.0,87699947.0,88920993.0,90077224.0,91360459.0,92524282.0,93861266.0,95091079.0,96225154.0,97563252.0,98791531.0,99931313.0,101094830.0,102327312.0,103514345.0,104724500.0,106078883.0,107378738.0,108420689.0,109627006.0,110943819.0,112533504.0,113279530.0,114633587.0,115727849.0,117041745.0,118223056.0,119407290.0,120674265.0,121768689.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":304684.9618678883,"lower_bound":304614.9897960086,"upper_bound":304768.21537258517,"unit":"ns"},"mean":{"estimate":305075.83653857856,"lower_bound":304757.2518932004,"upper_bound":305540.6129085076,"unit":"ns"},"median":{"estimate":304554.7954705056,"lower_bound":304526.5606060606,"upper_bound":304665.75128986867,"unit":"ns"},"median_abs_dev":{"estimate":267.6640177110121,"lower_bound":163.17367335419084,"upper_bound":353.91235454055214,"unit":"ns"},"slope":{"estimate":304684.9618678883,"lower_bound":304614.9897960086,"upper_bound":304768.21537258517,"unit":"ns"},"change":{"mean":{"estimate":0.000461492453106338,"lower_bound":-0.0013663299085182542,"upper_bound":0.0022559649156036693,"unit":"%"},"median":{"estimate":-0.00010788403545103353,"lower_bound":-0.0003381752562776619,"upper_bound":0.000268010442461053,"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":[2099,4198,6297,8396,10495,12594,14693,16792,18891,20990,23089,25188,27287,29386,31485,33584,35683,37782,39881,41980,44079,46178,48277,50376,52475,54574,56673,58772,60871,62970,65069,67168,69267,71366,73465,75564,77663,79762,81861,83960,86059,88158,90257,92356,94455,96554,98653,100752,102851,104950,107049,109148,111247,113346,115445,117544,119643,121742,123841,125940,128039,130138,132237,134336,136435,138534,140633,142732,144831,146930,149029,151128,153227,155326,157425,159524,161623,163722,165821,167920,170019,172118,174217,176316,178415,180514,182613,184712,186811,188910,191009,193108,195207,197306,199405,201504,203603,205702,207801,209900],"measured_values":[648742.0,1283844.0,1910936.0,2539758.0,3166055.0,3870588.0,4387416.0,5083711.0,5637900.0,6252515.0,6946110.0,7577275.0,8153323.0,8750934.0,9408399.0,10078965.0,10671724.0,11289772.0,11957737.0,12568032.0,13183707.0,13803749.0,14478963.0,15195521.0,15690595.0,16340702.0,16963802.0,17719743.0,18239318.0,18863259.0,19503941.0,20172543.0,20743680.0,21352408.0,21982914.0,22725019.0,23269073.0,23838417.0,24471508.0,25160369.0,25684549.0,26342960.0,27024220.0,27730023.0,28354073.0,28746002.0,29501050.0,30169934.0,30706931.0,31323969.0,31932967.0,32708916.0,33228556.0,34105736.0,34561189.0,35359610.0,35716775.0,36434746.0,37145816.0,37784633.0,38475107.0,38957933.0,39644255.0,40454762.0,40917503.0,41511699.0,42081643.0,42801220.0,43389498.0,43921816.0,44652410.0,45371179.0,45963083.0,46494845.0,47110098.0,47832227.0,48370260.0,49072316.0,49627599.0,50418593.0,51009879.0,51483469.0,52203605.0,53126692.0,53719754.0,54030422.0,54764444.0,55498853.0,55873126.0,56605299.0,57235393.0,58064588.0,58606769.0,58971616.0,59621751.0,60434342.0,61054561.0,61537601.0,62292660.0,63079890.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":299.7206251043285,"lower_bound":299.55350202395397,"upper_bound":299.8891346420933,"unit":"ns"},"mean":{"estimate":299.93603018906117,"lower_bound":299.6360485067804,"upper_bound":300.28423865344024,"unit":"ns"},"median":{"estimate":299.6402493250754,"lower_bound":299.38141972367794,"upper_bound":299.8030888104231,"unit":"ns"},"median_abs_dev":{"estimate":0.8311330763458805,"lower_bound":0.5819852168694458,"upper_bound":1.0450250003204935,"unit":"ns"},"slope":{"estimate":299.7206251043285,"lower_bound":299.55350202395397,"upper_bound":299.8891346420933,"unit":"ns"},"change":{"mean":{"estimate":0.008680953637694833,"lower_bound":0.007233730532375082,"upper_bound":0.010159369005375916,"unit":"%"},"median":{"estimate":0.009229520898021093,"lower_bound":0.00786702345268031,"upper_bound":0.009963157822614921,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"s256/10","report_directory":"/root/fuel-core/target/criterion/reports/s256/10","iteration_count":[2096,4192,6288,8384,10480,12576,14672,16768,18864,20960,23056,25152,27248,29344,31440,33536,35632,37728,39824,41920,44016,46112,48208,50304,52400,54496,56592,58688,60784,62880,64976,67072,69168,71264,73360,75456,77552,79648,81744,83840,85936,88032,90128,92224,94320,96416,98512,100608,102704,104800,106896,108992,111088,113184,115280,117376,119472,121568,123664,125760,127856,129952,132048,134144,136240,138336,140432,142528,144624,146720,148816,150912,153008,155104,157200,159296,161392,163488,165584,167680,169776,171872,173968,176064,178160,180256,182352,184448,186544,188640,190736,192832,194928,197024,199120,201216,203312,205408,207504,209600],"measured_values":[658184.0,1251583.0,1875950.0,2515172.0,3111922.0,3730977.0,4355338.0,4958214.0,5632588.0,6257239.0,6835059.0,7432060.0,8096313.0,8690188.0,9369730.0,9958460.0,10577289.0,11227729.0,11834433.0,12430475.0,13070647.0,13696385.0,14384863.0,14946036.0,15558613.0,16145445.0,16808837.0,17391189.0,18054966.0,18697446.0,19314133.0,19960338.0,20602028.0,21165441.0,21847507.0,22435429.0,23070729.0,23595013.0,24303017.0,24847916.0,25542434.0,26054791.0,26806362.0,27352853.0,28043079.0,28580574.0,29240196.0,29846701.0,30551547.0,31075702.0,31854345.0,33083869.0,33112484.0,33529589.0,34275826.0,34808913.0,35654306.0,36106534.0,36775449.0,37288424.0,38015834.0,38629246.0,39262919.0,39880479.0,40539005.0,41034126.0,41715239.0,42406809.0,43030662.0,43488352.0,44222968.0,44784888.0,45526085.0,46160552.0,46753459.0,47296795.0,48064852.0,48521159.0,49220661.0,49755183.0,50547594.0,51025122.0,51804855.0,52302729.0,52991501.0,53473124.0,54333664.0,54599075.0,55616044.0,55896497.0,56716000.0,57231531.0,58127057.0,58488987.0,59182944.0,59817374.0,60483869.0,61037101.0,61608829.0,62259032.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":297.2271314667498,"lower_bound":297.06729923754585,"upper_bound":297.40379014881125,"unit":"ns"},"mean":{"estimate":297.4087592664604,"lower_bound":297.10835965504043,"upper_bound":297.8404644797813,"unit":"ns"},"median":{"estimate":297.1668890654089,"lower_bound":297.0156018180621,"upper_bound":297.3184796437659,"unit":"ns"},"median_abs_dev":{"estimate":0.5584008286800763,"lower_bound":0.44088094751095597,"upper_bound":0.7807281622077868,"unit":"ns"},"slope":{"estimate":297.2271314667498,"lower_bound":297.06729923754585,"upper_bound":297.40379014881125,"unit":"ns"},"change":{"mean":{"estimate":-0.00011077270984782839,"lower_bound":-0.0014573641787665487,"upper_bound":0.0015444411977452485,"unit":"%"},"median":{"estimate":-0.00023780298835973657,"lower_bound":-0.0009389067357713499,"upper_bound":0.00039290622126819663,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"s256/100","report_directory":"/root/fuel-core/target/criterion/reports/s256/100","iteration_count":[1368,2736,4104,5472,6840,8208,9576,10944,12312,13680,15048,16416,17784,19152,20520,21888,23256,24624,25992,27360,28728,30096,31464,32832,34200,35568,36936,38304,39672,41040,42408,43776,45144,46512,47880,49248,50616,51984,53352,54720,56088,57456,58824,60192,61560,62928,64296,65664,67032,68400,69768,71136,72504,73872,75240,76608,77976,79344,80712,82080,83448,84816,86184,87552,88920,90288,91656,93024,94392,95760,97128,98496,99864,101232,102600,103968,105336,106704,108072,109440,110808,112176,113544,114912,116280,117648,119016,120384,121752,123120,124488,125856,127224,128592,129960,131328,132696,134064,135432,136800],"measured_values":[770627.0,1530578.0,2296981.0,3061206.0,3824904.0,4593584.0,5343017.0,5989812.0,6728718.0,7459470.0,8203646.0,8981175.0,9715335.0,10450834.0,11210243.0,11957321.0,12695011.0,13430197.0,14193425.0,14923267.0,15669344.0,16420727.0,17172211.0,18044157.0,18769080.0,19442304.0,20152922.0,20937777.0,21700805.0,22430548.0,23145831.0,23935140.0,24652339.0,25398141.0,26135074.0,26973457.0,27622737.0,28410118.0,29144055.0,29854704.0,30588831.0,31420824.0,32187811.0,32903259.0,33576241.0,34373927.0,35100656.0,36008698.0,36556023.0,37344878.0,38139975.0,38952931.0,39542982.0,40349837.0,41088813.0,41894433.0,42567767.0,43513586.0,44122359.0,44873536.0,45508408.0,46334180.0,47079698.0,47837227.0,48512170.0,49336483.0,50059706.0,50875138.0,51600127.0,52331246.0,53004831.0,53829944.0,54640390.0,55293198.0,55995540.0,57334031.0,57570029.0,58366187.0,59144017.0,59815015.0,60486704.0,61436527.0,62037434.0,62851236.0,63504799.0,64474048.0,65114666.0,66650907.0,66739486.0,67281315.0,67894110.0,68793855.0,69548447.0,70222624.0,71040961.0,71818715.0,72643364.0,73285323.0,73908627.0,74825759.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":546.8273123677254,"lower_bound":546.4908132993669,"upper_bound":547.2581249040264,"unit":"ns"},"mean":{"estimate":547.5143066549675,"lower_bound":546.8599295987661,"upper_bound":548.2727672058651,"unit":"ns"},"median":{"estimate":546.5168192777264,"lower_bound":546.2826594118399,"upper_bound":546.640719240143,"unit":"ns"},"median_abs_dev":{"estimate":0.878922056557947,"lower_bound":0.6161762325812935,"upper_bound":1.1115397931687212,"unit":"ns"},"slope":{"estimate":546.8273123677254,"lower_bound":546.4908132993669,"upper_bound":547.2581249040264,"unit":"ns"},"change":{"mean":{"estimate":0.00460170123751058,"lower_bound":0.0033565335186750756,"upper_bound":0.006055781992185625,"unit":"%"},"median":{"estimate":0.0031487299863781626,"lower_bound":0.0025006824302861164,"upper_bound":0.0036224929932386907,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"s256/1000","report_directory":"/root/fuel-core/target/criterion/reports/s256/1000","iteration_count":[235,470,705,940,1175,1410,1645,1880,2115,2350,2585,2820,3055,3290,3525,3760,3995,4230,4465,4700,4935,5170,5405,5640,5875,6110,6345,6580,6815,7050,7285,7520,7755,7990,8225,8460,8695,8930,9165,9400,9635,9870,10105,10340,10575,10810,11045,11280,11515,11750,11985,12220,12455,12690,12925,13160,13395,13630,13865,14100,14335,14570,14805,15040,15275,15510,15745,15980,16215,16450,16685,16920,17155,17390,17625,17860,18095,18330,18565,18800,19035,19270,19505,19740,19975,20210,20445,20680,20915,21150,21385,21620,21855,22090,22325,22560,22795,23030,23265,23500],"measured_values":[1016182.0,1884423.0,2854034.0,3770908.0,4713458.0,5657409.0,6595939.0,7542048.0,8538493.0,9425415.0,10368736.0,11341466.0,12254197.0,13197163.0,14166781.0,15087643.0,16085674.0,16971702.0,17949988.0,18970685.0,19852741.0,20767826.0,21707386.0,22654204.0,23595062.0,24566484.0,25468638.0,26426909.0,27363525.0,28305797.0,29302593.0,30197727.0,31306572.0,32808668.0,33015340.0,34017172.0,34964631.0,35845389.0,36818574.0,37774259.0,38692625.0,39856938.0,40669181.0,41552235.0,42529967.0,43476600.0,44355772.0,45308159.0,46412175.0,47214715.0,48126277.0,49242935.0,49984697.0,50989729.0,51899976.0,53066520.0,53805973.0,54928287.0,55717975.0,56644109.0,57598631.0,58507269.0,59583290.0,60389056.0,61378163.0,62330007.0,63390054.0,64194185.0,65099848.0,66052218.0,66979208.0,68117052.0,68885580.0,69865672.0,70798077.0,71739636.0,72746956.0,73612819.0,74617339.0,75640733.0,76466372.0,77525758.0,78321478.0,79271727.0,80420344.0,81148702.0,82089609.0,83094638.0,83978145.0,84968800.0,85862018.0,87003722.0,87805343.0,88702548.0,89655976.0,90737442.0,91541332.0,92540887.0,93378995.0,94493346.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":4018.9377803042926,"lower_bound":4017.8383464751623,"upper_bound":4020.1946777094277,"unit":"ns"},"mean":{"estimate":4022.8307315699003,"lower_bound":4018.292062216989,"upper_bound":4030.3145030962405,"unit":"ns"},"median":{"estimate":4017.1519495820394,"lower_bound":4016.0778079650845,"upper_bound":4018.2103436988546,"unit":"ns"},"median_abs_dev":{"estimate":3.836563609799056,"lower_bound":2.5164795895864764,"upper_bound":5.640777079820528,"unit":"ns"},"slope":{"estimate":4018.9377803042926,"lower_bound":4017.8383464751623,"upper_bound":4020.1946777094277,"unit":"ns"},"change":{"mean":{"estimate":0.003475034191751991,"lower_bound":0.0020502816607483043,"upper_bound":0.0052552795590894265,"unit":"%"},"median":{"estimate":0.0027931147739930218,"lower_bound":0.0024484210555613117,"upper_bound":0.003265064216979585,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"s256/10000","report_directory":"/root/fuel-core/target/criterion/reports/s256/10000","iteration_count":[26,52,78,104,130,156,182,208,234,260,286,312,338,364,390,416,442,468,494,520,546,572,598,624,650,676,702,728,754,780,806,832,858,884,910,936,962,988,1014,1040,1066,1092,1118,1144,1170,1196,1222,1248,1274,1300,1326,1352,1378,1404,1430,1456,1482,1508,1534,1560,1586,1612,1638,1664,1690,1716,1742,1768,1794,1820,1846,1872,1898,1924,1950,1976,2002,2028,2054,2080,2106,2132,2158,2184,2210,2236,2262,2288,2314,2340,2366,2392,2418,2444,2470,2496,2522,2548,2574,2600],"measured_values":[1061830.0,1977059.0,2967325.0,3955553.0,4944616.0,5962436.0,6921599.0,7911749.0,8904431.0,9916905.0,10879863.0,11867210.0,12974693.0,13933630.0,14862039.0,15913023.0,16975674.0,17827956.0,18876251.0,19779548.0,20797047.0,21758817.0,22776080.0,23791126.0,24869633.0,25741229.0,26761489.0,27774812.0,28681981.0,29704275.0,30692110.0,31677191.0,32666959.0,33740700.0,34642922.0,35671201.0,36679034.0,37611607.0,38598299.0,39754510.0,41250746.0,41598128.0,42614438.0,43545296.0,44593699.0,45555242.0,46748457.0,47531979.0,48576494.0,49536028.0,50642589.0,51515537.0,52534075.0,53467147.0,54484966.0,55999151.0,56554832.0,57481271.0,58385007.0,59514307.0,60425823.0,61649586.0,62418688.0,63413327.0,64370537.0,65476801.0,66357100.0,67481757.0,68331604.0,69438023.0,70283650.0,71326272.0,72353032.0,73304089.0,74266165.0,75286678.0,76216261.0,77255373.0,78229359.0,79209525.0,80345325.0,81191856.0,82236471.0,83196996.0,84250722.0,85201072.0,86193727.0,87207846.0,88083492.0,89099320.0,90347655.0,91127285.0,92236076.0,93046822.0,94071748.0,95092219.0,96115472.0,97026405.0,98203925.0,99011030.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":38115.492119448456,"lower_bound":38104.23275537929,"upper_bound":38129.17976371673,"unit":"ns"},"mean":{"estimate":38151.05088066589,"lower_bound":38110.33686292942,"upper_bound":38216.70545090811,"unit":"ns"},"median":{"estimate":38100.19195207353,"lower_bound":38089.82967032967,"upper_bound":38108.347880705514,"unit":"ns"},"median_abs_dev":{"estimate":39.55118770443694,"lower_bound":28.186600874545,"upper_bound":56.11274413160108,"unit":"ns"},"slope":{"estimate":38115.492119448456,"lower_bound":38104.23275537929,"upper_bound":38129.17976371673,"unit":"ns"},"change":{"mean":{"estimate":0.007137203290599858,"lower_bound":0.005534240255290113,"upper_bound":0.008995683886107466,"unit":"%"},"median":{"estimate":0.00654065782888491,"lower_bound":0.0062343628172888245,"upper_bound":0.006872351443373725,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"s256/19753","report_directory":"/root/fuel-core/target/criterion/reports/s256/19753","iteration_count":[14,28,42,56,70,84,98,112,126,140,154,168,182,196,210,224,238,252,266,280,294,308,322,336,350,364,378,392,406,420,434,448,462,476,490,504,518,532,546,560,574,588,602,616,630,644,658,672,686,700,714,728,742,756,770,784,798,812,826,840,854,868,882,896,910,924,938,952,966,980,994,1008,1022,1036,1050,1064,1078,1092,1106,1120,1134,1148,1162,1176,1190,1204,1218,1232,1246,1260,1274,1288,1302,1316,1330,1344,1358,1372,1386,1400],"measured_values":[1088394.0,2093770.0,3137482.0,4182340.0,5227597.0,6274930.0,7351024.0,8365180.0,9409997.0,10456408.0,11529855.0,12546844.0,13591157.0,14665617.0,15743295.0,16756776.0,17804090.0,18846091.0,19867624.0,20940959.0,21985763.0,23028715.0,24106909.0,25092642.0,26202127.0,27212941.0,28260061.0,29303792.0,30351177.0,31395025.0,32524521.0,33547523.0,34560643.0,35575757.0,36655253.0,37694109.0,39165166.0,40032361.0,40805453.0,41921496.0,42954282.0,43971356.0,44986575.0,46089267.0,47366321.0,48181631.0,49224756.0,50244279.0,51317522.0,52361176.0,53411374.0,54422147.0,55626505.0,56687174.0,57564897.0,58580954.0,59771245.0,60698928.0,61842817.0,62902047.0,63894036.0,64907902.0,65987459.0,67008175.0,68045899.0,69090873.0,70111689.0,71154658.0,72344442.0,73301722.0,74320773.0,75417181.0,76424561.0,77496673.0,78532750.0,79655042.0,80596611.0,81637159.0,82745263.0,83844074.0,84802415.0,86115356.0,86845513.0,87942981.0,89005575.0,90062225.0,91107000.0,92120266.0,93198692.0,94188421.0,95288434.0,96331696.0,97509130.0,98395249.0,99502090.0,100580435.0,101538763.0,102576299.0,103627454.0,104665388.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":74809.37187253268,"lower_bound":74794.35376294017,"upper_bound":74827.19135856535,"unit":"ns"},"mean":{"estimate":74841.21803995561,"lower_bound":74794.79496053107,"upper_bound":74914.21265638561,"unit":"ns"},"median":{"estimate":74789.51904761905,"lower_bound":74777.20106345267,"upper_bound":74802.51245847176,"unit":"ns"},"median_abs_dev":{"estimate":45.17150225747832,"lower_bound":36.89156418496132,"upper_bound":69.85141813490011,"unit":"ns"},"slope":{"estimate":74809.37187253268,"lower_bound":74794.35376294017,"upper_bound":74827.19135856535,"unit":"ns"},"change":{"mean":{"estimate":0.007345402109425914,"lower_bound":0.006079314402698122,"upper_bound":0.008583329368639037,"unit":"%"},"median":{"estimate":0.007686754324446099,"lower_bound":0.007378947429116378,"upper_bound":0.00796657064233507,"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":[1030838.0,2016981.0,3027185.0,4063494.0,5044119.0,6054486.0,7059661.0,8102629.0,9107086.0,10111036.0,11113631.0,12188445.0,13116420.0,14122251.0,15159565.0,16167939.0,17176628.0,18159465.0,19224623.0,20177576.0,21304074.0,22250599.0,23201372.0,24238555.0,25303392.0,26258100.0,27293154.0,28276765.0,29694846.0,30381766.0,31363907.0,32291288.0,33346324.0,34323508.0,35368391.0,36376335.0,37465153.0,38524870.0,39399889.0,40382594.0,41457284.0,42399897.0,43741892.0,44505501.0,45497947.0,46492136.0,47499478.0,49572314.0,49503898.0,50522705.0,51535120.0,52545594.0,53520392.0,54566298.0,55597976.0,56724893.0,57614830.0,58767415.0,59634365.0,60731785.0,61886351.0,62606632.0,63624748.0,64761939.0,65655526.0,66636756.0,67764226.0,68659474.0,69696587.0,70730148.0,71683293.0,72707846.0,73894977.0,74910509.0,75841017.0,76783468.0,77827984.0,78855412.0,79783476.0,80851601.0,81966531.0,82833217.0,83969107.0,84858513.0,86681433.0,87657399.0,87975770.0,88949200.0,89937710.0,90969114.0,92262833.0,93018595.0,93966112.0,94908037.0,95964099.0,97031683.0,98234845.0,99020162.0,100180743.0,101299091.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":112399.56263566655,"lower_bound":112334.65979646375,"upper_bound":112477.81265584206,"unit":"ns"},"mean":{"estimate":112407.12892478224,"lower_bound":112333.69715097274,"upper_bound":112495.2637105384,"unit":"ns"},"median":{"estimate":112293.48217592592,"lower_bound":112272.67777777778,"upper_bound":112323.57644824311,"unit":"ns"},"median_abs_dev":{"estimate":137.54756266666968,"lower_bound":97.75720344963129,"upper_bound":187.1793500916598,"unit":"ns"},"slope":{"estimate":112399.56263566655,"lower_bound":112334.65979646375,"upper_bound":112477.81265584206,"unit":"ns"},"change":{"mean":{"estimate":0.00783529855763243,"lower_bound":0.006753195424240205,"upper_bound":0.008833838827820033,"unit":"%"},"median":{"estimate":0.0076521557635162996,"lower_bound":0.0072587748015107145,"upper_bound":0.00805101143091691,"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":[1055554.0,2044714.0,3019002.0,4055320.0,5036827.0,6069710.0,7103975.0,8111284.0,9060772.0,10071412.0,11108248.0,12083569.0,13086998.0,14128325.0,15100147.0,16144479.0,17196689.0,18265364.0,19130707.0,20222538.0,21171570.0,22151587.0,23184784.0,24167652.0,25199177.0,26262978.0,27435202.0,28270553.0,29200037.0,30236850.0,31279477.0,32278743.0,33294004.0,34288962.0,35327254.0,36280686.0,37281708.0,38331725.0,39293729.0,40333180.0,41333592.0,42349067.0,43323244.0,44350359.0,45335417.0,46401313.0,47375139.0,48487393.0,49452997.0,50380361.0,51400843.0,52400958.0,53501932.0,54468324.0,55434856.0,56452457.0,57547278.0,58550216.0,59493795.0,60485890.0,61469371.0,62556171.0,63488811.0,64499649.0,65641293.0,66587908.0,67552375.0,68531482.0,69650464.0,70885354.0,71594814.0,72626502.0,73558389.0,74604111.0,75625059.0,76579718.0,77569190.0,78656031.0,79759415.0,80675758.0,81735835.0,82984350.0,83751315.0,84713693.0,85821815.0,86867530.0,87689239.0,88722763.0,89709970.0,90866466.0,91773158.0,92753394.0,95218329.0,94914758.0,95943286.0,96771626.0,98263820.0,98830144.0,99799138.0,100859740.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":168206.7901945717,"lower_bound":168100.61169450768,"upper_bound":168361.28244734873,"unit":"ns"},"mean":{"estimate":168273.94916249675,"lower_bound":168132.68163905654,"upper_bound":168476.6606445639,"unit":"ns"},"median":{"estimate":168071.4690705128,"lower_bound":168028.33333333334,"upper_bound":168120.6992753623,"unit":"ns"},"median_abs_dev":{"estimate":187.413862083697,"lower_bound":136.39331157732633,"upper_bound":244.58753102678835,"unit":"ns"},"slope":{"estimate":168206.7901945717,"lower_bound":168100.61169450768,"upper_bound":168361.28244734873,"unit":"ns"},"change":{"mean":{"estimate":0.008250933717651066,"lower_bound":0.0065761434855646506,"upper_bound":0.009757141469276634,"unit":"%"},"median":{"estimate":0.008262367769525936,"lower_bound":0.007921414126484505,"upper_bound":0.008648364883966364,"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":[1085837.0,2011091.0,3046551.0,4024468.0,5047796.0,6038086.0,7041736.0,8076378.0,9084424.0,10059766.0,11067225.0,12102269.0,13078940.0,14090719.0,15120849.0,16098329.0,17670319.0,18390293.0,19355458.0,20356328.0,21386643.0,22330316.0,23167385.0,24146073.0,25208367.0,26187773.0,27263337.0,28256556.0,29247290.0,30211186.0,31213068.0,32239513.0,33440187.0,34236253.0,35255889.0,36273531.0,37252944.0,40255241.0,39461378.0,40482104.0,41291299.0,42285956.0,43320154.0,44339292.0,45369765.0,46312259.0,47333595.0,48433095.0,49442957.0,50408522.0,51456631.0,52404784.0,53355177.0,54731313.0,55699154.0,56429540.0,57695333.0,58381272.0,59487118.0,60506793.0,61749402.0,62695669.0,63553374.0,64461156.0,65497897.0,66628993.0,67506086.0,68475037.0,69540173.0,70567256.0,71760573.0,72528962.0,73544454.0,74548672.0,75511899.0,76558834.0,77585267.0,78572986.0,79657369.0,80634537.0,81594848.0,82682795.0,83644519.0,84630322.0,85609319.0,86631980.0,87774411.0,88885629.0,89669653.0,90699707.0,91790216.0,93116859.0,94814936.0,94872490.0,96566954.0,96765768.0,97753255.0,98857863.0,99727937.0,100709559.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":252282.10745529778,"lower_bound":252087.8461626583,"upper_bound":252524.79200479036,"unit":"ns"},"mean":{"estimate":252639.40140490478,"lower_bound":252221.20890285668,"upper_bound":253194.14925229212,"unit":"ns"},"median":{"estimate":251951.6127369008,"lower_bound":251888.3805970149,"upper_bound":252081.97582278482,"unit":"ns"},"median_abs_dev":{"estimate":355.3383972146403,"lower_bound":247.45940978138185,"upper_bound":479.81737165395805,"unit":"ns"},"slope":{"estimate":252282.10745529778,"lower_bound":252087.8461626583,"upper_bound":252524.79200479036,"unit":"ns"},"change":{"mean":{"estimate":0.010515253683143877,"lower_bound":0.008552287642828543,"upper_bound":0.012782818287730221,"unit":"%"},"median":{"estimate":0.008794112271252263,"lower_bound":0.00849401899396085,"upper_bound":0.009428678736553625,"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":[1195264.0,2261521.0,3395542.0,4525393.0,5658089.0,6816736.0,7919412.0,9050616.0,10181804.0,11342329.0,12444507.0,13606443.0,14736258.0,15855656.0,16997201.0,18100766.0,19267216.0,20393822.0,21530872.0,22657336.0,23842079.0,24917999.0,26047219.0,27297551.0,28312285.0,29473737.0,30603914.0,31748158.0,32840262.0,33970192.0,35130149.0,36316975.0,37366379.0,38571270.0,39682776.0,40758054.0,41919408.0,43025718.0,44184378.0,45272000.0,46475200.0,47661472.0,48678531.0,49837446.0,51211629.0,52106078.0,53232878.0,54597390.0,55589675.0,56669594.0,57732786.0,59008499.0,60136757.0,62232488.0,62786956.0,63569566.0,64747034.0,66723078.0,66926346.0,67999492.0,69158218.0,70292823.0,71347104.0,72791181.0,73712758.0,74761191.0,76264430.0,77148615.0,78154598.0,79343490.0,80415663.0,81525799.0,82742761.0,83933909.0,85416922.0,86307037.0,87207377.0,88367598.0,89505465.0,90779577.0,91732466.0,93053965.0,94022273.0,95170377.0,96315108.0,97478910.0,99099384.0,99738207.0,101063932.0,102069110.0,103099277.0,104232230.0,105421465.0,106754589.0,107729759.0,108843745.0,109977781.0,111109120.0,112318638.0,114565750.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":378262.49813014135,"lower_bound":378002.7937616995,"upper_bound":378584.49831055175,"unit":"ns"},"mean":{"estimate":378275.21370282426,"lower_bound":377917.4431263808,"upper_bound":378791.65081875806,"unit":"ns"},"median":{"estimate":377823.0295210789,"lower_bound":377663.3703703704,"upper_bound":377924.03668234765,"unit":"ns"},"median_abs_dev":{"estimate":480.5804804072817,"lower_bound":333.9216216611013,"upper_bound":573.7377520123711,"unit":"ns"},"slope":{"estimate":378262.49813014135,"lower_bound":378002.7937616995,"upper_bound":378584.49831055175,"unit":"ns"},"change":{"mean":{"estimate":0.00925005643544008,"lower_bound":0.007895440058025815,"upper_bound":0.010825666215232364,"unit":"%"},"median":{"estimate":0.009072930147406622,"lower_bound":0.008652942270776343,"upper_bound":0.009360303729364583,"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":[29,58,87,116,145,174,203,232,261,290,319,348,377,406,435,464,493,522,551,580,609,638,667,696,725,754,783,812,841,870,899,928,957,986,1015,1044,1073,1102,1131,1160,1189,1218,1247,1276,1305,1334,1363,1392,1421,1450,1479,1508,1537,1566,1595,1624,1653,1682,1711,1740,1769,1798,1827,1856,1885,1914,1943,1972,2001,2030,2059,2088,2117,2146,2175,2204,2233,2262,2291,2320,2349,2378,2407,2436,2465,2494,2523,2552,2581,2610,2639,2668,2697,2726,2755,2784,2813,2842,2871,2900],"measured_values":[1088499.0,2015063.0,2976027.0,3965464.0,4919654.0,5905421.0,6889464.0,7875231.0,8890162.0,9844183.0,10830293.0,11815971.0,12826259.0,13800217.0,14823112.0,15809609.0,16764158.0,17708834.0,18724001.0,19699707.0,20666560.0,21677492.0,22653875.0,23673926.0,24652235.0,25666193.0,26652689.0,27580635.0,28559275.0,29533124.0,30527716.0,31546093.0,32532686.0,33488033.0,34466143.0,35943206.0,36802837.0,37477484.0,38418850.0,39367236.0,40388777.0,41442838.0,42515533.0,43368235.0,44311610.0,45378681.0,46446266.0,47329401.0,48273891.0,49185276.0,50320781.0,51606740.0,52281416.0,53174455.0,54216261.0,55209966.0,56203513.0,57197138.0,58143727.0,59182367.0,60142901.0,61197237.0,62145661.0,63143027.0,64070589.0,65055142.0,66760693.0,67617565.0,68089549.0,68922390.0,69917041.0,71600258.0,71957576.0,72936110.0,73856781.0,74913286.0,76133740.0,76856586.0,77815900.0,78873143.0,79816898.0,81102833.0,81965714.0,82839452.0,83780489.0,84739743.0,85823389.0,86712661.0,87677191.0,89332022.0,89787596.0,90989109.0,91832815.0,92654085.0,93632303.0,94606426.0,95629034.0,96508737.0,97569951.0,98576743.0],"unit":"ns","throughput":[],"typical":{"estimate":34023.41451210999,"lower_bound":34004.2862140136,"upper_bound":34045.91650302393,"unit":"ns"},"mean":{"estimate":34061.96470904329,"lower_bound":34009.99183883429,"upper_bound":34146.429482017695,"unit":"ns"},"median":{"estimate":33991.68327586207,"lower_bound":33986.980931364466,"upper_bound":34003.08275862069,"unit":"ns"},"median_abs_dev":{"estimate":44.15782324173091,"lower_bound":34.187326538944255,"upper_bound":58.0049107293026,"unit":"ns"},"slope":{"estimate":34023.41451210999,"lower_bound":34004.2862140136,"upper_bound":34045.91650302393,"unit":"ns"},"change":{"mean":{"estimate":-0.0012057975442532065,"lower_bound":-0.004187733098303037,"upper_bound":0.001812100646184555,"unit":"%"},"median":{"estimate":-0.0015899747182309687,"lower_bound":-0.0018436167524432667,"upper_bound":-0.0010991291668803749,"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":[5665,11330,16995,22660,28325,33990,39655,45320,50985,56650,62315,67980,73645,79310,84975,90640,96305,101970,107635,113300,118965,124630,130295,135960,141625,147290,152955,158620,164285,169950,175615,181280,186945,192610,198275,203940,209605,215270,220935,226600,232265,237930,243595,249260,254925,260590,266255,271920,277585,283250,288915,294580,300245,305910,311575,317240,322905,328570,334235,339900,345565,351230,356895,362560,368225,373890,379555,385220,390885,396550,402215,407880,413545,419210,424875,430540,436205,441870,447535,453200,458865,464530,470195,475860,481525,487190,492855,498520,504185,509850,515515,521180,526845,532510,538175,543840,549505,555170,560835,566500],"measured_values":[134520.0,248791.0,393676.0,464220.0,609689.0,801747.0,918197.0,987400.0,1177425.0,1420816.0,1484761.0,1516074.0,1554957.0,1764697.0,1783641.0,2050915.0,2104018.0,2225679.0,2333389.0,2497507.0,2833886.0,2891015.0,2819797.0,2939182.0,3383354.0,3413404.0,3708752.0,3449493.0,3616324.0,3814516.0,3789928.0,4066149.0,4207339.0,4526037.0,4640404.0,4682804.0,4883842.0,4720996.0,5015386.0,5061675.0,5206698.0,5235652.0,5367583.0,5192855.0,5794507.0,5545420.0,5855368.0,5976380.0,5660683.0,6071927.0,6050951.0,6429405.0,6934589.0,7307402.0,7027738.0,6865721.0,6703381.0,7025383.0,7353833.0,7609805.0,8112601.0,8645827.0,8386719.0,7529881.0,8536736.0,8368230.0,8221520.0,8462954.0,8832852.0,8591941.0,9584102.0,9468397.0,9313638.0,9451207.0,9182232.0,9908978.0,10766372.0,9975622.0,9994487.0,10239369.0,11454499.0,10845724.0,10298422.0,10793799.0,11568153.0,11312344.0,11136028.0,10880591.0,11579459.0,11062561.0,11742367.0,11255722.0,11399767.0,11652173.0,12702139.0,12187836.0,12623123.0,12736967.0,13188750.0,12507373.0],"unit":"ns","throughput":[],"typical":{"estimate":22.580970553452968,"lower_bound":22.355511042381988,"upper_bound":22.808230610320013,"unit":"ns"},"mean":{"estimate":22.494940199548015,"lower_bound":22.305910319102594,"upper_bound":22.689348518859912,"unit":"ns"},"median":{"estimate":22.423635516005426,"lower_bound":22.043309796999118,"upper_bound":22.610989350316018,"unit":"ns"},"median_abs_dev":{"estimate":1.080041439489743,"lower_bound":0.7565072376845032,"upper_bound":1.1983767165886379,"unit":"ns"},"slope":{"estimate":22.580970553452968,"lower_bound":22.355511042381988,"upper_bound":22.808230610320013,"unit":"ns"},"change":{"mean":{"estimate":0.2781933574132489,"lower_bound":0.25965697317905856,"upper_bound":0.29723484289830837,"unit":"%"},"median":{"estimate":0.30306362711036283,"lower_bound":0.27428569252862145,"upper_bound":0.3226396199766013,"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":[5740,11480,17220,22960,28700,34440,40180,45920,51660,57400,63140,68880,74620,80360,86100,91840,97580,103320,109060,114800,120540,126280,132020,137760,143500,149240,154980,160720,166460,172200,177940,183680,189420,195160,200900,206640,212380,218120,223860,229600,235340,241080,246820,252560,258300,264040,269780,275520,281260,287000,292740,298480,304220,309960,315700,321440,327180,332920,338660,344400,350140,355880,361620,367360,373100,378840,384580,390320,396060,401800,407540,413280,419020,424760,430500,436240,441980,447720,453460,459200,464940,470680,476420,482160,487900,493640,499380,505120,510860,516600,522340,528080,533820,539560,545300,551040,556780,562520,568260,574000],"measured_values":[133979.0,213021.0,327263.0,431656.0,592310.0,701961.0,848240.0,898183.0,1071078.0,1156016.0,1212814.0,1430035.0,1588365.0,1660918.0,1831246.0,1890798.0,2053146.0,2332732.0,2382637.0,2565840.0,2646404.0,2769286.0,2698916.0,3233216.0,2983770.0,3170919.0,3074291.0,3407801.0,3396846.0,3494586.0,3462694.0,3708969.0,3862971.0,4023394.0,4204766.0,4382978.0,4350901.0,4278119.0,4604823.0,4609246.0,4824312.0,4993337.0,5131496.0,5102231.0,5416332.0,5542811.0,5703670.0,5725772.0,5658867.0,5958628.0,6458211.0,6074102.0,6220698.0,6176099.0,6476321.0,6531085.0,6834026.0,6971143.0,7098267.0,7299589.0,7123823.0,7118411.0,7517343.0,7652536.0,7661609.0,7942302.0,8150841.0,8394108.0,8182257.0,8654779.0,8531652.0,8955535.0,8830673.0,8933767.0,8714125.0,8808689.0,9007251.0,9449632.0,9302493.0,9555575.0,9537571.0,9867419.0,9782211.0,9983403.0,10205808.0,10271969.0,10609836.0,10524948.0,11558609.0,11639045.0,11290042.0,11644361.0,11254155.0,10929249.0,12108647.0,11318651.0,11517207.0,13069348.0,12425730.0,11958352.0],"unit":"ns","throughput":[],"typical":{"estimate":21.048418943849764,"lower_bound":20.844350501732432,"upper_bound":21.264413355193266,"unit":"ns"},"mean":{"estimate":20.859264910878515,"lower_bound":20.69153672919144,"upper_bound":21.02969863488393,"unit":"ns"},"median":{"estimate":20.78920043910928,"lower_bound":20.65322299651568,"upper_bound":20.929646590343456,"unit":"ns"},"median_abs_dev":{"estimate":0.5933778376965657,"lower_bound":0.4264382346284869,"upper_bound":0.7046933032557428,"unit":"ns"},"slope":{"estimate":21.048418943849764,"lower_bound":20.844350501732432,"upper_bound":21.264413355193266,"unit":"ns"},"change":{"mean":{"estimate":0.15603475212318219,"lower_bound":0.14191130540883323,"upper_bound":0.17049550654011003,"unit":"%"},"median":{"estimate":0.15897864694470631,"lower_bound":0.14291301903653175,"upper_bound":0.1698213240789935,"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":[5663,11326,16989,22652,28315,33978,39641,45304,50967,56630,62293,67956,73619,79282,84945,90608,96271,101934,107597,113260,118923,124586,130249,135912,141575,147238,152901,158564,164227,169890,175553,181216,186879,192542,198205,203868,209531,215194,220857,226520,232183,237846,243509,249172,254835,260498,266161,271824,277487,283150,288813,294476,300139,305802,311465,317128,322791,328454,334117,339780,345443,351106,356769,362432,368095,373758,379421,385084,390747,396410,402073,407736,413399,419062,424725,430388,436051,441714,447377,453040,458703,464366,470029,475692,481355,487018,492681,498344,504007,509670,515333,520996,526659,532322,537985,543648,549311,554974,560637,566300],"measured_values":[152317.0,254705.0,390778.0,533222.0,653728.0,763797.0,948279.0,1019057.0,1148851.0,1298929.0,1395369.0,1477715.0,1615824.0,1765957.0,1865085.0,2059301.0,2185335.0,2278260.0,2540642.0,2669696.0,2752956.0,2868234.0,2912129.0,3120314.0,3158055.0,3335500.0,3549518.0,3541321.0,3621551.0,3906806.0,4047990.0,4200907.0,4174825.0,4466234.0,4488437.0,4681731.0,4751047.0,4905607.0,5038427.0,5102167.0,5249966.0,5524439.0,5620032.0,5712911.0,5761612.0,6062514.0,6186622.0,6560113.0,6421531.0,6635146.0,6825393.0,6804653.0,6749386.0,6899825.0,7312192.0,7489084.0,7551848.0,7577235.0,7782460.0,7934442.0,8060995.0,8192485.0,8361625.0,8517537.0,8431521.0,8422323.0,8998374.0,8763804.0,9013700.0,9002557.0,9780089.0,9942094.0,9635955.0,9654738.0,10242653.0,9841785.0,10066747.0,10222572.0,10455243.0,10431053.0,10276178.0,10525406.0,10534546.0,11072782.0,11256743.0,11142976.0,11257479.0,11423704.0,11600624.0,11649974.0,12912702.0,12102745.0,12120458.0,12245143.0,13547866.0,13941304.0,13311063.0,12794114.0,12838017.0,13144778.0],"unit":"ns","throughput":[],"typical":{"estimate":23.30261428871782,"lower_bound":23.101262573040383,"upper_bound":23.527526339923064,"unit":"ns"},"mean":{"estimate":23.10744971436181,"lower_bound":22.969966410265084,"upper_bound":23.259514415574085,"unit":"ns"},"median":{"estimate":23.023347627341757,"lower_bound":22.927580145441702,"upper_bound":23.114567315079412,"unit":"ns"},"median_abs_dev":{"estimate":0.5004544452015209,"lower_bound":0.3606793180415758,"upper_bound":0.621236015900747,"unit":"ns"},"slope":{"estimate":23.30261428871782,"lower_bound":23.101262573040383,"upper_bound":23.527526339923064,"unit":"ns"},"change":{"mean":{"estimate":0.08695187723020847,"lower_bound":0.07640162000188419,"upper_bound":0.09762653987110707,"unit":"%"},"median":{"estimate":0.08816541054866578,"lower_bound":0.07332817923193913,"upper_bound":0.10097062635582699,"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":[5677,11354,17031,22708,28385,34062,39739,45416,51093,56770,62447,68124,73801,79478,85155,90832,96509,102186,107863,113540,119217,124894,130571,136248,141925,147602,153279,158956,164633,170310,175987,181664,187341,193018,198695,204372,210049,215726,221403,227080,232757,238434,244111,249788,255465,261142,266819,272496,278173,283850,289527,295204,300881,306558,312235,317912,323589,329266,334943,340620,346297,351974,357651,363328,369005,374682,380359,386036,391713,397390,403067,408744,414421,420098,425775,431452,437129,442806,448483,454160,459837,465514,471191,476868,482545,488222,493899,499576,505253,510930,516607,522284,527961,533638,539315,544992,550669,556346,562023,567700],"measured_values":[138613.0,264842.0,387954.0,512724.0,639791.0,777888.0,888161.0,1031596.0,1212007.0,1305077.0,1406949.0,1495403.0,1674070.0,1795166.0,1889374.0,2008577.0,2251557.0,2341686.0,2450152.0,2575308.0,2667976.0,2738111.0,2822291.0,2990178.0,3303669.0,3402275.0,3391518.0,3503626.0,3737980.0,3762110.0,3915176.0,4060120.0,4176867.0,4436710.0,4495224.0,4621160.0,4771754.0,5087562.0,5232537.0,5243701.0,5281632.0,5504968.0,5584632.0,5762065.0,5907327.0,5860533.0,6003123.0,6277111.0,6501437.0,6479054.0,6586027.0,6770696.0,6737455.0,7208196.0,7424657.0,7358177.0,7353923.0,7517925.0,7638723.0,7824928.0,8599056.0,8012878.0,8326066.0,8878880.0,8651445.0,8469986.0,8800737.0,8508619.0,9376825.0,9021084.0,9098026.0,9212749.0,9397886.0,9593504.0,9964946.0,10747654.0,10764602.0,10512261.0,10433055.0,10291107.0,10554606.0,10618278.0,10965873.0,10865393.0,11091735.0,11275688.0,11283904.0,11494504.0,12213927.0,11923583.0,12527847.0,11891959.0,11947006.0,12082848.0,12535259.0,13188538.0,12198361.0,12825175.0,12871941.0,13628828.0],"unit":"ns","throughput":[],"typical":{"estimate":23.147609296886507,"lower_bound":22.979319695247668,"upper_bound":23.32125366749774,"unit":"ns"},"mean":{"estimate":22.956418534613498,"lower_bound":22.83358696343848,"upper_bound":23.08472487975472,"unit":"ns"},"median":{"estimate":22.834361678498333,"lower_bound":22.726121716127558,"upper_bound":22.985908050026424,"unit":"ns"},"median_abs_dev":{"estimate":0.43721882043747856,"lower_bound":0.33539422556290444,"upper_bound":0.638460493827098,"unit":"ns"},"slope":{"estimate":23.147609296886507,"lower_bound":22.979319695247668,"upper_bound":23.32125366749774,"unit":"ns"},"change":{"mean":{"estimate":0.1564690049103703,"lower_bound":0.14240994529905238,"upper_bound":0.16990638044605025,"unit":"%"},"median":{"estimate":0.14698974863695602,"lower_bound":0.137806530571419,"upper_bound":0.16067679485402375,"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":[5657,11314,16971,22628,28285,33942,39599,45256,50913,56570,62227,67884,73541,79198,84855,90512,96169,101826,107483,113140,118797,124454,130111,135768,141425,147082,152739,158396,164053,169710,175367,181024,186681,192338,197995,203652,209309,214966,220623,226280,231937,237594,243251,248908,254565,260222,265879,271536,277193,282850,288507,294164,299821,305478,311135,316792,322449,328106,333763,339420,345077,350734,356391,362048,367705,373362,379019,384676,390333,395990,401647,407304,412961,418618,424275,429932,435589,441246,446903,452560,458217,463874,469531,475188,480845,486502,492159,497816,503473,509130,514787,520444,526101,531758,537415,543072,548729,554386,560043,565700],"measured_values":[149711.0,266580.0,411639.0,505721.0,608725.0,718316.0,864776.0,913344.0,1154768.0,1230847.0,1248911.0,1411940.0,1689969.0,1742253.0,1900719.0,1791473.0,2129029.0,2127629.0,2263317.0,2361456.0,2581532.0,2697013.0,3058172.0,2721879.0,2924633.0,3045672.0,3518750.0,3456688.0,4008894.0,3924624.0,3763352.0,3911948.0,3898226.0,4349663.0,4632837.0,4296717.0,4794020.0,4582199.0,4680559.0,4565447.0,5064111.0,5231085.0,5184687.0,5590252.0,5838456.0,5597407.0,5895296.0,5651543.0,6055477.0,5689469.0,6076998.0,6350826.0,7019991.0,6614027.0,6673683.0,6919307.0,7353023.0,7185933.0,7357146.0,7445266.0,7327302.0,7533794.0,7294741.0,7616650.0,8154389.0,7698985.0,8380045.0,8018118.0,9158894.0,8875979.0,9450720.0,8919244.0,9318846.0,9193717.0,9802531.0,9319804.0,10574371.0,9608431.0,10420319.0,9587612.0,10662378.0,10595487.0,10964035.0,10067098.0,11150039.0,9831170.0,10831578.0,10830848.0,11803408.0,11011871.0,11394742.0,11191772.0,12516511.0,12189121.0,12640905.0,11215076.0,11862719.0,12250009.0,12102340.0,11911374.0],"unit":"ns","throughput":[],"typical":{"estimate":22.076419894726143,"lower_bound":21.81695115968748,"upper_bound":22.339455550650804,"unit":"ns"},"mean":{"estimate":21.978534359179033,"lower_bound":21.761214354651337,"upper_bound":22.205530045769823,"unit":"ns"},"median":{"estimate":21.836161482274434,"lower_bound":21.628800109991555,"upper_bound":22.0256572726032,"unit":"ns"},"median_abs_dev":{"estimate":1.1196496302364107,"lower_bound":0.7673947057194151,"upper_bound":1.4363008797650252,"unit":"ns"},"slope":{"estimate":22.076419894726143,"lower_bound":21.81695115968748,"upper_bound":22.339455550650804,"unit":"ns"},"change":{"mean":{"estimate":0.12457169811998092,"lower_bound":0.10896313510938588,"upper_bound":0.13945566712446178,"unit":"%"},"median":{"estimate":0.12056556157807163,"lower_bound":0.10819911026281104,"upper_bound":0.1324745906159832,"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":[2367.0,2004.0,1904.0,1904.0,1901.0,1927.0,1861.0,1849.0,1850.0,1881.0,1863.0,1889.0,1877.0,2029.0,1941.0,1928.0,1906.0,2102.0,1951.0,1957.0,1887.0,1920.0,1880.0,86771.0,1942.0,1870.0,1892.0,1929.0,1875.0,1857.0,1854.0,1942.0,2329.0,1932.0,1879.0,1844.0,1873.0,1832.0,1856.0,1853.0,1868.0,2199.0,1984.0,1875.0,1915.0,1821.0,1908.0,1884.0,1975.0,1878.0,1890.0,1871.0,1847.0,1994.0,1865.0,1883.0,1962.0,1948.0,1875.0,1859.0,1850.0,1899.0,1853.0,1892.0,1850.0,1895.0,1852.0,1894.0,1879.0,1871.0,1857.0,2096.0,1856.0,1906.0,1909.0,1928.0,1871.0,1958.0,1875.0,1886.0,1890.0,1878.0,1871.0,1863.0,1876.0,1982.0,1952.0,1930.0,1889.0,1879.0,1938.0,1890.0,1878.0,1867.0,1987.0,1892.0,1881.0,1940.0,1896.0,1868.0],"unit":"ns","throughput":[],"typical":{"estimate":2761.33,"lower_bound":1900.85,"upper_bound":4468.92025,"unit":"ns"},"mean":{"estimate":2761.33,"lower_bound":1900.85,"upper_bound":4468.92025,"unit":"ns"},"median":{"estimate":1889.0,"lower_bound":1879.0,"upper_bound":1897.0,"unit":"ns"},"median_abs_dev":{"estimate":38.54759931564331,"lower_bound":25.945499539375305,"upper_bound":53.3735990524292,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.42599009517514186,"lower_bound":-0.0377598832874885,"upper_bound":1.643429705669526,"unit":"%"},"median":{"estimate":0.005054535780792735,"lower_bound":-0.004492600422832949,"upper_bound":0.016323253947016392,"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":[1220.0,839.0,837.0,863.0,990.0,925.0,908.0,847.0,1282.0,1007.0,834.0,1001.0,870.0,819.0,831.0,844.0,841.0,796.0,975.0,862.0,837.0,854.0,841.0,1038.0,862.0,825.0,837.0,857.0,831.0,844.0,1010.0,852.0,859.0,938.0,986.0,889.0,914.0,1048.0,915.0,902.0,909.0,1049.0,917.0,867.0,1002.0,910.0,881.0,965.0,981.0,938.0,904.0,901.0,1002.0,930.0,897.0,891.0,964.0,975.0,1017.0,955.0,963.0,951.0,1074.0,1439.0,959.0,882.0,1130.0,950.0,994.0,948.0,1014.0,994.0,946.0,1260.0,999.0,904.0,1323.0,1039.0,961.0,954.0,972.0,1025.0,963.0,1042.0,1005.0,973.0,922.0,935.0,957.0,911.0,928.0,1014.0,960.0,918.0,899.0,1028.0,1033.0,1014.0,901.0,1010.0],"unit":"ns","throughput":[],"typical":{"estimate":952.79,"lower_bound":932.7,"upper_bound":974.77,"unit":"ns"},"mean":{"estimate":952.79,"lower_bound":932.7,"upper_bound":974.77,"unit":"ns"},"median":{"estimate":942.0,"lower_bound":915.0,"upper_bound":961.5,"unit":"ns"},"median_abs_dev":{"estimate":88.95599842071533,"lower_bound":66.7169988155365,"upper_bound":106.7471981048584,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.012636837070889584,"lower_bound":-0.01809857088626468,"upper_bound":0.04415475189234663,"unit":"%"},"median":{"estimate":0.03063457330415753,"lower_bound":-0.006929637526652432,"upper_bound":0.07422096317280458,"unit":"%"},"change":"NoChange"}} -{"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":[1650.0,1372.0,1427.0,1406.0,1283.0,1288.0,1261.0,1239.0,1246.0,1260.0,1509.0,1247.0,1255.0,1340.0,1659.0,1584.0,1255.0,1358.0,1263.0,1236.0,1409.0,1323.0,1253.0,1295.0,1289.0,1331.0,1317.0,1378.0,1298.0,1232.0,1252.0,1302.0,1280.0,1342.0,1543.0,1305.0,1315.0,1352.0,1287.0,1296.0,1303.0,1376.0,1474.0,1326.0,1263.0,1406.0,1356.0,1374.0,1658.0,1363.0,1389.0,1372.0,1363.0,1397.0,1221.0,1327.0,1395.0,1384.0,1249.0,1255.0,1335.0,1411.0,1442.0,1325.0,1349.0,1389.0,1387.0,1342.0,1277.0,1281.0,1237.0,1365.0,1317.0,1297.0,1378.0,1385.0,1370.0,1339.0,1221.0,1391.0,1319.0,1333.0,1362.0,1394.0,1328.0,1376.0,1295.0,1378.0,2069.0,1772.0,1500.0,1549.0,1441.0,1546.0,1449.0,1500.0,1607.0,1387.0,1459.0,1517.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":1372.07,"lower_bound":1348.74,"upper_bound":1398.23,"unit":"ns"},"mean":{"estimate":1372.07,"lower_bound":1348.74,"upper_bound":1398.23,"unit":"ns"},"median":{"estimate":1350.5,"lower_bound":1327.0,"upper_bound":1373.0,"unit":"ns"},"median_abs_dev":{"estimate":82.28429853916168,"lower_bound":61.52789890766144,"upper_bound":110.45369803905487,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.4661683973807792,"lower_bound":-0.7269993437656629,"upper_bound":0.018940332911391796,"unit":"%"},"median":{"estimate":0.002970664686223534,"lower_bound":-0.02265155574447935,"upper_bound":0.024934871604019415,"unit":"%"},"change":"NoChange"}} -{"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":[1642.0,1404.0,1273.0,1274.0,1255.0,1293.0,1341.0,1307.0,1267.0,1252.0,1241.0,1456.0,1626.0,1312.0,1523.0,1327.0,1264.0,1372.0,1498.0,1295.0,1435.0,1286.0,1289.0,1280.0,1292.0,1305.0,1302.0,1300.0,1300.0,1267.0,1286.0,1284.0,1283.0,1244.0,1368.0,1332.0,1221.0,1327.0,1281.0,1233.0,1428.0,1228.0,1224.0,1265.0,1309.0,1280.0,1360.0,1236.0,1315.0,1295.0,1319.0,1317.0,1319.0,1298.0,1339.0,1394.0,1365.0,1290.0,1336.0,1346.0,1269.0,1273.0,1330.0,1319.0,1450.0,1315.0,1327.0,1314.0,1262.0,1372.0,1286.0,1284.0,1327.0,1305.0,1252.0,1277.0,1439.0,1367.0,1291.0,1262.0,1313.0,1264.0,1291.0,1332.0,1424.0,1355.0,1344.0,1343.0,1439.0,1378.0,1282.0,1368.0,1353.0,1270.0,1261.0,1364.0,1279.0,1335.0,1295.0,1282.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":1322.93,"lower_bound":1309.22,"upper_bound":1337.99,"unit":"ns"},"mean":{"estimate":1322.93,"lower_bound":1309.22,"upper_bound":1337.99,"unit":"ns"},"median":{"estimate":1305.0,"lower_bound":1292.0,"upper_bound":1319.0,"unit":"ns"},"median_abs_dev":{"estimate":47.443199157714844,"lower_bound":36.32369935512543,"upper_bound":63.75179886817932,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.08484483736631654,"lower_bound":-0.10990625245852517,"upper_bound":-0.059904000813557665,"unit":"%"},"median":{"estimate":-0.07643312101910826,"lower_bound":-0.09472212513107303,"upper_bound":-0.04260742898761838,"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":[1858.0,1503.0,1781.0,1548.0,1791.0,1543.0,1507.0,1608.0,1552.0,1483.0,1578.0,1468.0,1492.0,1515.0,1462.0,1472.0,1517.0,1468.0,1474.0,1576.0,1513.0,1539.0,1549.0,1483.0,1515.0,1574.0,1496.0,1485.0,1550.0,1490.0,1548.0,1500.0,1501.0,1483.0,1534.0,1500.0,1523.0,1590.0,1478.0,1658.0,1551.0,1488.0,1494.0,1481.0,1465.0,1448.0,1487.0,1452.0,1444.0,1485.0,1581.0,1484.0,1525.0,1459.0,1621.0,1592.0,1437.0,1664.0,1522.0,1643.0,1469.0,1511.0,1448.0,1447.0,1484.0,1451.0,1574.0,1508.0,1448.0,1502.0,1525.0,1466.0,1468.0,1492.0,1445.0,1452.0,1512.0,1432.0,1453.0,1581.0,1565.0,1519.0,1567.0,1608.0,1506.0,1601.0,1513.0,1515.0,1547.0,1596.0,1511.0,1549.0,1522.0,1527.0,1504.0,1510.0,1464.0,1490.0,1592.0,1545.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":1524.47,"lower_bound":1511.06,"upper_bound":1539.26,"unit":"ns"},"mean":{"estimate":1524.47,"lower_bound":1511.06,"upper_bound":1539.26,"unit":"ns"},"median":{"estimate":1510.5,"lower_bound":1498.0,"upper_bound":1519.5,"unit":"ns"},"median_abs_dev":{"estimate":55.59749901294708,"lower_bound":37.06499934196472,"upper_bound":66.7169988155365,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.34616159926573087,"lower_bound":-0.5786661907975084,"upper_bound":-0.0858728387493093,"unit":"%"},"median":{"estimate":-0.08120437956204385,"lower_bound":-0.10461018010590728,"upper_bound":-0.06339341205717841,"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":[6122.0,5282.0,5438.0,5416.0,5284.0,5397.0,5410.0,5246.0,5374.0,5398.0,5230.0,5394.0,5390.0,5547.0,5354.0,5525.0,5235.0,5365.0,6014.0,5452.0,5428.0,5484.0,5308.0,5848.0,5440.0,5315.0,5511.0,5539.0,5373.0,5430.0,5842.0,5251.0,5475.0,5582.0,5315.0,5426.0,5703.0,5471.0,5407.0,5546.0,5349.0,5608.0,5558.0,5366.0,6079.0,5363.0,5541.0,5308.0,5447.0,5640.0,5473.0,5275.0,5441.0,5382.0,5163.0,5347.0,5343.0,5176.0,5332.0,5624.0,5189.0,5320.0,5411.0,5206.0,5418.0,5423.0,5245.0,5472.0,5390.0,5168.0,5355.0,5893.0,5172.0,5656.0,7576.0,5199.0,5435.0,5546.0,5216.0,5407.0,5430.0,5241.0,5448.0,5332.0,5100.0,5363.0,5417.0,5330.0,5387.0,6502.0,5443.0,6468.0,5472.0,5388.0,5543.0,5412.0,5224.0,5729.0,5623.0,5478.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":5474.09,"lower_bound":5418.01,"upper_bound":5541.51,"unit":"ns"},"mean":{"estimate":5474.09,"lower_bound":5418.01,"upper_bound":5541.51,"unit":"ns"},"median":{"estimate":5411.5,"lower_bound":5388.0,"upper_bound":5435.0,"unit":"ns"},"median_abs_dev":{"estimate":128.24489772319794,"lower_bound":89.69729840755463,"upper_bound":188.2901966571808,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.030028917917059528,"lower_bound":-0.08006146976559325,"upper_bound":0.004600328576588364,"unit":"%"},"median":{"estimate":-0.0019365547768350755,"lower_bound":-0.014758456320469349,"upper_bound":0.0066809720237026955,"unit":"%"},"change":"NoChange"}} -{"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":[45494.0,39854.0,39690.0,39685.0,39794.0,39817.0,39737.0,39624.0,39578.0,39665.0,39641.0,39646.0,39679.0,39622.0,39753.0,40124.0,39947.0,39744.0,39688.0,40260.0,39682.0,39797.0,39802.0,39666.0,39907.0,52554.0,39808.0,39689.0,39648.0,39613.0,39553.0,39871.0,39637.0,39551.0,39855.0,39640.0,39654.0,39798.0,39573.0,39769.0,39813.0,39672.0,42035.0,39863.0,39722.0,39650.0,39606.0,39615.0,39650.0,39447.0,39692.0,39686.0,39410.0,39657.0,39735.0,39583.0,39696.0,39618.0,39586.0,39643.0,40229.0,40018.0,39801.0,39750.0,39626.0,39512.0,39601.0,39618.0,39624.0,39835.0,39710.0,39701.0,39587.0,39589.0,39656.0,39697.0,39582.0,39844.0,39548.0,39575.0,39734.0,39865.0,39669.0,39676.0,39772.0,39813.0,39789.0,39678.0,39618.0,39524.0,40162.0,39739.0,39809.0,39612.0,39680.0,39817.0,39999.0,39693.0,39766.0,39793.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":39927.99,"lower_bound":39717.8295,"upper_bound":40249.64075,"unit":"ns"},"mean":{"estimate":39927.99,"lower_bound":39717.8295,"upper_bound":40249.64075,"unit":"ns"},"median":{"estimate":39688.5,"lower_bound":39669.0,"upper_bound":39734.0,"unit":"ns"},"median_abs_dev":{"estimate":117.12539792060852,"lower_bound":89.69729840755463,"upper_bound":153.44909727573395,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.005118230057040041,"lower_bound":-0.004789676249323557,"upper_bound":0.015496396949663453,"unit":"%"},"median":{"estimate":0.003755690440060633,"lower_bound":0.0025139911820812877,"upper_bound":0.0050859036967687565,"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":[141297.0,76995.0,76859.0,76697.0,76719.0,76771.0,76792.0,76689.0,76736.0,76679.0,76731.0,76721.0,76652.0,77011.0,76748.0,105611.0,77266.0,77178.0,76945.0,76691.0,76786.0,76851.0,76804.0,76650.0,76845.0,76691.0,76683.0,76649.0,76652.0,76810.0,76874.0,76634.0,76584.0,76635.0,76796.0,76695.0,76676.0,76664.0,76730.0,76736.0,76744.0,76656.0,76677.0,78040.0,77712.0,76983.0,77174.0,76924.0,76755.0,76642.0,76742.0,76788.0,76706.0,76781.0,76748.0,76693.0,76751.0,76775.0,76693.0,76775.0,76783.0,76655.0,76773.0,76749.0,76789.0,76907.0,76769.0,76683.0,76736.0,76749.0,76666.0,76728.0,76864.0,76663.0,76693.0,76788.0,76895.0,76714.0,76731.0,76583.0,76713.0,76735.0,76748.0,76641.0,76764.0,76621.0,76671.0,76660.0,76666.0,76686.0,76749.0,76557.0,76723.0,76710.0,76667.0,76677.0,76732.0,76645.0,76696.0,76703.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":77706.74,"lower_bound":76755.02975,"upper_bound":79307.66,"unit":"ns"},"mean":{"estimate":77706.74,"lower_bound":76755.02975,"upper_bound":79307.66,"unit":"ns"},"median":{"estimate":76731.5,"lower_bound":76709.5,"upper_bound":76748.5,"unit":"ns"},"median_abs_dev":{"estimate":80.8016985654831,"lower_bound":62.26919889450073,"upper_bound":100.81679821014404,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.009293396143950527,"lower_bound":-0.009839974141703529,"upper_bound":0.03306067670509044,"unit":"%"},"median":{"estimate":0.007649476683869727,"lower_bound":0.0071807393404745845,"upper_bound":0.008065681444991757,"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":[133773.0,114330.0,114640.0,114345.0,114449.0,114106.0,114806.0,114148.0,114683.0,114131.0,114427.0,114098.0,114886.0,114146.0,114657.0,114395.0,114430.0,114061.0,114697.0,114098.0,114901.0,114240.0,114569.0,114125.0,114845.0,114163.0,114705.0,114207.0,114830.0,114156.0,114467.0,114158.0,114552.0,114072.0,114560.0,114081.0,114619.0,114109.0,114417.0,114057.0,114429.0,114100.0,114480.0,114053.0,114653.0,114100.0,114450.0,114258.0,114627.0,114408.0,114501.0,114030.0,114494.0,114125.0,114419.0,117125.0,114614.0,114216.0,114442.0,114109.0,114483.0,114115.0,114364.0,114121.0,114452.0,114077.0,114566.0,114084.0,117090.0,114121.0,114574.0,114153.0,114367.0,114076.0,114408.0,114017.0,114466.0,114181.0,114539.0,114430.0,114351.0,114166.0,114540.0,114033.0,114566.0,114116.0,114755.0,114159.0,114558.0,114104.0,114692.0,114092.0,114426.0,114184.0,114524.0,114109.0,114390.0,114211.0,114683.0,114023.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":114601.38,"lower_bound":114343.61975,"upper_bound":115046.10225000001,"unit":"ns"},"mean":{"estimate":114601.38,"lower_bound":114343.61975,"upper_bound":115046.10225000001,"unit":"ns"},"median":{"estimate":114392.5,"lower_bound":114211.0,"upper_bound":114435.5,"unit":"ns"},"median_abs_dev":{"estimate":349.1522938013077,"lower_bound":223.87259602546692,"upper_bound":395.8541929721832,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.006206268747609656,"lower_bound":-0.0037162543869185953,"upper_bound":0.013833313681254466,"unit":"%"},"median":{"estimate":0.010503208823048782,"lower_bound":0.008940008303960356,"upper_bound":0.011084750405351063,"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":[232911.0,170585.0,170014.0,170405.0,170036.0,170261.0,170219.0,174658.0,170284.0,170282.0,170041.0,170223.0,170625.0,170179.0,170238.0,172851.0,170078.0,170330.0,170068.0,170241.0,170165.0,170287.0,170299.0,170085.0,170065.0,170248.0,170209.0,170262.0,170081.0,170320.0,170126.0,170226.0,170143.0,170852.0,170030.0,170173.0,170104.0,170205.0,170082.0,170139.0,170001.0,170174.0,170065.0,170139.0,170006.0,170160.0,170068.0,183631.0,170141.0,170167.0,170050.0,170291.0,170024.0,170377.0,170112.0,170848.0,170312.0,170256.0,170163.0,170308.0,170178.0,170080.0,170243.0,170196.0,170007.0,170149.0,170147.0,170269.0,170241.0,170091.0,170259.0,170171.0,170174.0,171240.0,170218.0,170029.0,170161.0,170234.0,170578.0,170143.0,170107.0,170402.0,170392.0,170103.0,170154.0,170255.0,170352.0,170197.0,170464.0,170117.0,170192.0,170266.0,170118.0,170135.0,170101.0,170048.0,171211.0,170215.0,170121.0,170279.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":171059.6,"lower_bound":170250.01,"upper_bound":172488.6605,"unit":"ns"},"mean":{"estimate":171059.6,"lower_bound":170250.01,"upper_bound":172488.6605,"unit":"ns"},"median":{"estimate":170185.5,"lower_bound":170161.0,"upper_bound":170228.5,"unit":"ns"},"median_abs_dev":{"estimate":123.05579781532288,"lower_bound":99.33419823646545,"upper_bound":159.3794971704483,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0027098317083664725,"lower_bound":-0.015147675888099142,"upper_bound":0.016642035821551115,"unit":"%"},"median":{"estimate":0.00705054617323686,"lower_bound":0.005969725806356241,"upper_bound":0.007934698614684432,"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":[283940.0,254370.0,254284.0,254516.0,254209.0,254440.0,254426.0,259337.0,254477.0,254441.0,254330.0,254252.0,254375.0,254312.0,254313.0,254316.0,254334.0,254175.0,254190.0,254206.0,254284.0,256723.0,254283.0,254246.0,254221.0,254160.0,254242.0,254153.0,254256.0,254146.0,254187.0,254220.0,254361.0,254046.0,254142.0,254294.0,263184.0,254187.0,254263.0,254136.0,254258.0,254228.0,254208.0,254037.0,254209.0,254462.0,254141.0,257293.0,254185.0,254205.0,254257.0,254079.0,254112.0,254222.0,254303.0,254074.0,254331.0,254137.0,284275.0,254142.0,254346.0,254140.0,254169.0,254075.0,254254.0,254121.0,254179.0,254123.0,254468.0,256599.0,254299.0,254073.0,254337.0,254250.0,254280.0,254115.0,254327.0,254137.0,254309.0,254200.0,254220.0,254165.0,254281.0,254531.0,254381.0,254298.0,254292.0,254222.0,254212.0,254497.0,254242.0,254085.0,254378.0,254796.0,254555.0,254667.0,254448.0,254454.0,254637.0,254332.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":255086.29,"lower_bound":254393.7795,"upper_bound":256040.04825,"unit":"ns"},"mean":{"estimate":255086.29,"lower_bound":254393.7795,"upper_bound":256040.04825,"unit":"ns"},"median":{"estimate":254257.5,"lower_bound":254222.0,"upper_bound":254298.0,"unit":"ns"},"median_abs_dev":{"estimate":131.21009767055511,"lower_bound":102.29939818382263,"upper_bound":189.03149664402008,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.005161511853623013,"lower_bound":-0.0016278953041715504,"upper_bound":0.011355076380565942,"unit":"%"},"median":{"estimate":0.008112239132632704,"lower_bound":0.007838559369902631,"upper_bound":0.008347079909907018,"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":[421219.0,383348.0,380843.0,380693.0,380891.0,380858.0,380891.0,380681.0,380977.0,381052.0,380815.0,383330.0,380885.0,380785.0,380893.0,380748.0,380873.0,380779.0,380865.0,380720.0,381296.0,380821.0,381029.0,380811.0,380762.0,380778.0,381037.0,380987.0,380975.0,380989.0,380819.0,380853.0,380950.0,383226.0,380950.0,380902.0,380873.0,380681.0,380815.0,380748.0,380821.0,380814.0,380810.0,380787.0,380863.0,380736.0,380877.0,380681.0,380891.0,380736.0,381096.0,380779.0,383232.0,380763.0,380839.0,380886.0,380903.0,380724.0,380770.0,380765.0,380872.0,380918.0,411418.0,380695.0,380881.0,380748.0,380922.0,380704.0,381281.0,380846.0,380856.0,380840.0,381001.0,380607.0,380993.0,383099.0,380897.0,380793.0,380804.0,380822.0,380885.0,380727.0,380984.0,380869.0,380706.0,380934.0,381313.0,380955.0,380739.0,380875.0,380746.0,380760.0,381026.0,380765.0,380937.0,383102.0,381049.0,380725.0,380950.0,380881.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":381711.46,"lower_bound":380952.31975,"upper_bound":382844.41099999996,"unit":"ns"},"mean":{"estimate":381711.46,"lower_bound":380952.31975,"upper_bound":382844.41099999996,"unit":"ns"},"median":{"estimate":380867.0,"lower_bound":380822.0,"upper_bound":380885.5,"unit":"ns"},"median_abs_dev":{"estimate":131.21009767055511,"lower_bound":97.11029827594757,"upper_bound":167.53379702568054,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.007970704291584418,"lower_bound":0.0035335451925443883,"upper_bound":0.011689272542723466,"unit":"%"},"median":{"estimate":0.008816319395240413,"lower_bound":0.008668327235312079,"upper_bound":0.008961921766635017,"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":[3960.0,1392.0,1310.0,1351.0,1387.0,1316.0,1443.0,1423.0,1368.0,1348.0,1327.0,1357.0,1359.0,1325.0,1384.0,1343.0,1339.0,1366.0,1396.0,146112.0,1420.0,1262.0,1281.0,1302.0,1289.0,1535.0,1571.0,1257.0,1261.0,1445.0,1472.0,1447.0,1473.0,1392.0,1402.0,1389.0,1414.0,2054.0,1583.0,1361.0,1363.0,1409.0,1365.0,1578.0,1511.0,1434.0,1372.0,1422.0,1349.0,1428.0,1345.0,1390.0,1367.0,1408.0,1483.0,1356.0,1513.0,1341.0,1440.0,1243.0,1290.0,1267.0,1279.0,1308.0,1378.0,1362.0,1948.0,1378.0,1333.0,1324.0,1321.0,1307.0,1416.0,1858.0,1486.0,1457.0,1538.0,1625.0,1360.0,1355.0,1424.0,1557.0,1450.0,1545.0,1446.0,1467.0,1453.0,1472.0,1458.0,1449.0,1462.0,1380.0,1390.0,1526.0,1462.0,1381.0,1372.0,1314.0,1411.0,1344.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":2886.86,"lower_bound":1403.36,"upper_bound":5814.6,"unit":"ns"},"mean":{"estimate":2886.86,"lower_bound":1403.36,"upper_bound":5814.6,"unit":"ns"},"median":{"estimate":1390.0,"lower_bound":1370.0,"upper_bound":1416.0,"unit":"ns"},"median_abs_dev":{"estimate":83.76689851284027,"lower_bound":61.52789890766144,"upper_bound":100.81679821014404,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.994858860518951,"lower_bound":-0.1120261366308638,"upper_bound":3.37880161230664,"unit":"%"},"median":{"estimate":0.062285059228123885,"lower_bound":0.036063110443275814,"upper_bound":0.08518802762854949,"unit":"%"},"change":"NoChange"}} -{"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":[1664.0,1331.0,1307.0,1279.0,1289.0,1259.0,1251.0,1252.0,1226.0,1288.0,1278.0,1352.0,1319.0,1262.0,1266.0,1243.0,1272.0,1714.0,1522.0,1371.0,1435.0,1669.0,1341.0,1324.0,1339.0,1283.0,1380.0,1328.0,1310.0,1292.0,1326.0,1264.0,1288.0,1406.0,1608.0,1255.0,1338.0,1266.0,1240.0,1291.0,1389.0,1380.0,1411.0,1298.0,1308.0,1317.0,1293.0,69632.0,1347.0,1301.0,1335.0,1484.0,1304.0,1882.0,1444.0,1440.0,1415.0,1377.0,1425.0,1572.0,1407.0,1300.0,1372.0,1414.0,1312.0,1322.0,1368.0,1292.0,1282.0,1438.0,1329.0,1297.0,1379.0,1636.0,1324.0,1356.0,1397.0,1367.0,1349.0,1303.0,1319.0,1328.0,1535.0,1299.0,1382.0,1307.0,1243.0,1274.0,1349.0,1247.0,1309.0,1346.0,1302.0,1320.0,1314.0,1224.0,1235.0,1303.0,1323.0,1285.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":2035.7,"lower_bound":1336.89,"upper_bound":3415.64025,"unit":"ns"},"mean":{"estimate":2035.7,"lower_bound":1336.89,"upper_bound":3415.64025,"unit":"ns"},"median":{"estimate":1322.5,"lower_bound":1308.0,"upper_bound":1338.0,"unit":"ns"},"median_abs_dev":{"estimate":65.23439884185791,"lower_bound":42.99539923667908,"upper_bound":81.54299855232239,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.45022832351411624,"lower_bound":-0.05225655587851727,"upper_bound":1.4394427288596139,"unit":"%"},"median":{"estimate":-0.039229930984380657,"lower_bound":-0.057389323972388655,"upper_bound":-0.023255813953488413,"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":[1842.0,1477.0,1554.0,1563.0,1539.0,1513.0,1526.0,1573.0,1543.0,1529.0,1561.0,1501.0,1522.0,2550.0,1638.0,1565.0,1589.0,1621.0,1505.0,1606.0,1542.0,1593.0,1617.0,1537.0,1528.0,1651.0,1543.0,1525.0,1702.0,1535.0,1560.0,1641.0,1684.0,1564.0,2023.0,1588.0,1573.0,1645.0,1610.0,1579.0,1637.0,1550.0,1586.0,1635.0,1591.0,1528.0,1683.0,1642.0,1598.0,1616.0,1631.0,1642.0,1620.0,1765.0,1605.0,1818.0,1613.0,1663.0,1665.0,1601.0,1722.0,1690.0,1515.0,1470.0,1514.0,1464.0,1455.0,1525.0,1432.0,1455.0,1613.0,1470.0,1506.0,1552.0,1493.0,1522.0,1558.0,1466.0,1502.0,1834.0,1475.0,1506.0,1538.0,1542.0,1531.0,1623.0,1565.0,1542.0,1638.0,1563.0,1483.0,1602.0,1639.0,1482.0,1533.0,1510.0,1506.0,1765.0,1528.0,1517.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":1590.92,"lower_bound":1567.56,"upper_bound":1619.51025,"unit":"ns"},"mean":{"estimate":1590.92,"lower_bound":1567.56,"upper_bound":1619.51025,"unit":"ns"},"median":{"estimate":1563.0,"lower_bound":1542.0,"upper_bound":1589.5,"unit":"ns"},"median_abs_dev":{"estimate":74.12999868392944,"lower_bound":56.33879899978638,"upper_bound":91.17989838123322,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.02429271463879834,"lower_bound":-0.05330503029334578,"upper_bound":0.003154372481961717,"unit":"%"},"median":{"estimate":-0.008563273073263544,"lower_bound":-0.029457364341085257,"upper_bound":0.012144455097475193,"unit":"%"},"change":"NoChange"}} -{"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":[6606.0,5457.0,5402.0,5366.0,5299.0,5460.0,5452.0,5286.0,5395.0,5339.0,5242.0,5442.0,5364.0,5302.0,5308.0,5358.0,5405.0,5336.0,5717.0,5271.0,5388.0,5632.0,5290.0,5457.0,5427.0,5356.0,5475.0,5483.0,5214.0,6024.0,5424.0,5251.0,5405.0,5702.0,5206.0,5424.0,5731.0,5232.0,5340.0,5441.0,5309.0,5459.0,5432.0,5297.0,5733.0,5676.0,5232.0,5492.0,5394.0,5265.0,5390.0,5412.0,5235.0,5413.0,5479.0,7387.0,5515.0,5390.0,5291.0,5422.0,5574.0,5318.0,5439.0,5418.0,5242.0,5409.0,5315.0,5204.0,5444.0,5347.0,5340.0,208015.0,5543.0,5253.0,5527.0,5354.0,5220.0,5351.0,5302.0,5292.0,5447.0,5350.0,5180.0,5506.0,5381.0,5204.0,5430.0,5595.0,5225.0,5307.0,5270.0,5465.0,5384.0,5383.0,5239.0,5419.0,5396.0,5261.0,5405.0,5370.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":7450.56,"lower_bound":5387.70975,"upper_bound":11536.60125,"unit":"ns"},"mean":{"estimate":7450.56,"lower_bound":5387.70975,"upper_bound":11536.60125,"unit":"ns"},"median":{"estimate":5390.0,"lower_bound":5356.0,"upper_bound":5412.0,"unit":"ns"},"median_abs_dev":{"estimate":115.64279794692993,"lower_bound":81.54299855232239,"upper_bound":143.81219744682312,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.3906213837229269,"lower_bound":0.0034323762076929444,"upper_bound":1.1578196556678517,"unit":"%"},"median":{"estimate":0.015544041450777257,"lower_bound":0.007622811970638077,"upper_bound":0.022899318697956028,"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":[41402.0,39823.0,39747.0,39823.0,39819.0,39633.0,39919.0,39780.0,39745.0,57136.0,39744.0,39636.0,39891.0,39705.0,39687.0,41032.0,39758.0,39674.0,39768.0,39676.0,39908.0,39934.0,39581.0,39698.0,39853.0,39561.0,39749.0,39951.0,39739.0,39653.0,39950.0,39689.0,39736.0,40071.0,39592.0,39795.0,39851.0,39697.0,39812.0,39907.0,39719.0,39751.0,40165.0,39724.0,40057.0,39868.0,39777.0,39816.0,39859.0,39669.0,39743.0,40236.0,39724.0,40566.0,40080.0,39800.0,39819.0,39780.0,39730.0,39769.0,40553.0,39874.0,40125.0,39831.0,39741.0,40198.0,39859.0,39634.0,39738.0,39790.0,39705.0,39707.0,39752.0,40147.0,39686.0,39704.0,39687.0,39733.0,39674.0,39641.0,39688.0,39767.0,39725.0,39674.0,39761.0,39800.0,39663.0,39821.0,40041.0,39726.0,40115.0,39788.0,40041.0,39854.0,39814.0,39804.0,40030.0,39936.0,39725.0,39780.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":40021.09,"lower_bound":39810.99,"upper_bound":40399.89025,"unit":"ns"},"mean":{"estimate":40021.09,"lower_bound":39810.99,"upper_bound":40399.89025,"unit":"ns"},"median":{"estimate":39778.5,"lower_bound":39747.0,"upper_bound":39812.0,"unit":"ns"},"median_abs_dev":{"estimate":115.64279794692993,"lower_bound":81.54299855232239,"upper_bound":155.67299723625183,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.008566279673709154,"lower_bound":0.0024767587585033004,"upper_bound":0.020313358922435954,"unit":"%"},"median":{"estimate":0.004850138304725027,"lower_bound":0.00369828086739199,"upper_bound":0.006016634224031092,"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":[136819.0,77212.0,76696.0,77212.0,76695.0,76987.0,76878.0,76668.0,76712.0,77629.0,76803.0,76767.0,77194.0,76833.0,76713.0,76857.0,76750.0,76716.0,76997.0,76787.0,79153.0,76919.0,76681.0,76832.0,76921.0,76651.0,76708.0,77186.0,76650.0,76827.0,76777.0,76642.0,77125.0,76878.0,76710.0,76729.0,76948.0,76698.0,76877.0,76946.0,76720.0,76952.0,77233.0,76656.0,76835.0,76851.0,76656.0,76770.0,77102.0,76712.0,76706.0,76826.0,76647.0,77076.0,76816.0,77082.0,76974.0,76825.0,76734.0,76809.0,79121.0,76792.0,76704.0,76802.0,76865.0,76733.0,76787.0,76998.0,76831.0,76856.0,76804.0,76810.0,76837.0,76792.0,78866.0,76788.0,77056.0,76867.0,76847.0,76668.0,76768.0,76754.0,76804.0,76777.0,76845.0,76917.0,76862.0,76868.0,76927.0,76671.0,77345.0,76782.0,76741.0,77195.0,76777.0,76822.0,77379.0,78980.0,76806.0,77168.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":77547.77,"lower_bound":76883.4795,"upper_bound":78800.6405,"unit":"ns"},"mean":{"estimate":77547.77,"lower_bound":76883.4795,"upper_bound":78800.6405,"unit":"ns"},"median":{"estimate":76825.5,"lower_bound":76798.0,"upper_bound":76851.5,"unit":"ns"},"median_abs_dev":{"estimate":146.7773973941803,"lower_bound":93.4037983417511,"upper_bound":188.2901966571808,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0007058695700143947,"lower_bound":-0.025505783800398505,"upper_bound":0.024012219397298605,"unit":"%"},"median":{"estimate":0.007963945761199742,"lower_bound":0.007265002098195472,"upper_bound":0.008580066274829882,"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":[180379.0,114354.0,114567.0,114344.0,114380.0,114218.0,114309.0,114277.0,114363.0,114320.0,114291.0,114246.0,114191.0,116622.0,114336.0,114345.0,114329.0,114286.0,114293.0,114369.0,114292.0,131594.0,114370.0,114468.0,114444.0,114488.0,114233.0,114490.0,114260.0,114213.0,114338.0,114389.0,114345.0,114210.0,114167.0,114299.0,114359.0,114203.0,114397.0,114223.0,114281.0,114241.0,114350.0,114285.0,114296.0,114298.0,114224.0,114178.0,114239.0,114291.0,114270.0,114250.0,114305.0,114296.0,114257.0,114194.0,114309.0,114282.0,114309.0,114354.0,114100.0,114345.0,114346.0,114240.0,114687.0,114217.0,114136.0,114370.0,114178.0,114162.0,114163.0,114200.0,114184.0,114116.0,114144.0,114476.0,114167.0,114139.0,114078.0,114124.0,114222.0,114132.0,114084.0,114053.0,114309.0,114119.0,114404.0,114093.0,114275.0,116343.0,114205.0,114046.0,114148.0,116446.0,114110.0,114121.0,114337.0,114093.0,114187.0,114169.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":115165.78,"lower_bound":114297.13,"upper_bound":116715.91325,"unit":"ns"},"mean":{"estimate":115165.78,"lower_bound":114297.13,"upper_bound":116715.91325,"unit":"ns"},"median":{"estimate":114281.5,"lower_bound":114240.0,"upper_bound":114298.0,"unit":"ns"},"median_abs_dev":{"estimate":115.64279794692993,"lower_bound":93.4037983417511,"upper_bound":144.55349743366241,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.014235216431828901,"lower_bound":0.004012620737353698,"upper_bound":0.029870521872546157,"unit":"%"},"median":{"estimate":0.009754589030505079,"lower_bound":0.009267111912081738,"upper_bound":0.010002032215026047,"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":[205938.0,170869.0,170302.0,170523.0,170298.0,170465.0,170512.0,170538.0,170400.0,170337.0,172510.0,170389.0,170711.0,170246.0,170398.0,170574.0,170336.0,170319.0,170286.0,170353.0,170410.0,170587.0,170443.0,170342.0,170455.0,201816.0,170535.0,170298.0,170398.0,171355.0,170562.0,183246.0,170759.0,170584.0,170520.0,170627.0,170477.0,170453.0,170718.0,170439.0,170593.0,170581.0,170601.0,170296.0,170174.0,170298.0,170155.0,170299.0,170157.0,170310.0,170102.0,170183.0,170199.0,170407.0,170142.0,170221.0,170082.0,170211.0,170128.0,170141.0,170107.0,170224.0,170114.0,170125.0,170314.0,170200.0,170122.0,170246.0,170157.0,170151.0,170135.0,170060.0,170150.0,170353.0,170076.0,170155.0,170106.0,170238.0,170174.0,170297.0,170133.0,170146.0,170101.0,170157.0,170143.0,173104.0,170789.0,170200.0,170189.0,170215.0,170058.0,170422.0,170143.0,170200.0,170173.0,170153.0,170136.0,170424.0,170112.0,170561.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":171176.71,"lower_bound":170378.6795,"upper_bound":172254.29475,"unit":"ns"},"mean":{"estimate":171176.71,"lower_bound":170378.6795,"upper_bound":172254.29475,"unit":"ns"},"median":{"estimate":170298.0,"lower_bound":170219.5,"upper_bound":170353.0,"unit":"ns"},"median_abs_dev":{"estimate":222.38999605178833,"lower_bound":143.81219744682312,"upper_bound":281.6939949989319,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.01008523222640978,"lower_bound":0.003257158213628947,"upper_bound":0.017154381704291375,"unit":"%"},"median":{"estimate":0.008701111775820447,"lower_bound":0.00810157767565256,"upper_bound":0.009048098566520446,"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":[394539.0,254500.0,254221.0,254197.0,254151.0,254315.0,254197.0,254273.0,254299.0,254238.0,254149.0,254305.0,254229.0,254315.0,254129.0,254254.0,254134.0,254282.0,254205.0,254227.0,254159.0,254186.0,254362.0,254300.0,254238.0,257066.0,254168.0,254219.0,254198.0,254403.0,255640.0,254460.0,254415.0,254402.0,254155.0,254269.0,254664.0,254645.0,254252.0,254309.0,254125.0,254322.0,254247.0,254290.0,254280.0,254341.0,254323.0,254272.0,254196.0,254296.0,256242.0,254135.0,254406.0,254293.0,254282.0,254344.0,254148.0,254417.0,254299.0,254296.0,254109.0,254448.0,254136.0,254233.0,254310.0,254227.0,254149.0,254268.0,256594.0,254292.0,254310.0,254362.0,254325.0,254311.0,254191.0,254466.0,254110.0,254288.0,254145.0,256388.0,254171.0,254275.0,254094.0,254239.0,254129.0,254142.0,254291.0,254364.0,254190.0,254299.0,256641.0,254306.0,254111.0,254178.0,254401.0,254411.0,254127.0,254573.0,254504.0,254117.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":255804.48,"lower_bound":254328.01924999998,"upper_bound":258675.56025,"unit":"ns"},"mean":{"estimate":255804.48,"lower_bound":254328.01924999998,"upper_bound":258675.56025,"unit":"ns"},"median":{"estimate":254282.0,"lower_bound":254246.0,"upper_bound":254299.0,"unit":"ns"},"median_abs_dev":{"estimate":126.02099776268005,"lower_bound":85.99079847335815,"upper_bound":172.7228969335556,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.009763547755907043,"lower_bound":-0.0036152172717151677,"upper_bound":0.02509626431975207,"unit":"%"},"median":{"estimate":0.008525279366999428,"lower_bound":0.008290042431692957,"upper_bound":0.008628964444937992,"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":[390392.0,383205.0,380739.0,380817.0,380750.0,380741.0,381008.0,380852.0,380754.0,380802.0,380738.0,383024.0,381116.0,380744.0,380742.0,380831.0,380875.0,418361.0,381087.0,380973.0,380921.0,381036.0,380921.0,380992.0,380934.0,380952.0,380791.0,380893.0,381253.0,380977.0,380986.0,380765.0,381028.0,380731.0,380915.0,383268.0,380966.0,380754.0,380953.0,380710.0,380841.0,380968.0,380728.0,381176.0,380850.0,380935.0,381164.0,381181.0,380788.0,380815.0,380925.0,380810.0,380739.0,380774.0,380801.0,380796.0,380744.0,380676.0,381232.0,380819.0,380827.0,381223.0,380758.0,380802.0,381022.0,380694.0,380752.0,383275.0,380744.0,380843.0,380883.0,380821.0,380701.0,380831.0,380930.0,380779.0,380909.0,380630.0,380904.0,380728.0,383264.0,380780.0,380743.0,380650.0,380667.0,380877.0,380731.0,380847.0,381021.0,380782.0,380777.0,380840.0,380623.0,380790.0,380713.0,380945.0,380755.0,380843.0,380913.0,411081.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":381747.57,"lower_bound":380975.5,"upper_bound":382840.35024999996,"unit":"ns"},"mean":{"estimate":381747.57,"lower_bound":380975.5,"upper_bound":382840.35024999996,"unit":"ns"},"median":{"estimate":380840.5,"lower_bound":380802.0,"upper_bound":380893.5,"unit":"ns"},"median_abs_dev":{"estimate":143.07089745998383,"lower_bound":105.26459813117981,"upper_bound":185.3249967098236,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.004126057169975272,"lower_bound":-0.0015603007137923383,"upper_bound":0.009191929993345787,"unit":"%"},"median":{"estimate":0.009143061554360177,"lower_bound":0.0090033636757465,"upper_bound":0.00930961525467966,"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":[2358.0,1946.0,1867.0,1833.0,1819.0,1828.0,1819.0,1805.0,1810.0,1820.0,1821.0,1817.0,1811.0,1795.0,1805.0,1821.0,1844.0,1827.0,1833.0,1817.0,1944.0,1858.0,1837.0,1830.0,1821.0,1822.0,1817.0,1821.0,1851.0,1913.0,1993.0,1906.0,1828.0,1829.0,1840.0,1819.0,1815.0,1833.0,1828.0,1796.0,1802.0,1808.0,1914.0,1851.0,1824.0,1827.0,1836.0,1838.0,1873.0,1841.0,1875.0,1842.0,1833.0,1805.0,1861.0,1820.0,1828.0,1879.0,1888.0,1958.0,1860.0,1829.0,1835.0,1993.0,1821.0,1807.0,1875.0,1884.0,1868.0,1814.0,1802.0,1832.0,1876.0,1831.0,1823.0,1823.0,1844.0,1843.0,1815.0,1865.0,1851.0,1833.0,1864.0,1821.0,1823.0,1820.0,1836.0,1851.0,2010.0,1834.0,1802.0,1833.0,1822.0,1809.0,1976.0,1841.0,1843.0,1848.0,1829.0,1826.0],"unit":"ns","throughput":[],"typical":{"estimate":1850.12,"lower_bound":1838.64,"upper_bound":1864.68,"unit":"ns"},"mean":{"estimate":1850.12,"lower_bound":1838.64,"upper_bound":1864.68,"unit":"ns"},"median":{"estimate":1832.5,"lower_bound":1827.5,"upper_bound":1836.5,"unit":"ns"},"median_abs_dev":{"estimate":20.01509964466095,"lower_bound":14.825999736785889,"upper_bound":28.910699486732483,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0023893244334158847,"lower_bound":-0.007938215299292695,"upper_bound":0.012249355683868838,"unit":"%"},"median":{"estimate":-0.0029923830250272454,"lower_bound":-0.01189832341806385,"upper_bound":0.008257638315441795,"unit":"%"},"change":"NoChange"}} -{"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":[1227.0,1002.0,936.0,862.0,879.0,820.0,890.0,921.0,813.0,1141.0,891.0,888.0,875.0,879.0,826.0,878.0,865.0,833.0,821.0,875.0,1238.0,850.0,856.0,964.0,965.0,815.0,806.0,824.0,806.0,1196.0,928.0,886.0,822.0,994.0,888.0,832.0,910.0,903.0,991.0,1260.0,1013.0,933.0,811.0,957.0,894.0,1097.0,838.0,935.0,1161.0,886.0,947.0,988.0,1318.0,958.0,844.0,828.0,974.0,938.0,819.0,947.0,928.0,926.0,930.0,963.0,820.0,947.0,937.0,1011.0,1300.0,905.0,820.0,936.0,969.0,922.0,831.0,828.0,958.0,933.0,967.0,949.0,938.0,1093.0,1031.0,939.0,827.0,817.0,936.0,896.0,896.0,824.0,820.0,930.0,979.0,818.0,1020.0,953.0,957.0,998.0,1049.0,1117.0],"unit":"ns","throughput":[],"typical":{"estimate":935.6,"lower_bound":914.49,"upper_bound":958.44025,"unit":"ns"},"mean":{"estimate":935.6,"lower_bound":914.49,"upper_bound":958.44025,"unit":"ns"},"median":{"estimate":928.0,"lower_bound":893.5,"upper_bound":937.0,"unit":"ns"},"median_abs_dev":{"estimate":83.76689851284027,"lower_bound":62.26919889450073,"upper_bound":116.38409793376923,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.054672528463532766,"lower_bound":0.013479432936093211,"upper_bound":0.09726055391371044,"unit":"%"},"median":{"estimate":0.11337732453509308,"lower_bound":0.07014388489208634,"upper_bound":0.13090909090909086,"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":[2235.0,1952.0,1844.0,1847.0,1793.0,1794.0,1802.0,1788.0,1807.0,1797.0,1771.0,1916.0,1949.0,1820.0,1810.0,1782.0,1808.0,1796.0,1791.0,1788.0,1798.0,1812.0,1842.0,1801.0,1774.0,1813.0,1974.0,1801.0,1862.0,1800.0,1806.0,1785.0,1783.0,1770.0,1767.0,1831.0,1793.0,1828.0,1784.0,1791.0,1928.0,1860.0,1800.0,1840.0,1806.0,1809.0,1805.0,1917.0,1786.0,1778.0,1808.0,1786.0,1804.0,1778.0,1766.0,1870.0,1826.0,1795.0,1798.0,1800.0,1851.0,1824.0,1784.0,1812.0,1834.0,2174.0,1833.0,1854.0,1834.0,1838.0,1999.0,1794.0,1809.0,1769.0,1763.0,1789.0,1767.0,1795.0,1808.0,1794.0,1800.0,1756.0,1772.0,1756.0,1861.0,1820.0,2015.0,1797.0,1804.0,1796.0,1769.0,1774.0,1766.0,1799.0,1865.0,1886.0,1837.0,1819.0,1926.0,1840.0],"unit":"ns","throughput":[],"typical":{"estimate":1826.48,"lower_bound":1813.1,"upper_bound":1842.0,"unit":"ns"},"mean":{"estimate":1826.48,"lower_bound":1813.1,"upper_bound":1842.0,"unit":"ns"},"median":{"estimate":1804.0,"lower_bound":1798.0,"upper_bound":1809.5,"unit":"ns"},"median_abs_dev":{"estimate":30.393299460411072,"lower_bound":20.01509964466095,"upper_bound":43.73669922351837,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.028478420442335728,"lower_bound":-0.04310694640968003,"upper_bound":-0.013657415075840744,"unit":"%"},"median":{"estimate":-0.020097772949484005,"lower_bound":-0.03475006682705162,"upper_bound":-0.014449291166848455,"unit":"%"},"change":"Improved"}} -{"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":[2916.0,2677.0,2528.0,2506.0,2505.0,2461.0,2457.0,2684.0,2602.0,2734.0,2469.0,2509.0,2518.0,2571.0,2529.0,2491.0,2801.0,2517.0,2485.0,2457.0,2481.0,2487.0,2524.0,2496.0,2464.0,2645.0,2541.0,2585.0,2494.0,2506.0,2618.0,2457.0,2458.0,2439.0,2448.0,2616.0,2531.0,2510.0,2501.0,2483.0,2478.0,2520.0,2528.0,2484.0,2493.0,2473.0,2466.0,2466.0,2437.0,2473.0,2467.0,2523.0,2515.0,2497.0,2479.0,2516.0,2544.0,2480.0,2516.0,2584.0,2665.0,2565.0,2583.0,2478.0,2486.0,2463.0,2454.0,2438.0,2449.0,2466.0,2572.0,2794.0,2740.0,2656.0,2601.0,2463.0,2464.0,2512.0,2464.0,2480.0,2470.0,2480.0,2505.0,2505.0,2512.0,2537.0,2449.0,2495.0,2529.0,2454.0,2455.0,2466.0,2515.0,2495.0,2518.0,2507.0,2488.0,2528.0,2493.0,2493.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":2523.27,"lower_bound":2507.84,"upper_bound":2540.38,"unit":"ns"},"mean":{"estimate":2523.27,"lower_bound":2507.84,"upper_bound":2540.38,"unit":"ns"},"median":{"estimate":2499.0,"lower_bound":2488.0,"upper_bound":2512.0,"unit":"ns"},"median_abs_dev":{"estimate":44.477999210357666,"lower_bound":34.099799394607544,"upper_bound":59.303998947143555,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.013560901542873705,"lower_bound":0.00038684954818295485,"upper_bound":0.02541589374995942,"unit":"%"},"median":{"estimate":0.015234613040828737,"lower_bound":0.010162601626016343,"upper_bound":0.02241238793806022,"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":[2720.0,2494.0,2511.0,2510.0,2484.0,2467.0,2472.0,2456.0,2444.0,2468.0,2472.0,2497.0,2478.0,2618.0,2494.0,2484.0,2467.0,2562.0,2481.0,2456.0,2518.0,2461.0,2458.0,2475.0,2483.0,2437.0,4524.0,2679.0,2498.0,2486.0,2453.0,2460.0,2466.0,2455.0,2463.0,2482.0,2439.0,2449.0,2452.0,2436.0,2481.0,2461.0,2603.0,2436.0,2452.0,2438.0,2455.0,2458.0,2455.0,2468.0,2477.0,2475.0,2458.0,2513.0,2603.0,2473.0,2452.0,2462.0,2473.0,2467.0,2430.0,2439.0,2592.0,2512.0,2459.0,2535.0,2437.0,2438.0,2438.0,2561.0,2435.0,2598.0,2617.0,2492.0,2463.0,2464.0,2466.0,2458.0,2457.0,2486.0,2433.0,2445.0,2439.0,2494.0,2458.0,2449.0,2462.0,2441.0,2505.0,2443.0,2518.0,2450.0,2495.0,2472.0,2458.0,2477.0,2468.0,2468.0,2490.0,2464.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":2502.75,"lower_bound":2474.85,"upper_bound":2549.63,"unit":"ns"},"mean":{"estimate":2502.75,"lower_bound":2474.85,"upper_bound":2549.63,"unit":"ns"},"median":{"estimate":2467.0,"lower_bound":2462.0,"upper_bound":2474.0,"unit":"ns"},"median_abs_dev":{"estimate":25.20419955253601,"lower_bound":17.791199684143066,"upper_bound":35.58239936828613,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.002681830498748705,"lower_bound":-0.016470766371124917,"upper_bound":0.016290220977005308,"unit":"%"},"median":{"estimate":-0.009634684865515886,"lower_bound":-0.014182980423491864,"upper_bound":-0.004830917874396157,"unit":"%"},"change":"NoChange"}} -{"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":[3165.0,2934.0,2766.0,2917.0,2808.0,2772.0,2782.0,2773.0,2809.0,2751.0,2802.0,2790.0,2740.0,2807.0,2825.0,2757.0,2782.0,2931.0,3231.0,2906.0,2765.0,2791.0,3029.0,2791.0,2748.0,2874.0,2795.0,2742.0,2841.0,2828.0,2777.0,2865.0,2760.0,2828.0,2782.0,2769.0,2721.0,2824.0,2753.0,2876.0,2823.0,2793.0,2766.0,2804.0,2768.0,2728.0,2917.0,2983.0,2893.0,2825.0,2834.0,2727.0,2769.0,2780.0,2762.0,2794.0,2748.0,2740.0,2908.0,2765.0,2807.0,2794.0,2852.0,2865.0,2870.0,3058.0,2778.0,2810.0,2734.0,2722.0,2891.0,2819.0,2753.0,2798.0,2723.0,2754.0,2851.0,2886.0,2811.0,2788.0,2858.0,2862.0,2828.0,2858.0,2704.0,2784.0,2783.0,2783.0,2819.0,2762.0,2739.0,2792.0,2839.0,2743.0,2771.0,2787.0,2724.0,2897.0,2791.0,2755.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":2815.77,"lower_bound":2799.99,"upper_bound":2833.16,"unit":"ns"},"mean":{"estimate":2815.77,"lower_bound":2799.99,"upper_bound":2833.16,"unit":"ns"},"median":{"estimate":2792.5,"lower_bound":2783.0,"upper_bound":2808.0,"unit":"ns"},"median_abs_dev":{"estimate":52.632299065589905,"lower_bound":40.0301992893219,"upper_bound":71.90609872341156,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.004099230377454632,"lower_bound":-0.015653237880907486,"upper_bound":0.007148533075092668,"unit":"%"},"median":{"estimate":-0.00196568977841316,"lower_bound":-0.009939652112176067,"upper_bound":0.00922075574037251,"unit":"%"},"change":"NoChange"}} -{"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":[7143.0,6595.0,6466.0,6446.0,6489.0,6694.0,6500.0,6495.0,6508.0,6485.0,6469.0,6515.0,6487.0,6423.0,6597.0,6422.0,6464.0,6950.0,6783.0,6573.0,6487.0,6810.0,6378.0,6509.0,6489.0,6453.0,6500.0,6466.0,6453.0,6471.0,6536.0,6442.0,6476.0,6538.0,6464.0,6619.0,6592.0,6425.0,6471.0,6530.0,6416.0,6487.0,6580.0,6450.0,6530.0,6469.0,6444.0,6464.0,6519.0,6446.0,6449.0,6616.0,6594.0,6464.0,7015.0,6630.0,6474.0,6715.0,6556.0,6509.0,6703.0,6540.0,6529.0,6569.0,6386.0,6712.0,6549.0,6479.0,6641.0,6570.0,6454.0,6595.0,6530.0,6476.0,6456.0,6553.0,6386.0,6526.0,6513.0,6543.0,6481.0,6401.0,6465.0,6494.0,6519.0,6430.0,6537.0,6556.0,6476.0,6556.0,6483.0,6471.0,6648.0,6479.0,6452.0,6526.0,6487.0,6420.0,6557.0,6463.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":6530.51,"lower_bound":6508.49,"upper_bound":6555.75025,"unit":"ns"},"mean":{"estimate":6530.51,"lower_bound":6508.49,"upper_bound":6555.75025,"unit":"ns"},"median":{"estimate":6494.5,"lower_bound":6481.0,"upper_bound":6522.012499999997,"unit":"ns"},"median_abs_dev":{"estimate":62.26919889450073,"lower_bound":47.443199157714844,"upper_bound":83.02559852600098,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.010922685160101864,"lower_bound":0.0052559357462231785,"upper_bound":0.01633276483077925,"unit":"%"},"median":{"estimate":0.010659819483348931,"lower_bound":0.007298136645962794,"upper_bound":0.014551396778460735,"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":[42658.0,41177.0,41076.0,41067.0,41014.0,41171.0,40900.0,41022.0,41062.0,40882.0,40869.0,41188.0,41033.0,40994.0,40950.0,41004.0,41051.0,41227.0,40999.0,41028.0,41054.0,40911.0,40836.0,40935.0,41389.0,42947.0,40953.0,41022.0,40932.0,41174.0,40902.0,40902.0,40930.0,40917.0,41063.0,40925.0,41028.0,41040.0,40876.0,40858.0,40892.0,40918.0,40965.0,41006.0,41004.0,40982.0,40913.0,40949.0,40976.0,40982.0,40957.0,40959.0,40957.0,41023.0,41032.0,40925.0,40841.0,40936.0,41135.0,40914.0,40948.0,41002.0,40847.0,40937.0,41065.0,40994.0,40914.0,40887.0,40928.0,40941.0,40993.0,40893.0,40994.0,41003.0,41067.0,40804.0,40943.0,40854.0,40934.0,40969.0,40927.0,41142.0,40904.0,40925.0,40898.0,40949.0,40996.0,40929.0,40969.0,40952.0,40953.0,40969.0,41103.0,40948.0,40971.0,41046.0,40938.0,40998.0,41043.0,40932.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":41016.41,"lower_bound":40971.83,"upper_bound":41076.62,"unit":"ns"},"mean":{"estimate":41016.41,"lower_bound":40971.83,"upper_bound":41076.62,"unit":"ns"},"median":{"estimate":40962.0,"lower_bound":40948.0,"upper_bound":40994.0,"unit":"ns"},"median_abs_dev":{"estimate":71.16479873657227,"lower_bound":56.33879899978638,"upper_bound":93.4037983417511,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0038240183102562497,"lower_bound":0.002234048591234706,"upper_bound":0.005657902175045225,"unit":"%"},"median":{"estimate":0.0037122799279596386,"lower_bound":0.002398609785349004,"upper_bound":0.004631671812968641,"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":[95304.0,78138.0,78038.0,78000.0,78111.0,78012.0,78058.0,78182.0,78127.0,78063.0,78111.0,78052.0,78100.0,77981.0,78236.0,77984.0,78101.0,78041.0,78469.0,78104.0,78145.0,78029.0,78109.0,78310.0,78192.0,78082.0,78002.0,78113.0,78139.0,78041.0,78025.0,78016.0,78034.0,77971.0,78161.0,78040.0,77936.0,79549.0,77979.0,77984.0,78190.0,78031.0,78178.0,78214.0,78095.0,78002.0,78042.0,78018.0,78060.0,78077.0,78289.0,78031.0,78055.0,78019.0,78001.0,78056.0,78130.0,77967.0,78119.0,78148.0,78093.0,78276.0,78034.0,78024.0,78019.0,78010.0,78022.0,78261.0,78134.0,77976.0,78018.0,78138.0,78081.0,78142.0,78085.0,78119.0,78048.0,78100.0,78074.0,78021.0,78189.0,77897.0,78096.0,78055.0,78018.0,78032.0,78676.0,78018.0,78258.0,78367.0,78584.0,78876.0,78518.0,78293.0,78012.0,78189.0,78072.0,78046.0,78119.0,77984.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":78297.65,"lower_bound":78097.11,"upper_bound":78667.09,"unit":"ns"},"mean":{"estimate":78297.65,"lower_bound":78097.11,"upper_bound":78667.09,"unit":"ns"},"median":{"estimate":78075.5,"lower_bound":78048.0,"upper_bound":78102.0,"unit":"ns"},"median_abs_dev":{"estimate":85.24949848651886,"lower_bound":62.26919889450073,"upper_bound":117.12539792060852,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0048157938821407065,"lower_bound":-0.02828818948464043,"upper_bound":0.010339277114860428,"unit":"%"},"median":{"estimate":0.007347818233427006,"lower_bound":0.006868973523815658,"upper_bound":0.00784597119702668,"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":[147024.0,115479.0,115328.0,115377.0,115487.0,115374.0,115372.0,115424.0,115442.0,115423.0,115358.0,115505.0,115734.0,115484.0,115451.0,115630.0,115488.0,115445.0,115446.0,115460.0,115854.0,115466.0,115388.0,115509.0,116753.0,115895.0,115967.0,115855.0,115553.0,115681.0,115566.0,115566.0,115519.0,115537.0,115456.0,115490.0,115426.0,115465.0,115465.0,115499.0,115471.0,115529.0,115544.0,115344.0,115452.0,115439.0,115396.0,115429.0,115426.0,115452.0,115444.0,115451.0,115490.0,115516.0,115415.0,115391.0,115424.0,115512.0,115589.0,115413.0,115614.0,115483.0,115596.0,115464.0,115428.0,115362.0,115487.0,115396.0,115547.0,115418.0,115360.0,115410.0,115579.0,115524.0,117831.0,115407.0,115449.0,115457.0,115421.0,115753.0,115427.0,115503.0,115408.0,115894.0,115984.0,115467.0,115493.0,115407.0,115560.0,115375.0,115686.0,115423.0,115512.0,115414.0,115500.0,115378.0,115449.0,115379.0,115620.0,115436.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":115850.69,"lower_bound":115495.74,"upper_bound":116519.091,"unit":"ns"},"mean":{"estimate":115850.69,"lower_bound":115495.74,"upper_bound":116519.091,"unit":"ns"},"median":{"estimate":115465.0,"lower_bound":115449.0,"upper_bound":115488.5,"unit":"ns"},"median_abs_dev":{"estimate":75.61259865760803,"lower_bound":57.08009898662567,"upper_bound":104.52329814434052,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.003198873445116046,"lower_bound":-0.010776453470129146,"upper_bound":0.014354904724852754,"unit":"%"},"median":{"estimate":0.008080181945966158,"lower_bound":0.007821502147421278,"upper_bound":0.008395730096705911,"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":[233285.0,171786.0,171688.0,171483.0,171596.0,171509.0,171588.0,171455.0,171517.0,171514.0,171475.0,171483.0,171402.0,171382.0,171357.0,171583.0,171771.0,171600.0,171703.0,171703.0,171465.0,171584.0,171650.0,171508.0,171507.0,171420.0,171422.0,171392.0,171417.0,171409.0,171512.0,171436.0,171559.0,171392.0,171415.0,171405.0,173810.0,171406.0,171403.0,171562.0,173740.0,171445.0,171496.0,171474.0,171442.0,171369.0,171411.0,171378.0,173802.0,171595.0,171360.0,171379.0,202394.0,171444.0,171411.0,171410.0,184443.0,171411.0,171454.0,171382.0,173666.0,171335.0,171452.0,171543.0,173764.0,171405.0,171441.0,171560.0,171626.0,171444.0,171406.0,171426.0,203092.0,171391.0,171369.0,171390.0,174366.0,171352.0,171413.0,171469.0,173724.0,171473.0,171342.0,171414.0,171383.0,171545.0,171369.0,171420.0,171516.0,171353.0,171469.0,171365.0,171504.0,171357.0,171475.0,171355.0,171472.0,171617.0,171465.0,171294.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":173006.16,"lower_bound":171760.0625,"upper_bound":174688.2925,"unit":"ns"},"mean":{"estimate":173006.16,"lower_bound":171760.0625,"upper_bound":174688.2925,"unit":"ns"},"median":{"estimate":171460.0,"lower_bound":171426.0,"upper_bound":171483.0,"unit":"ns"},"median_abs_dev":{"estimate":101.55809819698334,"lower_bound":73.38869869709015,"upper_bound":137.14049756526947,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.002258767511241322,"lower_bound":-0.02177460436413217,"upper_bound":0.01946427262492678,"unit":"%"},"median":{"estimate":0.00795678001722444,"lower_bound":0.007604607428302712,"upper_bound":0.008273453211181891,"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":[318461.0,256125.0,255712.0,255762.0,255544.0,255933.0,255625.0,255900.0,255613.0,255959.0,255583.0,255800.0,255724.0,258018.0,255848.0,255842.0,255688.0,262546.0,255519.0,255890.0,255726.0,255999.0,255532.0,256181.0,255549.0,255694.0,255695.0,255888.0,255678.0,256053.0,255696.0,255841.0,255552.0,255762.0,255533.0,255748.0,255516.0,255590.0,255791.0,258070.0,255549.0,255784.0,255954.0,256066.0,255864.0,255836.0,255691.0,255921.0,255676.0,255797.0,255821.0,255741.0,255569.0,255866.0,255774.0,255852.0,255967.0,255745.0,255800.0,255788.0,255846.0,286233.0,255770.0,255719.0,255761.0,261891.0,255597.0,255814.0,255596.0,255568.0,255978.0,255803.0,255741.0,255733.0,255542.0,255777.0,255671.0,255798.0,255551.0,255812.0,255668.0,255706.0,255623.0,255689.0,255751.0,255762.0,255834.0,256014.0,256218.0,255620.0,255765.0,255576.0,255772.0,255596.0,255721.0,255520.0,255619.0,255731.0,257971.0,255709.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":256883.13,"lower_bound":255864.63975,"upper_bound":258462.56275,"unit":"ns"},"mean":{"estimate":256883.13,"lower_bound":255864.63975,"upper_bound":258462.56275,"unit":"ns"},"median":{"estimate":255762.0,"lower_bound":255726.0,"upper_bound":255791.0,"unit":"ns"},"median_abs_dev":{"estimate":137.14049756526947,"lower_bound":107.48849809169769,"upper_bound":219.42479610443115,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.010865888874499463,"lower_bound":0.004556331262485833,"upper_bound":0.017396430206953327,"unit":"%"},"median":{"estimate":0.0091061888942372,"lower_bound":0.008861426072275913,"upper_bound":0.00928691781659774,"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":[472490.0,382280.0,382214.0,390300.0,382032.0,382151.0,414765.0,382186.0,382206.0,390439.0,409865.0,382118.0,382060.0,382030.0,382122.0,389471.0,382031.0,381970.0,384343.0,382013.0,382090.0,382237.0,382156.0,382225.0,382047.0,382015.0,382096.0,382035.0,381938.0,382135.0,382052.0,413540.0,382126.0,382091.0,382135.0,382436.0,382023.0,382078.0,382245.0,382203.0,382139.0,382086.0,382099.0,382161.0,384417.0,382146.0,381991.0,382092.0,382000.0,382100.0,382188.0,382078.0,382242.0,382080.0,381989.0,382294.0,382145.0,384507.0,382077.0,382082.0,382273.0,382178.0,382056.0,382073.0,382123.0,382236.0,382195.0,382509.0,382041.0,382042.0,384540.0,382008.0,382025.0,382199.0,382041.0,382094.0,382229.0,382333.0,382109.0,382300.0,382074.0,382285.0,382108.0,382296.0,382038.0,382089.0,385294.0,382120.0,382418.0,384984.0,382105.0,382074.0,382138.0,382314.0,382122.0,382446.0,382262.0,382238.0,382015.0,382396.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":384353.22,"lower_bound":382718.9585,"upper_bound":386691.042,"unit":"ns"},"mean":{"estimate":384353.22,"lower_bound":382718.9585,"upper_bound":386691.042,"unit":"ns"},"median":{"estimate":382135.0,"lower_bound":382104.5,"upper_bound":382186.0,"unit":"ns"},"median_abs_dev":{"estimate":139.36439752578735,"lower_bound":97.11029827594757,"upper_bound":171.240296959877,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.009525072271644897,"lower_bound":0.0031115781026710533,"upper_bound":0.01651287175099923,"unit":"%"},"median":{"estimate":0.009059846212345235,"lower_bound":0.00887198651447485,"upper_bound":0.00921548846446374,"unit":"%"},"change":"NoChange"}} -{"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":[5580,11160,16740,22320,27900,33480,39060,44640,50220,55800,61380,66960,72540,78120,83700,89280,94860,100440,106020,111600,117180,122760,128340,133920,139500,145080,150660,156240,161820,167400,172980,178560,184140,189720,195300,200880,206460,212040,217620,223200,228780,234360,239940,245520,251100,256680,262260,267840,273420,279000,284580,290160,295740,301320,306900,312480,318060,323640,329220,334800,340380,345960,351540,357120,362700,368280,373860,379440,385020,390600,396180,401760,407340,412920,418500,424080,429660,435240,440820,446400,451980,457560,463140,468720,474300,479880,485460,491040,496620,502200,507780,513360,518940,524520,530100,535680,541260,546840,552420,558000],"measured_values":[138932.0,246550.0,397078.0,519926.0,663883.0,784907.0,851421.0,1011481.0,1112678.0,1171927.0,1373364.0,1401174.0,1569102.0,1666886.0,1924438.0,1946170.0,2145500.0,2100049.0,2428557.0,2811238.0,2772522.0,2996965.0,3023594.0,3249271.0,3241005.0,3546662.0,3476346.0,3647175.0,3527734.0,4101610.0,3851575.0,4169975.0,4094056.0,4147459.0,4255795.0,4602789.0,4734988.0,4672348.0,4918536.0,4849857.0,5043506.0,5740811.0,5452770.0,5612507.0,5571281.0,5778038.0,5616507.0,5837127.0,6037773.0,6708776.0,6514957.0,6846178.0,6581078.0,6633402.0,6597953.0,6964601.0,7393166.0,7701201.0,7712340.0,7729109.0,7874621.0,8080718.0,8686263.0,8893912.0,8362435.0,8847480.0,8605256.0,8592462.0,8362866.0,9146412.0,9017427.0,9649993.0,9364132.0,9619067.0,9504921.0,9346838.0,9707063.0,9932609.0,10045962.0,9985993.0,10654824.0,10322667.0,10518362.0,10762821.0,10668568.0,11659604.0,10642461.0,11615762.0,10997958.0,12227843.0,11682519.0,12278171.0,11538082.0,12407461.0,11930933.0,12230761.0,12185094.0,12773713.0,12499838.0,13367888.0],"unit":"ns","throughput":[],"typical":{"estimate":22.991479676036935,"lower_bound":22.80418378274368,"upper_bound":23.181352531587603,"unit":"ns"},"mean":{"estimate":22.894601486074663,"lower_bound":22.714103180797096,"upper_bound":23.07637384148227,"unit":"ns"},"median":{"estimate":22.84594423740089,"lower_bound":22.627417544621846,"upper_bound":23.031302542784353,"unit":"ns"},"median_abs_dev":{"estimate":0.9421936402830067,"lower_bound":0.723962125964731,"upper_bound":1.1717999272250688,"unit":"ns"},"slope":{"estimate":22.991479676036935,"lower_bound":22.80418378274368,"upper_bound":23.181352531587603,"unit":"ns"},"change":{"mean":{"estimate":0.1446877600669778,"lower_bound":0.13086279381518298,"upper_bound":0.15860729789146572,"unit":"%"},"median":{"estimate":0.13768014604159018,"lower_bound":0.12166409902607067,"upper_bound":0.151852092218131,"unit":"%"},"change":"Regressed"}} -{"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":[5650,11300,16950,22600,28250,33900,39550,45200,50850,56500,62150,67800,73450,79100,84750,90400,96050,101700,107350,113000,118650,124300,129950,135600,141250,146900,152550,158200,163850,169500,175150,180800,186450,192100,197750,203400,209050,214700,220350,226000,231650,237300,242950,248600,254250,259900,265550,271200,276850,282500,288150,293800,299450,305100,310750,316400,322050,327700,333350,339000,344650,350300,355950,361600,367250,372900,378550,384200,389850,395500,401150,406800,412450,418100,423750,429400,435050,440700,446350,452000,457650,463300,468950,474600,480250,485900,491550,497200,502850,508500,514150,519800,525450,531100,536750,542400,548050,553700,559350,565000],"measured_values":[154975.0,248807.0,384704.0,525214.0,652727.0,795650.0,883063.0,1045148.0,1036985.0,1228306.0,1405275.0,1562266.0,1592136.0,1761441.0,1920025.0,1845357.0,1981247.0,2153302.0,2434040.0,2423527.0,2570220.0,2742347.0,2927334.0,3052057.0,3156531.0,3283341.0,3493689.0,3518705.0,3619745.0,3961342.0,3949363.0,4079318.0,4299827.0,4243808.0,4512204.0,4740221.0,4822828.0,4874308.0,5046114.0,5104791.0,5347399.0,5605457.0,5608987.0,5650197.0,5620251.0,6113699.0,6070385.0,6126663.0,6263733.0,6376083.0,6386422.0,6495250.0,6596248.0,6720848.0,6969797.0,7417583.0,7128822.0,7536805.0,7443714.0,7893856.0,7946475.0,8320439.0,8272467.0,7897690.0,8319744.0,9074136.0,8668814.0,8462370.0,8899219.0,9145599.0,8987901.0,9146905.0,9335312.0,9959820.0,9424928.0,9660189.0,10574317.0,11135324.0,10324073.0,10533889.0,10544770.0,10465441.0,10440708.0,11154774.0,11004669.0,11264702.0,11269172.0,11481231.0,11554913.0,11721403.0,11744604.0,11963874.0,12030612.0,12490119.0,12211552.0,12255799.0,12549291.0,12864474.0,12723180.0,13273934.0],"unit":"ns","throughput":[],"typical":{"estimate":22.947878034344182,"lower_bound":22.80820805682007,"upper_bound":23.094907983164145,"unit":"ns"},"mean":{"estimate":22.749702495072867,"lower_bound":22.58614976838054,"upper_bound":22.92424779405827,"unit":"ns"},"median":{"estimate":22.737215741485652,"lower_bound":22.595499631268435,"upper_bound":22.90098871424588,"unit":"ns"},"median_abs_dev":{"estimate":0.5732371944520066,"lower_bound":0.426479470745137,"upper_bound":0.726766449332998,"unit":"ns"},"slope":{"estimate":22.947878034344182,"lower_bound":22.80820805682007,"upper_bound":23.094907983164145,"unit":"ns"},"change":{"mean":{"estimate":0.1390992885724418,"lower_bound":0.12727839831426663,"upper_bound":0.15185851285628257,"unit":"%"},"median":{"estimate":0.14864859309304923,"lower_bound":0.12198222658870317,"upper_bound":0.17163800138141466,"unit":"%"},"change":"Regressed"}} -{"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":[5001,10002,15003,20004,25005,30006,35007,40008,45009,50010,55011,60012,65013,70014,75015,80016,85017,90018,95019,100020,105021,110022,115023,120024,125025,130026,135027,140028,145029,150030,155031,160032,165033,170034,175035,180036,185037,190038,195039,200040,205041,210042,215043,220044,225045,230046,235047,240048,245049,250050,255051,260052,265053,270054,275055,280056,285057,290058,295059,300060,305061,310062,315063,320064,325065,330066,335067,340068,345069,350070,355071,360072,365073,370074,375075,380076,385077,390078,395079,400080,405081,410082,415083,420084,425085,430086,435087,440088,445089,450090,455091,460092,465093,470094,475095,480096,485097,490098,495099,500100],"measured_values":[139961.0,255111.0,417892.0,540090.0,678742.0,814096.0,968124.0,1100589.0,1218491.0,1339297.0,1493820.0,1614328.0,1705994.0,1892345.0,2018396.0,2136319.0,2176715.0,2441347.0,2585912.0,2721467.0,2866290.0,3062498.0,3204245.0,3251419.0,3423144.0,3560486.0,3907975.0,3848357.0,3906688.0,4097025.0,4258918.0,4340856.0,4588603.0,4696084.0,4799474.0,4855029.0,4997894.0,5239159.0,5343031.0,5320089.0,5574567.0,5660877.0,5953438.0,5880957.0,6091637.0,6323595.0,6489348.0,6535267.0,6750266.0,6901504.0,7033445.0,7228821.0,7351323.0,7425927.0,7530964.0,7517784.0,7871295.0,7787957.0,8124991.0,7914975.0,8408024.0,8350213.0,8549124.0,8786743.0,8863770.0,9156145.0,9211336.0,9322889.0,9683660.0,9601356.0,10096696.0,9848616.0,10188976.0,10081285.0,10240198.0,10278518.0,10618506.0,10719155.0,10892777.0,10903248.0,11214225.0,11273381.0,11583743.0,11593747.0,11659382.0,11686679.0,11975398.0,12050020.0,12468549.0,12331706.0,12708087.0,12361321.0,12947574.0,13189661.0,13094812.0,12944897.0,13384439.0,13378800.0,13560477.0,13657348.0],"unit":"ns","throughput":[],"typical":{"estimate":27.457873636444575,"lower_bound":27.36851500032393,"upper_bound":27.54641305395706,"unit":"ns"},"mean":{"estimate":27.345395293323268,"lower_bound":27.249033133768982,"upper_bound":27.437569914861868,"unit":"ns"},"median":{"estimate":27.39205259181264,"lower_bound":27.29713790575218,"upper_bound":27.483955271376047,"unit":"ns"},"median_abs_dev":{"estimate":0.35947221559327835,"lower_bound":0.27119004352868914,"upper_bound":0.4713607307546821,"unit":"ns"},"slope":{"estimate":27.457873636444575,"lower_bound":27.36851500032393,"upper_bound":27.54641305395706,"unit":"ns"},"change":{"mean":{"estimate":0.03644670757006763,"lower_bound":0.028159377455235026,"upper_bound":0.04408171869991151,"unit":"%"},"median":{"estimate":0.03863523699931681,"lower_bound":0.032416725771251764,"upper_bound":0.045419508638499195,"unit":"%"},"change":"Regressed"}} -{"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":[4997,9994,14991,19988,24985,29982,34979,39976,44973,49970,54967,59964,64961,69958,74955,79952,84949,89946,94943,99940,104937,109934,114931,119928,124925,129922,134919,139916,144913,149910,154907,159904,164901,169898,174895,179892,184889,189886,194883,199880,204877,209874,214871,219868,224865,229862,234859,239856,244853,249850,254847,259844,264841,269838,274835,279832,284829,289826,294823,299820,304817,309814,314811,319808,324805,329802,334799,339796,344793,349790,354787,359784,364781,369778,374775,379772,384769,389766,394763,399760,404757,409754,414751,419748,424745,429742,434739,439736,444733,449730,454727,459724,464721,469718,474715,479712,484709,489706,494703,499700],"measured_values":[175403.0,290944.0,431278.0,520410.0,678725.0,782276.0,980595.0,1087581.0,1253138.0,1314244.0,1526466.0,1637470.0,1847135.0,1915771.0,2121561.0,2216690.0,2396585.0,2395446.0,2655083.0,2721045.0,2946628.0,3016996.0,3403979.0,3396491.0,3523927.0,3555170.0,3805672.0,3880548.0,4123368.0,4128495.0,4439756.0,4483576.0,4647282.0,4676016.0,4927495.0,5127528.0,5355522.0,5241469.0,5561754.0,5537924.0,5683292.0,5722867.0,6235724.0,5994027.0,6345636.0,6313336.0,6591411.0,6618849.0,7015119.0,6867229.0,7099246.0,7085220.0,7421137.0,7404455.0,7733141.0,7686905.0,8043522.0,7890292.0,8303714.0,8313132.0,8700567.0,8586797.0,8927909.0,8874027.0,9276880.0,9038943.0,9504754.0,9392144.0,9786321.0,9660648.0,10205238.0,9885781.0,10369651.0,10176496.0,10685388.0,10555356.0,10928598.0,10725755.0,11140095.0,11191438.0,11617407.0,11239565.0,11538537.0,11603957.0,11985401.0,11854182.0,12358309.0,12100253.0,12574511.0,12448710.0,12923729.0,12692671.0,13246296.0,12939987.0,13498953.0,13318814.0,13570591.0,13489601.0,14078514.0,13949498.0],"unit":"ns","throughput":[],"typical":{"estimate":27.977042867067958,"lower_bound":27.87086081514695,"upper_bound":28.08441368965577,"unit":"ns"},"mean":{"estimate":27.98328967985872,"lower_bound":27.819620103044453,"upper_bound":28.18427981421225,"unit":"ns"},"median":{"estimate":27.889987548084406,"lower_bound":27.727076245747448,"upper_bound":28.137395164371352,"unit":"ns"},"median_abs_dev":{"estimate":0.6060712134746264,"lower_bound":0.4644865890124087,"upper_bound":0.7022901320185521,"unit":"ns"},"slope":{"estimate":27.977042867067958,"lower_bound":27.87086081514695,"upper_bound":28.08441368965577,"unit":"ns"},"change":{"mean":{"estimate":0.0608929640675806,"lower_bound":0.04980862670145323,"upper_bound":0.07176877700083312,"unit":"%"},"median":{"estimate":0.06350360160090229,"lower_bound":0.05120202540791707,"upper_bound":0.07601699209280799,"unit":"%"},"change":"Regressed"}} -{"reason":"group-complete","group_name":"sw","benchmarks":["sw/sw"],"report_directory":"/root/fuel-core/target/criterion/reports/sw"} -{"reason":"benchmark-complete","id":"cfe/1","report_directory":"/root/fuel-core/target/criterion/reports/cfe/1","iteration_count":[5532,11064,16596,22128,27660,33192,38724,44256,49788,55320,60852,66384,71916,77448,82980,88512,94044,99576,105108,110640,116172,121704,127236,132768,138300,143832,149364,154896,160428,165960,171492,177024,182556,188088,193620,199152,204684,210216,215748,221280,226812,232344,237876,243408,248940,254472,260004,265536,271068,276600,282132,287664,293196,298728,304260,309792,315324,320856,326388,331920,337452,342984,348516,354048,359580,365112,370644,376176,381708,387240,392772,398304,403836,409368,414900,420432,425964,431496,437028,442560,448092,453624,459156,464688,470220,475752,481284,486816,492348,497880,503412,508944,514476,520008,525540,531072,536604,542136,547668,553200],"measured_values":[168660.0,260723.0,412126.0,545251.0,655274.0,770103.0,945993.0,1100383.0,1203900.0,1220577.0,1350684.0,1686570.0,1704185.0,1809609.0,1910856.0,2186016.0,2135114.0,2226054.0,2375550.0,2461343.0,2643397.0,2783849.0,2881260.0,3057199.0,3258209.0,3240313.0,3255938.0,3533046.0,3589737.0,4032070.0,3856980.0,4174684.0,4496977.0,4826713.0,4846829.0,4842918.0,4740836.0,4920067.0,4784987.0,4759675.0,5000787.0,5326470.0,5252383.0,5413254.0,5724353.0,6589479.0,6347011.0,6477567.0,6498905.0,6239505.0,6624172.0,6573794.0,6434714.0,7159796.0,7286848.0,7245114.0,7245261.0,7635225.0,7046026.0,7423810.0,7470877.0,8312116.0,8076759.0,8720827.0,8457841.0,9513535.0,9489951.0,9385887.0,9106437.0,9434451.0,9454152.0,9290263.0,9434010.0,10040035.0,9413661.0,9862950.0,9693356.0,9973269.0,10134057.0,11137566.0,9866208.0,10648702.0,11178254.0,11050299.0,11300701.0,10481142.0,11678319.0,12537557.0,11989274.0,11513032.0,11269631.0,11695799.0,11989455.0,12778161.0,12073509.0,13236293.0,12547829.0,14020835.0,12691490.0,12805412.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":23.653042464168067,"lower_bound":23.381247204561255,"upper_bound":23.93168442082369,"unit":"ns"},"mean":{"estimate":23.587962805033662,"lower_bound":23.348784172309326,"upper_bound":23.847402458678193,"unit":"ns"},"median":{"estimate":23.385402889547706,"lower_bound":23.1607907345326,"upper_bound":23.690310918293566,"unit":"ns"},"median_abs_dev":{"estimate":1.2430425709971504,"lower_bound":0.8916394510054708,"upper_bound":1.452576338453834,"unit":"ns"},"slope":{"estimate":23.653042464168067,"lower_bound":23.381247204561255,"upper_bound":23.93168442082369,"unit":"ns"},"change":{"mean":{"estimate":0.1484316998069799,"lower_bound":0.1310883678217717,"upper_bound":0.1675408655493212,"unit":"%"},"median":{"estimate":0.14159424766183104,"lower_bound":0.12415631275334804,"upper_bound":0.16987366926937497,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"cfe/10","report_directory":"/root/fuel-core/target/criterion/reports/cfe/10","iteration_count":[5519,11038,16557,22076,27595,33114,38633,44152,49671,55190,60709,66228,71747,77266,82785,88304,93823,99342,104861,110380,115899,121418,126937,132456,137975,143494,149013,154532,160051,165570,171089,176608,182127,187646,193165,198684,204203,209722,215241,220760,226279,231798,237317,242836,248355,253874,259393,264912,270431,275950,281469,286988,292507,298026,303545,309064,314583,320102,325621,331140,336659,342178,347697,353216,358735,364254,369773,375292,380811,386330,391849,397368,402887,408406,413925,419444,424963,430482,436001,441520,447039,452558,458077,463596,469115,474634,480153,485672,491191,496710,502229,507748,513267,518786,524305,529824,535343,540862,546381,551900],"measured_values":[145450.0,243933.0,349315.0,530097.0,594832.0,713392.0,845114.0,992347.0,1089560.0,1171404.0,1364562.0,1480676.0,1549848.0,1777974.0,1782107.0,1940590.0,2130674.0,2211826.0,2325536.0,2431250.0,2529641.0,2647924.0,2836865.0,2917513.0,3285872.0,3072031.0,3209586.0,3385379.0,3605169.0,3737973.0,3797514.0,4040774.0,4360687.0,4544894.0,4535926.0,4409534.0,4529018.0,4667544.0,4752347.0,4703650.0,4830646.0,5130525.0,5209296.0,5489950.0,5449042.0,5740874.0,5615787.0,6154407.0,7049167.0,6380287.0,6372690.0,6437100.0,6753388.0,7564340.0,7173932.0,6904811.0,7324710.0,7543711.0,7233365.0,7604600.0,8507224.0,7884018.0,7945056.0,8155069.0,7884714.0,8146576.0,7962631.0,8853813.0,9350879.0,8574180.0,9195588.0,9334289.0,10697407.0,10397186.0,9475714.0,9317504.0,9609370.0,10148993.0,10080792.0,10307363.0,9957170.0,10154394.0,10192460.0,10352888.0,10402648.0,10767858.0,10649426.0,10730059.0,10567021.0,11990477.0,11297940.0,11609160.0,11458036.0,11934508.0,11856173.0,13481592.0,12770883.0,12442089.0,13121865.0,12606473.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":23.017611194858564,"lower_bound":22.758199531889655,"upper_bound":23.297455622244076,"unit":"ns"},"mean":{"estimate":22.76768053781721,"lower_bound":22.557387432299677,"upper_bound":22.99400378136207,"unit":"ns"},"median":{"estimate":22.476396621588233,"lower_bound":22.273604763790186,"upper_bound":22.686655401846476,"unit":"ns"},"median_abs_dev":{"estimate":0.7879791878964069,"lower_bound":0.5681283206265718,"upper_bound":1.028911038818158,"unit":"ns"},"slope":{"estimate":23.017611194858564,"lower_bound":22.758199531889655,"upper_bound":23.297455622244076,"unit":"ns"},"change":{"mean":{"estimate":0.16762513360663678,"lower_bound":0.15358715065438652,"upper_bound":0.1820869285080834,"unit":"%"},"median":{"estimate":0.15483534614022165,"lower_bound":0.1407763083713054,"upper_bound":0.16951618937489177,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"cfe/100","report_directory":"/root/fuel-core/target/criterion/reports/cfe/100","iteration_count":[5518,11036,16554,22072,27590,33108,38626,44144,49662,55180,60698,66216,71734,77252,82770,88288,93806,99324,104842,110360,115878,121396,126914,132432,137950,143468,148986,154504,160022,165540,171058,176576,182094,187612,193130,198648,204166,209684,215202,220720,226238,231756,237274,242792,248310,253828,259346,264864,270382,275900,281418,286936,292454,297972,303490,309008,314526,320044,325562,331080,336598,342116,347634,353152,358670,364188,369706,375224,380742,386260,391778,397296,402814,408332,413850,419368,424886,430404,435922,441440,446958,452476,457994,463512,469030,474548,480066,485584,491102,496620,502138,507656,513174,518692,524210,529728,535246,540764,546282,551800],"measured_values":[156637.0,245510.0,396901.0,490143.0,602212.0,766580.0,891544.0,983148.0,1257817.0,1215150.0,1485232.0,1437961.0,1603121.0,1668040.0,1816538.0,1947920.0,2104688.0,2118941.0,2314546.0,2446767.0,2527308.0,2620037.0,2813921.0,3120089.0,3219182.0,3211068.0,3276557.0,3384913.0,3394679.0,3716776.0,3741437.0,3871369.0,4037569.0,4108789.0,4414285.0,4409052.0,4452053.0,4742715.0,4812639.0,5000613.0,4941290.0,5587145.0,5338645.0,5317582.0,5733555.0,5566446.0,6894449.0,6247479.0,6041638.0,5976805.0,6373295.0,6458915.0,6915941.0,6721583.0,7092884.0,6848058.0,6957423.0,7109750.0,7159433.0,7484236.0,7456618.0,7656781.0,7664598.0,7807406.0,8069442.0,8880463.0,8692600.0,8711017.0,8653281.0,9123841.0,9063663.0,9266250.0,9204515.0,9294934.0,9557423.0,9629809.0,9904719.0,9661017.0,10308815.0,10398266.0,10223486.0,10725526.0,10720055.0,11577038.0,11002362.0,10993421.0,11037715.0,10895674.0,11681048.0,11993030.0,11286012.0,11253644.0,11394018.0,11654504.0,11278445.0,11901243.0,12465020.0,12186258.0,12765741.0,12101231.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":22.875252041587448,"lower_bound":22.680105369380687,"upper_bound":23.073487882554478,"unit":"ns"},"mean":{"estimate":22.759117107742263,"lower_bound":22.566300765165405,"upper_bound":22.975091301710354,"unit":"ns"},"median":{"estimate":22.472471456731867,"lower_bound":22.348133381660023,"upper_bound":22.68724521499351,"unit":"ns"},"median_abs_dev":{"estimate":0.803928865927421,"lower_bound":0.5679171382156054,"upper_bound":0.9788696049976663,"unit":"ns"},"slope":{"estimate":22.875252041587448,"lower_bound":22.680105369380687,"upper_bound":23.073487882554478,"unit":"ns"},"change":{"mean":{"estimate":0.1426288262554254,"lower_bound":0.12810145684131927,"upper_bound":0.15812782776380005,"unit":"%"},"median":{"estimate":0.13099291437568028,"lower_bound":0.11782493004193983,"upper_bound":0.14977966111342966,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"cfe/1000","report_directory":"/root/fuel-core/target/criterion/reports/cfe/1000","iteration_count":[5116,10232,15348,20464,25580,30696,35812,40928,46044,51160,56276,61392,66508,71624,76740,81856,86972,92088,97204,102320,107436,112552,117668,122784,127900,133016,138132,143248,148364,153480,158596,163712,168828,173944,179060,184176,189292,194408,199524,204640,209756,214872,219988,225104,230220,235336,240452,245568,250684,255800,260916,266032,271148,276264,281380,286496,291612,296728,301844,306960,312076,317192,322308,327424,332540,337656,342772,347888,353004,358120,363236,368352,373468,378584,383700,388816,393932,399048,404164,409280,414396,419512,424628,429744,434860,439976,445092,450208,455324,460440,465556,470672,475788,480904,486020,491136,496252,501368,506484,511600],"measured_values":[147813.0,220892.0,339956.0,477678.0,587068.0,721269.0,923543.0,900206.0,981100.0,1233312.0,1393434.0,1510469.0,1516474.0,1695991.0,1845298.0,1858007.0,2044784.0,2135939.0,2183179.0,2284424.0,2630867.0,2682641.0,2677428.0,2889404.0,2936535.0,2967842.0,3218412.0,3307530.0,3312638.0,3322607.0,3872645.0,3880295.0,3786234.0,3906752.0,4364926.0,4212975.0,4560100.0,4259620.0,4746920.0,4639742.0,4739338.0,4878011.0,6191112.0,5006108.0,5606937.0,5429326.0,5620464.0,5548307.0,5629840.0,5774857.0,6072413.0,6014416.0,6052070.0,6315712.0,6524640.0,6658208.0,7013334.0,8247339.0,6906230.0,7031926.0,7542564.0,7039912.0,7326687.0,7357393.0,7881623.0,7636654.0,8143482.0,8027015.0,8090441.0,8135715.0,8402256.0,8377718.0,8929565.0,8768952.0,8730013.0,8679423.0,9270498.0,8968652.0,9246498.0,9420349.0,9276761.0,9310950.0,9436851.0,9657221.0,10353887.0,10040220.0,10259512.0,10440882.0,10768779.0,10464366.0,10707866.0,10519338.0,10521554.0,10757152.0,10885974.0,11738606.0,11902235.0,11616301.0,12108064.0,11696946.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":23.062436230739873,"lower_bound":22.88210114304612,"upper_bound":23.262327317979015,"unit":"ns"},"mean":{"estimate":23.207559335973386,"lower_bound":22.99326093382995,"upper_bound":23.45109051295041,"unit":"ns"},"median":{"estimate":22.934555132519748,"lower_bound":22.75408777237652,"upper_bound":23.16250026414217,"unit":"ns"},"median_abs_dev":{"estimate":0.8040778565830152,"lower_bound":0.5759674489847139,"upper_bound":0.9930890860509523,"unit":"ns"},"slope":{"estimate":23.062436230739873,"lower_bound":22.88210114304612,"upper_bound":23.262327317979015,"unit":"ns"},"change":{"mean":{"estimate":0.20562994178266236,"lower_bound":0.18623154712127743,"upper_bound":0.224159919413367,"unit":"%"},"median":{"estimate":0.20428085485180758,"lower_bound":0.1929795522604882,"upper_bound":0.21632205222632273,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"cfe/10000","report_directory":"/root/fuel-core/target/criterion/reports/cfe/10000","iteration_count":[2240,4480,6720,8960,11200,13440,15680,17920,20160,22400,24640,26880,29120,31360,33600,35840,38080,40320,42560,44800,47040,49280,51520,53760,56000,58240,60480,62720,64960,67200,69440,71680,73920,76160,78400,80640,82880,85120,87360,89600,91840,94080,96320,98560,100800,103040,105280,107520,109760,112000,114240,116480,118720,120960,123200,125440,127680,129920,132160,134400,136640,138880,141120,143360,145600,147840,150080,152320,154560,156800,159040,161280,163520,165760,168000,170240,172480,174720,176960,179200,181440,183680,185920,188160,190400,192640,194880,197120,199360,201600,203840,206080,208320,210560,212800,215040,217280,219520,221760,224000],"measured_values":[57739.0,108144.0,169252.0,212910.0,267200.0,315514.0,376787.0,429684.0,509952.0,538450.0,622806.0,649498.0,721398.0,753182.0,842962.0,849381.0,937163.0,976639.0,1087929.0,1077532.0,1173993.0,1192491.0,1282094.0,1297980.0,1430419.0,1425458.0,1524037.0,1532550.0,1572254.0,1637673.0,1763563.0,1743930.0,1811509.0,1870433.0,1927640.0,1940293.0,2052468.0,2057994.0,2221668.0,2157893.0,2229188.0,2183197.0,2420247.0,2382977.0,2535237.0,2493485.0,2649644.0,2595541.0,2782868.0,2719051.0,2733261.0,2840003.0,2917916.0,2897533.0,2925069.0,3031890.0,3190174.0,3155814.0,3311363.0,3273789.0,3534969.0,3342998.0,3536368.0,3435803.0,3640418.0,3587471.0,3803754.0,3678522.0,3768283.0,3817643.0,3995939.0,3929607.0,4065763.0,4023550.0,4261028.0,4100476.0,4139421.0,4194525.0,4432278.0,4335368.0,4642260.0,4440097.0,4597923.0,4533062.0,4641346.0,4701775.0,4739922.0,4711621.0,5016747.0,4883711.0,5151571.0,4938314.0,5173805.0,5120417.0,5116591.0,5196515.0,5457586.0,5332018.0,5570480.0,5403794.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":24.517424452173362,"lower_bound":24.39180263618001,"upper_bound":24.649150206933104,"unit":"ns"},"mean":{"estimate":24.51836480612973,"lower_bound":24.41228326612888,"upper_bound":24.62691393590863,"unit":"ns"},"median":{"estimate":24.338296795280613,"lower_bound":24.224756944444444,"upper_bound":24.47558379120879,"unit":"ns"},"median_abs_dev":{"estimate":0.46666855254086836,"lower_bound":0.3113245808699424,"upper_bound":0.6735320107696892,"unit":"ns"},"slope":{"estimate":24.517424452173362,"lower_bound":24.39180263618001,"upper_bound":24.649150206933104,"unit":"ns"},"change":{"mean":{"estimate":0.07476676859957165,"lower_bound":0.06712936694251331,"upper_bound":0.08280261149640819,"unit":"%"},"median":{"estimate":0.06691947401810672,"lower_bound":0.055241382436445274,"upper_bound":0.09248546441997972,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"cfe/100000","report_directory":"/root/fuel-core/target/criterion/reports/cfe/100000","iteration_count":[371,742,1113,1484,1855,2226,2597,2968,3339,3710,4081,4452,4823,5194,5565,5936,6307,6678,7049,7420,7791,8162,8533,8904,9275,9646,10017,10388,10759,11130,11501,11872,12243,12614,12985,13356,13727,14098,14469,14840,15211,15582,15953,16324,16695,17066,17437,17808,18179,18550,18921,19292,19663,20034,20405,20776,21147,21518,21889,22260,22631,23002,23373,23744,24115,24486,24857,25228,25599,25970,26341,26712,27083,27454,27825,28196,28567,28938,29309,29680,30051,30422,30793,31164,31535,31906,32277,32648,33019,33390,33761,34132,34503,34874,35245,35616,35987,36358,36729,37100],"measured_values":[8417.0,18010.0,24693.0,35558.0,41062.0,53522.0,57345.0,71281.0,73638.0,88816.0,90190.0,106003.0,106778.0,124943.0,122972.0,141892.0,139311.0,161490.0,156855.0,177631.0,172223.0,195541.0,188317.0,213217.0,205288.0,230109.0,221127.0,247765.0,238534.0,265615.0,270169.0,283257.0,270546.0,316857.0,287395.0,320250.0,303662.0,337940.0,322516.0,355034.0,336295.0,372865.0,366773.0,388024.0,371560.0,404292.0,401514.0,418911.0,404598.0,438622.0,420965.0,458056.0,435526.0,476856.0,452715.0,492716.0,468697.0,509541.0,497547.0,528643.0,499499.0,547827.0,517684.0,565614.0,534025.0,575217.0,523644.0,574252.0,536832.0,587587.0,556546.0,605981.0,598949.0,622778.0,587330.0,637336.0,599052.0,654921.0,620462.0,684184.0,635725.0,688452.0,650055.0,736363.0,664359.0,728028.0,678341.0,742273.0,694265.0,753481.0,712984.0,771810.0,726065.0,793955.0,741784.0,821323.0,757074.0,820470.0,772824.0,833191.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":22.26785812869415,"lower_bound":22.02637328360855,"upper_bound":22.520917594651394,"unit":"ns"},"mean":{"estimate":22.698983675464042,"lower_bound":22.498278934406024,"upper_bound":22.89979527425949,"unit":"ns"},"median":{"estimate":22.619055431852807,"lower_bound":22.219283199422225,"upper_bound":22.79019435769042,"unit":"ns"},"median_abs_dev":{"estimate":1.2931768323313002,"lower_bound":0.6504338431797853,"upper_bound":1.760457591387139,"unit":"ns"},"slope":{"estimate":22.26785812869415,"lower_bound":22.02637328360855,"upper_bound":22.520917594651394,"unit":"ns"},"change":{"mean":{"estimate":0.023293117980628608,"lower_bound":0.009860850062251233,"upper_bound":0.03708558502346707,"unit":"%"},"median":{"estimate":0.008505227058248854,"lower_bound":-0.017493436488939838,"upper_bound":0.02701399033043539,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"cfe/1000000","report_directory":"/root/fuel-core/target/criterion/reports/cfe/1000000","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":[1369.0,2479.0,3655.0,5064.0,6187.0,7557.0,8554.0,9627.0,10666.0,12326.0,13478.0,14673.0,15557.0,16924.0,18122.0,19570.0,20294.0,22298.0,22767.0,24817.0,25129.0,27029.0,27673.0,29555.0,29610.0,31682.0,32799.0,34325.0,34597.0,36571.0,36670.0,38686.0,39598.0,39708.0,41369.0,43647.0,44013.0,47710.0,46636.0,48417.0,52101.0,50641.0,51343.0,52419.0,53946.0,55560.0,56401.0,58215.0,58726.0,59976.0,61154.0,63043.0,63366.0,66237.0,66580.0,67162.0,67973.0,70660.0,71028.0,71132.0,72867.0,75735.0,75584.0,76507.0,77843.0,79259.0,82628.0,81235.0,81446.0,84637.0,85205.0,86948.0,87162.0,87776.0,91381.0,90942.0,92563.0,92624.0,93355.0,95471.0,96908.0,99308.0,97830.0,101304.0,100198.0,102881.0,103645.0,105796.0,105266.0,107848.0,110071.0,111569.0,111451.0,114013.0,112879.0,116537.0,115588.0,116308.0,367197.0,119697.0],"unit":"ns","throughput":[{"per_iteration":1000000,"unit":"bytes"}],"typical":{"estimate":38.56296752063266,"lower_bound":36.28916372638776,"upper_bound":43.442781808106204,"unit":"ns"},"mean":{"estimate":37.36056072412601,"lower_bound":36.49558111361333,"upper_bound":38.97356862582241,"unit":"ns"},"median":{"estimate":36.40925488652762,"lower_bound":36.31787260358689,"upper_bound":36.613155363155364,"unit":"ns"},"median_abs_dev":{"estimate":0.4570917345467351,"lower_bound":0.35535164960510623,"upper_bound":0.622196279768938,"unit":"ns"},"slope":{"estimate":38.56296752063266,"lower_bound":36.28916372638776,"upper_bound":43.442781808106204,"unit":"ns"},"change":{"mean":{"estimate":-0.06753721668309143,"lower_bound":-0.13748708341408714,"upper_bound":0.002779657940050177,"unit":"%"},"median":{"estimate":-0.04339007819992391,"lower_bound":-0.04927730240206274,"upper_bound":-0.031222539271384984,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"cfe/10000000","report_directory":"/root/fuel-core/target/criterion/reports/cfe/10000000","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":[2259.0,1760.0,2130.0,2089.0,1753.0,2152.0,1992.0,1989.0,1898.0,1741.0,2108.0,2083.0,1945.0,1814.0,2148.0,1823.0,2098.0,1973.0,2350.0,1752.0,1844.0,1684.0,1930.0,1470.0,2090.0,1866.0,2046.0,1923.0,2005.0,1523.0,1973.0,2084.0,1643.0,1883.0,1861.0,2066.0,2002.0,2239.0,1809.0,1937.0,2048.0,2461.0,1917.0,2077.0,2047.0,2315.0,2002.0,2218.0,1950.0,2119.0,1834.0,1762.0,1981.0,1944.0,2064.0,1861.0,1918.0,2780.0,2047.0,2128.0,1931.0,2311.0,1649.0,2017.0,1882.0,2332.0,2228.0,2036.0,2376.0,1876.0,1846.0,2052.0,1962.0,2210.0,2071.0,2122.0,2040.0,2466.0,2855.0,2901.0,1969.0,1952.0,1829.0,1712.0,2043.0,2435.0,1892.0,2398.0,2274.0,2633.0,2048.0,1766.0,2075.0,2582.0,2125.0,2094.0,2137.0,2373.0,2556.0,2400.0],"unit":"ns","throughput":[{"per_iteration":10000000,"unit":"bytes"}],"typical":{"estimate":171.38666666666668,"lower_bound":167.20831249999998,"upper_bound":175.74916666666658,"unit":"ns"},"mean":{"estimate":171.38666666666668,"lower_bound":167.20831249999998,"upper_bound":175.74916666666658,"unit":"ns"},"median":{"estimate":170.125,"lower_bound":164.41666666666666,"upper_bound":172.58333333333334,"unit":"ns"},"median_abs_dev":{"estimate":16.555699706077583,"lower_bound":11.922574788331971,"upper_bound":22.67142459750174,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.19650887042267828,"lower_bound":-0.2281410436411144,"upper_bound":-0.16575749715676702,"unit":"%"},"median":{"estimate":-0.18061408789885613,"lower_bound":-0.21531676022453905,"upper_bound":-0.16365098512263765,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"cfe/30000000","report_directory":"/root/fuel-core/target/criterion/reports/cfe/30000000","iteration_count":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],"measured_values":[2073.0,1073.0,1158.0,1245.0,1061.0,1033.0,1054.0,1053.0,779.0,915.0,878.0,909.0,799.0,850.0,852.0,1013.0,937.0,997.0,1051.0,883.0,1043.0,1442.0,1387.0,1450.0,1151.0,1357.0,1116.0,1059.0,1077.0,1583.0,1207.0,918.0,1341.0,1296.0,1216.0,1477.0,1341.0,1496.0,991.0,1254.0,893.0,1332.0,1581.0,967.0,946.0,1170.0,1300.0,1208.0,1762.0,741.0,841.0,1090.0,802.0,1068.0,1367.0,1141.0,1502.0,988.0,1125.0,857.0,591.0,889.0,880.0,974.0,921.0,991.0,1233.0,1018.0,1139.0,1403.0,948.0,1023.0,841.0,1264.0,934.0,1077.0,1035.0,949.0,795.0,1124.0,797.0,838.0,830.0,829.0,1011.0,845.0,977.0,990.0,1340.0,1213.0,1463.0,1181.0,1079.0,1548.0,1232.0,1552.0,1549.0,1018.0,1251.0,1180.0],"unit":"ns","throughput":[{"per_iteration":30000000,"unit":"bytes"}],"typical":{"estimate":278.12,"lower_bound":266.1875,"upper_bound":290.53756250000004,"unit":"ns"},"mean":{"estimate":278.12,"lower_bound":266.1875,"upper_bound":290.53756250000004,"unit":"ns"},"median":{"estimate":265.0,"lower_bound":253.875,"upper_bound":281.875,"unit":"ns"},"median_abs_dev":{"estimate":59.859973937273026,"lower_bound":45.21929919719696,"upper_bound":74.31532368063927,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.032390495077062265,"lower_bound":-0.08486740629683667,"upper_bound":0.02227769870998906,"unit":"%"},"median":{"estimate":-0.07785993910395828,"lower_bound":-0.119254119687771,"upper_bound":0.00660566397810695,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"cfe/60000000","report_directory":"/root/fuel-core/target/criterion/reports/cfe/60000000","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":[1334.0,1260.0,945.0,1597.0,1219.0,823.0,779.0,1580.0,958.0,1684.0,1392.0,1382.0,1469.0,954.0,1500.0,1653.0,1120.0,1624.0,1400.0,1056.0,948.0,1654.0,1168.0,1251.0,1317.0,1208.0,1477.0,1401.0,1051.0,1285.0,1169.0,1185.0,1022.0,924.0,1257.0,883.0,867.0,783.0,898.0,1132.0,1102.0,1039.0,1098.0,1109.0,1059.0,1194.0,1593.0,994.0,1209.0,1082.0,1618.0,1075.0,1055.0,1147.0,1186.0,778.0,964.0,1309.0,1248.0,958.0,978.0,754.0,1295.0,1603.0,1081.0,1308.0,1431.0,1241.0,928.0,797.0,1355.0,1193.0,1369.0,1556.0,777.0,917.0,1460.0,1151.0,1190.0,1370.0,1165.0,778.0,1267.0,1550.0,972.0,1053.0,1114.0,1306.0,1852.0,1428.0,1157.0,906.0,918.0,905.0,714.0,868.0,981.0,1040.0,1567.0,1589.0],"unit":"ns","throughput":[{"per_iteration":60000000,"unit":"bytes"}],"typical":{"estimate":591.55,"lower_bound":566.504875,"upper_bound":616.885125,"unit":"ns"},"mean":{"estimate":591.55,"lower_bound":566.504875,"upper_bound":616.885125,"unit":"ns"},"median":{"estimate":583.25,"lower_bound":546.0,"upper_bound":612.5,"unit":"ns"},"median_abs_dev":{"estimate":150.11324733495712,"lower_bound":106.0058981180191,"upper_bound":173.83484691381454,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0758258668770555,"lower_bound":-0.1308206162265114,"upper_bound":-0.02162093502904925,"unit":"%"},"median":{"estimate":-0.06530448717948723,"lower_bound":-0.13234890761630347,"upper_bound":0.005061155630535552,"unit":"%"},"change":"Improved"}} -{"reason":"group-complete","group_name":"cfe","benchmarks":["cfe/1","cfe/10","cfe/100","cfe/1000","cfe/10000","cfe/100000","cfe/1000000","cfe/10000000","cfe/30000000","cfe/60000000"],"report_directory":"/root/fuel-core/target/criterion/reports/cfe"} -{"reason":"benchmark-complete","id":"cfei/1","report_directory":"/root/fuel-core/target/criterion/reports/cfei/1","iteration_count":[5630,11260,16890,22520,28150,33780,39410,45040,50670,56300,61930,67560,73190,78820,84450,90080,95710,101340,106970,112600,118230,123860,129490,135120,140750,146380,152010,157640,163270,168900,174530,180160,185790,191420,197050,202680,208310,213940,219570,225200,230830,236460,242090,247720,253350,258980,264610,270240,275870,281500,287130,292760,298390,304020,309650,315280,320910,326540,332170,337800,343430,349060,354690,360320,365950,371580,377210,382840,388470,394100,399730,405360,410990,416620,422250,427880,433510,439140,444770,450400,456030,461660,467290,472920,478550,484180,489810,495440,501070,506700,512330,517960,523590,529220,534850,540480,546110,551740,557370,563000],"measured_values":[150938.0,261050.0,392774.0,536397.0,657401.0,840922.0,926262.0,1008056.0,1059523.0,1190712.0,1355155.0,1480231.0,1597469.0,1694535.0,1848702.0,2064647.0,2143547.0,2194014.0,2345122.0,2780762.0,2880850.0,3126020.0,3059802.0,3135524.0,3304195.0,3571507.0,3460816.0,3897806.0,3607446.0,3724844.0,3843963.0,4506316.0,4280250.0,4668288.0,4393386.0,4357233.0,4955448.0,5143767.0,5253857.0,5617910.0,5329619.0,5299727.0,5635232.0,5646640.0,5783026.0,6227498.0,5882964.0,6127454.0,6070016.0,6988973.0,6557612.0,7025708.0,6801245.0,7280345.0,6994057.0,6920802.0,7205725.0,8143397.0,7738647.0,8461174.0,8036597.0,8009932.0,7819905.0,8365637.0,8344774.0,8464432.0,8188528.0,8268543.0,8406357.0,8729843.0,8760466.0,8845772.0,8797564.0,10028345.0,9657193.0,9727733.0,10429495.0,9817122.0,10406750.0,10450531.0,10245009.0,9991433.0,10594822.0,10848236.0,10485136.0,10891293.0,10934919.0,11926411.0,11623292.0,12079313.0,11841419.0,11928820.0,11589608.0,11584729.0,11777905.0,12472653.0,12637769.0,13389694.0,13085253.0,13356494.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":22.915599960208105,"lower_bound":22.702872544792477,"upper_bound":23.12945279854839,"unit":"ns"},"mean":{"estimate":23.003685158553008,"lower_bound":22.795785804629144,"upper_bound":23.217968528129607,"unit":"ns"},"median":{"estimate":22.895471654825343,"lower_bound":22.674119301361753,"upper_bound":23.183836589698046,"unit":"ns"},"median_abs_dev":{"estimate":1.2381518043061552,"lower_bound":0.853097486906309,"upper_bound":1.4371159384580046,"unit":"ns"},"slope":{"estimate":22.915599960208105,"lower_bound":22.702872544792477,"upper_bound":23.12945279854839,"unit":"ns"},"change":{"mean":{"estimate":0.1608751755466422,"lower_bound":0.14699347294570717,"upper_bound":0.1758944186100061,"unit":"%"},"median":{"estimate":0.15874625585284763,"lower_bound":0.1454427596118929,"upper_bound":0.17393128846972972,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"cfei/10","report_directory":"/root/fuel-core/target/criterion/reports/cfei/10","iteration_count":[5611,11222,16833,22444,28055,33666,39277,44888,50499,56110,61721,67332,72943,78554,84165,89776,95387,100998,106609,112220,117831,123442,129053,134664,140275,145886,151497,157108,162719,168330,173941,179552,185163,190774,196385,201996,207607,213218,218829,224440,230051,235662,241273,246884,252495,258106,263717,269328,274939,280550,286161,291772,297383,302994,308605,314216,319827,325438,331049,336660,342271,347882,353493,359104,364715,370326,375937,381548,387159,392770,398381,403992,409603,415214,420825,426436,432047,437658,443269,448880,454491,460102,465713,471324,476935,482546,488157,493768,499379,504990,510601,516212,521823,527434,533045,538656,544267,549878,555489,561100],"measured_values":[165836.0,238233.0,384422.0,522334.0,637126.0,826087.0,916582.0,980960.0,1135673.0,1224300.0,1316817.0,1552703.0,1610197.0,1748222.0,1960554.0,2012792.0,2158243.0,2187372.0,2380825.0,2481161.0,2596346.0,2790513.0,2791131.0,3199402.0,3316399.0,3252165.0,3340103.0,3546922.0,3690129.0,3664877.0,3854363.0,4214001.0,4189914.0,4335339.0,4650799.0,4961517.0,4640157.0,4729495.0,4937353.0,5080305.0,5361016.0,5652319.0,6125592.0,5383130.0,5837064.0,6485438.0,6566463.0,6416026.0,6389595.0,6303954.0,6327791.0,6471252.0,7411633.0,7249568.0,7653701.0,7342189.0,7259227.0,7659393.0,7298014.0,7556825.0,8424768.0,7996075.0,8077466.0,7782320.0,8158452.0,8339277.0,8759883.0,8714729.0,8765445.0,8665100.0,8982426.0,9644659.0,9574900.0,9863271.0,10434978.0,13154786.0,10025300.0,10073299.0,10768481.0,10883387.0,10347273.0,10505390.0,11355748.0,10727848.0,10657578.0,10583474.0,11391052.0,11916743.0,11636934.0,11264133.0,11559936.0,11707705.0,12136794.0,13123116.0,12610611.0,13216942.0,13027684.0,12363437.0,13507291.0,12561631.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":23.37982525932497,"lower_bound":23.073213208889936,"upper_bound":23.75113577823296,"unit":"ns"},"mean":{"estimate":23.166757573657293,"lower_bound":22.916226091232293,"upper_bound":23.45632856786305,"unit":"ns"},"median":{"estimate":22.799734744807793,"lower_bound":22.634054058577316,"upper_bound":23.240045973834196,"unit":"ns"},"median_abs_dev":{"estimate":0.8855197555092262,"lower_bound":0.7216490800311238,"upper_bound":1.1988709598243217,"unit":"ns"},"slope":{"estimate":23.37982525932497,"lower_bound":23.073213208889936,"upper_bound":23.75113577823296,"unit":"ns"},"change":{"mean":{"estimate":0.18104386724455268,"lower_bound":0.16461327493861486,"upper_bound":0.19831083324785176,"unit":"%"},"median":{"estimate":0.1634973212351627,"lower_bound":0.15004645928602534,"upper_bound":0.183967932439691,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"cfei/100","report_directory":"/root/fuel-core/target/criterion/reports/cfei/100","iteration_count":[5487,10974,16461,21948,27435,32922,38409,43896,49383,54870,60357,65844,71331,76818,82305,87792,93279,98766,104253,109740,115227,120714,126201,131688,137175,142662,148149,153636,159123,164610,170097,175584,181071,186558,192045,197532,203019,208506,213993,219480,224967,230454,235941,241428,246915,252402,257889,263376,268863,274350,279837,285324,290811,296298,301785,307272,312759,318246,323733,329220,334707,340194,345681,351168,356655,362142,367629,373116,378603,384090,389577,395064,400551,406038,411525,417012,422499,427986,433473,438960,444447,449934,455421,460908,466395,471882,477369,482856,488343,493830,499317,504804,510291,515778,521265,526752,532239,537726,543213,548700],"measured_values":[146187.0,237653.0,338242.0,447831.0,606238.0,674190.0,845656.0,913692.0,1074172.0,1287943.0,1443705.0,1403833.0,1546775.0,1630832.0,1719577.0,1844899.0,2006905.0,2221257.0,2441509.0,2321533.0,2629908.0,2675922.0,2660503.0,2785731.0,3188096.0,3390118.0,3378543.0,3346731.0,3498400.0,3550473.0,3807176.0,3858271.0,4053003.0,4475272.0,4702454.0,4539922.0,4495380.0,4641666.0,4803622.0,4926230.0,5272190.0,5134604.0,5364790.0,5500063.0,5672743.0,5417861.0,5546410.0,5693238.0,5882798.0,6014021.0,6061256.0,6172517.0,6448450.0,6467490.0,6539586.0,7525787.0,7594828.0,6919912.0,7016527.0,7052590.0,7286558.0,7253751.0,7926875.0,8114669.0,8662696.0,8621652.0,8409185.0,7969900.0,8887432.0,9180345.0,8803088.0,8717932.0,8803424.0,9363151.0,9356976.0,9291840.0,10007853.0,9959099.0,9775653.0,10919358.0,10504828.0,9801688.0,10027646.0,10128314.0,10523911.0,10234605.0,10375198.0,10917564.0,11550333.0,11211796.0,11794207.0,11295167.0,11848332.0,11699996.0,12273539.0,11814599.0,11954500.0,11866452.0,11745246.0,12485727.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":22.618488330721064,"lower_bound":22.414990865369084,"upper_bound":22.825541221267674,"unit":"ns"},"mean":{"estimate":22.426612020169056,"lower_bound":22.224075059531966,"upper_bound":22.63602250153707,"unit":"ns"},"median":{"estimate":22.281167197198393,"lower_bound":22.001958703008334,"upper_bound":22.55193057007011,"unit":"ns"},"median_abs_dev":{"estimate":0.9239394374762483,"lower_bound":0.7150718687632687,"upper_bound":1.2195090699511661,"unit":"ns"},"slope":{"estimate":22.618488330721064,"lower_bound":22.414990865369084,"upper_bound":22.825541221267674,"unit":"ns"},"change":{"mean":{"estimate":0.1524144363072355,"lower_bound":0.13897277088638654,"upper_bound":0.1657476487969638,"unit":"%"},"median":{"estimate":0.1472714650339486,"lower_bound":0.13005161441390078,"upper_bound":0.16365605493924384,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"cfei/1000","report_directory":"/root/fuel-core/target/criterion/reports/cfei/1000","iteration_count":[5099,10198,15297,20396,25495,30594,35693,40792,45891,50990,56089,61188,66287,71386,76485,81584,86683,91782,96881,101980,107079,112178,117277,122376,127475,132574,137673,142772,147871,152970,158069,163168,168267,173366,178465,183564,188663,193762,198861,203960,209059,214158,219257,224356,229455,234554,239653,244752,249851,254950,260049,265148,270247,275346,280445,285544,290643,295742,300841,305940,311039,316138,321237,326336,331435,336534,341633,346732,351831,356930,362029,367128,372227,377326,382425,387524,392623,397722,402821,407920,413019,418118,423217,428316,433415,438514,443613,448712,453811,458910,464009,469108,474207,479306,484405,489504,494603,499702,504801,509900],"measured_values":[134735.0,220402.0,322697.0,452179.0,607206.0,686675.0,806529.0,875149.0,1028154.0,1066236.0,1258327.0,1320006.0,1439738.0,1525736.0,1730265.0,1828121.0,2020936.0,2032941.0,2109832.0,2234331.0,2442362.0,2526537.0,2750305.0,2750023.0,2924164.0,3051354.0,3137347.0,3149361.0,3338724.0,3281252.0,3664869.0,3733440.0,3981159.0,3724068.0,3976287.0,4067331.0,4111180.0,4370144.0,4487562.0,4575172.0,5009971.0,4778389.0,5178576.0,5177039.0,5271434.0,5247790.0,5449464.0,5746261.0,6292524.0,5662756.0,5768296.0,6511180.0,6066164.0,6169000.0,6248017.0,6378188.0,6662141.0,6701610.0,7002974.0,7125637.0,7414873.0,6996681.0,7296061.0,8172986.0,7778830.0,8033599.0,8152428.0,8043570.0,8319894.0,8016221.0,8660828.0,8225325.0,8626706.0,8315841.0,9086375.0,9657837.0,9344804.0,9161869.0,8925424.0,9441794.0,10171735.0,9693859.0,10025702.0,10105482.0,10308281.0,9962698.0,9713027.0,10191691.0,10646745.0,10156556.0,10160002.0,10471966.0,11381639.0,10669619.0,10781280.0,11616478.0,11419127.0,11346287.0,11665644.0,11526744.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":23.032686045209825,"lower_bound":22.837642338480386,"upper_bound":23.232862568061257,"unit":"ns"},"mean":{"estimate":22.839506603706003,"lower_bound":22.66213185253521,"upper_bound":23.022598103069058,"unit":"ns"},"median":{"estimate":22.683216196853323,"lower_bound":22.45880424733141,"upper_bound":22.939117474014513,"unit":"ns"},"median_abs_dev":{"estimate":0.7714488202737967,"lower_bound":0.5974972406761672,"upper_bound":1.0334863362932536,"unit":"ns"},"slope":{"estimate":23.032686045209825,"lower_bound":22.837642338480386,"upper_bound":23.232862568061257,"unit":"ns"},"change":{"mean":{"estimate":0.16459845030286835,"lower_bound":0.14758655007685426,"upper_bound":0.17945630604999646,"unit":"%"},"median":{"estimate":0.1702669175907574,"lower_bound":0.15280249839340576,"upper_bound":0.18452565902630824,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"cfei/10000","report_directory":"/root/fuel-core/target/criterion/reports/cfei/10000","iteration_count":[2266,4532,6798,9064,11330,13596,15862,18128,20394,22660,24926,27192,29458,31724,33990,36256,38522,40788,43054,45320,47586,49852,52118,54384,56650,58916,61182,63448,65714,67980,70246,72512,74778,77044,79310,81576,83842,86108,88374,90640,92906,95172,97438,99704,101970,104236,106502,108768,111034,113300,115566,117832,120098,122364,124630,126896,129162,131428,133694,135960,138226,140492,142758,145024,147290,149556,151822,154088,156354,158620,160886,163152,165418,167684,169950,172216,174482,176748,179014,181280,183546,185812,188078,190344,192610,194876,197142,199408,201674,203940,206206,208472,210738,213004,215270,217536,219802,222068,224334,226600],"measured_values":[56305.0,110897.0,165342.0,223305.0,274943.0,313987.0,361921.0,414310.0,460498.0,520729.0,559726.0,616128.0,699384.0,757362.0,764292.0,825323.0,903925.0,1001630.0,1050958.0,1114573.0,1111515.0,1230556.0,1262890.0,1336465.0,1359956.0,1368571.0,1450278.0,1472986.0,1495585.0,1639158.0,1717721.0,1788884.0,1799936.0,1890545.0,1928025.0,2007328.0,2031011.0,2125734.0,2028785.0,2155809.0,2186318.0,2339153.0,2383997.0,2435081.0,2439586.0,2410386.0,2431950.0,2541405.0,2699997.0,2774039.0,2837300.0,2957642.0,2913900.0,2962399.0,2861119.0,3113056.0,3178369.0,3228564.0,3254999.0,3361042.0,3348417.0,3464517.0,3459800.0,3566201.0,3594087.0,3693159.0,3721764.0,3763851.0,3804876.0,3866057.0,3922111.0,4030456.0,4007251.0,4113155.0,4127647.0,4233292.0,4179044.0,4139932.0,4286867.0,4355179.0,4202566.0,4236710.0,4276799.0,4390775.0,4318269.0,4555060.0,4724044.0,4765951.0,4825202.0,4835251.0,5015146.0,5034444.0,5103306.0,5228661.0,5259309.0,5346346.0,5344489.0,5467310.0,5504750.0,5555080.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":24.081801884724047,"lower_bound":23.919276733443713,"upper_bound":24.2292232336089,"unit":"ns"},"mean":{"estimate":23.984850205022152,"lower_bound":23.847737706952746,"upper_bound":24.115947098406743,"unit":"ns"},"median":{"estimate":24.2490524272902,"lower_bound":24.068476941747573,"upper_bound":24.35404151568145,"unit":"ns"},"median_abs_dev":{"estimate":0.4869541427735425,"lower_bound":0.35466984219882103,"upper_bound":0.7398405869742137,"unit":"ns"},"slope":{"estimate":24.081801884724047,"lower_bound":23.919276733443713,"upper_bound":24.2292232336089,"unit":"ns"},"change":{"mean":{"estimate":-0.011023609382635136,"lower_bound":-0.021907825072829738,"upper_bound":-0.000552488944701529,"unit":"%"},"median":{"estimate":0.02336363444219991,"lower_bound":-0.017324396445458357,"upper_bound":0.03764964059352645,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"cfei/100000","report_directory":"/root/fuel-core/target/criterion/reports/cfei/100000","iteration_count":[371,742,1113,1484,1855,2226,2597,2968,3339,3710,4081,4452,4823,5194,5565,5936,6307,6678,7049,7420,7791,8162,8533,8904,9275,9646,10017,10388,10759,11130,11501,11872,12243,12614,12985,13356,13727,14098,14469,14840,15211,15582,15953,16324,16695,17066,17437,17808,18179,18550,18921,19292,19663,20034,20405,20776,21147,21518,21889,22260,22631,23002,23373,23744,24115,24486,24857,25228,25599,25970,26341,26712,27083,27454,27825,28196,28567,28938,29309,29680,30051,30422,30793,31164,31535,31906,32277,32648,33019,33390,33761,34132,34503,34874,35245,35616,35987,36358,36729,37100],"measured_values":[9602.0,17488.0,26235.0,34834.0,43672.0,52198.0,61696.0,70158.0,78791.0,87828.0,96311.0,104802.0,113719.0,123768.0,131834.0,136601.0,149201.0,153746.0,166380.0,171141.0,183994.0,187111.0,202428.0,206123.0,219222.0,227555.0,237510.0,244008.0,253839.0,261080.0,271517.0,277480.0,288774.0,293301.0,308397.0,309443.0,325354.0,327010.0,342084.0,345118.0,362509.0,344632.0,379626.0,374068.0,395105.0,390699.0,376004.0,419777.0,395059.0,437236.0,425656.0,452648.0,427863.0,471196.0,447141.0,488805.0,501939.0,504603.0,516599.0,519385.0,535364.0,541763.0,552232.0,553660.0,569767.0,569533.0,587189.0,563556.0,618893.0,580109.0,622604.0,619705.0,694947.0,646213.0,659316.0,665617.0,692358.0,682417.0,697172.0,700971.0,712703.0,727893.0,691738.0,734966.0,725433.0,723552.0,739740.0,743982.0,757619.0,776652.0,771940.0,778736.0,791310.0,793076.0,805587.0,813280.0,819779.0,830212.0,838649.0,847359.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":23.20237426993293,"lower_bound":23.065936361636133,"upper_bound":23.35732438818853,"unit":"ns"},"mean":{"estimate":23.34325471622213,"lower_bound":23.222766530514164,"upper_bound":23.4654912101935,"unit":"ns"},"median":{"estimate":23.53922925621039,"lower_bound":23.37264150943396,"upper_bound":23.583814657938646,"unit":"ns"},"median_abs_dev":{"estimate":0.30956006188965524,"lower_bound":0.17759551408843016,"upper_bound":0.4827602348372324,"unit":"ns"},"slope":{"estimate":23.20237426993293,"lower_bound":23.065936361636133,"upper_bound":23.35732438818853,"unit":"ns"},"change":{"mean":{"estimate":-0.08501066533853274,"lower_bound":-0.10436949753268965,"upper_bound":-0.06498761358646063,"unit":"%"},"median":{"estimate":-0.023434959853301907,"lower_bound":-0.14520229003127283,"upper_bound":-0.009484489687230702,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"cfei/1000000","report_directory":"/root/fuel-core/target/criterion/reports/cfei/1000000","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":[1255.0,2501.0,3598.0,4933.0,6034.0,7428.0,8475.0,9954.0,10756.0,12112.0,13182.0,14732.0,15742.0,17120.0,18353.0,19571.0,20879.0,22033.0,23109.0,24214.0,25444.0,26345.0,27448.0,29009.0,29581.0,30953.0,32188.0,33107.0,33775.0,35927.0,36262.0,38192.0,39002.0,40427.0,41293.0,42576.0,44053.0,44942.0,46067.0,47425.0,48874.0,49974.0,50423.0,52580.0,53411.0,55146.0,55387.0,57367.0,58730.0,59948.0,60464.0,62778.0,65835.0,63741.0,64715.0,66242.0,68222.0,68922.0,69200.0,70507.0,73121.0,73473.0,76034.0,75876.0,76638.0,78240.0,78654.0,80631.0,83308.0,83232.0,84573.0,85811.0,86737.0,87951.0,89681.0,90205.0,90866.0,93586.0,95049.0,94770.0,95106.0,97703.0,98579.0,99503.0,101299.0,101955.0,103283.0,104672.0,105915.0,106917.0,107733.0,109192.0,109056.0,112457.0,112458.0,112269.0,113569.0,114740.0,115253.0,118840.0],"unit":"ns","throughput":[{"per_iteration":1000000,"unit":"bytes"}],"typical":{"estimate":35.95371772998195,"lower_bound":35.86917187099652,"upper_bound":36.04008542328344,"unit":"ns"},"mean":{"estimate":36.2020247212088,"lower_bound":36.09530662373723,"upper_bound":36.31511390946737,"unit":"ns"},"median":{"estimate":36.059292767157935,"lower_bound":35.986781609195404,"upper_bound":36.16337285902503,"unit":"ns"},"median_abs_dev":{"estimate":0.3703096352989709,"lower_bound":0.2746910972163041,"upper_bound":0.5045356469616842,"unit":"ns"},"slope":{"estimate":35.95371772998195,"lower_bound":35.86917187099652,"upper_bound":36.04008542328344,"unit":"ns"},"change":{"mean":{"estimate":-0.10549005644986564,"lower_bound":-0.11783904057441366,"upper_bound":-0.09313616215791369,"unit":"%"},"median":{"estimate":-0.13762045694773428,"lower_bound":-0.14513957454447535,"upper_bound":-0.06309302641714609,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"cfei/10000000","report_directory":"/root/fuel-core/target/criterion/reports/cfei/10000000","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":[1818.0,1891.0,1879.0,1898.0,2037.0,1752.0,2035.0,1807.0,1874.0,1865.0,2193.0,1955.0,2148.0,1975.0,2283.0,2059.0,1899.0,1721.0,1910.0,2030.0,1838.0,2114.0,2108.0,1973.0,1977.0,2037.0,2046.0,1820.0,1609.0,1831.0,1510.0,1865.0,2119.0,1933.0,1867.0,1809.0,1897.0,2228.0,2198.0,2298.0,1990.0,1988.0,2167.0,1901.0,2167.0,2425.0,1869.0,2107.0,2578.0,1716.0,2051.0,1998.0,2082.0,2106.0,2594.0,2083.0,2228.0,1853.0,2100.0,1875.0,1988.0,2170.0,2321.0,1911.0,2280.0,2149.0,1958.0,2058.0,2465.0,2152.0,2144.0,2657.0,1951.0,1962.0,1807.0,2048.0,1843.0,2171.0,1894.0,2076.0,1956.0,2114.0,1952.0,1897.0,2025.0,1882.0,1981.0,1905.0,1846.0,1793.0,1851.0,1927.0,2095.0,1755.0,1963.0,1982.0,1830.0,2216.0,1861.0,1833.0],"unit":"ns","throughput":[{"per_iteration":10000000,"unit":"bytes"}],"typical":{"estimate":167.21083333333328,"lower_bound":164.0966666666666,"upper_bound":170.4808541666667,"unit":"ns"},"mean":{"estimate":167.21083333333328,"lower_bound":164.0966666666666,"upper_bound":170.4808541666667,"unit":"ns"},"median":{"estimate":164.66666666666669,"lower_bound":161.08333333333334,"upper_bound":169.58333333333334,"unit":"ns"},"median_abs_dev":{"estimate":14.455349743366241,"lower_bound":11.119499802589417,"upper_bound":17.173449695110293,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.2403564762759287,"lower_bound":-0.2691592373836623,"upper_bound":-0.20862407623868323,"unit":"%"},"median":{"estimate":-0.24233128834355822,"lower_bound":-0.28568814055636893,"upper_bound":-0.18511106663998378,"unit":"%"},"change":"Improved"}} -{"reason":"group-complete","group_name":"cfei","benchmarks":["cfei/cfei","cfei/1","cfei/10","cfei/100","cfei/1000","cfei/10000","cfei/100000","cfei/1000000","cfei/10000000"],"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":[5122,10244,15366,20488,25610,30732,35854,40976,46098,51220,56342,61464,66586,71708,76830,81952,87074,92196,97318,102440,107562,112684,117806,122928,128050,133172,138294,143416,148538,153660,158782,163904,169026,174148,179270,184392,189514,194636,199758,204880,210002,215124,220246,225368,230490,235612,240734,245856,250978,256100,261222,266344,271466,276588,281710,286832,291954,297076,302198,307320,312442,317564,322686,327808,332930,338052,343174,348296,353418,358540,363662,368784,373906,379028,384150,389272,394394,399516,404638,409760,414882,420004,425126,430248,435370,440492,445614,450736,455858,460980,466102,471224,476346,481468,486590,491712,496834,501956,507078,512200],"measured_values":[166051.0,312197.0,443468.0,599788.0,755040.0,874111.0,1079162.0,1207758.0,1434786.0,1510657.0,1741160.0,1769425.0,1981291.0,2134922.0,2356586.0,2393513.0,2687092.0,2723485.0,3000846.0,3027231.0,3232192.0,3318789.0,3670257.0,3655391.0,4024764.0,3946798.0,4347955.0,4211082.0,4576879.0,4513732.0,5016915.0,4862048.0,5251851.0,5060520.0,5515075.0,5467959.0,5789419.0,5720942.0,6025089.0,6012281.0,6489351.0,6356190.0,6648849.0,6690750.0,6936525.0,6996649.0,7411157.0,7216223.0,7682231.0,7643603.0,7931635.0,7811306.0,8093507.0,8160191.0,8583561.0,8494231.0,8848700.0,8786142.0,9278865.0,9048761.0,9578602.0,9392183.0,9778396.0,9540805.0,10104685.0,9986307.0,10777882.0,10243112.0,10895239.0,10522324.0,10832711.0,10898632.0,11322896.0,11325972.0,11972160.0,11534413.0,12056863.0,11751674.0,12352963.0,12056726.0,12659646.0,12391986.0,12601486.0,12687693.0,13217976.0,12989580.0,13269505.0,13122402.0,13827453.0,13682009.0,14166966.0,13785025.0,14553198.0,14137710.0,14688301.0,14425671.0,14940577.0,14902324.0,15420722.0,15110368.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":29.93261601264884,"lower_bound":29.799461573449623,"upper_bound":30.07180317731902,"unit":"ns"},"mean":{"estimate":29.999982954691454,"lower_bound":29.863400643585212,"upper_bound":30.14009600848985,"unit":"ns"},"median":{"estimate":29.763903609081275,"lower_bound":29.636248012044476,"upper_bound":30.128315261466373,"unit":"ns"},"median_abs_dev":{"estimate":0.6232983637723999,"lower_bound":0.42134601653366455,"upper_bound":0.8747378316232504,"unit":"ns"},"slope":{"estimate":29.93261601264884,"lower_bound":29.799461573449623,"upper_bound":30.07180317731902,"unit":"ns"},"change":{"mean":{"estimate":0.02463397170653092,"lower_bound":0.01666401057298855,"upper_bound":0.03242590812487214,"unit":"%"},"median":{"estimate":0.020757682123080157,"lower_bound":0.010505176524920445,"upper_bound":0.03919678216974942,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"mcl/10","report_directory":"/root/fuel-core/target/criterion/reports/mcl/10","iteration_count":[5216,10432,15648,20864,26080,31296,36512,41728,46944,52160,57376,62592,67808,73024,78240,83456,88672,93888,99104,104320,109536,114752,119968,125184,130400,135616,140832,146048,151264,156480,161696,166912,172128,177344,182560,187776,192992,198208,203424,208640,213856,219072,224288,229504,234720,239936,245152,250368,255584,260800,266016,271232,276448,281664,286880,292096,297312,302528,307744,312960,318176,323392,328608,333824,339040,344256,349472,354688,359904,365120,370336,375552,380768,385984,391200,396416,401632,406848,412064,417280,422496,427712,432928,438144,443360,448576,453792,459008,464224,469440,474656,479872,485088,490304,495520,500736,505952,511168,516384,521600],"measured_values":[163887.0,313825.0,494649.0,592163.0,734731.0,876754.0,1019095.0,1171143.0,1360327.0,1490194.0,1673710.0,1759116.0,1935843.0,2148630.0,2262205.0,2349207.0,2547294.0,2721503.0,2897473.0,2984771.0,3207553.0,3269088.0,3471739.0,3490003.0,3705404.0,3788237.0,4008698.0,4151382.0,4301383.0,4382066.0,4695864.0,4801551.0,5021630.0,5034892.0,5315547.0,5247846.0,5523457.0,5531978.0,5868418.0,5976022.0,6288915.0,6228388.0,6533292.0,6436268.0,6797805.0,6896534.0,7082245.0,7229435.0,7464296.0,7436576.0,7757831.0,7856355.0,7880846.0,7937987.0,8442992.0,8305508.0,8492401.0,8495150.0,8770064.0,8847828.0,9155999.0,9170317.0,9578083.0,9508496.0,9724314.0,9917769.0,10233249.0,10022152.0,10496106.0,10394973.0,10796038.0,10872290.0,11013035.0,10990823.0,11230589.0,11319782.0,11738747.0,11577500.0,11890784.0,11724024.0,12075011.0,11997738.0,12452733.0,12658036.0,13046696.0,12713373.0,13089112.0,12929306.0,13564826.0,13776749.0,13864855.0,13740683.0,14251781.0,14174600.0,14783777.0,14925716.0,14788010.0,14647738.0,14921065.0,15552984.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":28.860714701941305,"lower_bound":28.72851463932336,"upper_bound":28.9908507047147,"unit":"ns"},"mean":{"estimate":28.78937019865639,"lower_bound":28.6731843556611,"upper_bound":28.914523021631677,"unit":"ns"},"median":{"estimate":28.735187471561044,"lower_bound":28.569670245398772,"upper_bound":28.889199353870254,"unit":"ns"},"median_abs_dev":{"estimate":0.5172708991740309,"lower_bound":0.38939175439216317,"upper_bound":0.6695265548739232,"unit":"ns"},"slope":{"estimate":28.860714701941305,"lower_bound":28.72851463932336,"upper_bound":28.9908507047147,"unit":"ns"},"change":{"mean":{"estimate":0.02926154688156335,"lower_bound":0.021106923743204043,"upper_bound":0.03764648170309855,"unit":"%"},"median":{"estimate":0.024740016619783978,"lower_bound":0.01140171378631849,"upper_bound":0.0379694657223828,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"mcl/100","report_directory":"/root/fuel-core/target/criterion/reports/mcl/100","iteration_count":[5117,10234,15351,20468,25585,30702,35819,40936,46053,51170,56287,61404,66521,71638,76755,81872,86989,92106,97223,102340,107457,112574,117691,122808,127925,133042,138159,143276,148393,153510,158627,163744,168861,173978,179095,184212,189329,194446,199563,204680,209797,214914,220031,225148,230265,235382,240499,245616,250733,255850,260967,266084,271201,276318,281435,286552,291669,296786,301903,307020,312137,317254,322371,327488,332605,337722,342839,347956,353073,358190,363307,368424,373541,378658,383775,388892,394009,399126,404243,409360,414477,419594,424711,429828,434945,440062,445179,450296,455413,460530,465647,470764,475881,480998,486115,491232,496349,501466,506583,511700],"measured_values":[175799.0,297039.0,437720.0,581000.0,746447.0,896296.0,1047884.0,1182823.0,1372085.0,1515156.0,1646286.0,1806114.0,1931679.0,2108346.0,2281607.0,2440619.0,2550556.0,2687456.0,2818680.0,2979976.0,3108652.0,3347075.0,3453166.0,3643787.0,3718731.0,3866030.0,3975724.0,4173565.0,4376017.0,4512730.0,4652668.0,4761120.0,4911587.0,5092817.0,5311351.0,5390388.0,5637297.0,5742047.0,5863916.0,5991447.0,6104956.0,6378793.0,6551646.0,6578863.0,6798943.0,7316377.0,7369056.0,7195245.0,7336172.0,7560587.0,7620871.0,7756294.0,8125032.0,8559113.0,8368387.0,8351228.0,8473771.0,8687757.0,8817379.0,8973072.0,9131102.0,9515718.0,9748488.0,9677801.0,9705496.0,9925256.0,10019880.0,10124396.0,10343478.0,10895295.0,10899515.0,10801717.0,11006227.0,11180417.0,11398489.0,11328297.0,11499521.0,11756337.0,11713627.0,11853956.0,12205319.0,12498624.0,12561770.0,12646512.0,12696467.0,12969686.0,12923718.0,13398868.0,13328054.0,13630022.0,13482381.0,13717044.0,13802729.0,14060029.0,14250786.0,14374519.0,14797920.0,14823040.0,14943838.0,15204441.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":29.436613027868436,"lower_bound":29.352801835748075,"upper_bound":29.52639750057086,"unit":"ns"},"mean":{"estimate":29.45170835936891,"lower_bound":29.34065866291114,"upper_bound":29.59226740033843,"unit":"ns"},"median":{"estimate":29.30562360221615,"lower_bound":29.254976409168318,"upper_bound":29.422261928027023,"unit":"ns"},"median_abs_dev":{"estimate":0.32606573482431594,"lower_bound":0.23746477573169897,"upper_bound":0.40758825639306123,"unit":"ns"},"slope":{"estimate":29.436613027868436,"lower_bound":29.352801835748075,"upper_bound":29.52639750057086,"unit":"ns"},"change":{"mean":{"estimate":0.030881960144338638,"lower_bound":0.022709665017230464,"upper_bound":0.039303493809986816,"unit":"%"},"median":{"estimate":0.03250415808191587,"lower_bound":0.026869081228764413,"upper_bound":0.03857484181747051,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"mcl/1000","report_directory":"/root/fuel-core/target/criterion/reports/mcl/1000","iteration_count":[4476,8952,13428,17904,22380,26856,31332,35808,40284,44760,49236,53712,58188,62664,67140,71616,76092,80568,85044,89520,93996,98472,102948,107424,111900,116376,120852,125328,129804,134280,138756,143232,147708,152184,156660,161136,165612,170088,174564,179040,183516,187992,192468,196944,201420,205896,210372,214848,219324,223800,228276,232752,237228,241704,246180,250656,255132,259608,264084,268560,273036,277512,281988,286464,290940,295416,299892,304368,308844,313320,317796,322272,326748,331224,335700,340176,344652,349128,353604,358080,362556,367032,371508,375984,380460,384936,389412,393888,398364,402840,407316,411792,416268,420744,425220,429696,434172,438648,443124,447600],"measured_values":[166880.0,284119.0,428844.0,570370.0,721590.0,876031.0,1035556.0,1143722.0,1307068.0,1435863.0,1588237.0,1767669.0,1900597.0,2044857.0,2179427.0,2333318.0,2438515.0,2616977.0,2785434.0,2836624.0,3065124.0,3221058.0,3334430.0,3473139.0,3600334.0,3687599.0,3918359.0,4058154.0,4195616.0,4332493.0,4443241.0,4541483.0,4736399.0,4797505.0,5097231.0,5160768.0,5370348.0,5433745.0,5670648.0,5804134.0,5930127.0,5994269.0,6168384.0,6304601.0,6480889.0,6630863.0,6763954.0,6856522.0,7137609.0,7219376.0,7321538.0,7500902.0,7704899.0,7732521.0,8006223.0,7999512.0,8244803.0,8342547.0,8489897.0,8565473.0,8909790.0,8886918.0,9157995.0,9316810.0,9381168.0,9597931.0,9697149.0,9807215.0,9938757.0,10090962.0,10316284.0,10433879.0,10571912.0,10725495.0,10922062.0,11021036.0,11169973.0,11227746.0,11447127.0,11477976.0,11675212.0,11787432.0,11999542.0,12121342.0,12365490.0,12263296.0,12664501.0,12618354.0,12898753.0,12991694.0,13207024.0,13350515.0,13593768.0,13446389.0,13865407.0,13783518.0,13947532.0,13998960.0,14453278.0,14404756.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":32.270408117219226,"lower_bound":32.2110581772451,"upper_bound":32.32962977714055,"unit":"ns"},"mean":{"estimate":32.31551935871152,"lower_bound":32.22298076741056,"upper_bound":32.44269734485924,"unit":"ns"},"median":{"estimate":32.26138888888889,"lower_bound":32.20453750593012,"upper_bound":32.37602220296201,"unit":"ns"},"median_abs_dev":{"estimate":0.31110463071761957,"lower_bound":0.23012598353952532,"upper_bound":0.35390182944381543,"unit":"ns"},"slope":{"estimate":32.270408117219226,"lower_bound":32.2110581772451,"upper_bound":32.32962977714055,"unit":"ns"},"change":{"mean":{"estimate":0.01058419459950044,"lower_bound":0.005407657135206593,"upper_bound":0.015808658814013853,"unit":"%"},"median":{"estimate":0.01197310498128945,"lower_bound":0.006624191849805117,"upper_bound":0.01681083073777967,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"mcl/10000","report_directory":"/root/fuel-core/target/criterion/reports/mcl/10000","iteration_count":[1382,2764,4146,5528,6910,8292,9674,11056,12438,13820,15202,16584,17966,19348,20730,22112,23494,24876,26258,27640,29022,30404,31786,33168,34550,35932,37314,38696,40078,41460,42842,44224,45606,46988,48370,49752,51134,52516,53898,55280,56662,58044,59426,60808,62190,63572,64954,66336,67718,69100,70482,71864,73246,74628,76010,77392,78774,80156,81538,82920,84302,85684,87066,88448,89830,91212,92594,93976,95358,96740,98122,99504,100886,102268,103650,105032,106414,107796,109178,110560,111942,113324,114706,116088,117470,118852,120234,121616,122998,124380,125762,127144,128526,129908,131290,132672,134054,135436,136818,138200],"measured_values":[223089.0,409659.0,624568.0,819511.0,1040940.0,1228334.0,1454568.0,1648148.0,1873018.0,2047556.0,2295869.0,2456295.0,2707595.0,2864225.0,3132367.0,3276354.0,3551716.0,3688731.0,3971882.0,4093696.0,4367384.0,4562026.0,4801816.0,4962939.0,5200473.0,5326966.0,5645299.0,5739917.0,6044806.0,6140109.0,6451198.0,6553211.0,6878019.0,6970128.0,7305739.0,7377068.0,7715244.0,7797049.0,8111961.0,8190277.0,8549462.0,8637643.0,8945310.0,9027053.0,9398751.0,9445820.0,9811573.0,9842087.0,10246712.0,10260160.0,10649110.0,10638636.0,11049452.0,11048600.0,11452811.0,11478398.0,11879304.0,11880301.0,12278741.0,12288886.0,12688423.0,12696741.0,13155622.0,13128977.0,13515472.0,13515758.0,13979469.0,14100642.0,14422607.0,14322523.0,14799238.0,14755339.0,15270954.0,15161241.0,15617852.0,15575159.0,16048533.0,16020497.0,16454218.0,16368448.0,16948607.0,16794686.0,17368181.0,17238510.0,17708538.0,17641462.0,18147611.0,18102637.0,18515109.0,18435705.0,18980410.0,18839604.0,19372646.0,19281194.0,19794046.0,19694146.0,20223593.0,20094635.0,20636765.0,20540909.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":149.6261759128588,"lower_bound":149.2958171103227,"upper_bound":149.95894300275162,"unit":"ns"},"mean":{"estimate":149.74176883220892,"lower_bound":149.42690115331027,"upper_bound":150.1053371378725,"unit":"ns"},"median":{"estimate":150.20269419437292,"lower_bound":148.49519330163324,"upper_bound":150.5883582569545,"unit":"ns"},"median_abs_dev":{"estimate":1.7017987778476107,"lower_bound":0.6398061029681927,"upper_bound":2.0196633293260273,"unit":"ns"},"slope":{"estimate":149.6261759128588,"lower_bound":149.2958171103227,"upper_bound":149.95894300275162,"unit":"ns"},"change":{"mean":{"estimate":0.0042236750407209644,"lower_bound":0.001985111832657666,"upper_bound":0.006424172129117189,"unit":"%"},"median":{"estimate":0.007017631886676812,"lower_bound":-0.0042545711571925215,"upper_bound":0.010442606899571327,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"mcl/19753","report_directory":"/root/fuel-core/target/criterion/reports/mcl/19753","iteration_count":[832,1664,2496,3328,4160,4992,5824,6656,7488,8320,9152,9984,10816,11648,12480,13312,14144,14976,15808,16640,17472,18304,19136,19968,20800,21632,22464,23296,24128,24960,25792,26624,27456,28288,29120,29952,30784,31616,32448,33280,34112,34944,35776,36608,37440,38272,39104,39936,40768,41600,42432,43264,44096,44928,45760,46592,47424,48256,49088,49920,50752,51584,52416,53248,54080,54912,55744,56576,57408,58240,59072,59904,60736,61568,62400,63232,64064,64896,65728,66560,67392,68224,69056,69888,70720,71552,72384,73216,74048,74880,75712,76544,77376,78208,79040,79872,80704,81536,82368,83200],"measured_values":[256308.0,478817.0,731121.0,959046.0,1217578.0,1435485.0,1704367.0,1930933.0,2190722.0,2391628.0,2674565.0,2886162.0,3161990.0,3360741.0,3648815.0,3828005.0,4136849.0,4308094.0,4660828.0,4801299.0,5110825.0,5275434.0,5586527.0,5743594.0,6089660.0,6222784.0,6562867.0,6702794.0,7050184.0,7198293.0,7529367.0,7731424.0,8084977.0,8137168.0,8510395.0,8679123.0,9146863.0,9090225.0,9488721.0,9571698.0,9996657.0,10089017.0,10461528.0,10577261.0,10943314.0,11082501.0,11421262.0,11485784.0,11941138.0,11966686.0,12399312.0,12459530.0,12916154.0,12919133.0,13385525.0,13503346.0,13865073.0,13901932.0,14359774.0,14355713.0,14853874.0,14867539.0,15334293.0,15325164.0,15838712.0,15790560.0,16302678.0,16271288.0,16760926.0,16807591.0,17296569.0,17300588.0,17753411.0,17748743.0,18241691.0,18187645.0,18759511.0,18664464.0,19292464.0,19173771.0,19704131.0,19649044.0,20214293.0,20171113.0,20762423.0,20614202.0,21156266.0,21102679.0,21672698.0,21577649.0,22161207.0,22028015.0,22599202.0,22518710.0,23104348.0,23101297.0,23630458.0,23495041.0,24110094.0,23977658.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":290.38674058425505,"lower_bound":289.7942975770804,"upper_bound":290.9834938177423,"unit":"ns"},"mean":{"estimate":290.618620982619,"lower_bound":290.0657190795091,"upper_bound":291.22807347960804,"unit":"ns"},"median":{"estimate":291.1597394540943,"lower_bound":288.712885855464,"upper_bound":292.2582596103609,"unit":"ns"},"median_abs_dev":{"estimate":2.9739280730503284,"lower_bound":0.985093372964953,"upper_bound":3.885403253722998,"unit":"ns"},"slope":{"estimate":290.38674058425505,"lower_bound":289.7942975770804,"upper_bound":290.9834938177423,"unit":"ns"},"change":{"mean":{"estimate":-0.011168096246639503,"lower_bound":-0.0138042499630668,"upper_bound":-0.008622095921438653,"unit":"%"},"median":{"estimate":-0.011330208206410841,"lower_bound":-0.019439209656821554,"upper_bound":-0.0025381923647765925,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"mcl/29629","report_directory":"/root/fuel-core/target/criterion/reports/mcl/29629","iteration_count":[687,1374,2061,2748,3435,4122,4809,5496,6183,6870,7557,8244,8931,9618,10305,10992,11679,12366,13053,13740,14427,15114,15801,16488,17175,17862,18549,19236,19923,20610,21297,21984,22671,23358,24045,24732,25419,26106,26793,27480,28167,28854,29541,30228,30915,31602,32289,32976,33663,34350,35037,35724,36411,37098,37785,38472,39159,39846,40533,41220,41907,42594,43281,43968,44655,45342,46029,46716,47403,48090,48777,49464,50151,50838,51525,52212,52899,53586,54273,54960,55647,56334,57021,57708,58395,59082,59769,60456,61143,61830,62517,63204,63891,64578,65265,65952,66639,67326,68013,68700],"measured_values":[335696.0,659414.0,993767.0,1314107.0,1656077.0,1977729.0,2322876.0,2682961.0,2982910.0,3298813.0,3658599.0,3941741.0,4306501.0,4623178.0,4975767.0,5255852.0,5663030.0,6006574.0,6295569.0,6564434.0,6975050.0,7259388.0,7621133.0,7883197.0,8297294.0,8583536.0,8976604.0,9194414.0,9641863.0,9889923.0,10352294.0,10535051.0,11052828.0,11219892.0,11613069.0,11823251.0,12275785.0,12568061.0,12963670.0,13139651.0,13611133.0,13849158.0,14254426.0,14476248.0,14963706.0,15216188.0,15675044.0,15774799.0,16271478.0,16517276.0,16933586.0,17096490.0,17589069.0,17888305.0,18236921.0,18417771.0,18938735.0,19146180.0,19592299.0,19721724.0,20255119.0,20462488.0,20934328.0,21338792.0,21592125.0,21790459.0,22266930.0,22324522.0,22940028.0,23259462.0,23615157.0,23685988.0,24210297.0,24456802.0,24929004.0,24998303.0,25532058.0,25939001.0,26193652.0,26323437.0,26919007.0,27056589.0,27548434.0,27612190.0,28192531.0,28413952.0,28844031.0,28961937.0,29526138.0,29760687.0,30213677.0,30338555.0,30884309.0,31081725.0,31537544.0,31560729.0,32176726.0,32330259.0,32854902.0,32904645.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":481.69384320560715,"lower_bound":481.1806344434943,"upper_bound":482.19495525457864,"unit":"ns"},"mean":{"estimate":481.8228421136957,"lower_bound":481.35056630701,"upper_bound":482.29671228220053,"unit":"ns"},"median":{"estimate":482.3784957351504,"lower_bound":481.20205554899877,"upper_bound":482.87638977479025,"unit":"ns"},"median_abs_dev":{"estimate":2.327267777514652,"lower_bound":1.6153270790385705,"upper_bound":3.1521805236617153,"unit":"ns"},"slope":{"estimate":481.69384320560715,"lower_bound":481.1806344434943,"upper_bound":482.19495525457864,"unit":"ns"},"change":{"mean":{"estimate":-0.0014421382859282073,"lower_bound":-0.002809277546393712,"upper_bound":-0.00015054545199422485,"unit":"%"},"median":{"estimate":-0.0005823394634353329,"lower_bound":-0.0028888938123782237,"upper_bound":0.0013247952747983405,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"mcl/44444","report_directory":"/root/fuel-core/target/criterion/reports/mcl/44444","iteration_count":[363,726,1089,1452,1815,2178,2541,2904,3267,3630,3993,4356,4719,5082,5445,5808,6171,6534,6897,7260,7623,7986,8349,8712,9075,9438,9801,10164,10527,10890,11253,11616,11979,12342,12705,13068,13431,13794,14157,14520,14883,15246,15609,15972,16335,16698,17061,17424,17787,18150,18513,18876,19239,19602,19965,20328,20691,21054,21417,21780,22143,22506,22869,23232,23595,23958,24321,24684,25047,25410,25773,26136,26499,26862,27225,27588,27951,28314,28677,29040,29403,29766,30129,30492,30855,31218,31581,31944,32307,32670,33033,33396,33759,34122,34485,34848,35211,35574,35937,36300],"measured_values":[271916.0,533998.0,799822.0,1067608.0,1334029.0,1621986.0,1866728.0,2151533.0,2404575.0,2672784.0,2949287.0,3222284.0,3469915.0,3759799.0,4002412.0,4291177.0,4536701.0,4821973.0,5066114.0,5385597.0,5603545.0,5897498.0,6140175.0,6429454.0,6697667.0,6959288.0,7203729.0,7513464.0,7750346.0,8041424.0,8286934.0,8558710.0,8801532.0,9128061.0,9371741.0,9633164.0,9874969.0,10168815.0,10418601.0,10732177.0,10953276.0,11255050.0,11503604.0,11793435.0,12034362.0,12400151.0,12551167.0,12839892.0,13131578.0,13373287.0,13634805.0,13924395.0,14143120.0,14455818.0,14684900.0,15022165.0,15250811.0,15515324.0,15749642.0,16036228.0,16306794.0,16611965.0,16827201.0,17156463.0,17340609.0,17664038.0,17897517.0,18232311.0,18430915.0,18748683.0,18955590.0,19277844.0,19474787.0,19802750.0,20108460.0,20350390.0,20538511.0,20892315.0,21111587.0,21420400.0,21639603.0,22030197.0,22177801.0,22452443.0,22756254.0,23013936.0,23299423.0,23485547.0,23805665.0,24033410.0,24312773.0,24530050.0,24803378.0,25137065.0,25316600.0,25605529.0,25941270.0,26186444.0,26544949.0,26677078.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":736.6129832956159,"lower_bound":736.2452857691089,"upper_bound":737.0019434299859,"unit":"ns"},"mean":{"estimate":737.0663180096452,"lower_bound":736.6590676903562,"upper_bound":737.5201427577706,"unit":"ns"},"median":{"estimate":736.7706070191134,"lower_bound":736.23380874336,"upper_bound":737.200845665962,"unit":"ns"},"median_abs_dev":{"estimate":1.8552884028246857,"lower_bound":1.435078620937291,"upper_bound":2.2497143561537882,"unit":"ns"},"slope":{"estimate":736.6129832956159,"lower_bound":736.2452857691089,"upper_bound":737.0019434299859,"unit":"ns"},"change":{"mean":{"estimate":-0.013272065539042366,"lower_bound":-0.014850042116170194,"upper_bound":-0.011968825458109695,"unit":"%"},"median":{"estimate":-0.013314544748995849,"lower_bound":-0.014324753676509117,"upper_bound":-0.011343324861792126,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"mcl/66666","report_directory":"/root/fuel-core/target/criterion/reports/mcl/66666","iteration_count":[207,414,621,828,1035,1242,1449,1656,1863,2070,2277,2484,2691,2898,3105,3312,3519,3726,3933,4140,4347,4554,4761,4968,5175,5382,5589,5796,6003,6210,6417,6624,6831,7038,7245,7452,7659,7866,8073,8280,8487,8694,8901,9108,9315,9522,9729,9936,10143,10350,10557,10764,10971,11178,11385,11592,11799,12006,12213,12420,12627,12834,13041,13248,13455,13662,13869,14076,14283,14490,14697,14904,15111,15318,15525,15732,15939,16146,16353,16560,16767,16974,17181,17388,17595,17802,18009,18216,18423,18630,18837,19044,19251,19458,19665,19872,20079,20286,20493,20700],"measured_values":[242389.0,470232.0,710809.0,955183.0,1182937.0,1416606.0,1659365.0,1899390.0,2129542.0,2357920.0,2600171.0,2880093.0,3089298.0,3303444.0,3546992.0,3814956.0,4058247.0,4288575.0,4534490.0,4866746.0,4979421.0,5182085.0,5450154.0,5751015.0,5909130.0,6168350.0,6445807.0,6687190.0,6872599.0,7086093.0,7339379.0,7627338.0,7836092.0,8117631.0,8318929.0,8583107.0,8767412.0,8979997.0,9267279.0,9557637.0,9707373.0,9914532.0,10224511.0,10487768.0,10664208.0,10816636.0,11133783.0,11438084.0,11717968.0,11900725.0,12087271.0,12393907.0,12533304.0,12739648.0,13002416.0,13337669.0,13467918.0,13680247.0,13958675.0,14280768.0,14484303.0,14717793.0,14964546.0,15280576.0,15411073.0,15638938.0,15856059.0,16191900.0,16339019.0,16557685.0,16849282.0,17100647.0,17314233.0,17498926.0,17794915.0,18081829.0,18227374.0,18453626.0,18673524.0,19053118.0,19150515.0,19347166.0,19673831.0,19972372.0,20125579.0,20309046.0,20569939.0,21026955.0,21056061.0,21322552.0,21609393.0,21944855.0,22051786.0,22172491.0,22500879.0,22916069.0,22934940.0,23222835.0,23514070.0,23911130.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":1146.0677143768887,"lower_bound":1144.94341651834,"upper_bound":1147.259724618082,"unit":"ns"},"mean":{"estimate":1146.7817156470805,"lower_bound":1145.617319426594,"upper_bound":1148.045285675609,"unit":"ns"},"median":{"estimate":1145.2791633487286,"lower_bound":1144.6155809300737,"upper_bound":1147.0898075552388,"unit":"ns"},"median_abs_dev":{"estimate":4.865970813919065,"lower_bound":3.729026629562781,"upper_bound":6.617986019438703,"unit":"ns"},"slope":{"estimate":1146.0677143768887,"lower_bound":1144.94341651834,"upper_bound":1147.259724618082,"unit":"ns"},"change":{"mean":{"estimate":0.005158378186503443,"lower_bound":0.00391996524166639,"upper_bound":0.0063383910241694595,"unit":"%"},"median":{"estimate":0.004021275864316554,"lower_bound":0.003122929570226707,"upper_bound":0.00583190706548224,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"mcl/100000","report_directory":"/root/fuel-core/target/criterion/reports/mcl/100000","iteration_count":[200,400,600,800,1000,1200,1400,1600,1800,2000,2200,2400,2600,2800,3000,3200,3400,3600,3800,4000,4200,4400,4600,4800,5000,5200,5400,5600,5800,6000,6200,6400,6600,6800,7000,7200,7400,7600,7800,8000,8200,8400,8600,8800,9000,9200,9400,9600,9800,10000,10200,10400,10600,10800,11000,11200,11400,11600,11800,12000,12200,12400,12600,12800,13000,13200,13400,13600,13800,14000,14200,14400,14600,14800,15000,15200,15400,15600,15800,16000,16200,16400,16600,16800,17000,17200,17400,17600,17800,18000,18200,18400,18600,18800,19000,19200,19400,19600,19800,20000],"measured_values":[293232.0,574682.0,860603.0,1152019.0,1436329.0,1737166.0,2016132.0,2295379.0,2632934.0,2875819.0,3148434.0,3443376.0,3731247.0,4007692.0,4317349.0,4609181.0,4870707.0,5199850.0,5453839.0,5759749.0,6045933.0,6353235.0,6643444.0,6901430.0,7382431.0,7564344.0,7796397.0,8065888.0,8372354.0,8680271.0,8898868.0,9225272.0,9510776.0,9817730.0,10025534.0,10346633.0,10631186.0,10944570.0,11240192.0,11462374.0,11754889.0,12120966.0,12365486.0,12607027.0,12956328.0,13210161.0,13520281.0,13825524.0,14111320.0,14421789.0,14666643.0,14996872.0,15274689.0,15544842.0,15791773.0,16131926.0,16441416.0,16747990.0,17034525.0,17283736.0,17475066.0,17837609.0,18202390.0,18465352.0,18682047.0,19024463.0,19255755.0,19532229.0,19912440.0,20129858.0,20415928.0,20714672.0,20956269.0,21325957.0,21610930.0,21824576.0,22240473.0,22403883.0,22789122.0,23043845.0,23346414.0,23617481.0,23849418.0,24161730.0,24461554.0,24700991.0,24930183.0,25324400.0,25596084.0,25890453.0,26286111.0,26585173.0,26795731.0,27021235.0,27205638.0,27528053.0,27919358.0,28168563.0,28340645.0,28781751.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":1438.724167681395,"lower_bound":1437.775165049486,"upper_bound":1439.6815576234133,"unit":"ns"},"mean":{"estimate":1439.8302172682272,"lower_bound":1438.6448475664442,"upper_bound":1441.1879457145012,"unit":"ns"},"median":{"estimate":1439.1292491408935,"lower_bound":1437.9822471910113,"upper_bound":1440.1245274390244,"unit":"ns"},"median_abs_dev":{"estimate":4.209044302197699,"lower_bound":2.977608535088662,"upper_bound":5.194560817777807,"unit":"ns"},"slope":{"estimate":1438.724167681395,"lower_bound":1437.775165049486,"upper_bound":1439.6815576234133,"unit":"ns"},"change":{"mean":{"estimate":-0.033761995792048305,"lower_bound":-0.035690018357925436,"upper_bound":-0.031708527373029816,"unit":"%"},"median":{"estimate":-0.036596735171088746,"lower_bound":-0.03841342136974624,"upper_bound":-0.03402031799839014,"unit":"%"},"change":"Improved"}} -{"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":[5099,10198,15297,20396,25495,30594,35693,40792,45891,50990,56089,61188,66287,71386,76485,81584,86683,91782,96881,101980,107079,112178,117277,122376,127475,132574,137673,142772,147871,152970,158069,163168,168267,173366,178465,183564,188663,193762,198861,203960,209059,214158,219257,224356,229455,234554,239653,244752,249851,254950,260049,265148,270247,275346,280445,285544,290643,295742,300841,305940,311039,316138,321237,326336,331435,336534,341633,346732,351831,356930,362029,367128,372227,377326,382425,387524,392623,397722,402821,407920,413019,418118,423217,428316,433415,438514,443613,448712,453811,458910,464009,469108,474207,479306,484405,489504,494603,499702,504801,509900],"measured_values":[168188.0,307259.0,458239.0,600020.0,747979.0,917810.0,1061777.0,1180936.0,1300826.0,1546839.0,1640964.0,1746448.0,1902202.0,2097502.0,2238070.0,2351606.0,2495699.0,2698283.0,2832596.0,3061129.0,3188127.0,3332423.0,3369272.0,3541891.0,3656547.0,3864114.0,3973413.0,4170872.0,4349413.0,4544229.0,4678553.0,4772703.0,4954161.0,5032285.0,5253105.0,5356513.0,5620662.0,5818754.0,5844312.0,6004077.0,6039991.0,6250171.0,6470137.0,6536030.0,6669871.0,6784397.0,6868211.0,7157094.0,7564252.0,7635862.0,7742548.0,7767392.0,8040438.0,8102656.0,8323343.0,8248722.0,8477451.0,8770634.0,8815151.0,8796950.0,9048514.0,9417972.0,9649337.0,9663701.0,9670065.0,9872509.0,9959754.0,10009513.0,10461046.0,10526792.0,10524503.0,10697585.0,10849579.0,11196564.0,11289097.0,11231723.0,11534538.0,11844273.0,11949149.0,12024704.0,12433237.0,12655186.0,12542967.0,12714581.0,12908010.0,13163098.0,13293284.0,13055219.0,13474107.0,13636426.0,13870865.0,13797628.0,13956524.0,14304673.0,14350025.0,14146215.0,14809414.0,14814436.0,15125871.0,14991366.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":29.52926782729878,"lower_bound":29.433699825302202,"upper_bound":29.619350149272186,"unit":"ns"},"mean":{"estimate":29.4604976472498,"lower_bound":29.358042756579053,"upper_bound":29.575787104561968,"unit":"ns"},"median":{"estimate":29.422846164462168,"lower_bound":29.319978327422128,"upper_bound":29.59816915397706,"unit":"ns"},"median_abs_dev":{"estimate":0.4464695539181395,"lower_bound":0.37834545437071726,"upper_bound":0.5546558573335638,"unit":"ns"},"slope":{"estimate":29.52926782729878,"lower_bound":29.433699825302202,"upper_bound":29.619350149272186,"unit":"ns"},"change":{"mean":{"estimate":0.0374849263511674,"lower_bound":0.02636939151142762,"upper_bound":0.04698623018343588,"unit":"%"},"median":{"estimate":0.045668828891069824,"lower_bound":0.0262385806223544,"upper_bound":0.05538429355304845,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"mcli/10","report_directory":"/root/fuel-core/target/criterion/reports/mcli/10","iteration_count":[5065,10130,15195,20260,25325,30390,35455,40520,45585,50650,55715,60780,65845,70910,75975,81040,86105,91170,96235,101300,106365,111430,116495,121560,126625,131690,136755,141820,146885,151950,157015,162080,167145,172210,177275,182340,187405,192470,197535,202600,207665,212730,217795,222860,227925,232990,238055,243120,248185,253250,258315,263380,268445,273510,278575,283640,288705,293770,298835,303900,308965,314030,319095,324160,329225,334290,339355,344420,349485,354550,359615,364680,369745,374810,379875,384940,390005,395070,400135,405200,410265,415330,420395,425460,430525,435590,440655,445720,450785,455850,460915,465980,471045,476110,481175,486240,491305,496370,501435,506500],"measured_values":[165144.0,298689.0,446337.0,563964.0,761242.0,870902.0,1028703.0,1156008.0,1368301.0,1488125.0,1590601.0,1722674.0,1828380.0,2071559.0,2162728.0,2257933.0,2525672.0,2742094.0,2852496.0,2912684.0,3208942.0,3396160.0,3470580.0,3551814.0,3710152.0,3810377.0,4003432.0,4158403.0,4317252.0,4508123.0,4634423.0,4595239.0,4893098.0,4849667.0,5077702.0,5200734.0,5346737.0,5476898.0,5686432.0,5831365.0,6120518.0,6140399.0,6335497.0,6291448.0,6830789.0,6914656.0,6993029.0,6975706.0,7385468.0,7659319.0,7781597.0,7456167.0,8110776.0,8055604.0,8311885.0,8205555.0,8638077.0,8581813.0,8925525.0,8700769.0,9107270.0,9237630.0,9581415.0,9276851.0,9747414.0,9862017.0,10086817.0,9981479.0,10453300.0,10613807.0,10669229.0,10420955.0,10890562.0,11013760.0,11295686.0,11227163.0,11557294.0,11608120.0,11669338.0,11712587.0,12301577.0,12324452.0,12495534.0,12416384.0,12782193.0,12670507.0,13016716.0,12704139.0,13284732.0,13461638.0,13656478.0,13292962.0,14112499.0,14130777.0,14100008.0,13980072.0,14574497.0,14676066.0,14607132.0,14660858.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":29.35462425734551,"lower_bound":29.238518691809784,"upper_bound":29.464772726122966,"unit":"ns"},"mean":{"estimate":29.292205225250754,"lower_bound":29.162684491542276,"upper_bound":29.426272963542353,"unit":"ns"},"median":{"estimate":29.37811955220432,"lower_bound":29.21391905231984,"upper_bound":29.479311631714538,"unit":"ns"},"median_abs_dev":{"estimate":0.6012838199742089,"lower_bound":0.42509585734756683,"upper_bound":0.8005368704003281,"unit":"ns"},"slope":{"estimate":29.35462425734551,"lower_bound":29.238518691809784,"upper_bound":29.464772726122966,"unit":"ns"},"change":{"mean":{"estimate":0.0787718343211814,"lower_bound":0.06949389806546885,"upper_bound":0.08839489738000499,"unit":"%"},"median":{"estimate":0.08588143454400088,"lower_bound":0.07014360840866574,"upper_bound":0.09958342212508153,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"mcli/100","report_directory":"/root/fuel-core/target/criterion/reports/mcli/100","iteration_count":[5172,10344,15516,20688,25860,31032,36204,41376,46548,51720,56892,62064,67236,72408,77580,82752,87924,93096,98268,103440,108612,113784,118956,124128,129300,134472,139644,144816,149988,155160,160332,165504,170676,175848,181020,186192,191364,196536,201708,206880,212052,217224,222396,227568,232740,237912,243084,248256,253428,258600,263772,268944,274116,279288,284460,289632,294804,299976,305148,310320,315492,320664,325836,331008,336180,341352,346524,351696,356868,362040,367212,372384,377556,382728,387900,393072,398244,403416,408588,413760,418932,424104,429276,434448,439620,444792,449964,455136,460308,465480,470652,475824,480996,486168,491340,496512,501684,506856,512028,517200],"measured_values":[209255.0,310245.0,448904.0,595946.0,750894.0,905477.0,1054583.0,1220623.0,1391502.0,1500088.0,1650092.0,1844168.0,1994112.0,2117670.0,2284983.0,2401038.0,2618729.0,2747710.0,2862829.0,3045091.0,3231486.0,3384870.0,3778995.0,3663897.0,3857246.0,3971601.0,4083373.0,4222299.0,4487198.0,4516342.0,4823812.0,4850261.0,5085008.0,5145589.0,5324302.0,5468256.0,5703194.0,5766545.0,6017886.0,6100995.0,6251979.0,6338686.0,6534747.0,6662581.0,6952636.0,7046380.0,7287446.0,7333946.0,7484275.0,7622475.0,7765035.0,7853594.0,8237455.0,8168310.0,8605266.0,8582737.0,8816811.0,8815770.0,9106316.0,9111185.0,9475785.0,9414242.0,9793279.0,9703791.0,9941081.0,10034504.0,10378136.0,10376496.0,10658428.0,10902665.0,11014239.0,10947757.0,11468991.0,11289065.0,11591122.0,11552285.0,11908282.0,11947561.0,12011081.0,12188411.0,12358294.0,12510662.0,12751940.0,12797374.0,13126949.0,13170171.0,13443324.0,13708754.0,13799556.0,13742329.0,14141423.0,14222914.0,14282090.0,14244328.0,14628110.0,14504576.0,14831928.0,14907718.0,15246225.0,15135545.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":29.649089876020188,"lower_bound":29.576395051379475,"upper_bound":29.7228013852348,"unit":"ns"},"mean":{"estimate":29.69968743607525,"lower_bound":29.53465732315723,"upper_bound":29.96258163226011,"unit":"ns"},"median":{"estimate":29.520003813268026,"lower_bound":29.47045922108728,"upper_bound":29.637993492099213,"unit":"ns"},"median_abs_dev":{"estimate":0.3814598709216926,"lower_bound":0.2841748435410751,"upper_bound":0.454310558332626,"unit":"ns"},"slope":{"estimate":29.649089876020188,"lower_bound":29.576395051379475,"upper_bound":29.7228013852348,"unit":"ns"},"change":{"mean":{"estimate":0.05498212932665014,"lower_bound":0.04511169040691365,"upper_bound":0.06676819306322118,"unit":"%"},"median":{"estimate":0.05474292594441521,"lower_bound":0.043363587244850565,"upper_bound":0.06310859042707295,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"mcli/1000","report_directory":"/root/fuel-core/target/criterion/reports/mcli/1000","iteration_count":[4568,9136,13704,18272,22840,27408,31976,36544,41112,45680,50248,54816,59384,63952,68520,73088,77656,82224,86792,91360,95928,100496,105064,109632,114200,118768,123336,127904,132472,137040,141608,146176,150744,155312,159880,164448,169016,173584,178152,182720,187288,191856,196424,200992,205560,210128,214696,219264,223832,228400,232968,237536,242104,246672,251240,255808,260376,264944,269512,274080,278648,283216,287784,292352,296920,301488,306056,310624,315192,319760,324328,328896,333464,338032,342600,347168,351736,356304,360872,365440,370008,374576,379144,383712,388280,392848,397416,401984,406552,411120,415688,420256,424824,429392,433960,438528,443096,447664,452232,456800],"measured_values":[169145.0,290992.0,435768.0,579345.0,713523.0,878245.0,1042131.0,1170459.0,1303174.0,1442620.0,1591603.0,1783561.0,1907475.0,2038904.0,2242000.0,2325465.0,2478100.0,2617885.0,2747266.0,2907148.0,3123145.0,3191853.0,3348750.0,3471300.0,3639653.0,3793345.0,3897536.0,4121467.0,4246479.0,4480957.0,4495058.0,4647590.0,4782928.0,4947032.0,5176429.0,5349869.0,5360827.0,5533199.0,5641853.0,5887326.0,5947491.0,6162104.0,6229897.0,6425519.0,6519858.0,6704915.0,6808819.0,7131181.0,7139124.0,7285813.0,7392098.0,7576679.0,7916069.0,8154023.0,8046423.0,8168076.0,8469043.0,8544815.0,8546598.0,8782584.0,8854367.0,9044597.0,9382779.0,9267830.0,9526686.0,9665558.0,9737721.0,9875631.0,10016397.0,10136726.0,10285026.0,10525118.0,10621224.0,10864264.0,10876367.0,11163703.0,11290266.0,11359784.0,11471666.0,11711594.0,11769918.0,11942919.0,12214062.0,12294904.0,12375252.0,12711616.0,12654798.0,12784268.0,13023867.0,13146552.0,13332108.0,13652289.0,13630008.0,13772339.0,13788741.0,13885161.0,14323515.0,14344917.0,14372665.0,14771696.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":32.00464656568383,"lower_bound":31.94261761286627,"upper_bound":32.06904672551843,"unit":"ns"},"mean":{"estimate":32.03540383789343,"lower_bound":31.93959559612122,"upper_bound":32.16731690632681,"unit":"ns"},"median":{"estimate":31.895990975030724,"lower_bound":31.851186334956697,"upper_bound":32.0021234676007,"unit":"ns"},"median_abs_dev":{"estimate":0.24419253186165252,"lower_bound":0.1960217438498698,"upper_bound":0.31703505418535355,"unit":"ns"},"slope":{"estimate":32.00464656568383,"lower_bound":31.94261761286627,"upper_bound":32.06904672551843,"unit":"ns"},"change":{"mean":{"estimate":0.0719709089889573,"lower_bound":0.06673614643761919,"upper_bound":0.07706049481945117,"unit":"%"},"median":{"estimate":0.0691081823451054,"lower_bound":0.06607148469475632,"upper_bound":0.07378093567264021,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"mcli/10000","report_directory":"/root/fuel-core/target/criterion/reports/mcli/10000","iteration_count":[1373,2746,4119,5492,6865,8238,9611,10984,12357,13730,15103,16476,17849,19222,20595,21968,23341,24714,26087,27460,28833,30206,31579,32952,34325,35698,37071,38444,39817,41190,42563,43936,45309,46682,48055,49428,50801,52174,53547,54920,56293,57666,59039,60412,61785,63158,64531,65904,67277,68650,70023,71396,72769,74142,75515,76888,78261,79634,81007,82380,83753,85126,86499,87872,89245,90618,91991,93364,94737,96110,97483,98856,100229,101602,102975,104348,105721,107094,108467,109840,111213,112586,113959,115332,116705,118078,119451,120824,122197,123570,124943,126316,127689,129062,130435,131808,133181,134554,135927,137300],"measured_values":[250023.0,418309.0,628833.0,841326.0,1047927.0,1251370.0,1464853.0,1654313.0,1855614.0,2036518.0,2252828.0,2452953.0,2657911.0,2850687.0,3078984.0,3270469.0,3475677.0,3666455.0,3884106.0,4105176.0,4317789.0,4494187.0,4714762.0,4911532.0,5112390.0,5307004.0,5521763.0,5775486.0,5960092.0,6146717.0,6347433.0,6545920.0,6750520.0,6933262.0,7158075.0,7402626.0,7584602.0,7762169.0,7993363.0,8190903.0,8420396.0,8551190.0,8830706.0,9014617.0,9208171.0,9389423.0,9632846.0,9849988.0,10043906.0,10204253.0,10464339.0,10664692.0,10887656.0,11016499.0,11276021.0,11460024.0,11685789.0,11836637.0,12091960.0,12285891.0,12498816.0,12670060.0,12908806.0,13099186.0,13301412.0,13469380.0,13732868.0,13962720.0,14108351.0,14386737.0,14539551.0,14743366.0,15091559.0,15112914.0,15380847.0,15608626.0,15801304.0,15891640.0,16178726.0,16387145.0,16597182.0,16734064.0,17112436.0,17227874.0,17405656.0,17553212.0,17809808.0,18027904.0,18240245.0,18409411.0,18704200.0,18922474.0,19032183.0,19168174.0,19501532.0,19641369.0,19881606.0,20034547.0,20297681.0,20533109.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":149.20460733836316,"lower_bound":149.10021869509188,"upper_bound":149.31027147959801,"unit":"ns"},"mean":{"estimate":149.70554639859324,"lower_bound":149.24631340163864,"upper_bound":150.47722020098234,"unit":"ns"},"median":{"estimate":149.21347579951004,"lower_bound":149.11700174129976,"upper_bound":149.28260037092377,"unit":"ns"},"median_abs_dev":{"estimate":0.43756089539690435,"lower_bound":0.31518326757428317,"upper_bound":0.5427651115249834,"unit":"ns"},"slope":{"estimate":149.20460733836316,"lower_bound":149.10021869509188,"upper_bound":149.31027147959801,"unit":"ns"},"change":{"mean":{"estimate":0.009912009328670202,"lower_bound":0.004950787643418088,"upper_bound":0.01638449089990648,"unit":"%"},"median":{"estimate":0.008572730318470834,"lower_bound":0.007558710024850868,"upper_bound":0.009272884786801772,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"mcli/19753","report_directory":"/root/fuel-core/target/criterion/reports/mcli/19753","iteration_count":[809,1618,2427,3236,4045,4854,5663,6472,7281,8090,8899,9708,10517,11326,12135,12944,13753,14562,15371,16180,16989,17798,18607,19416,20225,21034,21843,22652,23461,24270,25079,25888,26697,27506,28315,29124,29933,30742,31551,32360,33169,33978,34787,35596,36405,37214,38023,38832,39641,40450,41259,42068,42877,43686,44495,45304,46113,46922,47731,48540,49349,50158,50967,51776,52585,53394,54203,55012,55821,56630,57439,58248,59057,59866,60675,61484,62293,63102,63911,64720,65529,66338,67147,67956,68765,69574,70383,71192,72001,72810,73619,74428,75237,76046,76855,77664,78473,79282,80091,80900],"measured_values":[263676.0,473448.0,710283.0,954600.0,1177714.0,1420873.0,1653563.0,1910924.0,2125619.0,2383766.0,2592600.0,2865794.0,3066570.0,3312938.0,3548363.0,3837093.0,4024919.0,4265701.0,4478842.0,4834520.0,5003539.0,5211282.0,5459488.0,5732509.0,5892961.0,6178346.0,6363971.0,6685266.0,6837784.0,7119192.0,7323706.0,7640673.0,7804289.0,8075367.0,8250417.0,8615527.0,8748542.0,9012615.0,9209292.0,9555577.0,9681966.0,9962643.0,10136245.0,10523406.0,10604040.0,10901056.0,11112784.0,11476348.0,11564197.0,11913826.0,12021603.0,12413968.0,12518863.0,12804242.0,12980569.0,13391827.0,13469186.0,13768261.0,13935394.0,14368193.0,14405835.0,14709824.0,14862757.0,15307741.0,15342342.0,15637917.0,15819902.0,16249972.0,16265379.0,16595186.0,16762449.0,17191194.0,17352503.0,17533290.0,17678725.0,18192879.0,18198835.0,18468321.0,18616479.0,19102105.0,19137519.0,19439564.0,19601917.0,20057715.0,20064694.0,20414489.0,20540202.0,21029427.0,21054893.0,21316363.0,21498545.0,21986360.0,21946881.0,22311205.0,22413810.0,22955801.0,23004478.0,23283676.0,23398141.0,23953056.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":293.2116999223491,"lower_bound":292.81776069270643,"upper_bound":293.6255414816973,"unit":"ns"},"mean":{"estimate":293.5270255461787,"lower_bound":292.96100541210484,"upper_bound":294.34795178923827,"unit":"ns"},"median":{"estimate":292.7842597795008,"lower_bound":292.32831404277636,"upper_bound":293.1694424565741,"unit":"ns"},"median_abs_dev":{"estimate":1.4969660051026374,"lower_bound":1.0975030757230704,"upper_bound":2.23037463347518,"unit":"ns"},"slope":{"estimate":293.2116999223491,"lower_bound":292.81776069270643,"upper_bound":293.6255414816973,"unit":"ns"},"change":{"mean":{"estimate":-0.014271900699827311,"lower_bound":-0.017427974648531817,"upper_bound":-0.01071363741945228,"unit":"%"},"median":{"estimate":-0.02228044959596087,"lower_bound":-0.02536680103070854,"upper_bound":-0.007121972141105437,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"mcli/29629","report_directory":"/root/fuel-core/target/criterion/reports/mcli/29629","iteration_count":[669,1338,2007,2676,3345,4014,4683,5352,6021,6690,7359,8028,8697,9366,10035,10704,11373,12042,12711,13380,14049,14718,15387,16056,16725,17394,18063,18732,19401,20070,20739,21408,22077,22746,23415,24084,24753,25422,26091,26760,27429,28098,28767,29436,30105,30774,31443,32112,32781,33450,34119,34788,35457,36126,36795,37464,38133,38802,39471,40140,40809,41478,42147,42816,43485,44154,44823,45492,46161,46830,47499,48168,48837,49506,50175,50844,51513,52182,52851,53520,54189,54858,55527,56196,56865,57534,58203,58872,59541,60210,60879,61548,62217,62886,63555,64224,64893,65562,66231,66900],"measured_values":[325636.0,693457.0,970226.0,1390718.0,1617740.0,2085471.0,2265312.0,2808888.0,2924367.0,3498117.0,3586465.0,4212199.0,4265346.0,4872953.0,5165613.0,5579651.0,5503894.0,6250744.0,6147631.0,6994812.0,6796143.0,7647278.0,7469264.0,8334735.0,8113998.0,9051092.0,8738601.0,9751842.0,9399528.0,10423144.0,10036483.0,11142624.0,10680937.0,11810173.0,11354864.0,12517268.0,12034813.0,13190881.0,12648927.0,13927858.0,13306889.0,14573342.0,13912876.0,15319651.0,14614485.0,15961128.0,15205943.0,16721498.0,15889733.0,17361451.0,16528681.0,18063478.0,17195664.0,18760294.0,17807542.0,19485782.0,18489065.0,20186286.0,19094322.0,20885407.0,19790488.0,21511551.0,20390689.0,22306254.0,21638897.0,23042330.0,21819140.0,23674280.0,22358799.0,24385659.0,23017491.0,25090528.0,23621846.0,25730259.0,24286929.0,26450031.0,24930861.0,27082908.0,25884817.0,27881756.0,26261260.0,28501592.0,26872564.0,29213733.0,27563784.0,29875849.0,28178553.0,30611599.0,28856677.0,31273006.0,29863283.0,31992610.0,30123913.0,32630472.0,30785843.0,33398074.0,31482473.0,34031595.0,32110422.0,34765063.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":502.8690324119755,"lower_bound":498.3330260571173,"upper_bound":507.3767973432574,"unit":"ns"},"mean":{"estimate":502.9570545801982,"lower_bound":499.5297799304459,"upper_bound":506.38168067695864,"unit":"ns"},"median":{"estimate":516.5192077727952,"lower_bound":485.69456900847035,"upper_bound":519.0895354778683,"unit":"ns"},"median_abs_dev":{"estimate":12.216361539468998,"lower_bound":2.449606166282248,"upper_bound":26.003569313804554,"unit":"ns"},"slope":{"estimate":502.8690324119755,"lower_bound":498.3330260571173,"upper_bound":507.3767973432574,"unit":"ns"},"change":{"mean":{"estimate":0.038532809236798915,"lower_bound":0.03075180214543647,"upper_bound":0.04506799519165084,"unit":"%"},"median":{"estimate":0.06692775756054514,"lower_bound":0.0031083574775696565,"upper_bound":0.07306078536028635,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"mcli/44444","report_directory":"/root/fuel-core/target/criterion/reports/mcli/44444","iteration_count":[355,710,1065,1420,1775,2130,2485,2840,3195,3550,3905,4260,4615,4970,5325,5680,6035,6390,6745,7100,7455,7810,8165,8520,8875,9230,9585,9940,10295,10650,11005,11360,11715,12070,12425,12780,13135,13490,13845,14200,14555,14910,15265,15620,15975,16330,16685,17040,17395,17750,18105,18460,18815,19170,19525,19880,20235,20590,20945,21300,21655,22010,22365,22720,23075,23430,23785,24140,24495,24850,25205,25560,25915,26270,26625,26980,27335,27690,28045,28400,28755,29110,29465,29820,30175,30530,30885,31240,31595,31950,32305,32660,33015,33370,33725,34080,34435,34790,35145,35500],"measured_values":[292986.0,530593.0,818874.0,1062235.0,1317093.0,1611076.0,1850766.0,2123233.0,2402312.0,2664841.0,2916175.0,3205492.0,3456901.0,3731712.0,3985572.0,4255119.0,4493655.0,4793102.0,5011455.0,5323836.0,5553003.0,5853106.0,6061730.0,6381865.0,6609211.0,6928064.0,7138019.0,7488531.0,7649867.0,7996355.0,8176517.0,8529293.0,8735742.0,9079208.0,9269956.0,9584242.0,9756803.0,10163414.0,10299180.0,10684425.0,10822234.0,11171348.0,11338596.0,11697824.0,11933200.0,12205257.0,12404829.0,12838626.0,12943907.0,13267767.0,13439331.0,13863454.0,14009414.0,14382913.0,14525049.0,14930363.0,15038954.0,15450911.0,15563941.0,16038682.0,16092157.0,16514842.0,16623219.0,17024752.0,17123895.0,17515933.0,17691720.0,18100851.0,18197254.0,18682966.0,18744147.0,19604678.0,19271814.0,19638152.0,19777786.0,20290676.0,20309529.0,20751655.0,20892449.0,21242424.0,21415147.0,21755602.0,21922185.0,22407827.0,22541326.0,22807158.0,23165961.0,23217938.0,23771682.0,23769221.0,24293761.0,24267972.0,24714588.0,24791707.0,25317246.0,25374160.0,25904584.0,25911894.0,26297076.0,26392183.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":747.2448702131512,"lower_bound":746.2208132863584,"upper_bound":748.3701917435194,"unit":"ns"},"mean":{"estimate":748.4872515168629,"lower_bound":747.043587364117,"upper_bound":750.4948593845108,"unit":"ns"},"median":{"estimate":747.5151724400457,"lower_bound":745.5172752973538,"upper_bound":749.0451877934272,"unit":"ns"},"median_abs_dev":{"estimate":4.989658462723722,"lower_bound":3.5859960114531875,"upper_bound":5.763654004244178,"unit":"ns"},"slope":{"estimate":747.2448702131512,"lower_bound":746.2208132863584,"upper_bound":748.3701917435194,"unit":"ns"},"change":{"mean":{"estimate":0.00036044229737641764,"lower_bound":-0.0026604654857128483,"upper_bound":0.0035002271312391513,"unit":"%"},"median":{"estimate":-0.0018069022255317035,"lower_bound":-0.004787512751252902,"upper_bound":0.0025107920498042002,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"mcli/66666","report_directory":"/root/fuel-core/target/criterion/reports/mcli/66666","iteration_count":[206,412,618,824,1030,1236,1442,1648,1854,2060,2266,2472,2678,2884,3090,3296,3502,3708,3914,4120,4326,4532,4738,4944,5150,5356,5562,5768,5974,6180,6386,6592,6798,7004,7210,7416,7622,7828,8034,8240,8446,8652,8858,9064,9270,9476,9682,9888,10094,10300,10506,10712,10918,11124,11330,11536,11742,11948,12154,12360,12566,12772,12978,13184,13390,13596,13802,14008,14214,14420,14626,14832,15038,15244,15450,15656,15862,16068,16274,16480,16686,16892,17098,17304,17510,17716,17922,18128,18334,18540,18746,18952,19158,19364,19570,19776,19982,20188,20394,20600],"measured_values":[250650.0,477409.0,710695.0,953922.0,1187374.0,1431232.0,1660125.0,1907281.0,2133884.0,2385971.0,2611484.0,2865767.0,3114218.0,3351461.0,3564653.0,3851243.0,4049485.0,4293547.0,4503672.0,4789958.0,4981410.0,5249567.0,5458540.0,5737062.0,5940767.0,6216873.0,6403361.0,6703801.0,6877180.0,7160852.0,7361394.0,7714274.0,7900210.0,8117410.0,8301813.0,8612987.0,8790874.0,9108395.0,9290058.0,9563324.0,9772941.0,10079269.0,10227928.0,10522052.0,10707587.0,10998309.0,11158190.0,11481197.0,11620493.0,11945780.0,12132011.0,12431402.0,12591972.0,12887015.0,13099590.0,13357134.0,13561295.0,13818745.0,14108535.0,14419468.0,14485037.0,14777072.0,14941133.0,15310000.0,15417097.0,15789210.0,15928542.0,16226436.0,16357904.0,16692322.0,16845938.0,17168845.0,17333249.0,17649410.0,17918045.0,18123133.0,18268788.0,18603919.0,18828838.0,19105277.0,19280669.0,19606229.0,19684112.0,20050061.0,20223567.0,20550298.0,20734556.0,21012850.0,21118270.0,21500044.0,21572083.0,21978105.0,22072302.0,22437772.0,22499838.0,22901619.0,23006427.0,23473456.0,23464212.0,23912733.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":1156.5172168476086,"lower_bound":1155.44061731807,"upper_bound":1157.5895361480525,"unit":"ns"},"mean":{"estimate":1157.4874958405926,"lower_bound":1156.2308845666291,"upper_bound":1159.097319236843,"unit":"ns"},"median":{"estimate":1157.5825708080881,"lower_bound":1156.2645121868422,"upper_bound":1158.3334068843778,"unit":"ns"},"median_abs_dev":{"estimate":4.82650398054821,"lower_bound":3.817485728753714,"upper_bound":6.31338360620491,"unit":"ns"},"slope":{"estimate":1156.5172168476086,"lower_bound":1155.44061731807,"upper_bound":1157.5895361480525,"unit":"ns"},"change":{"mean":{"estimate":-0.003056084405716364,"lower_bound":-0.0056666166014447345,"upper_bound":-0.0007458618106574502,"unit":"%"},"median":{"estimate":0.00002613637604853558,"lower_bound":-0.001511198913105129,"upper_bound":0.0007377948856011063,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"mcli/100000","report_directory":"/root/fuel-core/target/criterion/reports/mcli/100000","iteration_count":[196,392,588,784,980,1176,1372,1568,1764,1960,2156,2352,2548,2744,2940,3136,3332,3528,3724,3920,4116,4312,4508,4704,4900,5096,5292,5488,5684,5880,6076,6272,6468,6664,6860,7056,7252,7448,7644,7840,8036,8232,8428,8624,8820,9016,9212,9408,9604,9800,9996,10192,10388,10584,10780,10976,11172,11368,11564,11760,11956,12152,12348,12544,12740,12936,13132,13328,13524,13720,13916,14112,14308,14504,14700,14896,15092,15288,15484,15680,15876,16072,16268,16464,16660,16856,17052,17248,17444,17640,17836,18032,18228,18424,18620,18816,19012,19208,19404,19600],"measured_values":[288579.0,555123.0,838930.0,1113826.0,1408810.0,1669996.0,1972566.0,2240604.0,2546725.0,2824011.0,3129449.0,3367563.0,3694556.0,3940045.0,4228903.0,4491297.0,4771936.0,5006551.0,5335836.0,5559015.0,5917620.0,6159884.0,6502600.0,6789700.0,7012827.0,7272637.0,7581744.0,7802713.0,8114552.0,8377384.0,8757194.0,8929527.0,9247897.0,9476760.0,9851422.0,10042569.0,10466725.0,10566283.0,10969221.0,11149554.0,11679616.0,11708977.0,12177520.0,12241919.0,12619861.0,12813476.0,13249100.0,13375405.0,13793200.0,13925282.0,14274317.0,14472170.0,14929831.0,15048619.0,15556183.0,15606865.0,16026598.0,16125603.0,16632088.0,16716570.0,17272285.0,17288511.0,17702103.0,17831145.0,18226687.0,18434916.0,18866865.0,18956309.0,19415126.0,19571197.0,20021805.0,20104465.0,20606924.0,20653581.0,21029232.0,21226720.0,21695488.0,21755867.0,22130198.0,22286736.0,22756558.0,22807951.0,23324781.0,23408973.0,23809677.0,23994058.0,24549744.0,24559977.0,24918703.0,25160133.0,25541878.0,25687297.0,26083135.0,26051489.0,26486036.0,26383863.0,27024291.0,26940092.0,27597777.0,27518452.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":1425.8237072316736,"lower_bound":1423.0280124494695,"upper_bound":1428.5581574144007,"unit":"ns"},"mean":{"estimate":1429.4250440306337,"lower_bound":1427.3867015584033,"upper_bound":1431.527234916134,"unit":"ns"},"median":{"estimate":1428.5208016301517,"lower_bound":1424.7251700680272,"upper_bound":1431.3624163375027,"unit":"ns"},"median_abs_dev":{"estimate":10.051278870712945,"lower_bound":7.155152283684839,"upper_bound":12.080836579671812,"unit":"ns"},"slope":{"estimate":1425.8237072316736,"lower_bound":1423.0280124494695,"upper_bound":1428.5581574144007,"unit":"ns"},"change":{"mean":{"estimate":-0.02529561857196061,"lower_bound":-0.028050977917901728,"upper_bound":-0.02261829881956333,"unit":"%"},"median":{"estimate":-0.032754754672833286,"lower_bound":-0.035890508990575755,"upper_bound":-0.015188973578373677,"unit":"%"},"change":"Improved"}} -{"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":[4522,9044,13566,18088,22610,27132,31654,36176,40698,45220,49742,54264,58786,63308,67830,72352,76874,81396,85918,90440,94962,99484,104006,108528,113050,117572,122094,126616,131138,135660,140182,144704,149226,153748,158270,162792,167314,171836,176358,180880,185402,189924,194446,198968,203490,208012,212534,217056,221578,226100,230622,235144,239666,244188,248710,253232,257754,262276,266798,271320,275842,280364,284886,289408,293930,298452,302974,307496,312018,316540,321062,325584,330106,334628,339150,343672,348194,352716,357238,361760,366282,370804,375326,379848,384370,388892,393414,397936,402458,406980,411502,416024,420546,425068,429590,434112,438634,443156,447678,452200],"measured_values":[228593.0,426998.0,641916.0,831766.0,1031453.0,1245941.0,1445176.0,1664401.0,1861219.0,2071219.0,2266049.0,2485244.0,2675522.0,2897620.0,3072045.0,3321814.0,3495016.0,3724544.0,3878307.0,4161240.0,4317138.0,4565843.0,4746177.0,4970709.0,5178551.0,5366140.0,5558277.0,5806221.0,5952539.0,6357023.0,6395859.0,6702632.0,6767998.0,7057329.0,7221886.0,7448407.0,7610199.0,7881644.0,8072360.0,8324245.0,8447017.0,8711544.0,8910464.0,9124762.0,9365847.0,9584188.0,9678539.0,9958052.0,10095040.0,10350989.0,10512228.0,10851883.0,10938525.0,11401445.0,11471620.0,11616332.0,11780262.0,12100012.0,12169844.0,12462257.0,12585465.0,12909551.0,12979208.0,13290644.0,13360634.0,13674911.0,13860336.0,14072792.0,14210102.0,14560781.0,14908052.0,14942949.0,15052166.0,15403936.0,15479467.0,15831327.0,15942004.0,16200693.0,16243809.0,16618742.0,16706597.0,17058487.0,17147133.0,17795442.0,17590018.0,17829273.0,17979382.0,18298536.0,18290110.0,18684852.0,18789004.0,19102968.0,19164537.0,19538773.0,20172485.0,19976814.0,19980199.0,20359342.0,20464799.0,20796525.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":45.86820057885567,"lower_bound":45.78625009389305,"upper_bound":45.962626644017455,"unit":"ns"},"mean":{"estimate":45.89406741398699,"lower_bound":45.79426004917583,"upper_bound":46.025169001849584,"unit":"ns"},"median":{"estimate":45.80216441839894,"lower_bound":45.75296303386503,"upper_bound":45.873190065499884,"unit":"ns"},"median_abs_dev":{"estimate":0.2696079677015432,"lower_bound":0.2080231444844358,"upper_bound":0.3159141469782439,"unit":"ns"},"slope":{"estimate":45.86820057885567,"lower_bound":45.78625009389305,"upper_bound":45.962626644017455,"unit":"ns"},"change":{"mean":{"estimate":0.0016062072217433165,"lower_bound":-0.0025674421988099434,"upper_bound":0.005872415241640945,"unit":"%"},"median":{"estimate":0.002308384545937736,"lower_bound":-0.0002498337959747632,"upper_bound":0.0053697785293900235,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"mcp/10","report_directory":"/root/fuel-core/target/criterion/reports/mcp/10","iteration_count":[4548,9096,13644,18192,22740,27288,31836,36384,40932,45480,50028,54576,59124,63672,68220,72768,77316,81864,86412,90960,95508,100056,104604,109152,113700,118248,122796,127344,131892,136440,140988,145536,150084,154632,159180,163728,168276,172824,177372,181920,186468,191016,195564,200112,204660,209208,213756,218304,222852,227400,231948,236496,241044,245592,250140,254688,259236,263784,268332,272880,277428,281976,286524,291072,295620,300168,304716,309264,313812,318360,322908,327456,332004,336552,341100,345648,350196,354744,359292,363840,368388,372936,377484,382032,386580,391128,395676,400224,404772,409320,413868,418416,422964,427512,432060,436608,441156,445704,450252,454800],"measured_values":[217698.0,395078.0,636810.0,793088.0,1010977.0,1181338.0,1402353.0,1596705.0,1776646.0,1959668.0,2232227.0,2370882.0,2598709.0,2823474.0,3044591.0,3148730.0,3385331.0,3538685.0,3753220.0,3924887.0,4279810.0,4342048.0,4589142.0,4756578.0,5000886.0,5174046.0,5388795.0,5568685.0,5940275.0,6170649.0,6266130.0,6308281.0,6687092.0,6705606.0,6957587.0,7143559.0,7391498.0,7557262.0,7811437.0,7913383.0,8196959.0,8295941.0,8971192.0,8843053.0,9109117.0,9110411.0,9522472.0,9546015.0,9812861.0,9936404.0,10213721.0,10331543.0,10707425.0,10744718.0,11104511.0,11137826.0,11321250.0,11437758.0,12046185.0,11888127.0,12229198.0,12358333.0,12749407.0,12741299.0,12998071.0,13139123.0,13441969.0,13517115.0,14035123.0,13866823.0,14287057.0,14314575.0,14656176.0,14664205.0,14967343.0,15055797.0,15386860.0,15623525.0,16329998.0,15908079.0,16566704.0,16238776.0,16775344.0,16863179.0,17822963.0,17229468.0,17506227.0,17445714.0,17775315.0,17953631.0,18780349.0,18169363.0,18542462.0,18684122.0,19179298.0,19109321.0,19770898.0,19586734.0,20225443.0,19892362.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":44.11316108399719,"lower_bound":43.9600617921003,"upper_bound":44.27931216674962,"unit":"ns"},"mean":{"estimate":44.07210448265229,"lower_bound":43.93507090541412,"upper_bound":44.22314696723425,"unit":"ns"},"median":{"estimate":43.88187921430665,"lower_bound":43.75588593464583,"upper_bound":43.996797326734715,"unit":"ns"},"median_abs_dev":{"estimate":0.4644030732938533,"lower_bound":0.3146791704370381,"upper_bound":0.6546921990189278,"unit":"ns"},"slope":{"estimate":44.11316108399719,"lower_bound":43.9600617921003,"upper_bound":44.27931216674962,"unit":"ns"},"change":{"mean":{"estimate":-0.003101138226469846,"lower_bound":-0.008969675980825044,"upper_bound":0.002440466273748902,"unit":"%"},"median":{"estimate":-0.003190465582466606,"lower_bound":-0.00767715995132956,"upper_bound":0.002178686159920451,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"mcp/100","report_directory":"/root/fuel-core/target/criterion/reports/mcp/100","iteration_count":[4500,9000,13500,18000,22500,27000,31500,36000,40500,45000,49500,54000,58500,63000,67500,72000,76500,81000,85500,90000,94500,99000,103500,108000,112500,117000,121500,126000,130500,135000,139500,144000,148500,153000,157500,162000,166500,171000,175500,180000,184500,189000,193500,198000,202500,207000,211500,216000,220500,225000,229500,234000,238500,243000,247500,252000,256500,261000,265500,270000,274500,279000,283500,288000,292500,297000,301500,306000,310500,315000,319500,324000,328500,333000,337500,342000,346500,351000,355500,360000,364500,369000,373500,378000,382500,387000,391500,396000,400500,405000,409500,414000,418500,423000,427500,432000,436500,441000,445500,450000],"measured_values":[218723.0,419488.0,628850.0,834634.0,1045970.0,1277368.0,1427975.0,1635961.0,1840868.0,2040808.0,2247321.0,2429164.0,2652652.0,2886538.0,3062888.0,3249612.0,3501170.0,3668900.0,3912152.0,4095393.0,4361123.0,4478394.0,4764830.0,4908886.0,5167049.0,5307354.0,5546409.0,5765542.0,5940606.0,6213728.0,6400516.0,6595414.0,6741469.0,7028590.0,7274786.0,7382418.0,7581193.0,7815504.0,8005985.0,8202816.0,8406199.0,8594216.0,8791616.0,9283960.0,9497923.0,9480826.0,9670160.0,9842121.0,10091309.0,10268391.0,10477354.0,10565138.0,10963909.0,11190608.0,11327465.0,11451637.0,11849244.0,11897299.0,12500843.0,12322677.0,12706936.0,12827829.0,12981177.0,13169956.0,13281903.0,13567229.0,13890392.0,14036532.0,14129446.0,14611881.0,14620736.0,14809443.0,15016821.0,15249678.0,15403030.0,15573710.0,15868207.0,15955901.0,16160378.0,16412283.0,16637926.0,16883778.0,17005195.0,17169940.0,17453155.0,17744923.0,17863729.0,17972796.0,18345915.0,18371943.0,18861255.0,21865347.0,19289073.0,19352438.0,19598572.0,19724170.0,19915716.0,20339093.0,20397080.0,20549913.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":45.927212243075054,"lower_bound":45.69923166324443,"upper_bound":46.33297706791531,"unit":"ns"},"mean":{"estimate":45.8614471029186,"lower_bound":45.72072196199677,"upper_bound":46.050755301842706,"unit":"ns"},"median":{"estimate":45.70642958089668,"lower_bound":45.63435392156863,"upper_bound":45.765573696145125,"unit":"ns"},"median_abs_dev":{"estimate":0.3150211950739221,"lower_bound":0.2131226602460675,"upper_bound":0.4211097515906115,"unit":"ns"},"slope":{"estimate":45.927212243075054,"lower_bound":45.69923166324443,"upper_bound":46.33297706791531,"unit":"ns"},"change":{"mean":{"estimate":0.01464871238910126,"lower_bound":0.009968880900815831,"upper_bound":0.019524869686567362,"unit":"%"},"median":{"estimate":0.015536394048726754,"lower_bound":0.013343052998309624,"upper_bound":0.017966924944080476,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"mcp/1000","report_directory":"/root/fuel-core/target/criterion/reports/mcp/1000","iteration_count":[3420,6840,10260,13680,17100,20520,23940,27360,30780,34200,37620,41040,44460,47880,51300,54720,58140,61560,64980,68400,71820,75240,78660,82080,85500,88920,92340,95760,99180,102600,106020,109440,112860,116280,119700,123120,126540,129960,133380,136800,140220,143640,147060,150480,153900,157320,160740,164160,167580,171000,174420,177840,181260,184680,188100,191520,194940,198360,201780,205200,208620,212040,215460,218880,222300,225720,229140,232560,235980,239400,242820,246240,249660,253080,256500,259920,263340,266760,270180,273600,277020,280440,283860,287280,290700,294120,297540,300960,304380,307800,311220,314640,318060,321480,324900,328320,331740,335160,338580,342000],"measured_values":[215796.0,408309.0,620773.0,811907.0,1018111.0,1225788.0,1420055.0,1636644.0,1828992.0,2041957.0,2262260.0,2453552.0,2644197.0,2852817.0,3060935.0,3282672.0,3458869.0,3907907.0,3888109.0,4139426.0,4273680.0,4494540.0,4733687.0,4911191.0,5274175.0,5346102.0,5529330.0,5715642.0,5905230.0,6098081.0,6387572.0,6545303.0,6748423.0,6912438.0,7158368.0,7338775.0,7522708.0,7740219.0,7954390.0,8165382.0,8374634.0,8590829.0,8839059.0,8974915.0,9168701.0,9423016.0,9628736.0,9934717.0,10001378.0,10258557.0,10399303.0,10644194.0,10828843.0,11049692.0,11301336.0,11449706.0,11643572.0,11866907.0,12062392.0,12285762.0,12525316.0,12687887.0,12901418.0,13065525.0,13230134.0,13496337.0,13806893.0,13935141.0,14136992.0,14244796.0,14545409.0,14734511.0,14950701.0,15133214.0,15334168.0,15539845.0,15679208.0,16043638.0,16173041.0,16406494.0,16591520.0,16697596.0,17030339.0,17145755.0,17355211.0,17543297.0,17827153.0,17943664.0,18214359.0,18432225.0,18614204.0,18975748.0,19079034.0,19211731.0,19408283.0,19550385.0,19793175.0,19997882.0,20186660.0,20450895.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":59.81132763315609,"lower_bound":59.76442613476027,"upper_bound":59.86247909850786,"unit":"ns"},"mean":{"estimate":59.8821654190285,"lower_bound":59.783598931589815,"upper_bound":60.006524212443786,"unit":"ns"},"median":{"estimate":59.79351187311714,"lower_bound":59.73615098351941,"upper_bound":59.83155728828243,"unit":"ns"},"median_abs_dev":{"estimate":0.18755051596096803,"lower_bound":0.14855390161478826,"upper_bound":0.2658089092673039,"unit":"ns"},"slope":{"estimate":59.81132763315609,"lower_bound":59.76442613476027,"upper_bound":59.86247909850786,"unit":"ns"},"change":{"mean":{"estimate":0.030203320468896733,"lower_bound":0.025724743779219152,"upper_bound":0.03381795153383858,"unit":"%"},"median":{"estimate":0.030411103780433102,"lower_bound":0.028142594125091014,"upper_bound":0.03411812129408021,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"mcp/10000","report_directory":"/root/fuel-core/target/criterion/reports/mcp/10000","iteration_count":[823,1646,2469,3292,4115,4938,5761,6584,7407,8230,9053,9876,10699,11522,12345,13168,13991,14814,15637,16460,17283,18106,18929,19752,20575,21398,22221,23044,23867,24690,25513,26336,27159,27982,28805,29628,30451,31274,32097,32920,33743,34566,35389,36212,37035,37858,38681,39504,40327,41150,41973,42796,43619,44442,45265,46088,46911,47734,48557,49380,50203,51026,51849,52672,53495,54318,55141,55964,56787,57610,58433,59256,60079,60902,61725,62548,63371,64194,65017,65840,66663,67486,68309,69132,69955,70778,71601,72424,73247,74070,74893,75716,76539,77362,78185,79008,79831,80654,81477,82300],"measured_values":[298215.0,637293.0,842137.0,1266257.0,1424351.0,1905378.0,1988932.0,2506191.0,2561295.0,3156643.0,3130946.0,3760723.0,3684724.0,4413901.0,4213430.0,4948911.0,4782888.0,5643525.0,5374460.0,6209223.0,5939839.0,6918053.0,6443125.0,7471574.0,7039262.0,8167704.0,7599259.0,8832016.0,8289937.0,9382818.0,8710526.0,10009716.0,9313604.0,10722287.0,9863992.0,11274989.0,10454373.0,12052947.0,10959235.0,12410584.0,11599381.0,13327139.0,12181083.0,13654269.0,12645125.0,14481654.0,13219311.0,15081893.0,13765373.0,15735754.0,14347204.0,16095758.0,14978176.0,17013790.0,15444905.0,17382820.0,16125952.0,18297570.0,16639275.0,18766633.0,17253769.0,19507971.0,17800641.0,19959450.0,18323377.0,20874227.0,18945707.0,21241768.0,19490902.0,22124978.0,19942113.0,22289742.0,20560797.0,23208417.0,21080372.0,23556490.0,21750891.0,24565868.0,22236172.0,24950184.0,22823535.0,25733355.0,23568400.0,26210032.0,23941181.0,27012705.0,24452905.0,27349384.0,25060792.0,28172491.0,25543404.0,28627083.0,26321884.0,29632658.0,26763276.0,29983699.0,27458690.0,30894094.0,27985463.0,31272428.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":361.8717766675926,"lower_bound":356.92846869390485,"upper_bound":366.82698791663205,"unit":"ns"},"mean":{"estimate":362.13236276980774,"lower_bound":358.40575589689473,"upper_bound":365.8757154956548,"unit":"ns"},"median":{"estimate":369.0898769744836,"lower_bound":343.9602410091318,"upper_bound":378.0849886417666,"unit":"ns"},"median_abs_dev":{"estimate":25.83972017460682,"lower_bound":3.9374571732665373,"upper_bound":28.43172824979241,"unit":"ns"},"slope":{"estimate":361.8717766675926,"lower_bound":356.92846869390485,"upper_bound":366.82698791663205,"unit":"ns"},"change":{"mean":{"estimate":0.03198645700836056,"lower_bound":0.02014044217341242,"upper_bound":0.04428330653629857,"unit":"%"},"median":{"estimate":0.05242741443644139,"lower_bound":-0.023802061091438675,"upper_bound":0.08462498769421134,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"mcp/19753","report_directory":"/root/fuel-core/target/criterion/reports/mcp/19753","iteration_count":[407,814,1221,1628,2035,2442,2849,3256,3663,4070,4477,4884,5291,5698,6105,6512,6919,7326,7733,8140,8547,8954,9361,9768,10175,10582,10989,11396,11803,12210,12617,13024,13431,13838,14245,14652,15059,15466,15873,16280,16687,17094,17501,17908,18315,18722,19129,19536,19943,20350,20757,21164,21571,21978,22385,22792,23199,23606,24013,24420,24827,25234,25641,26048,26455,26862,27269,27676,28083,28490,28897,29304,29711,30118,30525,30932,31339,31746,32153,32560,32967,33374,33781,34188,34595,35002,35409,35816,36223,36630,37037,37444,37851,38258,38665,39072,39479,39886,40293,40700],"measured_values":[383965.0,754559.0,1105104.0,1440356.0,1804802.0,2218788.0,2540938.0,2848591.0,3270996.0,3708764.0,3957002.0,4269976.0,4700610.0,5156763.0,5431143.0,5699623.0,6117433.0,6637155.0,6834544.0,7111803.0,7592097.0,8098464.0,8366797.0,8538771.0,9012693.0,9579113.0,9710584.0,9967292.0,10521960.0,11057116.0,11274370.0,11404390.0,11911688.0,12634871.0,12638887.0,12848835.0,13433036.0,13998098.0,14222618.0,14337991.0,14781498.0,15530938.0,15537850.0,15698701.0,16310360.0,16941491.0,16999149.0,17104858.0,17657964.0,18494000.0,18405100.0,18522395.0,19247940.0,19830285.0,19907761.0,20061445.0,20568165.0,21361930.0,21240562.0,21379290.0,22064708.0,22799850.0,22811206.0,22829430.0,23476342.0,24352998.0,24208321.0,24286685.0,24947550.0,25740386.0,25763955.0,25741671.0,26391650.0,27295681.0,27076339.0,27042989.0,27873924.0,28793884.0,28618943.0,28515751.0,29179315.0,30229216.0,29926363.0,29921132.0,30836921.0,31748092.0,31477620.0,31347359.0,32065308.0,33136885.0,32850359.0,32789153.0,33642904.0,34652654.0,34386955.0,34170938.0,35027655.0,36108043.0,35699783.0,35658297.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":889.2654751324266,"lower_bound":886.4878899932895,"upper_bound":892.1596185183573,"unit":"ns"},"mean":{"estimate":890.731054513658,"lower_bound":888.2853486109966,"upper_bound":893.2883151885582,"unit":"ns"},"median":{"estimate":888.3146777726885,"lower_bound":886.8805896805897,"upper_bound":889.622113022113,"unit":"ns"},"median_abs_dev":{"estimate":11.734074893266165,"lower_bound":5.888086302615976,"upper_bound":19.620508749604905,"unit":"ns"},"slope":{"estimate":889.2654751324266,"lower_bound":886.4878899932895,"upper_bound":892.1596185183573,"unit":"ns"},"change":{"mean":{"estimate":0.05589891534418201,"lower_bound":0.05241237783083254,"upper_bound":0.059702677858781326,"unit":"%"},"median":{"estimate":0.0519428613379016,"lower_bound":0.047509559235781706,"upper_bound":0.059822767945621136,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"mcp/29629","report_directory":"/root/fuel-core/target/criterion/reports/mcp/29629","iteration_count":[303,606,909,1212,1515,1818,2121,2424,2727,3030,3333,3636,3939,4242,4545,4848,5151,5454,5757,6060,6363,6666,6969,7272,7575,7878,8181,8484,8787,9090,9393,9696,9999,10302,10605,10908,11211,11514,11817,12120,12423,12726,13029,13332,13635,13938,14241,14544,14847,15150,15453,15756,16059,16362,16665,16968,17271,17574,17877,18180,18483,18786,19089,19392,19695,19998,20301,20604,20907,21210,21513,21816,22119,22422,22725,23028,23331,23634,23937,24240,24543,24846,25149,25452,25755,26058,26361,26664,26967,27270,27573,27876,28179,28482,28785,29088,29391,29694,29997,30300],"measured_values":[406094.0,776599.0,1146660.0,1554188.0,1923342.0,2287997.0,2678489.0,3087574.0,3484727.0,3817675.0,4213331.0,4624659.0,4991673.0,5344421.0,5748916.0,6237094.0,6525249.0,6888481.0,7316252.0,7735640.0,8094220.0,8395859.0,8829630.0,9346352.0,9610607.0,9920874.0,10367434.0,10896345.0,11164992.0,11502499.0,11958215.0,12487137.0,12762062.0,13019843.0,13451715.0,14071276.0,14278477.0,14509342.0,14976115.0,15411560.0,15816773.0,16083826.0,16545225.0,17167565.0,17300315.0,17605034.0,18002762.0,18631496.0,18938804.0,19179136.0,19543945.0,20022161.0,20345664.0,20690440.0,21425558.0,21926409.0,21999900.0,22167176.0,22682990.0,23272159.0,23640978.0,23783897.0,24217501.0,24674776.0,25109320.0,25187100.0,25721551.0,26404792.0,26539553.0,26856044.0,27271322.0,27909260.0,28123191.0,28272951.0,28737919.0,29609652.0,29742664.0,29844470.0,30356647.0,31027499.0,31278146.0,31468410.0,31813072.0,32455442.0,32862234.0,32904022.0,33343846.0,33881793.0,34216616.0,34458948.0,34961964.0,35410972.0,36128889.0,37398967.0,36376139.0,38221211.0,37014775.0,39021668.0,37795235.0,39858857.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":1274.936770534154,"lower_bound":1270.3828000591282,"upper_bound":1279.9533765705846,"unit":"ns"},"mean":{"estimate":1273.0194904057005,"lower_bound":1270.56203449541,"upper_bound":1275.7948442041547,"unit":"ns"},"median":{"estimate":1269.123202187573,"lower_bound":1267.3364644156723,"upper_bound":1271.6789468330394,"unit":"ns"},"median_abs_dev":{"estimate":7.939923205247982,"lower_bound":6.163213935092768,"upper_bound":10.766514026725943,"unit":"ns"},"slope":{"estimate":1274.936770534154,"lower_bound":1270.3828000591282,"upper_bound":1279.9533765705846,"unit":"ns"},"change":{"mean":{"estimate":-0.026122373919306496,"lower_bound":-0.030211166958862817,"upper_bound":-0.022702687627156874,"unit":"%"},"median":{"estimate":-0.02610953514981118,"lower_bound":-0.03258484474098844,"upper_bound":-0.021220520489869537,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"mcp/44444","report_directory":"/root/fuel-core/target/criterion/reports/mcp/44444","iteration_count":[167,334,501,668,835,1002,1169,1336,1503,1670,1837,2004,2171,2338,2505,2672,2839,3006,3173,3340,3507,3674,3841,4008,4175,4342,4509,4676,4843,5010,5177,5344,5511,5678,5845,6012,6179,6346,6513,6680,6847,7014,7181,7348,7515,7682,7849,8016,8183,8350,8517,8684,8851,9018,9185,9352,9519,9686,9853,10020,10187,10354,10521,10688,10855,11022,11189,11356,11523,11690,11857,12024,12191,12358,12525,12692,12859,13026,13193,13360,13527,13694,13861,14028,14195,14362,14529,14696,14863,15030,15197,15364,15531,15698,15865,16032,16199,16366,16533,16700],"measured_values":[428420.0,785657.0,1191535.0,1563328.0,1988562.0,2344246.0,2805650.0,3136292.0,3571988.0,3882482.0,4363953.0,4726307.0,5167392.0,5461322.0,5961322.0,6237223.0,6753048.0,7027257.0,7553825.0,7816870.0,8388288.0,8616164.0,9135822.0,9429953.0,9931840.0,10102372.0,10740614.0,10937787.0,11502711.0,11688980.0,12341951.0,12497718.0,13093351.0,13286329.0,13902460.0,14109532.0,14764769.0,14920580.0,15480343.0,15602304.0,16281250.0,16449157.0,17055274.0,17243161.0,17870533.0,17928912.0,18697160.0,18789837.0,19471835.0,19523848.0,20255578.0,20386291.0,21038918.0,21100987.0,21828191.0,21891885.0,22690994.0,22654675.0,23441742.0,23461127.0,24175179.0,24184021.0,24989845.0,24951066.0,25959291.0,25774280.0,26566319.0,26580054.0,27424720.0,27317467.0,28119152.0,28181910.0,29022418.0,28950138.0,30042985.0,29729467.0,30551107.0,30445692.0,31389850.0,31233966.0,32279571.0,32100362.0,32903773.0,32733169.0,33830612.0,33446793.0,34500769.0,34205276.0,35305559.0,34878169.0,36045826.0,35836928.0,36843823.0,36630588.0,37654891.0,37512617.0,39147673.0,38226345.0,39086987.0,38882879.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":2357.657265808268,"lower_bound":2351.339620858447,"upper_bound":2364.3147776327496,"unit":"ns"},"mean":{"estimate":2361.38610728927,"lower_bound":2356.002777658039,"upper_bound":2367.6751895087564,"unit":"ns"},"median":{"estimate":2361.308284945261,"lower_bound":2345.172563962983,"upper_bound":2375.0555632920205,"unit":"ns"},"median_abs_dev":{"estimate":28.676055994554936,"lower_bound":14.276134105198635,"upper_bound":36.6122807794511,"unit":"ns"},"slope":{"estimate":2357.657265808268,"lower_bound":2351.339620858447,"upper_bound":2364.3147776327496,"unit":"ns"},"change":{"mean":{"estimate":0.005362522778110224,"lower_bound":0.002049786655894032,"upper_bound":0.008615860558001986,"unit":"%"},"median":{"estimate":0.00598236672900021,"lower_bound":-0.0015264072998525024,"upper_bound":0.012346189364831117,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"mcp/66666","report_directory":"/root/fuel-core/target/criterion/reports/mcp/66666","iteration_count":[100,200,300,400,500,600,700,800,900,1000,1100,1200,1300,1400,1500,1600,1700,1800,1900,2000,2100,2200,2300,2400,2500,2600,2700,2800,2900,3000,3100,3200,3300,3400,3500,3600,3700,3800,3900,4000,4100,4200,4300,4400,4500,4600,4700,4800,4900,5000,5100,5200,5300,5400,5500,5600,5700,5800,5900,6000,6100,6200,6300,6400,6500,6600,6700,6800,6900,7000,7100,7200,7300,7400,7500,7600,7700,7800,7900,8000,8100,8200,8300,8400,8500,8600,8700,8800,8900,9000,9100,9200,9300,9400,9500,9600,9700,9800,9900,10000],"measured_values":[406923.0,732333.0,1102670.0,1467424.0,1832256.0,2204199.0,2569464.0,2937799.0,3315690.0,3664097.0,4058218.0,4400612.0,4781793.0,5140997.0,5539460.0,5887851.0,6244012.0,6690272.0,6993048.0,7321275.0,7732885.0,8056832.0,8422781.0,8794486.0,9179763.0,9567663.0,9890005.0,10254579.0,10648226.0,11048360.0,11385106.0,11720685.0,12152407.0,12465293.0,12854720.0,13232508.0,13601337.0,13987718.0,14304750.0,14710813.0,15055909.0,15414004.0,15842891.0,16161532.0,16539272.0,16883678.0,17259715.0,17742621.0,17992407.0,18397105.0,18730484.0,19068172.0,19481241.0,19938279.0,20197775.0,20504143.0,21001788.0,21320731.0,21705209.0,22125239.0,22346778.0,22795215.0,23151128.0,23475958.0,23848581.0,24287300.0,24670322.0,24992930.0,25304525.0,25674050.0,26023889.0,26315976.0,26763039.0,27179808.0,27552537.0,27888503.0,28273960.0,28565245.0,28981019.0,29299267.0,29753282.0,30109199.0,30423420.0,30830820.0,31140410.0,31745524.0,31949610.0,32266140.0,32703471.0,33074257.0,33342600.0,33697139.0,34113644.0,34350198.0,34868313.0,35212644.0,35723881.0,35886324.0,36341542.0,36296155.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":3669.7620453967784,"lower_bound":3666.5228310318216,"upper_bound":3672.6284917536445,"unit":"ns"},"mean":{"estimate":3676.357398284211,"lower_bound":3670.8694053316176,"upper_bound":3685.5249059529406,"unit":"ns"},"median":{"estimate":3672.1568205574913,"lower_bound":3670.348736842105,"upper_bound":3673.0112407862407,"unit":"ns"},"median_abs_dev":{"estimate":8.225784760781316,"lower_bound":5.858689192412893,"upper_bound":11.17827732342278,"unit":"ns"},"slope":{"estimate":3669.7620453967784,"lower_bound":3666.5228310318216,"upper_bound":3672.6284917536445,"unit":"ns"},"change":{"mean":{"estimate":-0.006488820261495443,"lower_bound":-0.010202400895270787,"upper_bound":-0.0024969290771010657,"unit":"%"},"median":{"estimate":-0.01656185328259363,"lower_bound":-0.01800226001794336,"upper_bound":-0.010843767406600313,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"mcp/100000","report_directory":"/root/fuel-core/target/criterion/reports/mcp/100000","iteration_count":[77,154,231,308,385,462,539,616,693,770,847,924,1001,1078,1155,1232,1309,1386,1463,1540,1617,1694,1771,1848,1925,2002,2079,2156,2233,2310,2387,2464,2541,2618,2695,2772,2849,2926,3003,3080,3157,3234,3311,3388,3465,3542,3619,3696,3773,3850,3927,4004,4081,4158,4235,4312,4389,4466,4543,4620,4697,4774,4851,4928,5005,5082,5159,5236,5313,5390,5467,5544,5621,5698,5775,5852,5929,6006,6083,6160,6237,6314,6391,6468,6545,6622,6699,6776,6853,6930,7007,7084,7161,7238,7315,7392,7469,7546,7623,7700],"measured_values":[416889.0,836971.0,1224102.0,1673040.0,2036049.0,2511318.0,2862041.0,3350702.0,3675974.0,4187477.0,4492569.0,5015312.0,5294428.0,5868570.0,6112057.0,6710125.0,6938108.0,7542764.0,7743163.0,8395047.0,8555993.0,9253364.0,9368760.0,10050967.0,10186848.0,10887897.0,10999411.0,11716269.0,11835971.0,12551002.0,12631763.0,13455942.0,13445618.0,14306241.0,14391279.0,15081937.0,15095201.0,15900328.0,15911733.0,16764014.0,16758324.0,17658112.0,17600220.0,18411101.0,18383095.0,19250861.0,19143783.0,20103542.0,19945137.0,20908205.0,20772115.0,21777447.0,21582754.0,22585112.0,22440774.0,23514767.0,23226887.0,24502511.0,24023185.0,25090639.0,24935739.0,25901783.0,25808626.0,26921613.0,26464064.0,27647313.0,27309708.0,28500287.0,28180716.0,29289834.0,28935346.0,30187071.0,29781298.0,30987846.0,30562919.0,31815224.0,31424285.0,32665345.0,32326198.0,33484821.0,33027259.0,34248232.0,33816696.0,35139896.0,34687527.0,35965285.0,35409137.0,36833603.0,36290569.0,37678596.0,37118081.0,38514193.0,37885403.0,39335568.0,38737580.0,40232751.0,39559607.0,40922041.0,40268773.0,41886339.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":5368.129388188286,"lower_bound":5349.419638173114,"upper_bound":5387.018075852462,"unit":"ns"},"mean":{"estimate":5370.05930115653,"lower_bound":5356.028941027769,"upper_bound":5384.239749645073,"unit":"ns"},"median":{"estimate":5418.576928173867,"lower_bound":5304.435786435786,"upper_bound":5432.884353741497,"unit":"ns"},"median_abs_dev":{"estimate":84.41224718800557,"lower_bound":18.731125839893433,"upper_bound":107.24602696652528,"unit":"ns"},"slope":{"estimate":5368.129388188286,"lower_bound":5349.419638173114,"upper_bound":5387.018075852462,"unit":"ns"},"change":{"mean":{"estimate":-0.0038721061314546112,"lower_bound":-0.00786812252575114,"upper_bound":-0.00018025842444930088,"unit":"%"},"median":{"estimate":0.0061109933355740775,"lower_bound":-0.014987606225198012,"upper_bound":0.00913926606640314,"unit":"%"},"change":"NoChange"}} -{"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":[4468,8936,13404,17872,22340,26808,31276,35744,40212,44680,49148,53616,58084,62552,67020,71488,75956,80424,84892,89360,93828,98296,102764,107232,111700,116168,120636,125104,129572,134040,138508,142976,147444,151912,156380,160848,165316,169784,174252,178720,183188,187656,192124,196592,201060,205528,209996,214464,218932,223400,227868,232336,236804,241272,245740,250208,254676,259144,263612,268080,272548,277016,281484,285952,290420,294888,299356,303824,308292,312760,317228,321696,326164,330632,335100,339568,344036,348504,352972,357440,361908,366376,370844,375312,379780,384248,388716,393184,397652,402120,406588,411056,415524,419992,424460,428928,433396,437864,442332,446800],"measured_values":[229123.0,429821.0,609787.0,826342.0,1009745.0,1221272.0,1422666.0,1641856.0,1829548.0,2070681.0,2278771.0,2503243.0,2645474.0,2889709.0,3054926.0,3315995.0,3443713.0,3717620.0,3854860.0,4076224.0,4255512.0,4487761.0,4657249.0,4945516.0,5078131.0,5354360.0,5455489.0,5664548.0,5902902.0,6250441.0,6322112.0,6483682.0,6724753.0,7060982.0,7147671.0,7415719.0,7425757.0,7724905.0,7919221.0,8261088.0,8328715.0,8588722.0,8738931.0,9166237.0,9159540.0,9544404.0,9580214.0,10015620.0,9989493.0,10423909.0,10433673.0,10772067.0,10701238.0,11180933.0,11198679.0,11568278.0,11601286.0,12010016.0,11983952.0,12389611.0,12383947.0,12666068.0,12777317.0,13284051.0,13263532.0,13758065.0,13753060.0,14138864.0,14131835.0,14389178.0,14552821.0,14761798.0,14798477.0,15317989.0,15149018.0,15852292.0,15695239.0,16134212.0,16152288.0,16523043.0,16476512.0,17088622.0,16887923.0,17563809.0,17313143.0,17998392.0,17769623.0,18383088.0,18217872.0,18656269.0,18540547.0,19062834.0,18928655.0,19579826.0,19295726.0,19901155.0,19778942.0,20316868.0,19985366.0,20722163.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":45.987558385069256,"lower_bound":45.85613598839219,"upper_bound":46.11832048870076,"unit":"ns"},"mean":{"estimate":45.9730116220081,"lower_bound":45.84013977835433,"upper_bound":46.1327647516022,"unit":"ns"},"median":{"estimate":45.764628774007704,"lower_bound":45.62093563686928,"upper_bound":46.091522622408924,"unit":"ns"},"median_abs_dev":{"estimate":0.5673075481888105,"lower_bound":0.33821382346926127,"upper_bound":0.7084418051401505,"unit":"ns"},"slope":{"estimate":45.987558385069256,"lower_bound":45.85613598839219,"upper_bound":46.11832048870076,"unit":"ns"},"change":{"mean":{"estimate":-0.0021106672792355896,"lower_bound":-0.007318984417026712,"upper_bound":0.0031488688065867665,"unit":"%"},"median":{"estimate":-0.0030605538780980046,"lower_bound":-0.011744429232255271,"upper_bound":0.004812924632548121,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"mcpi/10","report_directory":"/root/fuel-core/target/criterion/reports/mcpi/10","iteration_count":[4560,9120,13680,18240,22800,27360,31920,36480,41040,45600,50160,54720,59280,63840,68400,72960,77520,82080,86640,91200,95760,100320,104880,109440,114000,118560,123120,127680,132240,136800,141360,145920,150480,155040,159600,164160,168720,173280,177840,182400,186960,191520,196080,200640,205200,209760,214320,218880,223440,228000,232560,237120,241680,246240,250800,255360,259920,264480,269040,273600,278160,282720,287280,291840,296400,300960,305520,310080,314640,319200,323760,328320,332880,337440,342000,346560,351120,355680,360240,364800,369360,373920,378480,383040,387600,392160,396720,401280,405840,410400,414960,419520,424080,428640,433200,437760,442320,446880,451440,456000],"measured_values":[220301.0,398895.0,586872.0,790053.0,978514.0,1181847.0,1371248.0,1590264.0,1770800.0,1967290.0,2164385.0,2479980.0,2592728.0,2902024.0,2928536.0,3129772.0,3363665.0,3647794.0,3722296.0,4036259.0,4122972.0,4434478.0,4574170.0,4867213.0,4929562.0,5286022.0,5350932.0,5642783.0,5681364.0,5927811.0,6152409.0,6402272.0,6528695.0,6848730.0,6898176.0,7281729.0,7279249.0,7606951.0,7646587.0,7994163.0,8106186.0,8518017.0,8488066.0,8766440.0,8896161.0,9279609.0,9184552.0,9686001.0,9620876.0,10031892.0,10013419.0,10438982.0,10415596.0,10747889.0,10843903.0,11244528.0,11284027.0,11688148.0,11661777.0,12028030.0,12043118.0,12333983.0,12345861.0,12628939.0,12758882.0,13227412.0,13242058.0,13519395.0,13551106.0,14100165.0,13908781.0,14491286.0,14303550.0,14970807.0,14790356.0,15295681.0,15212350.0,15803962.0,15575755.0,16027163.0,15998698.0,16621869.0,16389247.0,17042390.0,16807657.0,17311314.0,17166861.0,17649444.0,17519538.0,17997764.0,17846778.0,18555843.0,18256542.0,18951489.0,18599968.0,19357319.0,19119345.0,19916562.0,19561459.0,20079897.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":43.656525521169556,"lower_bound":43.516944249246635,"upper_bound":43.796520722123944,"unit":"ns"},"mean":{"estimate":43.67023624620425,"lower_bound":43.536638393909016,"upper_bound":43.8237044722873,"unit":"ns"},"median":{"estimate":43.40219660347981,"lower_bound":43.32294792466576,"upper_bound":43.73697705802969,"unit":"ns"},"median_abs_dev":{"estimate":0.6320602294585134,"lower_bound":0.43258605904926717,"upper_bound":0.7998706027030729,"unit":"ns"},"slope":{"estimate":43.656525521169556,"lower_bound":43.516944249246635,"upper_bound":43.796520722123944,"unit":"ns"},"change":{"mean":{"estimate":0.036462604924041075,"lower_bound":0.03137086972886435,"upper_bound":0.041514139874446784,"unit":"%"},"median":{"estimate":0.03390087336133174,"lower_bound":0.02988101735365789,"upper_bound":0.04366667320734696,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"mcpi/100","report_directory":"/root/fuel-core/target/criterion/reports/mcpi/100","iteration_count":[4561,9122,13683,18244,22805,27366,31927,36488,41049,45610,50171,54732,59293,63854,68415,72976,77537,82098,86659,91220,95781,100342,104903,109464,114025,118586,123147,127708,132269,136830,141391,145952,150513,155074,159635,164196,168757,173318,177879,182440,187001,191562,196123,200684,205245,209806,214367,218928,223489,228050,232611,237172,241733,246294,250855,255416,259977,264538,269099,273660,278221,282782,287343,291904,296465,301026,305587,310148,314709,319270,323831,328392,332953,337514,342075,346636,351197,355758,360319,364880,369441,374002,378563,383124,387685,392246,396807,401368,405929,410490,415051,419612,424173,428734,433295,437856,442417,446978,451539,456100],"measured_values":[242653.0,407730.0,613678.0,813272.0,1021649.0,1222436.0,1430386.0,1631185.0,1872194.0,2046443.0,2262264.0,2465210.0,2704866.0,2882799.0,3104299.0,3263577.0,3539719.0,3676828.0,3944460.0,4094276.0,4578625.0,4507821.0,4781257.0,4890226.0,5158300.0,5310529.0,5566299.0,5751598.0,5970212.0,6144944.0,6463506.0,6582265.0,6783086.0,6938236.0,7280567.0,7362244.0,7706011.0,7742826.0,8096035.0,8151534.0,8457625.0,8618873.0,8896666.0,8964719.0,9326661.0,9412794.0,9800768.0,9810938.0,10104123.0,10236151.0,10809473.0,10637600.0,10949113.0,11212166.0,11383706.0,11458897.0,11851184.0,11916490.0,12251489.0,12352587.0,12665082.0,12708829.0,13026814.0,13137180.0,13470601.0,13515871.0,13924456.0,13884783.0,14203681.0,14385489.0,14747532.0,14754429.0,15191156.0,15123523.0,15561938.0,15530467.0,16009963.0,15946386.0,16346920.0,16323379.0,16870601.0,16779712.0,17217419.0,17201864.0,17546274.0,17565627.0,18073232.0,17974922.0,18296665.0,18440789.0,18777372.0,18859046.0,19314782.0,19332936.0,19740924.0,19609170.0,20324554.0,20105010.0,20653038.0,20418477.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":45.1937336832048,"lower_bound":45.09943284913522,"upper_bound":45.292562311873546,"unit":"ns"},"mean":{"estimate":45.256092669339154,"lower_bound":45.110969678813206,"upper_bound":45.461842088650634,"unit":"ns"},"median":{"estimate":45.08231410374273,"lower_bound":44.94401018083372,"upper_bound":45.22769931711595,"unit":"ns"},"median_abs_dev":{"estimate":0.4364006602345041,"lower_bound":0.29314174140565447,"upper_bound":0.5288752230474583,"unit":"ns"},"slope":{"estimate":45.1937336832048,"lower_bound":45.09943284913522,"upper_bound":45.292562311873546,"unit":"ns"},"change":{"mean":{"estimate":0.0307601312716419,"lower_bound":0.026090877892593203,"upper_bound":0.03629804497937509,"unit":"%"},"median":{"estimate":0.03289657072547536,"lower_bound":0.027384966734896876,"upper_bound":0.036308415547367856,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"mcpi/1000","report_directory":"/root/fuel-core/target/criterion/reports/mcpi/1000","iteration_count":[3412,6824,10236,13648,17060,20472,23884,27296,30708,34120,37532,40944,44356,47768,51180,54592,58004,61416,64828,68240,71652,75064,78476,81888,85300,88712,92124,95536,98948,102360,105772,109184,112596,116008,119420,122832,126244,129656,133068,136480,139892,143304,146716,150128,153540,156952,160364,163776,167188,170600,174012,177424,180836,184248,187660,191072,194484,197896,201308,204720,208132,211544,214956,218368,221780,225192,228604,232016,235428,238840,242252,245664,249076,252488,255900,259312,262724,266136,269548,272960,276372,279784,283196,286608,290020,293432,296844,300256,303668,307080,310492,313904,317316,320728,324140,327552,330964,334376,337788,341200],"measured_values":[228302.0,411182.0,623245.0,831036.0,1039270.0,1254642.0,1454030.0,1667725.0,1878874.0,2089071.0,2310547.0,2504775.0,2709724.0,2914197.0,3140064.0,3328182.0,3558401.0,3755425.0,3987724.0,4169916.0,4389770.0,4606684.0,4787319.0,5020731.0,5255058.0,5438270.0,5646226.0,5876526.0,6062740.0,6254171.0,6478064.0,6668491.0,6897474.0,7116162.0,7302887.0,7519437.0,7769052.0,8046258.0,8173459.0,8376657.0,8589421.0,8779147.0,9022232.0,9197225.0,9435665.0,9627403.0,9847357.0,10027945.0,10256484.0,10430422.0,10736292.0,10857821.0,11120055.0,11259853.0,11502804.0,11711056.0,11918943.0,12115695.0,12347367.0,12559046.0,12815861.0,12893508.0,13207230.0,13361142.0,13596948.0,13773711.0,14036600.0,14206948.0,14441189.0,14619308.0,14859974.0,15041867.0,15245012.0,15449860.0,15710344.0,15891125.0,16095299.0,16299091.0,16514230.0,16672716.0,16956724.0,17118944.0,17352307.0,17549420.0,17739641.0,17942466.0,18163418.0,18416542.0,18681191.0,18806587.0,19051872.0,19259288.0,19433890.0,19654664.0,19869265.0,20071511.0,20245487.0,20527943.0,20808415.0,20843713.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":61.289484652521175,"lower_bound":61.25659750945712,"upper_bound":61.32500049290518,"unit":"ns"},"mean":{"estimate":61.32164433592018,"lower_bound":61.2343316805565,"upper_bound":61.45803526996453,"unit":"ns"},"median":{"estimate":61.26918025731966,"lower_bound":61.23860859058293,"upper_bound":61.295982095278696,"unit":"ns"},"median_abs_dev":{"estimate":0.12633222328735522,"lower_bound":0.10448992183661165,"upper_bound":0.17334950690862583,"unit":"ns"},"slope":{"estimate":61.289484652521175,"lower_bound":61.25659750945712,"upper_bound":61.32500049290518,"unit":"ns"},"change":{"mean":{"estimate":0.01701128614903258,"lower_bound":0.014323753091420283,"upper_bound":0.019899875733241,"unit":"%"},"median":{"estimate":0.017537094553642385,"lower_bound":0.0164246886335635,"upper_bound":0.018505834930223397,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"mcpi/4095","report_directory":"/root/fuel-core/target/criterion/reports/mcpi/4095","iteration_count":[1789,3578,5367,7156,8945,10734,12523,14312,16101,17890,19679,21468,23257,25046,26835,28624,30413,32202,33991,35780,37569,39358,41147,42936,44725,46514,48303,50092,51881,53670,55459,57248,59037,60826,62615,64404,66193,67982,69771,71560,73349,75138,76927,78716,80505,82294,84083,85872,87661,89450,91239,93028,94817,96606,98395,100184,101973,103762,105551,107340,109129,110918,112707,114496,116285,118074,119863,121652,123441,125230,127019,128808,130597,132386,134175,135964,137753,139542,141331,143120,144909,146698,148487,150276,152065,153854,155643,157432,159221,161010,162799,164588,166377,168166,169955,171744,173533,175322,177111,178900],"measured_values":[267455.0,491428.0,724800.0,959023.0,1205175.0,1463454.0,1695474.0,1917349.0,2174841.0,2387741.0,2660493.0,2876760.0,3148882.0,3332513.0,3606928.0,3827997.0,4094775.0,4304704.0,4596556.0,4815577.0,5079655.0,5392185.0,5565867.0,5777364.0,6053854.0,6204874.0,6528976.0,6729453.0,7018329.0,7169478.0,7519876.0,7784765.0,8102735.0,8135992.0,8476685.0,8664819.0,8957443.0,9097356.0,9433723.0,9623575.0,9902242.0,10266728.0,10468442.0,10553877.0,10942689.0,11147835.0,11605924.0,11604884.0,11869278.0,12241582.0,12337304.0,12508452.0,12824765.0,13143079.0,13383553.0,13458512.0,13807398.0,13868146.0,14209994.0,14342624.0,14752998.0,14786387.0,15272261.0,15346343.0,15724458.0,15959373.0,16184496.0,16351071.0,16699330.0,16777835.0,17265297.0,17295375.0,17635886.0,17657418.0,18174304.0,18249010.0,18632521.0,18908220.0,19423140.0,19195678.0,19584618.0,19617593.0,20130982.0,20223164.0,20527214.0,20523087.0,21076455.0,21166544.0,21795246.0,21914230.0,22021453.0,22020019.0,22488577.0,22486513.0,22969315.0,23119358.0,23426664.0,23408534.0,23971882.0,24032727.0],"unit":"ns","throughput":[{"per_iteration":4095,"unit":"bytes"}],"typical":{"estimate":134.90920911935515,"lower_bound":134.67330077676633,"upper_bound":135.1579072396596,"unit":"ns"},"mean":{"estimate":135.1045173194793,"lower_bound":134.8091066611893,"upper_bound":135.4907849541429,"unit":"ns"},"median":{"estimate":135.14552258931286,"lower_bound":134.63897017722684,"upper_bound":135.21963195563302,"unit":"ns"},"median_abs_dev":{"estimate":1.0003410220914486,"lower_bound":0.6244289294948255,"upper_bound":1.236171050359468,"unit":"ns"},"slope":{"estimate":134.90920911935515,"lower_bound":134.67330077676633,"upper_bound":135.1579072396596,"unit":"ns"},"change":{"mean":{"estimate":-0.02717279447237142,"lower_bound":-0.04254612756836771,"upper_bound":-0.015716936455382306,"unit":"%"},"median":{"estimate":-0.01928717949461356,"lower_bound":-0.02684584312134619,"upper_bound":-0.008857618277275381,"unit":"%"},"change":"Improved"}} -{"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":[5341,10682,16023,21364,26705,32046,37387,42728,48069,53410,58751,64092,69433,74774,80115,85456,90797,96138,101479,106820,112161,117502,122843,128184,133525,138866,144207,149548,154889,160230,165571,170912,176253,181594,186935,192276,197617,202958,208299,213640,218981,224322,229663,235004,240345,245686,251027,256368,261709,267050,272391,277732,283073,288414,293755,299096,304437,309778,315119,320460,325801,331142,336483,341824,347165,352506,357847,363188,368529,373870,379211,384552,389893,395234,400575,405916,411257,416598,421939,427280,432621,437962,443303,448644,453985,459326,464667,470008,475349,480690,486031,491372,496713,502054,507395,512736,518077,523418,528759,534100],"measured_values":[211309.0,306870.0,461413.0,620203.0,767348.0,924720.0,1081420.0,1225944.0,1385233.0,1568938.0,1703098.0,1838282.0,2003658.0,2146047.0,2330852.0,2530164.0,2611888.0,2780069.0,2948342.0,3116420.0,3225363.0,3388532.0,3610012.0,3917254.0,3922739.0,4050504.0,4198294.0,4370957.0,4533530.0,4641934.0,4794585.0,4970474.0,5251356.0,5268725.0,5460350.0,5679314.0,6078373.0,5906246.0,6476046.0,6330184.0,6384844.0,6515188.0,6676373.0,6840766.0,6998268.0,7170604.0,7421661.0,7395230.0,7710481.0,8023555.0,7923146.0,8094329.0,8217880.0,8521765.0,8544374.0,8964172.0,8850238.0,10254124.0,9739972.0,9877779.0,9626938.0,9953679.0,9801871.0,9903432.0,10066163.0,10296659.0,10433408.0,10831404.0,10719269.0,10905863.0,11047588.0,11390383.0,11773012.0,11726819.0,11814758.0,11780176.0,11909908.0,12136959.0,12436033.0,12531243.0,12807277.0,13500030.0,13118226.0,13027062.0,13307359.0,13735163.0,14510034.0,14197237.0,14549035.0,14020804.0,14139110.0,14381427.0,14450427.0,14936595.0,14790615.0,15296854.0,15344297.0,15496239.0,15849843.0,16210058.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":29.616984927487263,"lower_bound":29.459935410191335,"upper_bound":29.7849035663682,"unit":"ns"},"mean":{"estimate":29.529753923748626,"lower_bound":29.330469050412056,"upper_bound":29.80089500996971,"unit":"ns"},"median":{"estimate":29.169318315086898,"lower_bound":29.11759345940211,"upper_bound":29.343846162318137,"unit":"ns"},"median_abs_dev":{"estimate":0.40367987309466097,"lower_bound":0.24656674995768083,"upper_bound":0.5368656174040518,"unit":"ns"},"slope":{"estimate":29.616984927487263,"lower_bound":29.459935410191335,"upper_bound":29.7849035663682,"unit":"ns"},"change":{"mean":{"estimate":0.06663898481980945,"lower_bound":0.05736936339688277,"upper_bound":0.07843730459887148,"unit":"%"},"median":{"estimate":0.06387439465983702,"lower_bound":0.05645304745243929,"upper_bound":0.07274010496025274,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"meq/10","report_directory":"/root/fuel-core/target/criterion/reports/meq/10","iteration_count":[5300,10600,15900,21200,26500,31800,37100,42400,47700,53000,58300,63600,68900,74200,79500,84800,90100,95400,100700,106000,111300,116600,121900,127200,132500,137800,143100,148400,153700,159000,164300,169600,174900,180200,185500,190800,196100,201400,206700,212000,217300,222600,227900,233200,238500,243800,249100,254400,259700,265000,270300,275600,280900,286200,291500,296800,302100,307400,312700,318000,323300,328600,333900,339200,344500,349800,355100,360400,365700,371000,376300,381600,386900,392200,397500,402800,408100,413400,418700,424000,429300,434600,439900,445200,450500,455800,461100,466400,471700,477000,482300,487600,492900,498200,503500,508800,514100,519400,524700,530000],"measured_values":[207169.0,324107.0,506625.0,647680.0,797327.0,963978.0,1167490.0,1268417.0,1500696.0,1580322.0,1823051.0,1910205.0,2070427.0,2253130.0,2383714.0,2543403.0,2719623.0,2859822.0,3002962.0,3235282.0,3362148.0,3519329.0,3705287.0,3788664.0,3989037.0,4270838.0,4316947.0,4409661.0,4606039.0,4738364.0,5074572.0,5109402.0,5300602.0,5404170.0,5528128.0,5787617.0,6216155.0,6134591.0,6414745.0,6345266.0,6443575.0,6948789.0,6956263.0,6957916.0,7158086.0,7323371.0,7696403.0,7529066.0,7954827.0,7933416.0,8059037.0,8186673.0,8547514.0,8667885.0,9066326.0,8985738.0,9172980.0,9350832.0,9532691.0,9528552.0,10146991.0,9992660.0,10205792.0,10327967.0,10645218.0,10623071.0,11129853.0,10911467.0,11237892.0,11363030.0,11181665.0,11406742.0,11932779.0,11765846.0,12101670.0,12048834.0,12437114.0,12353335.0,13067915.0,13009469.0,13308371.0,13175158.0,13538185.0,13428970.0,13994446.0,13837649.0,14433121.0,14218544.0,14298566.0,14218576.0,15170112.0,14864040.0,15240607.0,14985702.0,15547301.0,15171177.0,15819061.0,15693439.0,16131490.0,16080421.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":30.47532986273564,"lower_bound":30.355867505822022,"upper_bound":30.59485942339646,"unit":"ns"},"mean":{"estimate":30.49821082828959,"lower_bound":30.336063196262668,"upper_bound":30.723369968297757,"unit":"ns"},"median":{"estimate":30.349726919701624,"lower_bound":30.214553330766268,"upper_bound":30.45209483614697,"unit":"ns"},"median_abs_dev":{"estimate":0.547420483695122,"lower_bound":0.4034462605881413,"upper_bound":0.6724365057961829,"unit":"ns"},"slope":{"estimate":30.47532986273564,"lower_bound":30.355867505822022,"upper_bound":30.59485942339646,"unit":"ns"},"change":{"mean":{"estimate":0.053459044060151006,"lower_bound":0.04534631473371856,"upper_bound":0.06248997207542434,"unit":"%"},"median":{"estimate":0.04977099246010663,"lower_bound":0.04201600390759408,"upper_bound":0.058145997781968994,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"meq/100","report_directory":"/root/fuel-core/target/criterion/reports/meq/100","iteration_count":[5285,10570,15855,21140,26425,31710,36995,42280,47565,52850,58135,63420,68705,73990,79275,84560,89845,95130,100415,105700,110985,116270,121555,126840,132125,137410,142695,147980,153265,158550,163835,169120,174405,179690,184975,190260,195545,200830,206115,211400,216685,221970,227255,232540,237825,243110,248395,253680,258965,264250,269535,274820,280105,285390,290675,295960,301245,306530,311815,317100,322385,327670,332955,338240,343525,348810,354095,359380,364665,369950,375235,380520,385805,391090,396375,401660,406945,412230,417515,422800,428085,433370,438655,443940,449225,454510,459795,465080,470365,475650,480935,486220,491505,496790,502075,507360,512645,517930,523215,528500],"measured_values":[212285.0,329429.0,490297.0,655014.0,814559.0,975393.0,1139042.0,1286977.0,1429851.0,1599189.0,1768203.0,1902522.0,2081295.0,2241414.0,2400876.0,2566386.0,2711315.0,2883161.0,3022584.0,3193829.0,3362488.0,3522473.0,3676296.0,3825516.0,4002201.0,4161140.0,4331212.0,4459582.0,4635217.0,4808199.0,4939295.0,5129089.0,5270292.0,5448336.0,5583806.0,5770233.0,5935436.0,6058955.0,6236082.0,6393247.0,6531688.0,6715614.0,6930153.0,7032852.0,7218149.0,7542539.0,7581325.0,7691168.0,7905906.0,8882981.0,8342655.0,8316175.0,8490409.0,8708101.0,8772648.0,8955359.0,9218440.0,9406464.0,9599394.0,9783864.0,9765412.0,10052966.0,10182680.0,10749578.0,10447839.0,10741778.0,10722832.0,10945693.0,11059418.0,11263007.0,11355220.0,11535780.0,11658045.0,11865451.0,11997780.0,12104730.0,12320514.0,12527229.0,12694912.0,12780977.0,12989943.0,13101590.0,13397013.0,13636146.0,13639806.0,13843676.0,13926024.0,14248393.0,14242906.0,14541895.0,14613633.0,14796462.0,14857203.0,15060291.0,15237148.0,15354649.0,15597864.0,15749374.0,15933883.0,15999869.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":30.433495356381258,"lower_bound":30.37268848837108,"upper_bound":30.51050883774978,"unit":"ns"},"mean":{"estimate":30.53757882220963,"lower_bound":30.383237873800915,"upper_bound":30.779897759201877,"unit":"ns"},"median":{"estimate":30.32684203309887,"lower_bound":30.293472090823084,"upper_bound":30.35682279976008,"unit":"ns"},"median_abs_dev":{"estimate":0.14265220463174033,"lower_bound":0.0950399883789255,"upper_bound":0.19270991517611513,"unit":"ns"},"slope":{"estimate":30.433495356381258,"lower_bound":30.37268848837108,"upper_bound":30.51050883774978,"unit":"ns"},"change":{"mean":{"estimate":0.04103291951272836,"lower_bound":0.03348480433632927,"upper_bound":0.049411669097382385,"unit":"%"},"median":{"estimate":0.040122023395048334,"lower_bound":0.03625680693376494,"upper_bound":0.042999636513457506,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"meq/1000","report_directory":"/root/fuel-core/target/criterion/reports/meq/1000","iteration_count":[4711,9422,14133,18844,23555,28266,32977,37688,42399,47110,51821,56532,61243,65954,70665,75376,80087,84798,89509,94220,98931,103642,108353,113064,117775,122486,127197,131908,136619,141330,146041,150752,155463,160174,164885,169596,174307,179018,183729,188440,193151,197862,202573,207284,211995,216706,221417,226128,230839,235550,240261,244972,249683,254394,259105,263816,268527,273238,277949,282660,287371,292082,296793,301504,306215,310926,315637,320348,325059,329770,334481,339192,343903,348614,353325,358036,362747,367458,372169,376880,381591,386302,391013,395724,400435,405146,409857,414568,419279,423990,428701,433412,438123,442834,447545,452256,456967,461678,466389,471100],"measured_values":[208615.0,395210.0,549579.0,715147.0,968507.0,1155927.0,1255136.0,1564407.0,1623243.0,1879629.0,2192672.0,2220700.0,2350634.0,2653401.0,2748701.0,3037694.0,3075910.0,3368766.0,3556900.0,3829449.0,4141758.0,4070601.0,4304428.0,4356667.0,4688182.0,4889410.0,5017551.0,5435890.0,5413069.0,5747515.0,5948368.0,5982390.0,6240618.0,6467975.0,6466100.0,6830151.0,6926411.0,7222651.0,7389567.0,7523973.0,7764326.0,8282848.0,8342163.0,8604740.0,8765091.0,9075614.0,8821517.0,9086226.0,9358363.0,9403870.0,9238384.0,9861348.0,10001122.0,10179218.0,10626565.0,10981989.0,10669504.0,11080038.0,10723143.0,11341410.0,11358246.0,12476792.0,11941953.0,12443509.0,12379687.0,12335069.0,12649688.0,12909279.0,12909235.0,13544937.0,13268973.0,13864866.0,13487787.0,13615618.0,13993849.0,14625494.0,14442275.0,15503244.0,14907295.0,15799281.0,15250479.0,15719746.0,15680596.0,15686142.0,15661441.0,16209933.0,16319476.0,16626999.0,17477294.0,18186800.0,17014420.0,17709931.0,17518364.0,17839310.0,18021557.0,18640157.0,18274834.0,18710052.0,18764527.0,19683762.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":40.40921280577447,"lower_bound":40.18076864891696,"upper_bound":40.65185563989248,"unit":"ns"},"mean":{"estimate":40.27477736979435,"lower_bound":40.0680318187379,"upper_bound":40.49126332749237,"unit":"ns"},"median":{"estimate":40.13300109994018,"lower_bound":39.98503616564298,"upper_bound":40.27600229431344,"unit":"ns"},"median_abs_dev":{"estimate":0.7576489128696864,"lower_bound":0.5346234789514202,"upper_bound":1.1108596640565982,"unit":"ns"},"slope":{"estimate":40.40921280577447,"lower_bound":40.18076864891696,"upper_bound":40.65185563989248,"unit":"ns"},"change":{"mean":{"estimate":0.04808830175866374,"lower_bound":0.04003058065454018,"upper_bound":0.05566207816946026,"unit":"%"},"median":{"estimate":0.05144738575500574,"lower_bound":0.044824955365615544,"upper_bound":0.05682910069193481,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"meq/10000","report_directory":"/root/fuel-core/target/criterion/reports/meq/10000","iteration_count":[1646,3292,4938,6584,8230,9876,11522,13168,14814,16460,18106,19752,21398,23044,24690,26336,27982,29628,31274,32920,34566,36212,37858,39504,41150,42796,44442,46088,47734,49380,51026,52672,54318,55964,57610,59256,60902,62548,64194,65840,67486,69132,70778,72424,74070,75716,77362,79008,80654,82300,83946,85592,87238,88884,90530,92176,93822,95468,97114,98760,100406,102052,103698,105344,106990,108636,110282,111928,113574,115220,116866,118512,120158,121804,123450,125096,126742,128388,130034,131680,133326,134972,136618,138264,139910,141556,143202,144848,146494,148140,149786,151432,153078,154724,156370,158016,159662,161308,162954,164600],"measured_values":[280406.0,527999.0,793505.0,1066275.0,1321040.0,1576762.0,1865188.0,2108412.0,2385475.0,2650061.0,2908361.0,3154937.0,3452326.0,3681549.0,3979612.0,4209806.0,4496150.0,4735228.0,5024889.0,5260503.0,5560777.0,5796786.0,6085586.0,6460856.0,6720939.0,6860210.0,7135630.0,7377093.0,7700038.0,7890789.0,8212770.0,8417218.0,8747885.0,8937773.0,9274653.0,9481082.0,9817283.0,10021786.0,10349812.0,10516119.0,10864574.0,11051521.0,11370562.0,11587868.0,11890821.0,12086837.0,12437013.0,12609677.0,12999129.0,13151211.0,13533541.0,13706781.0,14013189.0,14224480.0,14588567.0,14727281.0,15070124.0,15262126.0,15625766.0,15803718.0,16216043.0,16351499.0,16676115.0,16857338.0,17187906.0,17362762.0,17754454.0,17936620.0,18292847.0,18446940.0,18805689.0,18961665.0,19326157.0,19525526.0,19868591.0,20003893.0,20388083.0,20578366.0,20915816.0,21085743.0,21435162.0,21690195.0,21892252.0,22101675.0,22445244.0,22651913.0,23024950.0,23144320.0,23643801.0,23744074.0,24084093.0,24219313.0,24697975.0,24743510.0,25218170.0,25271414.0,25687383.0,25798040.0,26219374.0,26346073.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":160.4736542160772,"lower_bound":160.3412682412596,"upper_bound":160.61030316180134,"unit":"ns"},"mean":{"estimate":160.63617275846488,"lower_bound":160.43695744314977,"upper_bound":160.90013915991577,"unit":"ns"},"median":{"estimate":160.54770937401557,"lower_bound":160.24427235064195,"upper_bound":160.72064468980577,"unit":"ns"},"median_abs_dev":{"estimate":0.7326053587488628,"lower_bound":0.5803034601559941,"upper_bound":0.8611814934968367,"unit":"ns"},"slope":{"estimate":160.4736542160772,"lower_bound":160.3412682412596,"upper_bound":160.61030316180134,"unit":"ns"},"change":{"mean":{"estimate":-0.04928118333706777,"lower_bound":-0.05325052651916392,"upper_bound":-0.04536745860119334,"unit":"%"},"median":{"estimate":-0.047276970273690155,"lower_bound":-0.05018888160939872,"upper_bound":-0.036978874687800894,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"meq/19753","report_directory":"/root/fuel-core/target/criterion/reports/meq/19753","iteration_count":[1001,2002,3003,4004,5005,6006,7007,8008,9009,10010,11011,12012,13013,14014,15015,16016,17017,18018,19019,20020,21021,22022,23023,24024,25025,26026,27027,28028,29029,30030,31031,32032,33033,34034,35035,36036,37037,38038,39039,40040,41041,42042,43043,44044,45045,46046,47047,48048,49049,50050,51051,52052,53053,54054,55055,56056,57057,58058,59059,60060,61061,62062,63063,64064,65065,66066,67067,68068,69069,70070,71071,72072,73073,74074,75075,76076,77077,78078,79079,80080,81081,82082,83083,84084,85085,86086,87087,88088,89089,90090,91091,92092,93093,94094,95095,96096,97097,98098,99099,100100],"measured_values":[383920.0,712745.0,1093924.0,1443218.0,1840031.0,2136737.0,2552767.0,2849011.0,3274831.0,3574326.0,4003277.0,4306656.0,4745499.0,5003974.0,5511444.0,5691944.0,6200135.0,6436535.0,6922895.0,7186324.0,7715476.0,7829514.0,8478278.0,8569319.0,9101908.0,9256197.0,9875028.0,9967074.0,10640367.0,10668367.0,11353328.0,11418119.0,12029581.0,12098846.0,12741612.0,12832956.0,13523779.0,13512218.0,14226861.0,14269308.0,15034291.0,14945351.0,15936672.0,15692603.0,16406301.0,16344786.0,17155243.0,17109857.0,17849310.0,17789104.0,18585940.0,18542203.0,19400971.0,19573275.0,20333162.0,20250098.0,20832230.0,20653649.0,21605043.0,21383548.0,22285360.0,22134339.0,23100748.0,22822153.0,23779055.0,23554784.0,24493538.0,24241261.0,25149781.0,24900077.0,25892175.0,25705480.0,26629718.0,26368517.0,27370021.0,27092427.0,28264108.0,27900292.0,28866488.0,28540477.0,29585023.0,29217671.0,30719615.0,30007715.0,31159872.0,30655834.0,32213877.0,31405733.0,32569199.0,32153058.0,33626301.0,32826026.0,34139304.0,33481505.0,34747503.0,34219139.0,35652053.0,34910629.0,36356397.0,35709684.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":361.2580092052177,"lower_bound":359.895777058913,"upper_bound":362.6325393957488,"unit":"ns"},"mean":{"estimate":361.3035172206835,"lower_bound":360.28075438090036,"upper_bound":362.36177694397304,"unit":"ns"},"median":{"estimate":362.80627705627705,"lower_bound":356.8993006993007,"upper_bound":364.22024642024644,"unit":"ns"},"median_abs_dev":{"estimate":8.188245327105838,"lower_bound":2.2906137855072957,"upper_bound":9.097725636346212,"unit":"ns"},"slope":{"estimate":361.2580092052177,"lower_bound":359.895777058913,"upper_bound":362.6325393957488,"unit":"ns"},"change":{"mean":{"estimate":0.010947101341828303,"lower_bound":0.007444418933959795,"upper_bound":0.01426413356492793,"unit":"%"},"median":{"estimate":0.01630096771990064,"lower_bound":-0.00030594454632781876,"upper_bound":0.020480017433558206,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"meq/29629","report_directory":"/root/fuel-core/target/criterion/reports/meq/29629","iteration_count":[623,1246,1869,2492,3115,3738,4361,4984,5607,6230,6853,7476,8099,8722,9345,9968,10591,11214,11837,12460,13083,13706,14329,14952,15575,16198,16821,17444,18067,18690,19313,19936,20559,21182,21805,22428,23051,23674,24297,24920,25543,26166,26789,27412,28035,28658,29281,29904,30527,31150,31773,32396,33019,33642,34265,34888,35511,36134,36757,37380,38003,38626,39249,39872,40495,41118,41741,42364,42987,43610,44233,44856,45479,46102,46725,47348,47971,48594,49217,49840,50463,51086,51709,52332,52955,53578,54201,54824,55447,56070,56693,57316,57939,58562,59185,59808,60431,61054,61677,62300],"measured_values":[345800.0,657938.0,1014576.0,1327654.0,1627222.0,1976999.0,2322971.0,2643966.0,2966483.0,3305413.0,3649690.0,3966750.0,4282743.0,4629940.0,4940234.0,5276337.0,5559665.0,5933405.0,6221030.0,6650995.0,6908782.0,7265945.0,7606281.0,7925664.0,8341693.0,8608251.0,8893046.0,9276516.0,9495789.0,9940355.0,10212953.0,10667494.0,10805269.0,11293842.0,11515958.0,11928529.0,12158660.0,12523896.0,12708269.0,13184052.0,13506893.0,13892535.0,14321045.0,14569920.0,14839530.0,15294065.0,15477877.0,15841463.0,16177022.0,16577776.0,16839632.0,17201539.0,17503819.0,17954858.0,18204324.0,18573215.0,18843701.0,19328828.0,19666658.0,19895629.0,20132906.0,20560519.0,20909611.0,21186215.0,21499527.0,21804748.0,22104887.0,22514487.0,22875156.0,23147122.0,23517473.0,23791841.0,24139088.0,24789839.0,25027222.0,25135588.0,25449816.0,25842216.0,26083105.0,26455356.0,26761354.0,27104012.0,27410670.0,27649511.0,28028473.0,28692673.0,29128328.0,29464272.0,29881908.0,30098350.0,30567930.0,31010405.0,31226574.0,31137839.0,31944104.0,32191876.0,33178474.0,32802983.0,33264461.0,33600898.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":534.0371814117278,"lower_bound":532.6976496241468,"upper_bound":535.3776639154212,"unit":"ns"},"mean":{"estimate":532.1285432974161,"lower_bound":531.2378261271562,"upper_bound":533.0989933528451,"unit":"ns"},"median":{"estimate":530.8935593088165,"lower_bound":530.5444549832191,"upper_bound":531.730463035032,"unit":"ns"},"median_abs_dev":{"estimate":2.67789154550701,"lower_bound":1.9416983985315313,"upper_bound":3.6853691979536296,"unit":"ns"},"slope":{"estimate":534.0371814117278,"lower_bound":532.6976496241468,"upper_bound":535.3776639154212,"unit":"ns"},"change":{"mean":{"estimate":0.0057386366825589175,"lower_bound":0.0026114640066651077,"upper_bound":0.008656577056874752,"unit":"%"},"median":{"estimate":0.0038698674501320696,"lower_bound":0.00018503465779140527,"upper_bound":0.00962417182838049,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"meq/44444","report_directory":"/root/fuel-core/target/criterion/reports/meq/44444","iteration_count":[463,926,1389,1852,2315,2778,3241,3704,4167,4630,5093,5556,6019,6482,6945,7408,7871,8334,8797,9260,9723,10186,10649,11112,11575,12038,12501,12964,13427,13890,14353,14816,15279,15742,16205,16668,17131,17594,18057,18520,18983,19446,19909,20372,20835,21298,21761,22224,22687,23150,23613,24076,24539,25002,25465,25928,26391,26854,27317,27780,28243,28706,29169,29632,30095,30558,31021,31484,31947,32410,32873,33336,33799,34262,34725,35188,35651,36114,36577,37040,37503,37966,38429,38892,39355,39818,40281,40744,41207,41670,42133,42596,43059,43522,43985,44448,44911,45374,45837,46300],"measured_values":[362830.0,733286.0,1086739.0,1467923.0,1808312.0,2211181.0,2541724.0,2927750.0,3251783.0,3662892.0,3986096.0,4405171.0,4716965.0,5167607.0,5435781.0,5858478.0,6148269.0,6589058.0,6862322.0,7342024.0,7591608.0,8104874.0,8358257.0,8789733.0,9056628.0,9527754.0,9784800.0,10264006.0,10540653.0,11151740.0,11466684.0,11865269.0,11982257.0,12522311.0,12665997.0,13259717.0,13445029.0,13926379.0,14114553.0,14676650.0,14831900.0,15449157.0,15539357.0,16128328.0,16287178.0,16836153.0,17053407.0,17552610.0,17730369.0,18293528.0,18497712.0,19034325.0,19147636.0,19725359.0,19872610.0,20515132.0,20645809.0,21304535.0,21373695.0,21988949.0,22120938.0,22724833.0,22806078.0,23479154.0,23535065.0,24182109.0,24259502.0,24973134.0,24977406.0,25668323.0,25695884.0,26531665.0,26412550.0,27204629.0,27147067.0,27919413.0,27964933.0,28600428.0,28610047.0,29358959.0,29315716.0,30070397.0,30043897.0,30865909.0,30889778.0,31666980.0,31553570.0,32333593.0,32187866.0,32596149.0,32815772.0,33359021.0,33478338.0,34107273.0,34230702.0,34843799.0,35107010.0,35557914.0,35818392.0,36236426.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":785.8127731357965,"lower_bound":784.4765474335732,"upper_bound":787.2775256964519,"unit":"ns"},"mean":{"estimate":787.0943487662272,"lower_bound":785.9612429422231,"upper_bound":788.2490510744994,"unit":"ns"},"median":{"estimate":784.3243808027826,"lower_bound":783.3363124053524,"upper_bound":790.5039440323035,"unit":"ns"},"median_abs_dev":{"estimate":5.9224000314355525,"lower_bound":3.0598235504041074,"upper_bound":8.88180021880851,"unit":"ns"},"slope":{"estimate":785.8127731357965,"lower_bound":784.4765474335732,"upper_bound":787.2775256964519,"unit":"ns"},"change":{"mean":{"estimate":-0.0052897578705009,"lower_bound":-0.007696631156276516,"upper_bound":-0.002873457526182617,"unit":"%"},"median":{"estimate":-0.01301737600357833,"lower_bound":-0.015269779978326126,"upper_bound":0.004355759770044987,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"meq/66666","report_directory":"/root/fuel-core/target/criterion/reports/meq/66666","iteration_count":[315,630,945,1260,1575,1890,2205,2520,2835,3150,3465,3780,4095,4410,4725,5040,5355,5670,5985,6300,6615,6930,7245,7560,7875,8190,8505,8820,9135,9450,9765,10080,10395,10710,11025,11340,11655,11970,12285,12600,12915,13230,13545,13860,14175,14490,14805,15120,15435,15750,16065,16380,16695,17010,17325,17640,17955,18270,18585,18900,19215,19530,19845,20160,20475,20790,21105,21420,21735,22050,22365,22680,22995,23310,23625,23940,24255,24570,24885,25200,25515,25830,26145,26460,26775,27090,27405,27720,28035,28350,28665,28980,29295,29610,29925,30240,30555,30870,31185,31500],"measured_values":[405204.0,763300.0,1133729.0,1522249.0,1883421.0,2269910.0,2670772.0,3045500.0,3392308.0,3792922.0,4156390.0,4567092.0,4931773.0,5365188.0,5674697.0,6081423.0,6425628.0,6836630.0,7231504.0,7651731.0,7938245.0,8381171.0,8880361.0,9189910.0,9544498.0,9975841.0,10251305.0,10672426.0,10992846.0,11402683.0,11737956.0,12167441.0,12485281.0,12953709.0,13237988.0,13710287.0,14014216.0,14506062.0,14817832.0,15414382.0,15567652.0,15992727.0,16271840.0,16682472.0,17028998.0,17531060.0,17810815.0,18231967.0,18578844.0,19039615.0,19299259.0,19766092.0,20024865.0,20530709.0,20802004.0,21297306.0,21533706.0,22074191.0,22546613.0,22900898.0,23145692.0,23542937.0,23800949.0,24418422.0,24607565.0,25240833.0,25443441.0,25798144.0,26091179.0,26691536.0,27085131.0,27379605.0,27601376.0,28178753.0,28483944.0,29076212.0,29115109.0,29716775.0,29971534.0,30521947.0,30735790.0,31265434.0,31479195.0,32010152.0,32173449.0,32700332.0,32818147.0,33411461.0,33633594.0,34126399.0,34372663.0,34872790.0,35110713.0,35797629.0,35930183.0,36498046.0,36577758.0,37278842.0,37424544.0,37940284.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":1205.034246945377,"lower_bound":1203.8636737517702,"upper_bound":1206.2502491129878,"unit":"ns"},"mean":{"estimate":1206.7523574339643,"lower_bound":1205.125787238918,"upper_bound":1208.8979216160667,"unit":"ns"},"median":{"estimate":1205.6170964226487,"lower_bound":1204.3708891670917,"upper_bound":1207.0874007936509,"unit":"ns"},"median_abs_dev":{"estimate":6.029412602573844,"lower_bound":4.4364621093124175,"upper_bound":7.034875240185265,"unit":"ns"},"slope":{"estimate":1205.034246945377,"lower_bound":1203.8636737517702,"upper_bound":1206.2502491129878,"unit":"ns"},"change":{"mean":{"estimate":0.006446667155098229,"lower_bound":0.003632615775782379,"upper_bound":0.0089415911794406,"unit":"%"},"median":{"estimate":0.006346612460265355,"lower_bound":0.0034834052778311975,"upper_bound":0.010093960633500654,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"meq/100000","report_directory":"/root/fuel-core/target/criterion/reports/meq/100000","iteration_count":[211,422,633,844,1055,1266,1477,1688,1899,2110,2321,2532,2743,2954,3165,3376,3587,3798,4009,4220,4431,4642,4853,5064,5275,5486,5697,5908,6119,6330,6541,6752,6963,7174,7385,7596,7807,8018,8229,8440,8651,8862,9073,9284,9495,9706,9917,10128,10339,10550,10761,10972,11183,11394,11605,11816,12027,12238,12449,12660,12871,13082,13293,13504,13715,13926,14137,14348,14559,14770,14981,15192,15403,15614,15825,16036,16247,16458,16669,16880,17091,17302,17513,17724,17935,18146,18357,18568,18779,18990,19201,19412,19623,19834,20045,20256,20467,20678,20889,21100],"measured_values":[407753.0,779384.0,1161261.0,1569998.0,1935126.0,2351055.0,2730930.0,3139278.0,3520659.0,3941201.0,4291460.0,4740556.0,5079027.0,5492118.0,5812401.0,6243691.0,6584277.0,7003824.0,7360980.0,7795793.0,8158373.0,8577055.0,8945910.0,9519947.0,9732804.0,10191530.0,10484322.0,11182881.0,11351690.0,11733611.0,12090454.0,12550294.0,12812307.0,13269297.0,13586039.0,14087217.0,14443495.0,15012778.0,15168605.0,15686647.0,15986999.0,16469612.0,16671602.0,17211058.0,17542103.0,18036100.0,18268265.0,18816362.0,19025802.0,19596037.0,19946959.0,20465720.0,20678378.0,21145215.0,21329071.0,21913846.0,22221025.0,22621663.0,23049376.0,23529046.0,23787631.0,24376919.0,24465852.0,25048930.0,25298249.0,25828188.0,26167327.0,26746761.0,26851893.0,27429470.0,27626187.0,28338607.0,28528198.0,29012035.0,29226837.0,29852410.0,30002330.0,30687208.0,30828382.0,31436601.0,31442883.0,32315724.0,32382622.0,32957466.0,33065721.0,33524829.0,33769686.0,34066626.0,34434603.0,34572781.0,35196732.0,35387901.0,36075361.0,36199520.0,36794670.0,37120686.0,37670234.0,38068624.0,38840335.0,39083712.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":1846.9793208048256,"lower_bound":1843.7350073266098,"upper_bound":1850.3224787232239,"unit":"ns"},"mean":{"estimate":1850.6378588280288,"lower_bound":1847.9690328917598,"upper_bound":1853.5345755482888,"unit":"ns"},"median":{"estimate":1849.0761795280919,"lower_bound":1847.5095313322802,"upper_bound":1852.6332411199987,"unit":"ns"},"median_abs_dev":{"estimate":12.684179542573629,"lower_bound":8.803237987327556,"upper_bound":13.872742275593,"unit":"ns"},"slope":{"estimate":1846.9793208048256,"lower_bound":1843.7350073266098,"upper_bound":1850.3224787232239,"unit":"ns"},"change":{"mean":{"estimate":-0.016952654154890667,"lower_bound":-0.019158855092253894,"upper_bound":-0.014703516886152615,"unit":"%"},"median":{"estimate":-0.01746935930676785,"lower_bound":-0.019515310321200796,"upper_bound":-0.014846574511060862,"unit":"%"},"change":"Improved"}} -{"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":[4926,9852,14778,19704,24630,29556,34482,39408,44334,49260,54186,59112,64038,68964,73890,78816,83742,88668,93594,98520,103446,108372,113298,118224,123150,128076,133002,137928,142854,147780,152706,157632,162558,167484,172410,177336,182262,187188,192114,197040,201966,206892,211818,216744,221670,226596,231522,236448,241374,246300,251226,256152,261078,266004,270930,275856,280782,285708,290634,295560,300486,305412,310338,315264,320190,325116,330042,334968,339894,344820,349746,354672,359598,364524,369450,374376,379302,384228,389154,394080,399006,403932,408858,413784,418710,423636,428562,433488,438414,443340,448266,453192,458118,463044,467970,472896,477822,482748,487674,492600],"measured_values":[210622.0,405972.0,624130.0,816654.0,1008044.0,1236957.0,1397628.0,1654842.0,1844063.0,2047811.0,2316620.0,2457860.0,2759510.0,2885497.0,3129561.0,3382676.0,3694243.0,3849325.0,4104337.0,4243106.0,4545490.0,4640188.0,4984171.0,4966277.0,5461908.0,5540997.0,5890058.0,5975247.0,6350337.0,6794932.0,6454782.0,6701378.0,6834092.0,7515040.0,7519896.0,7524210.0,7883619.0,7995011.0,8391108.0,8606077.0,8740605.0,8996163.0,9463906.0,9342520.0,9773002.0,9771791.0,10294808.0,10235832.0,10600439.0,10821346.0,10897340.0,10924992.0,11552053.0,11615318.0,11650158.0,11909692.0,12527269.0,12468506.0,12740791.0,12564486.0,13036762.0,12947677.0,13393406.0,13280547.0,14150436.0,14033430.0,14691003.0,14292138.0,15091317.0,14981038.0,15462056.0,15350600.0,15890730.0,15593242.0,15527022.0,15870374.0,16575319.0,16308860.0,16922142.0,17594353.0,17543078.0,17337742.0,17734566.0,17749364.0,18386790.0,18265203.0,19239837.0,18829829.0,19162828.0,18732403.0,19898276.0,19903073.0,20335341.0,20070823.0,20950104.0,20819849.0,21212935.0,20730235.0,21515493.0,20966685.0],"unit":"ns","throughput":[],"typical":{"estimate":43.54225560071232,"lower_bound":43.33781312764996,"upper_bound":43.74033030707962,"unit":"ns"},"mean":{"estimate":43.26592606213954,"lower_bound":43.0731006706589,"upper_bound":43.45600202832162,"unit":"ns"},"median":{"estimate":43.30574285134273,"lower_bound":43.11411278222034,"upper_bound":43.5493837364422,"unit":"ns"},"median_abs_dev":{"estimate":0.9986509094630637,"lower_bound":0.800757893377896,"upper_bound":1.2591771266904472,"unit":"ns"},"slope":{"estimate":43.54225560071232,"lower_bound":43.33781312764996,"upper_bound":43.74033030707962,"unit":"ns"},"change":{"mean":{"estimate":0.08529743735477902,"lower_bound":0.08000304556217518,"upper_bound":0.09082398489250033,"unit":"%"},"median":{"estimate":0.08807842553132916,"lower_bound":0.08246105791165292,"upper_bound":0.09561960710689088,"unit":"%"},"change":"Regressed"}} -{"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":[4957,9914,14871,19828,24785,29742,34699,39656,44613,49570,54527,59484,64441,69398,74355,79312,84269,89226,94183,99140,104097,109054,114011,118968,123925,128882,133839,138796,143753,148710,153667,158624,163581,168538,173495,178452,183409,188366,193323,198280,203237,208194,213151,218108,223065,228022,232979,237936,242893,247850,252807,257764,262721,267678,272635,277592,282549,287506,292463,297420,302377,307334,312291,317248,322205,327162,332119,337076,342033,346990,351947,356904,361861,366818,371775,376732,381689,386646,391603,396560,401517,406474,411431,416388,421345,426302,431259,436216,441173,446130,451087,456044,461001,465958,470915,475872,480829,485786,490743,495700],"measured_values":[227114.0,416722.0,610266.0,839873.0,1034547.0,1266155.0,1457609.0,1653786.0,1880141.0,2082006.0,2273380.0,2475020.0,2685222.0,2897091.0,3122818.0,3325268.0,3574695.0,3735057.0,3947873.0,4195478.0,4383872.0,4569123.0,4762177.0,5032636.0,5205224.0,5487728.0,5659283.0,5859919.0,6086648.0,6227059.0,6410543.0,6671963.0,6892543.0,7066173.0,7272037.0,7491199.0,7673231.0,7918566.0,8082253.0,8334107.0,8575260.0,8760345.0,8944966.0,9160966.0,9348528.0,9656729.0,9854179.0,9937601.0,10258277.0,10439019.0,10698189.0,11022742.0,11293675.0,11724259.0,11719013.0,11669252.0,12122085.0,12248722.0,12216725.0,12707567.0,13140269.0,12910947.0,13209149.0,13287404.0,13458220.0,13796767.0,14402966.0,14535092.0,14962107.0,14777644.0,14876125.0,15054535.0,15211647.0,15370474.0,15962740.0,16122077.0,16723056.0,16267568.0,16571091.0,16692433.0,16874100.0,17304146.0,18298735.0,17931651.0,18478149.0,17988950.0,18238948.0,18663843.0,19393786.0,18881002.0,20094867.0,19445041.0,20279000.0,19584190.0,19871270.0,19991383.0,20367918.0,20599667.0,20617898.0,20963965.0],"unit":"ns","throughput":[],"typical":{"estimate":42.60009985804027,"lower_bound":42.40983197110173,"upper_bound":42.80834700647771,"unit":"ns"},"mean":{"estimate":42.38064765575126,"lower_bound":42.246301189366065,"upper_bound":42.52741801437383,"unit":"ns"},"median":{"estimate":42.17598226057223,"lower_bound":42.03819160570379,"upper_bound":42.29403197283875,"unit":"ns"},"median_abs_dev":{"estimate":0.3700997362128951,"lower_bound":0.2643451526601744,"upper_bound":0.5279760219253903,"unit":"ns"},"slope":{"estimate":42.60009985804027,"lower_bound":42.40983197110173,"upper_bound":42.80834700647771,"unit":"ns"},"change":{"mean":{"estimate":0.06607829798854015,"lower_bound":0.0607776504302487,"upper_bound":0.07082393150200283,"unit":"%"},"median":{"estimate":0.06356990352546799,"lower_bound":0.05970993811899673,"upper_bound":0.06706909364472424,"unit":"%"},"change":"Regressed"}} -{"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":[18,36,54,72,90,108,126,144,162,180,198,216,234,252,270,288,306,324,342,360,378,396,414,432,450,468,486,504,522,540,558,576,594,612,630,648,666,684,702,720,738,756,774,792,810,828,846,864,882,900,918,936,954,972,990,1008,1026,1044,1062,1080,1098,1116,1134,1152,1170,1188,1206,1224,1242,1260,1278,1296,1314,1332,1350,1368,1386,1404,1422,1440,1458,1476,1494,1512,1530,1548,1566,1584,1602,1620,1638,1656,1674,1692,1710,1728,1746,1764,1782,1800],"measured_values":[1610.0,3022.0,4226.0,5851.0,6929.0,8859.0,10320.0,11623.0,12975.0,15351.0,16016.0,18152.0,18767.0,20109.0,22133.0,24046.0,25324.0,26279.0,27705.0,29688.0,30579.0,33350.0,34515.0,36041.0,36687.0,38712.0,40265.0,42708.0,44088.0,46075.0,46176.0,46590.0,47198.0,50196.0,49318.0,52360.0,52369.0,55836.0,55743.0,56369.0,60692.0,61185.0,60350.0,63609.0,64010.0,67893.0,68576.0,71723.0,69291.0,73267.0,75704.0,77976.0,74965.0,80781.0,77873.0,81090.0,80334.0,86515.0,82220.0,87771.0,84685.0,89249.0,86446.0,86426.0,88840.0,90002.0,91221.0,92333.0,94691.0,94927.0,98233.0,98197.0,101462.0,105072.0,103806.0,104956.0,105660.0,108362.0,107919.0,110726.0,115636.0,120090.0,121311.0,122007.0,123983.0,126156.0,128033.0,128162.0,129722.0,129793.0,132447.0,135759.0,135050.0,134591.0,137775.0,139679.0,139231.0,144577.0,142567.0,145877.0],"unit":"ns","throughput":[],"typical":{"estimate":79.55195343414938,"lower_bound":78.99001466711348,"upper_bound":80.07767907919924,"unit":"ns"},"mean":{"estimate":80.33605391126608,"lower_bound":79.8121655841897,"upper_bound":80.86248026191677,"unit":"ns"},"median":{"estimate":80.84586449430199,"lower_bound":80.11913580246913,"upper_bound":81.04687108886108,"unit":"ns"},"median_abs_dev":{"estimate":2.55153625099747,"lower_bound":1.6708841469231652,"upper_bound":3.2721984108802333,"unit":"ns"},"slope":{"estimate":79.55195343414938,"lower_bound":78.99001466711348,"upper_bound":80.07767907919924,"unit":"ns"},"change":{"mean":{"estimate":-0.050467155868377356,"lower_bound":-0.0698659976422408,"upper_bound":-0.031061117532645524,"unit":"%"},"median":{"estimate":-0.04043059230501278,"lower_bound":-0.07815872224394982,"upper_bound":-0.003621429307051671,"unit":"%"},"change":"Improved"}} -{"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":[18,36,54,72,90,108,126,144,162,180,198,216,234,252,270,288,306,324,342,360,378,396,414,432,450,468,486,504,522,540,558,576,594,612,630,648,666,684,702,720,738,756,774,792,810,828,846,864,882,900,918,936,954,972,990,1008,1026,1044,1062,1080,1098,1116,1134,1152,1170,1188,1206,1224,1242,1260,1278,1296,1314,1332,1350,1368,1386,1404,1422,1440,1458,1476,1494,1512,1530,1548,1566,1584,1602,1620,1638,1656,1674,1692,1710,1728,1746,1764,1782,1800],"measured_values":[1679.0,3017.0,4742.0,6137.0,7669.0,9563.0,10610.0,12613.0,13957.0,15694.0,16697.0,17756.0,19056.0,21125.0,22076.0,23583.0,24793.0,25751.0,27136.0,28218.0,29583.0,30422.0,31691.0,33553.0,34611.0,35530.0,37511.0,39326.0,40119.0,41542.0,43096.0,44944.0,45383.0,47859.0,48354.0,49644.0,51254.0,52426.0,52658.0,55550.0,57698.0,58149.0,59841.0,60800.0,62484.0,64636.0,65965.0,66894.0,68533.0,70424.0,73926.0,73500.0,75097.0,77049.0,78687.0,80287.0,80514.0,81737.0,82155.0,99440.0,82923.0,84640.0,86942.0,87230.0,85673.0,85514.0,86297.0,87069.0,89172.0,90983.0,91291.0,92471.0,94087.0,96814.0,98299.0,99225.0,100423.0,106783.0,111027.0,112574.0,110174.0,110645.0,109925.0,108979.0,114764.0,118070.0,118255.0,117858.0,119635.0,123541.0,124594.0,124886.0,127238.0,130050.0,129965.0,130478.0,130470.0,131601.0,133660.0,133239.0],"unit":"ns","throughput":[],"typical":{"estimate":75.50203224800092,"lower_bound":74.9327766058372,"upper_bound":76.15602282119106,"unit":"ns"},"mean":{"estimate":77.7631357236507,"lower_bound":76.93495375461475,"upper_bound":78.64594332109577,"unit":"ns"},"median":{"estimate":76.92314814814816,"lower_bound":76.59725400457666,"upper_bound":77.66898148148148,"unit":"ns"},"median_abs_dev":{"estimate":2.337340311630302,"lower_bound":1.875924811876548,"upper_bound":3.526165570012856,"unit":"ns"},"slope":{"estimate":75.50203224800092,"lower_bound":74.9327766058372,"upper_bound":76.15602282119106,"unit":"ns"},"change":{"mean":{"estimate":-0.14540451510325447,"lower_bound":-0.16051456026144162,"upper_bound":-0.13041102569494673,"unit":"%"},"median":{"estimate":-0.16127753809961876,"lower_bound":-0.17318146216671182,"upper_bound":-0.13202668815661275,"unit":"%"},"change":"Improved"}} -{"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":[1382,2764,4146,5528,6910,8292,9674,11056,12438,13820,15202,16584,17966,19348,20730,22112,23494,24876,26258,27640,29022,30404,31786,33168,34550,35932,37314,38696,40078,41460,42842,44224,45606,46988,48370,49752,51134,52516,53898,55280,56662,58044,59426,60808,62190,63572,64954,66336,67718,69100,70482,71864,73246,74628,76010,77392,78774,80156,81538,82920,84302,85684,87066,88448,89830,91212,92594,93976,95358,96740,98122,99504,100886,102268,103650,105032,106414,107796,109178,110560,111942,113324,114706,116088,117470,118852,120234,121616,122998,124380,125762,127144,128526,129908,131290,132672,134054,135436,136818,138200],"measured_values":[1803154.0,1407302.0,2019651.0,2914335.0,3404416.0,4060469.0,4738298.0,5463478.0,6138541.0,7412856.0,7510860.0,8184550.0,9078458.0,9510541.0,10198683.0,11947173.0,11540693.0,13177724.0,12912798.0,15332127.0,14264722.0,15094181.0,15649870.0,16460206.0,16975418.0,19001892.0,20496724.0,19017634.0,20521876.0,20911525.0,21240544.0,21722499.0,23110584.0,26176499.0,24040520.0,25291540.0,24947375.0,26250414.0,27981246.0,29225793.0,29566716.0,28483312.0,29420045.0,30833477.0,31887224.0,31370755.0,31741455.0,32588895.0,33308669.0,33698208.0,34667550.0,35273574.0,35930864.0,36624948.0,37092813.0,38008945.0,39686843.0,39366744.0,39912143.0,42827242.0,43167848.0,42464336.0,44243438.0,45440667.0,46735978.0,47766319.0,49738213.0,47082353.0,49676336.0,48877868.0,50877133.0,49810241.0,50115937.0,51801420.0,52149085.0,55008938.0,53075215.0,55379207.0,57041750.0,57709002.0,55764162.0,56926699.0,58664062.0,58643316.0,61028835.0,60134079.0,59600174.0,61765398.0,63197959.0,65010723.0,65687566.0,63763705.0,68992236.0,66411706.0,68272265.0,66597988.0,70392210.0,69346507.0,67410125.0,68203940.0],"unit":"ns","throughput":[],"typical":{"estimate":508.4909484971868,"lower_bound":505.22775845725903,"upper_bound":511.7554378039686,"unit":"ns"},"mean":{"estimate":514.226080672843,"lower_bound":503.862049541219,"upper_bound":532.021375122221,"unit":"ns"},"median":{"estimate":502.7312481616133,"lower_bound":496.73340678858045,"upper_bound":507.30833936324166,"unit":"ns"},"median_abs_dev":{"estimate":16.333856095837938,"lower_bound":9.805685075750754,"upper_bound":21.064720135769626,"unit":"ns"},"slope":{"estimate":508.4909484971868,"lower_bound":505.22775845725903,"upper_bound":511.7554378039686,"unit":"ns"},"change":{"mean":{"estimate":-0.8476299442547738,"lower_bound":-0.8507735711400927,"upper_bound":-0.8419448564257151,"unit":"%"},"median":{"estimate":-0.8504979305361469,"lower_bound":-0.8523767165532239,"upper_bound":-0.848913051051985,"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":[1325297.0,2434055.0,3690915.0,4929784.0,6093075.0,7193861.0,8501672.0,9742485.0,10929632.0,12034790.0,13508522.0,14627389.0,15815231.0,17069898.0,18324193.0,19568409.0,20752103.0,22246569.0,23657216.0,24997543.0,26243772.0,27457818.0,28752962.0,29979497.0,31244322.0,32495057.0,33759101.0,34976668.0,35989117.0,36692613.0,37842093.0,39056972.0,40157591.0,41590057.0,43255018.0,44744778.0,45332705.0,47571457.0,47810299.0,50491881.0,51895931.0,53238434.0,54188251.0,55494094.0,56830044.0,58175185.0,59413702.0,60635374.0,61780391.0,61763237.0,63371692.0,64622906.0,66172930.0,67541918.0,68836239.0,69939546.0,71910401.0,72549624.0,73527709.0,74566550.0,74791442.0,77610221.0,79537834.0,80882362.0,80830265.0,82055749.0,83933197.0,85791993.0,87121912.0,88094867.0,88583528.0,89615674.0,91108889.0,93408184.0,94569481.0,95755209.0,95875021.0,96881163.0,99568389.0,101004436.0,102215850.0,102686408.0,103344374.0,105603831.0,107066759.0,108655762.0,108402585.0,108932327.0,111192682.0,113446394.0,114870390.0,115295616.0,115860699.0,118012604.0,119454018.0,120423686.0,120549475.0,122685047.0,125000352.0,126079503.0],"unit":"ns","throughput":[],"typical":{"estimate":313148.7916506576,"lower_bound":312590.4169794305,"upper_bound":313666.0204949566,"unit":"ns"},"mean":{"estimate":311425.34064253024,"lower_bound":310538.7286032932,"upper_bound":312317.53883618576,"unit":"ns"},"median":{"estimate":312289.05282738095,"lower_bound":311282.53571428574,"upper_bound":312793.03013468016,"unit":"ns"},"median_abs_dev":{"estimate":4262.1221155405465,"lower_bound":2811.6265403596826,"upper_bound":5538.78662724827,"unit":"ns"},"slope":{"estimate":313148.7916506576,"lower_bound":312590.4169794305,"upper_bound":313666.0204949566,"unit":"ns"},"change":{"mean":{"estimate":-0.019786446301292893,"lower_bound":-0.024113606741270815,"upper_bound":-0.015242240285172242,"unit":"%"},"median":{"estimate":-0.014321444291753194,"lower_bound":-0.023325622609624785,"upper_bound":-0.00662211260313017,"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":[293,586,879,1172,1465,1758,2051,2344,2637,2930,3223,3516,3809,4102,4395,4688,4981,5274,5567,5860,6153,6446,6739,7032,7325,7618,7911,8204,8497,8790,9083,9376,9669,9962,10255,10548,10841,11134,11427,11720,12013,12306,12599,12892,13185,13478,13771,14064,14357,14650,14943,15236,15529,15822,16115,16408,16701,16994,17287,17580,17873,18166,18459,18752,19045,19338,19631,19924,20217,20510,20803,21096,21389,21682,21975,22268,22561,22854,23147,23440,23733,24026,24319,24612,24905,25198,25491,25784,26077,26370,26663,26956,27249,27542,27835,28128,28421,28714,29007,29300],"measured_values":[968602.0,1790608.0,2808427.0,3843770.0,4799587.0,5694085.0,6706636.0,7700840.0,8640020.0,9498204.0,10566444.0,11546278.0,12501826.0,13335149.0,13764279.0,15410750.0,16345978.0,16907829.0,18217537.0,19220436.0,20119492.0,20968324.0,21866156.0,21809284.0,22718590.0,23755928.0,24356593.0,25713443.0,26554826.0,26942408.0,28274625.0,29790538.0,31232795.0,31583115.0,31752627.0,32893279.0,33701574.0,34994321.0,37614889.0,38554631.0,37363154.0,37839332.0,38703785.0,39947239.0,41355211.0,44009900.0,45199671.0,46218515.0,47003172.0,47090908.0,46997285.0,48311514.0,48345638.0,48279853.0,49705729.0,52145874.0,53058539.0,54429602.0,55963090.0,57989248.0,56964271.0,55523567.0,57165363.0,57884926.0,59790799.0,62882427.0,64261562.0,65309769.0,65523777.0,63090621.0,64428347.0,66406830.0,70320311.0,68191629.0,70942595.0,71418020.0,69825816.0,70131425.0,73451823.0,77112158.0,77813722.0,74673479.0,75358777.0,75637782.0,77154617.0,78362521.0,79472270.0,84860460.0,81907366.0,81218838.0,82482449.0,84204438.0,84907363.0,89640668.0,86488029.0,86727117.0,89063067.0,93294495.0,94126901.0,90652172.0],"unit":"ns","throughput":[],"typical":{"estimate":3161.0105486220773,"lower_bound":3142.124487200763,"upper_bound":3181.3317875888715,"unit":"ns"},"mean":{"estimate":3180.0681574271694,"lower_bound":3164.1830533660564,"upper_bound":3195.9314158250772,"unit":"ns"},"median":{"estimate":3172.077625111744,"lower_bound":3134.2568259385666,"upper_bound":3217.768013891384,"unit":"ns"},"median_abs_dev":{"estimate":111.91064281956042,"lower_bound":72.77118928322813,"upper_bound":127.35285339782928,"unit":"ns"},"slope":{"estimate":3161.0105486220773,"lower_bound":3142.124487200763,"upper_bound":3181.3317875888715,"unit":"ns"},"change":{"mean":{"estimate":0.0194355574177536,"lower_bound":0.014166191221125175,"upper_bound":0.02516040846012,"unit":"%"},"median":{"estimate":0.015470198153408887,"lower_bound":0.0037435371632903447,"upper_bound":0.03404765757146855,"unit":"%"},"change":"Regressed"}} -{"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":[1289991.0,2396735.0,3470159.0,4740229.0,5903059.0,7034039.0,8249935.0,9396631.0,10713267.0,11627978.0,12800675.0,14212016.0,15396685.0,16486769.0,17711451.0,18716193.0,19973080.0,21230959.0,22419658.0,23608105.0,24813477.0,25879254.0,27061642.0,27502009.0,29326986.0,30628823.0,31856893.0,33045131.0,34062531.0,35189885.0,36276871.0,37391299.0,38572576.0,40132214.0,41036370.0,42308730.0,43038852.0,44766554.0,45938483.0,47255210.0,48380223.0,48814763.0,50455062.0,51289376.0,53207556.0,53846582.0,55090262.0,56385386.0,57984761.0,58961279.0,60259057.0,61355509.0,62106348.0,63798551.0,64883479.0,66247906.0,67379557.0,68512323.0,68781154.0,69974461.0,71847519.0,73111349.0,74331416.0,75535334.0,76610610.0,77936851.0,78544855.0,80211871.0,80883385.0,82434392.0,83509796.0,84923059.0,86139716.0,87088306.0,88334891.0,89604089.0,90886263.0,91400229.0,92433314.0,94462479.0,95793554.0,96503706.0,97909567.0,98904795.0,99607204.0,101152503.0,102421205.0,102647140.0,104622569.0,106205922.0,107031894.0,107681553.0,108571866.0,109893550.0,111726496.0,112303532.0,113777804.0,114895420.0,115853672.0,117550807.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":293830.1120688636,"lower_bound":293535.0865229223,"upper_bound":294128.805632355,"unit":"ns"},"mean":{"estimate":294228.39561183134,"lower_bound":293681.27329566696,"upper_bound":294966.8655058207,"unit":"ns"},"median":{"estimate":294336.6581999179,"lower_bound":293883.62078651687,"upper_bound":294695.41423872183,"unit":"ns"},"median_abs_dev":{"estimate":1374.1962414926872,"lower_bound":945.8487454578246,"upper_bound":1712.1932925612166,"unit":"ns"},"slope":{"estimate":293830.1120688636,"lower_bound":293535.0865229223,"upper_bound":294128.805632355,"unit":"ns"},"change":{"mean":{"estimate":-0.003704701620810269,"lower_bound":-0.0066067634845958095,"upper_bound":-0.00024211475123078554,"unit":"%"},"median":{"estimate":-0.003507535539468809,"lower_bound":-0.005959322918487997,"upper_bound":-0.0015780838754929638,"unit":"%"},"change":"NoChange"}} -{"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":[52816796.0,52226226.0,52411790.0,52823492.0,52586784.0,52555685.0,52586983.0,52726551.0,52390599.0,52526447.0,52510111.0,52568214.0,52710570.0,52584562.0,52566720.0,52601192.0,52617329.0,52804636.0,52713092.0,52337206.0,52409148.0,52687617.0,52872361.0,52675452.0,52704045.0,52675299.0,52609149.0,52642148.0,52510884.0,52513719.0,52584716.0,52641252.0,52651213.0,51935081.0,52341379.0,52659863.0,52485085.0,52485413.0,52548428.0,52521923.0,52393603.0,52731235.0,52653632.0,52755680.0,52261250.0,52785303.0,52309561.0,52143822.0,52547931.0,52724564.0,52375945.0,51807307.0,52474377.0,52780265.0,52680038.0,52766625.0,52710439.0,51847164.0,52517900.0,52666541.0,52696289.0,52631924.0,52544114.0,52623576.0,52544092.0,52572596.0,52582531.0,52583207.0,52456978.0,52490363.0,52694137.0,51970263.0,52605131.0,52492364.0,52527166.0,52533880.0,52019714.0,51976950.0,52612261.0,52665173.0,52440282.0,52033975.0,52274578.0,52239839.0,52313859.0,52743099.0,52729751.0,52758957.0,52674733.0,52679827.0,52608769.0,52521231.0,52614121.0,52224171.0,52538200.0,51928765.0,52139381.0,52679426.0,52680138.0,52698942.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":3089468.8794117635,"lower_bound":3086745.0179705867,"upper_bound":3092022.9229705883,"unit":"ns"},"mean":{"estimate":3089468.8794117635,"lower_bound":3086745.0179705867,"upper_bound":3092022.9229705883,"unit":"ns"},"median":{"estimate":3093109.9411764704,"lower_bound":3090482.3529411764,"upper_bound":3094838.882352941,"unit":"ns"},"median_abs_dev":{"estimate":8513.612319441281,"lower_bound":7164.634938831038,"upper_bound":12611.344223162627,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.00481796989905825,"lower_bound":-0.006364946173895336,"upper_bound":-0.0032831525232498364,"unit":"%"},"median":{"estimate":-0.004247510489485129,"lower_bound":-0.005789695224975624,"upper_bound":-0.0031257674564226594,"unit":"%"},"change":"NoChange"}} -{"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":[60884223.0,61027924.0,61175650.0,61309553.0,61027224.0,61021555.0,61351055.0,61251485.0,60328269.0,60731608.0,61328608.0,61013230.0,61129219.0,61199346.0,61267103.0,61194245.0,61215700.0,60853625.0,60973942.0,61169142.0,61021689.0,60891500.0,61034876.0,60856228.0,61151524.0,61116792.0,61171377.0,61298293.0,61223738.0,61251279.0,61398885.0,61134368.0,61195990.0,60785965.0,60541946.0,60797365.0,61256709.0,61165114.0,61172212.0,61192125.0,61137910.0,61083597.0,61245307.0,61285687.0,61179124.0,60847243.0,61183799.0,61012140.0,61011301.0,61264803.0,60764691.0,60829925.0,61080277.0,60965673.0,60932987.0,61003277.0,61144829.0,60555673.0,60439925.0,60593292.0,61225051.0,61129949.0,60096242.0,61077479.0,61128338.0,61126695.0,61002349.0,60485423.0,61053970.0,61217893.0,61397115.0,60705616.0,60792007.0,61172383.0,61294343.0,61247294.0,61256305.0,61306948.0,61270089.0,60264738.0,61363728.0,61169979.0,60850618.0,60597164.0,60893012.0,61040682.0,61056524.0,61228991.0,60942407.0,61004716.0,61078057.0,61153972.0,61138163.0,61326490.0,61233541.0,61300571.0,61175981.0,61219961.0,60562099.0,60949881.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":30521044.525,"lower_bound":30494919.663374998,"upper_bound":30545328.15125,"unit":"ns"},"mean":{"estimate":30521044.525,"lower_bound":30494919.663374998,"upper_bound":30545328.15125,"unit":"ns"},"median":{"estimate":30564389.25,"lower_bound":30520341.0,"upper_bound":30584571.0,"unit":"ns"},"median_abs_dev":{"estimate":90885.97293645144,"lower_bound":72096.24217003584,"upper_bound":129629.68316361298,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.00662384502464719,"lower_bound":0.005315527590157843,"upper_bound":0.008020604585084145,"unit":"%"},"median":{"estimate":0.006826213900624545,"lower_bound":0.004961854110368997,"upper_bound":0.008082183420442535,"unit":"%"},"change":"NoChange"}} -{"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":[283989569.0,282430284.0,283995260.0,283590345.0,282473655.0,283694737.0,283398037.0,283483553.0,283478368.0,282387438.0,283689706.0,282034627.0,281405622.0,282648024.0,284557247.0,283763414.0,282428237.0,283252665.0,283351252.0,282991752.0,284029395.0,283918467.0,283661218.0,283351455.0,282901386.0,284221007.0,282479454.0,283121349.0,284098893.0,284553527.0,281952594.0,284139843.0,283539618.0,283728485.0,282981130.0,283217683.0,283659116.0,283370841.0,282723323.0,282588894.0,282902641.0,283278128.0,283575286.0,283573119.0,282458925.0,283542086.0,282749406.0,283375021.0,282899891.0,283729624.0,283742139.0,282018550.0,283162468.0,283265627.0,282324209.0,282796241.0,283719472.0,283818717.0,283087019.0,283763608.0,283418762.0,282792458.0,283166292.0,283150504.0,282877273.0,282733283.0,282890259.0,283151656.0,282371432.0,282415342.0,282649769.0,283091870.0,283560947.0,282889345.0,282897167.0,282517235.0,283269372.0,283311659.0,282641188.0,282676739.0,283136823.0,284127475.0,283574668.0,283614054.0,283992913.0,283709737.0,284049872.0,284099459.0,283106059.0,284016803.0,283889004.0,286909206.0,284079225.0,281938802.0,283363001.0,283502433.0,282364872.0,284630337.0,283482566.0,282147286.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":283272707.94,"lower_bound":283131644.93075,"upper_bound":283420358.95875,"unit":"ns"},"mean":{"estimate":283272707.94,"lower_bound":283131644.93075,"upper_bound":283420358.95875,"unit":"ns"},"median":{"estimate":283294893.5,"lower_bound":283135926.5,"upper_bound":283482566.0,"unit":"ns"},"median_abs_dev":{"estimate":643687.0871722698,"lower_bound":519392.5770789385,"upper_bound":850442.3252016306,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.007504448437636979,"lower_bound":0.006759104029238927,"upper_bound":0.008291668754090686,"unit":"%"},"median":{"estimate":0.007464065246326923,"lower_bound":0.006493694832616859,"upper_bound":0.008401007067972524,"unit":"%"},"change":"NoChange"}} -{"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":[2669811348.0,2677683531.0,2677234593.0,2677819223.0,2678195441.0,2671529198.0,2680168754.0,2675233709.0,2674973058.0,2673899717.0,2671998376.0,2675758206.0,2675847820.0,2669584845.0,2677545469.0,2673475247.0,2670495394.0,2673279420.0,2676832714.0,2672824957.0,2669543533.0,2671852790.0,2669444576.0,2675697304.0,2675740828.0,2674171297.0,2670111890.0,2672731306.0,2670601644.0,2675426857.0,2673296160.0,2673798908.0,2678562324.0,2668365499.0,2674383263.0,2669195260.0,2672057535.0,2671399896.0,2671030711.0,2670802468.0,2675275220.0,2670200570.0,2675834397.0,2675742641.0,2673792709.0,2669080681.0,2668571543.0,2670064465.0,2672130224.0,2668828116.0,2671341899.0,2675237060.0,2676244392.0,2673906185.0,2668177897.0,2672987425.0,2673058068.0,2682134521.0,2674440770.0,2672440607.0,2671288427.0,2668973525.0,2666200996.0,2674064136.0,2669459063.0,2671813853.0,2674400005.0,2667999345.0,2675546340.0,2672425681.0,2676342528.0,2672972831.0,2670066926.0,2673149332.0,2676587812.0,2672825093.0,2673668545.0,2675385691.0,2675807028.0,2674644988.0,2672014506.0,2673657102.0,2674569346.0,2674424353.0,2676569729.0,2671922120.0,2676819228.0,2675359944.0,2672036520.0,2673872365.0,2672893674.0,2670871303.0,2669739666.0,2675394193.0,2672509804.0,2672485502.0,2671244571.0,2677100369.0,2674104273.0,2670529099.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":2673236342.71,"lower_bound":2672669483.742,"upper_bound":2673807534.8715,"unit":"ns"},"mean":{"estimate":2673236342.71,"lower_bound":2672669483.742,"upper_bound":2673807534.8715,"unit":"ns"},"median":{"estimate":2673214376.0,"lower_bound":2672475205.5,"upper_bound":2673981926.5,"unit":"ns"},"median_abs_dev":{"estimate":3225494.094336033,"lower_bound":2406571.7889773105,"upper_bound":3842151.9013881683,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.008846587047518284,"lower_bound":0.008493462508992916,"upper_bound":0.009186903331319923,"unit":"%"},"median":{"estimate":0.0090199140636682,"lower_bound":0.008270994078554361,"upper_bound":0.009446359706153595,"unit":"%"},"change":"NoChange"}} -{"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":[25848311045.0,25857441406.0,25877470852.0,25869473511.0,25895198123.0,25864773001.0,25854070969.0,25879488765.0,25855458341.0,25845090056.0,25868630158.0,25831729803.0,25900014750.0,25825507459.0,25857228528.0,25839404608.0,25845359292.0,25840123713.0,25875828221.0,25820533746.0,25847477085.0,25852605586.0,25817440157.0,25836591848.0,25890265284.0,25832461193.0,25848706486.0,25849257152.0,25874344446.0,25857030458.0,25870053645.0,25844493659.0,25882146177.0,25905507528.0,25908797047.0,25897602494.0,25861806836.0,25829159172.0,25864752346.0,25863644518.0,25852032845.0,25879616230.0,25854749840.0,25872289179.0,25840131878.0,25829546330.0,25867603043.0,25859139134.0,25860502583.0,25852637014.0,25853426238.0,25858960594.0,25864532817.0,25881292188.0,25842250782.0,25857475905.0,25861965263.0,25878161011.0,25856410740.0,25850827715.0,25820921001.0,25871145849.0,25897099364.0,25822332054.0,25886880932.0,25868712851.0,25868026001.0,25872802832.0,25851718147.0,25866948819.0,25863794483.0,25902051135.0,25875399495.0,25868622507.0,25879893600.0,25895506912.0,25886521754.0,25854185426.0,25854187409.0,25849379084.0,25844033013.0,25870577980.0,25826789150.0,25857918984.0,25872754371.0,25882120502.0,25884626099.0,25854222221.0,25834467554.0,25883199041.0,25883022971.0,25842966349.0,25866980305.0,25878009446.0,25863591942.0,25902972872.0,25866140633.0,25835376670.0,25880736857.0,25840930380.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":25861863977.88,"lower_bound":25857792160.654,"upper_bound":25865957269.57125,"unit":"ns"},"mean":{"estimate":25861863977.88,"lower_bound":25857792160.654,"upper_bound":25865957269.57125,"unit":"ns"},"median":{"estimate":25861886049.5,"lower_bound":25856244399.5,"upper_bound":25867275931.0,"unit":"ns"},"median_abs_dev":{"estimate":20398482.20665455,"lower_bound":15628208.41465384,"upper_bound":25941924.23100628,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0033272593620090607,"lower_bound":-0.003656003838389113,"upper_bound":-0.0030050097675426574,"unit":"%"},"median":{"estimate":-0.003122617081381285,"lower_bound":-0.003687741556770874,"upper_bound":-0.00272720908107027,"unit":"%"},"change":"NoChange"}} -{"reason":"group-complete","group_name":"scwq","benchmarks":["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":[1290776.0,2416164.0,3717518.0,4957267.0,6035174.0,7275421.0,8763927.0,9914796.0,11151053.0,12200728.0,13628071.0,14858773.0,16034357.0,17361473.0,18402468.0,19825403.0,20960779.0,22016222.0,23533851.0,24699777.0,25895190.0,27211426.0,28399526.0,29369265.0,30813005.0,31916922.0,33029270.0,34483062.0,35398814.0,36685775.0,37790110.0,39150086.0,40718700.0,41866138.0,42390027.0,44063074.0,44677427.0,46384746.0,47894569.0,49143950.0,50459094.0,51619742.0,52885966.0,54054746.0,55125340.0,56582299.0,57781693.0,57952293.0,60228936.0,61707765.0,62311362.0,63995265.0,65362008.0,65863214.0,67456068.0,68814438.0,69312665.0,70127935.0,72193578.0,72832960.0,73718046.0,75810187.0,77496940.0,77710125.0,79465707.0,81101834.0,82159775.0,83590899.0,84685632.0,85507465.0,87316530.0,87575648.0,90020491.0,91010177.0,92444902.0,93228952.0,94261965.0,95975900.0,96072895.0,98439793.0,99294899.0,101028984.0,102260832.0,103306544.0,104137570.0,105065934.0,106589052.0,107509890.0,108594405.0,110542418.0,111839117.0,112927813.0,114272261.0,115554396.0,116426691.0,117558120.0,119176079.0,119213237.0,121220719.0,122734026.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":306381.0888961135,"lower_bound":306039.89951884083,"upper_bound":306701.60939691897,"unit":"ns"},"mean":{"estimate":306823.3820688382,"lower_bound":306339.2422751257,"upper_bound":307362.97626420535,"unit":"ns"},"median":{"estimate":307039.3700854701,"lower_bound":306465.737654321,"upper_bound":307290.48979591834,"unit":"ns"},"median_abs_dev":{"estimate":1769.262995151803,"lower_bound":1308.8917455327025,"upper_bound":2122.7339181592088,"unit":"ns"},"slope":{"estimate":306381.0888961135,"lower_bound":306039.89951884083,"upper_bound":306701.60939691897,"unit":"ns"},"change":{"mean":{"estimate":-0.010223483919586718,"lower_bound":-0.013054359518507773,"upper_bound":-0.007427489365216367,"unit":"%"},"median":{"estimate":-0.008978801039921325,"lower_bound":-0.011986948442273548,"upper_bound":-0.006715195829263054,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"swwq/10","report_directory":"/root/fuel-core/target/criterion/reports/swwq/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":[50275858.0,49846874.0,49847251.0,49836040.0,49799866.0,49757573.0,49798817.0,49742558.0,49596307.0,49720435.0,49911726.0,49663971.0,49865457.0,49975465.0,49752113.0,49546374.0,49438812.0,49819205.0,49611842.0,49599946.0,49543996.0,49811615.0,49889957.0,49477779.0,49630469.0,49693174.0,49722652.0,49890335.0,49634106.0,49140924.0,49456670.0,49781553.0,49785452.0,49810223.0,49766101.0,49743967.0,49661355.0,49880901.0,49653202.0,49677016.0,49616196.0,49876596.0,49668375.0,49668856.0,49679960.0,49631794.0,49205663.0,49174453.0,49424872.0,49687851.0,49672505.0,49799204.0,49808794.0,49687028.0,49753391.0,49615464.0,49549053.0,49500986.0,49637277.0,49406359.0,49794458.0,49362312.0,49616886.0,49599471.0,49361169.0,49635325.0,49765337.0,49658752.0,49794874.0,49450055.0,49561361.0,49057207.0,49383956.0,49603893.0,49772367.0,49733256.0,49747682.0,49505062.0,49696499.0,49500410.0,49641492.0,49862939.0,49722586.0,49919304.0,49756804.0,49871126.0,49819342.0,49601200.0,49871372.0,49955945.0,49627773.0,49755668.0,49776466.0,49758135.0,49656229.0,49688959.0,49481733.0,49753278.0,49597588.0,49333298.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":2921867.1664705887,"lower_bound":2919682.0268823537,"upper_bound":2923980.4997499995,"unit":"ns"},"mean":{"estimate":2921867.1664705887,"lower_bound":2919682.0268823537,"upper_bound":2923980.4997499995,"unit":"ns"},"median":{"estimate":2922790.5588235296,"lower_bound":2920939.823529412,"upper_bound":2926115.705882353,"unit":"ns"},"median_abs_dev":{"estimate":8077.815138943258,"lower_bound":6733.533021632119,"upper_bound":11240.654383967661,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0036533444839103035,"lower_bound":-0.0054866691298934645,"upper_bound":-0.0017903223329625937,"unit":"%"},"median":{"estimate":-0.0035891189773895604,"lower_bound":-0.005680860780136854,"upper_bound":0.0004792123202219667,"unit":"%"},"change":"NoChange"}} -{"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":[57898693.0,58253464.0,57245730.0,57992162.0,58263663.0,58104104.0,58128652.0,57690852.0,58137946.0,58142876.0,57941811.0,57919366.0,58269369.0,58165386.0,57765532.0,57578778.0,57850555.0,58102936.0,57619249.0,58041864.0,58027572.0,57782207.0,57894133.0,58320126.0,57934752.0,57888422.0,58290719.0,58008902.0,58275164.0,57287697.0,58092603.0,57996997.0,58160285.0,58162611.0,58284318.0,57985777.0,58201896.0,58093892.0,57983745.0,57437695.0,57904872.0,57986793.0,57884788.0,57769972.0,58014227.0,58003186.0,57920601.0,58156045.0,57615607.0,58085087.0,57482428.0,58077198.0,57483048.0,57451527.0,57539409.0,57813137.0,58144051.0,57653537.0,58208705.0,57905973.0,57923246.0,57900660.0,58074997.0,57986184.0,57159983.0,58166247.0,58066315.0,58254976.0,58183717.0,58205672.0,58142075.0,57974815.0,58027264.0,58149183.0,58138100.0,57861587.0,57743401.0,57937411.0,57843661.0,58051936.0,57978870.0,58094181.0,58053288.0,58166380.0,58234463.0,58136535.0,58342725.0,58064785.0,58261535.0,58070421.0,58014505.0,58191983.0,58231101.0,57758190.0,58259796.0,58262798.0,57666886.0,58020316.0,58155839.0,58086410.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":28990825.645,"lower_bound":28965903.011249997,"upper_bound":29014142.748,"unit":"ns"},"mean":{"estimate":28990825.645,"lower_bound":28965903.011249997,"upper_bound":29014142.748,"unit":"ns"},"median":{"estimate":29013709.0,"lower_bound":28993092.0,"upper_bound":29042543.5,"unit":"ns"},"median_abs_dev":{"estimate":96959.07307863235,"lower_bound":71656.28062784672,"upper_bound":123929.04919981956,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0011634994091457296,"lower_bound":-0.0025560530665973188,"upper_bound":0.00019621382266817272,"unit":"%"},"median":{"estimate":-0.001311845500353459,"lower_bound":-0.0030176934839167835,"upper_bound":0.0009464985311742335,"unit":"%"},"change":"NoChange"}} -{"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":[272655381.0,262778914.0,261533111.0,262283198.0,264020096.0,264222560.0,262848352.0,262269508.0,263039819.0,262559880.0,263425490.0,263513776.0,261125458.0,262932439.0,263351255.0,263156968.0,263325083.0,263753633.0,262783154.0,263041348.0,263050570.0,261627049.0,262453575.0,263085641.0,263149608.0,261499844.0,262822116.0,263771747.0,265814627.0,262633165.0,263086544.0,263248255.0,263270672.0,263445327.0,262573707.0,262881434.0,263029230.0,263427240.0,262977438.0,262410749.0,262642445.0,263171962.0,262602304.0,263071691.0,262565972.0,262901267.0,262786500.0,262064473.0,262372504.0,264402695.0,262702254.0,261989393.0,262264366.0,263959415.0,264990778.0,262413948.0,262141519.0,262658458.0,263021712.0,261968581.0,263289862.0,261765500.0,262999951.0,262983859.0,262388006.0,261906854.0,262895046.0,263337186.0,262925075.0,262609932.0,262442558.0,262637496.0,262842059.0,262343852.0,263078065.0,262628765.0,263233877.0,263191750.0,262140808.0,263226433.0,262183076.0,262184274.0,262097902.0,261828417.0,262702388.0,263263817.0,262279204.0,263616276.0,262607259.0,263532011.0,262803406.0,263733040.0,262944308.0,262251516.0,263059793.0,262791437.0,263357880.0,263204785.0,263268395.0,262593093.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":262967394.09,"lower_bound":262767784.014,"upper_bound":263228593.5645,"unit":"ns"},"mean":{"estimate":262967394.09,"lower_bound":262767784.014,"upper_bound":263228593.5645,"unit":"ns"},"median":{"estimate":262888240.0,"lower_bound":262702388.0,"upper_bound":263030765.5,"unit":"ns"},"median_abs_dev":{"estimate":560224.1216540337,"lower_bound":432371.3716238737,"upper_bound":716490.1588797569,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0015015783795577775,"lower_bound":0.0004779413933706514,"upper_bound":0.002681974000164577,"unit":"%"},"median":{"estimate":0.0009251013857507484,"lower_bound":-0.00007380493146225131,"upper_bound":0.002010011956282698,"unit":"%"},"change":"NoChange"}} -{"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":[2457415787.0,2459579560.0,2460106890.0,2456727213.0,2453610337.0,2451973429.0,2454832939.0,2457158007.0,2453924025.0,2456097744.0,2455951827.0,2451682636.0,2455833462.0,2449805272.0,2459080884.0,2458803328.0,2452655981.0,2458140275.0,2460478190.0,2461840932.0,2460452352.0,2457064903.0,2456287687.0,2457754126.0,2460383425.0,2461624547.0,2458945106.0,2461931950.0,2458503255.0,2459730871.0,2459179000.0,2469272026.0,2459171218.0,2459589915.0,2462264414.0,2464543279.0,2447812289.0,2457402299.0,2458922849.0,2467634016.0,2459653323.0,2461129908.0,2460459900.0,2462133617.0,2459778185.0,2463655172.0,2456740784.0,2463014396.0,2459720835.0,2462245130.0,2459462477.0,2465173590.0,2455119362.0,2454083447.0,2462617461.0,2458366981.0,2462728314.0,2457446310.0,2456840669.0,2456481371.0,2459544218.0,2458331498.0,2461390284.0,2461428681.0,2454956751.0,2459316749.0,2454285344.0,2458152708.0,2458146380.0,2454287715.0,2460751360.0,2455796734.0,2455770014.0,2455704602.0,2458026307.0,2460623391.0,2460868662.0,2458167097.0,2458034393.0,2457528847.0,2460127264.0,2456687142.0,2458774032.0,2460910296.0,2462024039.0,2459082050.0,2459272841.0,2459921085.0,2460231416.0,2459431312.0,2462938754.0,2462585340.0,2462599557.0,2455717664.0,2468072916.0,2460375471.0,2462412037.0,2462705248.0,2458877547.0,2463152870.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":2458980300.93,"lower_bound":2458287595.86725,"upper_bound":2459667719.1645,"unit":"ns"},"mean":{"estimate":2458980300.93,"lower_bound":2458287595.86725,"upper_bound":2459667719.1645,"unit":"ns"},"median":{"estimate":2459175109.0,"lower_bound":2458366981.0,"upper_bound":2459720835.0,"unit":"ns"},"median_abs_dev":{"estimate":3206404.878374934,"lower_bound":2221849.524754286,"upper_bound":4040514.1409665346,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.004183925737950567,"lower_bound":0.003793845182899619,"upper_bound":0.004592729868442713,"unit":"%"},"median":{"estimate":0.004348025562547875,"lower_bound":0.003906677315226603,"upper_bound":0.004691424068567878,"unit":"%"},"change":"NoChange"}} -{"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":[24108307337.0,24110779437.0,24154267821.0,24111208002.0,24109699849.0,24105891223.0,24138465696.0,24110208649.0,24116092780.0,24115021984.0,24122680513.0,24127181186.0,24135242930.0,24101412014.0,24114815778.0,24134680591.0,24115896426.0,24109329970.0,24112225926.0,24128469499.0,24119330084.0,24110776794.0,24109195176.0,24100304114.0,24114653951.0,24096161741.0,24116949007.0,24103675229.0,24102182674.0,24114614125.0,24132739127.0,24095735357.0,24123109258.0,24110758570.0,24107701639.0,24106763549.0,24125636127.0,24121803504.0,24132475466.0,24090975289.0,24070912547.0,24088460131.0,24084194570.0,24055255419.0,24098232992.0,24129002923.0,24091016438.0,24122934037.0,24119295330.0,24115669916.0,24091825930.0,24110949512.0,24107231943.0,24138338896.0,24068780292.0,24114502781.0,24117136627.0,24084326673.0,24107130883.0,24100082606.0,24135978492.0,24098235642.0,24122024035.0,24146982302.0,24140990664.0,24100117871.0,24097059406.0,24105490850.0,24134653203.0,24114675765.0,24117675060.0,24095883305.0,24125973474.0,24093001957.0,24102687614.0,24122110994.0,24093953595.0,24081387456.0,24121890970.0,24092631875.0,24105830653.0,24088488844.0,24096181117.0,24097546744.0,24125376313.0,24105819020.0,24118730640.0,24140224902.0,24125715314.0,24114784835.0,24115355330.0,24094387169.0,24123697491.0,24119237100.0,24113361195.0,24105983497.0,24091734998.0,24095286154.0,24116629121.0,24108477749.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":24110789515.54,"lower_bound":24107478159.637,"upper_bound":24114072285.11,"unit":"ns"},"mean":{"estimate":24110789515.54,"lower_bound":24107478159.637,"upper_bound":24114072285.11,"unit":"ns"},"median":{"estimate":24110864474.5,"lower_bound":24107701639.0,"upper_bound":24114903409.5,"unit":"ns"},"median_abs_dev":{"estimate":16446523.02081585,"lower_bound":11799245.203721523,"upper_bound":20057713.274404407,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.008150589932809149,"lower_bound":0.007868749375667344,"upper_bound":0.008412824598802049,"unit":"%"},"median":{"estimate":0.008186033945350113,"lower_bound":0.007832760985532284,"upper_bound":0.008594598062450887,"unit":"%"},"change":"NoChange"}} -{"reason":"group-complete","group_name":"swwq","benchmarks":["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":[387003.0,233610.0,233660.0,232202.0,233949.0,231867.0,232551.0,232486.0,231245.0,232131.0,236071.0,232839.0,233589.0,231846.0,226729.0,226801.0,233965.0,232486.0,224641.0,231525.0,227117.0,232537.0,232809.0,232671.0,226012.0,230969.0,232853.0,232086.0,231458.0,231389.0,231356.0,232685.0,232987.0,231453.0,230119.0,231345.0,225979.0,226155.0,230502.0,233279.0,236496.0,234040.0,233265.0,236307.0,227987.0,226759.0,232198.0,232386.0,232394.0,235358.0,232332.0,234784.0,227321.0,233116.0,232933.0,232964.0,233621.0,226234.0,235076.0,233163.0,229087.0,226406.0,232518.0,226841.0,227894.0,233683.0,225178.0,232723.0,233246.0,226250.0,232704.0,233317.0,227775.0,231218.0,229044.0,226490.0,226365.0,233123.0,261341.0,233306.0,234086.0,233747.0,233163.0,232794.0,232351.0,232236.0,232677.0,225248.0,226328.0,232739.0,232986.0,232198.0,226355.0,226224.0,232446.0,233313.0,230008.0,262243.0,234600.0,235390.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":233453.32,"lower_bound":231173.27925,"upper_bound":237147.48675,"unit":"ns"},"mean":{"estimate":233453.32,"lower_bound":231173.27925,"upper_bound":237147.48675,"unit":"ns"},"median":{"estimate":232466.0,"lower_bound":232131.0,"upper_bound":232723.0,"unit":"ns"},"median_abs_dev":{"estimate":1704.248669743538,"lower_bound":1192.0103788375854,"upper_bound":2622.7193534374237,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.012945823247047183,"lower_bound":-0.002294668816442442,"upper_bound":0.03057572588718719,"unit":"%"},"median":{"estimate":0.0115661769825246,"lower_bound":0.009077376166935148,"upper_bound":0.013716778485467263,"unit":"%"},"change":"NoChange"}} -{"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":[318089.0,233514.0,230508.0,228041.0,234396.0,235100.0,233523.0,232759.0,235029.0,232922.0,233349.0,234870.0,233871.0,227974.0,235453.0,235576.0,232334.0,235629.0,234199.0,234138.0,233901.0,235736.0,228699.0,234633.0,263754.0,235207.0,234340.0,227766.0,230071.0,235170.0,233608.0,230257.0,234988.0,237761.0,233637.0,233521.0,228695.0,233088.0,227826.0,232691.0,233456.0,234219.0,227165.0,234196.0,235306.0,227420.0,232233.0,233341.0,232952.0,232381.0,233350.0,228870.0,232869.0,234813.0,227672.0,227031.0,233850.0,234055.0,235073.0,228209.0,288815.0,233820.0,236068.0,235425.0,232783.0,233453.0,232611.0,233882.0,233768.0,231746.0,233478.0,234739.0,234497.0,234072.0,233619.0,225359.0,225781.0,227610.0,240739.0,232805.0,232937.0,225773.0,235689.0,233016.0,232097.0,231827.0,226765.0,232531.0,232528.0,226949.0,235748.0,234104.0,227825.0,231595.0,236535.0,230046.0,233975.0,233048.0,232897.0,232236.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":234282.75,"lower_bound":232482.18575,"upper_bound":236723.24474999998,"unit":"ns"},"mean":{"estimate":234282.75,"lower_bound":232482.18575,"upper_bound":236723.24474999998,"unit":"ns"},"median":{"estimate":233454.5,"lower_bound":232917.0,"upper_bound":233820.0,"unit":"ns"},"median_abs_dev":{"estimate":1958.514565229416,"lower_bound":1343.2170436531321,"upper_bound":2931.10014796257,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.02255508848306076,"lower_bound":0.012168272578263833,"upper_bound":0.03505297089422984,"unit":"%"},"median":{"estimate":0.02005553504366131,"lower_bound":0.01743637459701719,"upper_bound":0.021964961800541305,"unit":"%"},"change":"Regressed"}} -{"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":[280861.0,233297.0,225867.0,232504.0,234852.0,232569.0,225857.0,231774.0,231184.0,225041.0,231908.0,230595.0,232356.0,232978.0,232762.0,232890.0,231593.0,231599.0,235549.0,233037.0,232705.0,233028.0,227691.0,225942.0,231432.0,231289.0,231120.0,225741.0,232182.0,233025.0,234032.0,225480.0,234899.0,232470.0,230903.0,231696.0,230797.0,227051.0,230415.0,228168.0,225985.0,227038.0,232500.0,233207.0,233119.0,227063.0,229462.0,228824.0,231520.0,231182.0,232134.0,233156.0,232168.0,233182.0,236100.0,226058.0,225383.0,263637.0,232589.0,233086.0,233066.0,231805.0,232040.0,233429.0,231299.0,232055.0,233223.0,232494.0,231628.0,231255.0,236443.0,232541.0,227363.0,232899.0,233572.0,233082.0,232534.0,231812.0,233068.0,227760.0,235245.0,232646.0,232995.0,225521.0,234381.0,233425.0,225161.0,232065.0,232605.0,231882.0,230070.0,230630.0,231750.0,230456.0,231653.0,230857.0,225537.0,230421.0,231678.0,224456.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":231933.34,"lower_bound":230839.39974999998,"upper_bound":233363.37325,"unit":"ns"},"mean":{"estimate":231933.34,"lower_bound":230839.39974999998,"upper_bound":233363.37325,"unit":"ns"},"median":{"estimate":231895.0,"lower_bound":231599.0,"upper_bound":232494.0,"unit":"ns"},"median_abs_dev":{"estimate":1737.6071691513062,"lower_bound":1205.3537786006927,"upper_bound":2158.6655616760254,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.012948853800011428,"lower_bound":-0.052456255267412884,"upper_bound":0.011407106998380703,"unit":"%"},"median":{"estimate":0.005515494985322444,"lower_bound":0.002277756647418805,"upper_bound":0.008650872698646062,"unit":"%"},"change":"NoChange"}} -{"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":[406672.0,234188.0,227486.0,225732.0,226172.0,232436.0,233092.0,232820.0,233355.0,233245.0,231492.0,231812.0,233388.0,234192.0,233691.0,234190.0,233423.0,234285.0,229261.0,231303.0,230392.0,229729.0,231424.0,227152.0,233918.0,288610.0,234160.0,234589.0,231880.0,226479.0,227031.0,227392.0,226920.0,232120.0,232693.0,227694.0,233016.0,233064.0,234435.0,233411.0,227583.0,234681.0,234246.0,233104.0,228714.0,236950.0,234054.0,230797.0,233726.0,234769.0,235105.0,235374.0,233956.0,234637.0,234812.0,234352.0,234576.0,231817.0,233541.0,233607.0,236194.0,229125.0,230312.0,227685.0,234306.0,236357.0,235542.0,232926.0,227385.0,234924.0,227897.0,235818.0,235172.0,233396.0,233629.0,232609.0,227373.0,234401.0,231910.0,233305.0,227978.0,235569.0,233483.0,227966.0,227165.0,228804.0,233119.0,235203.0,227537.0,233217.0,234875.0,233965.0,233703.0,235309.0,227316.0,228482.0,246233.0,233884.0,233966.0,231793.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":234585.78,"lower_bound":231987.6745,"upper_bound":238865.002,"unit":"ns"},"mean":{"estimate":234585.78,"lower_bound":231987.6745,"upper_bound":238865.002,"unit":"ns"},"median":{"estimate":233330.0,"lower_bound":232809.5,"upper_bound":233691.0,"unit":"ns"},"median_abs_dev":{"estimate":2220.193460583687,"lower_bound":1503.356373310089,"upper_bound":3094.186145067215,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.02230761627863398,"lower_bound":0.008102161481747354,"upper_bound":0.04255393719661061,"unit":"%"},"median":{"estimate":0.020887659917044443,"lower_bound":0.018157639411421143,"upper_bound":0.022911959929245773,"unit":"%"},"change":"NoChange"}} -{"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":[301735.0,239473.0,234507.0,232999.0,226760.0,235154.0,227585.0,234043.0,234401.0,232942.0,235218.0,234402.0,228450.0,232766.0,234181.0,233246.0,228629.0,227865.0,230701.0,229677.0,228398.0,235529.0,227373.0,227158.0,233947.0,227083.0,228308.0,234099.0,234188.0,234126.0,234862.0,233730.0,236353.0,234056.0,229959.0,235120.0,227102.0,234845.0,235181.0,232230.0,235601.0,238148.0,229648.0,234327.0,259713.0,236898.0,233834.0,234596.0,227300.0,227647.0,233778.0,233186.0,233198.0,231734.0,233440.0,229908.0,231984.0,231194.0,231143.0,231472.0,230002.0,230200.0,234039.0,232654.0,233284.0,227245.0,262173.0,234334.0,227020.0,237144.0,229200.0,234024.0,235723.0,231731.0,234160.0,231658.0,227067.0,231435.0,232397.0,231244.0,232324.0,232581.0,230866.0,231529.0,228052.0,226820.0,232478.0,231149.0,234033.0,232351.0,230846.0,230923.0,232188.0,231097.0,227303.0,233234.0,231313.0,225511.0,228795.0,231191.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":233184.48,"lower_bound":231788.59975,"upper_bound":235082.48225,"unit":"ns"},"mean":{"estimate":233184.48,"lower_bound":231788.59975,"upper_bound":235082.48225,"unit":"ns"},"median":{"estimate":232374.0,"lower_bound":231472.0,"upper_bound":233234.0,"unit":"ns"},"median_abs_dev":{"estimate":2900.706848502159,"lower_bound":2264.6714597940445,"upper_bound":3974.1092294454575,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.019350946721816698,"lower_bound":0.006097476047288788,"upper_bound":0.030964005623946616,"unit":"%"},"median":{"estimate":0.018319978439350848,"lower_bound":0.014400956996503345,"upper_bound":0.02267307287648168,"unit":"%"},"change":"NoChange"}} -{"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":[291684.0,236081.0,235991.0,233631.0,231977.0,235083.0,233798.0,227865.0,228212.0,228556.0,234287.0,235247.0,234381.0,232752.0,236670.0,236279.0,234309.0,236048.0,230636.0,235449.0,235416.0,235521.0,234725.0,230053.0,248468.0,230038.0,236504.0,234925.0,234553.0,233948.0,228996.0,235245.0,234687.0,235506.0,229943.0,235758.0,234778.0,228285.0,235904.0,235483.0,229662.0,235334.0,234929.0,235745.0,236010.0,228917.0,230216.0,235684.0,234774.0,236855.0,229433.0,237334.0,234330.0,235098.0,235642.0,234821.0,233959.0,234160.0,235219.0,234758.0,234026.0,230879.0,228759.0,227951.0,236308.0,236771.0,234450.0,234575.0,235796.0,228962.0,235369.0,229818.0,234088.0,235616.0,235940.0,229961.0,235696.0,235927.0,234496.0,234218.0,229925.0,229595.0,235499.0,236185.0,234357.0,229663.0,236682.0,235174.0,235335.0,234711.0,234827.0,238997.0,234128.0,236260.0,259836.0,235826.0,234637.0,252030.0,236674.0,234350.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":235048.49,"lower_bound":233850.4395,"upper_bound":236613.39375000002,"unit":"ns"},"mean":{"estimate":235048.49,"lower_bound":233850.4395,"upper_bound":236613.39375000002,"unit":"ns"},"median":{"estimate":234799.5,"lower_bound":234496.0,"upper_bound":235289.5,"unit":"ns"},"median_abs_dev":{"estimate":1481.1173737049103,"lower_bound":1108.2434803247452,"upper_bound":2157.924261689186,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.006353360871471203,"lower_bound":-0.0032620160380752144,"upper_bound":0.016211144056823463,"unit":"%"},"median":{"estimate":0.010527063289341498,"lower_bound":0.0077957433652449115,"upper_bound":0.013377731924123282,"unit":"%"},"change":"NoChange"}} -{"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":[286845.0,238416.0,240891.0,237483.0,235877.0,229489.0,229969.0,229987.0,230142.0,237687.0,237184.0,236002.0,235895.0,237739.0,242735.0,235040.0,239203.0,238842.0,237531.0,239423.0,237224.0,237215.0,237881.0,237608.0,232128.0,237520.0,236601.0,236186.0,237531.0,236554.0,235274.0,231775.0,230490.0,236250.0,236758.0,238978.0,238642.0,230951.0,230448.0,231005.0,237386.0,236609.0,238677.0,237168.0,236100.0,236660.0,235895.0,236231.0,236263.0,230818.0,236560.0,237252.0,235968.0,234442.0,230093.0,231049.0,237117.0,237416.0,236590.0,236063.0,235744.0,297489.0,239432.0,236499.0,236398.0,239182.0,237767.0,240006.0,240736.0,232157.0,236666.0,231932.0,235643.0,262977.0,237679.0,237745.0,262030.0,236917.0,236534.0,237399.0,236103.0,236548.0,237421.0,237086.0,237418.0,229679.0,237072.0,237184.0,237331.0,236558.0,228972.0,236357.0,237144.0,237399.0,237979.0,236964.0,231338.0,237182.0,237168.0,235662.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":237672.53,"lower_bound":236121.35825,"upper_bound":239643.57475,"unit":"ns"},"mean":{"estimate":237672.53,"lower_bound":236121.35825,"upper_bound":239643.57475,"unit":"ns"},"median":{"estimate":236837.5,"lower_bound":236544.0,"upper_bound":237184.0,"unit":"ns"},"median_abs_dev":{"estimate":1274.2946773767471,"lower_bound":939.9683833122253,"upper_bound":1862.886866927147,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.02820572720976222,"lower_bound":0.01260609543915001,"upper_bound":0.04144217687037697,"unit":"%"},"median":{"estimate":0.024543181464241837,"lower_bound":0.02281306346234513,"upper_bound":0.026961473363498963,"unit":"%"},"change":"Regressed"}} -{"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":[258117.0,243307.0,240819.0,240580.0,241293.0,239988.0,240090.0,238994.0,240515.0,239945.0,239519.0,237879.0,233030.0,239506.0,237791.0,239880.0,233243.0,233143.0,240520.0,242312.0,241603.0,239440.0,241490.0,239310.0,238675.0,237705.0,232103.0,239021.0,238959.0,238520.0,238925.0,234453.0,234893.0,241559.0,241846.0,233371.0,233320.0,239007.0,237954.0,236623.0,237616.0,237847.0,237639.0,238180.0,236585.0,236774.0,237265.0,240442.0,236117.0,243724.0,231090.0,238088.0,238330.0,237584.0,237720.0,237469.0,232048.0,235235.0,237346.0,238440.0,238329.0,233479.0,241942.0,242100.0,238041.0,237144.0,232770.0,230797.0,237966.0,238473.0,237748.0,237955.0,238915.0,237585.0,238005.0,238664.0,235450.0,239085.0,238647.0,237613.0,237963.0,239261.0,237151.0,236502.0,230893.0,231937.0,231135.0,237283.0,239028.0,240460.0,239925.0,240677.0,238115.0,238170.0,238720.0,237664.0,247066.0,238252.0,236996.0,233390.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":238060.83,"lower_bound":237381.70974999998,"upper_bound":238785.80174999998,"unit":"ns"},"mean":{"estimate":238060.83,"lower_bound":237381.70974999998,"upper_bound":238785.80174999998,"unit":"ns"},"median":{"estimate":238101.5,"lower_bound":237791.0,"upper_bound":238647.0,"unit":"ns"},"median_abs_dev":{"estimate":1976.305764913559,"lower_bound":1312.8422766923904,"upper_bound":2875.502648949623,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.017488334998083,"lower_bound":0.010428120546143345,"upper_bound":0.023569403282212232,"unit":"%"},"median":{"estimate":0.01709963968158701,"lower_bound":0.014982615558541745,"upper_bound":0.01973241215966337,"unit":"%"},"change":"Regressed"}} -{"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":[286541.0,241151.0,240642.0,239556.0,233769.0,240110.0,238327.0,238909.0,269027.0,244764.0,240688.0,239157.0,237536.0,233990.0,238146.0,238015.0,236750.0,239271.0,231679.0,240759.0,243090.0,238563.0,237853.0,237526.0,237841.0,240033.0,238763.0,238304.0,236956.0,239789.0,238157.0,232544.0,231808.0,239767.0,239662.0,232793.0,230514.0,238458.0,237039.0,238893.0,237820.0,239447.0,237898.0,236182.0,238799.0,239356.0,238073.0,240611.0,239798.0,241085.0,232666.0,239226.0,233431.0,232132.0,239556.0,239578.0,232761.0,240268.0,240518.0,239931.0,234664.0,240546.0,239600.0,238676.0,238185.0,238526.0,240521.0,239438.0,233146.0,238272.0,232099.0,231562.0,238942.0,237231.0,232471.0,240860.0,238440.0,240559.0,242881.0,239015.0,233727.0,237373.0,237446.0,232323.0,232329.0,237519.0,231556.0,237458.0,238001.0,238217.0,232465.0,240019.0,240688.0,238389.0,237960.0,239634.0,235215.0,238655.0,239855.0,237988.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":238487.27,"lower_bound":237384.53925,"upper_bound":239892.99175,"unit":"ns"},"mean":{"estimate":238487.27,"lower_bound":237384.53925,"upper_bound":239892.99175,"unit":"ns"},"median":{"estimate":238414.5,"lower_bound":238015.0,"upper_bound":238909.0,"unit":"ns"},"median_abs_dev":{"estimate":2038.5749638080597,"lower_bound":1521.1475729942322,"upper_bound":2898.4829485416412,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.003224917146223971,"lower_bound":-0.01558865124189525,"upper_bound":0.006823499804242219,"unit":"%"},"median":{"estimate":-0.0008946980237021229,"lower_bound":-0.0038513327032926314,"upper_bound":0.0023068165344180733,"unit":"%"},"change":"NoChange"}} -{"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":[259672.0,236350.0,244563.0,241548.0,239152.0,243400.0,237414.0,237001.0,235546.0,241144.0,241185.0,241694.0,242275.0,241960.0,242845.0,243640.0,243070.0,242859.0,242368.0,238218.0,242325.0,244277.0,241433.0,241733.0,242335.0,242249.0,239227.0,244831.0,243924.0,236616.0,238444.0,245146.0,243492.0,239427.0,240196.0,247831.0,245017.0,242972.0,247022.0,239660.0,245131.0,244224.0,243586.0,301501.0,242695.0,245733.0,245547.0,243645.0,237260.0,243251.0,236451.0,244067.0,242404.0,243107.0,242580.0,243580.0,243126.0,237596.0,242742.0,237616.0,243228.0,244080.0,242731.0,243491.0,245100.0,244291.0,239496.0,270632.0,242358.0,243267.0,246222.0,243389.0,243962.0,269622.0,237715.0,241640.0,241867.0,242037.0,244695.0,242706.0,236031.0,242585.0,242100.0,239468.0,244670.0,243934.0,242221.0,243311.0,237705.0,245202.0,243897.0,244223.0,242828.0,236468.0,236383.0,242548.0,242239.0,236361.0,235792.0,242787.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":243231.85,"lower_bound":241911.66625,"upper_bound":244925.07775,"unit":"ns"},"mean":{"estimate":243231.85,"lower_bound":241911.66625,"upper_bound":244925.07775,"unit":"ns"},"median":{"estimate":242718.5,"lower_bound":242305.0,"upper_bound":243160.5,"unit":"ns"},"median_abs_dev":{"estimate":2008.922964334488,"lower_bound":1442.569774389267,"upper_bound":3232.809242606163,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.013256593085071211,"lower_bound":0.004350050769807841,"upper_bound":0.02316353137786888,"unit":"%"},"median":{"estimate":0.00978715791750906,"lower_bound":0.0058588316385213,"upper_bound":0.01966055427057344,"unit":"%"},"change":"NoChange"}} -{"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":[1109,2218,3327,4436,5545,6654,7763,8872,9981,11090,12199,13308,14417,15526,16635,17744,18853,19962,21071,22180,23289,24398,25507,26616,27725,28834,29943,31052,32161,33270,34379,35488,36597,37706,38815,39924,41033,42142,43251,44360,45469,46578,47687,48796,49905,51014,52123,53232,54341,55450,56559,57668,58777,59886,60995,62104,63213,64322,65431,66540,67649,68758,69867,70976,72085,73194,74303,75412,76521,77630,78739,79848,80957,82066,83175,84284,85393,86502,87611,88720,89829,90938,92047,93156,94265,95374,96483,97592,98701,99810,100919,102028,103137,104246,105355,106464,107573,108682,109791,110900],"measured_values":[779341.0,1488167.0,2233260.0,2990139.0,4133571.0,4955735.0,5415421.0,6609177.0,6984595.0,8277810.0,9102230.0,9851020.0,10770464.0,11580833.0,11675455.0,11912557.0,12663460.0,13384089.0,14405309.0,14949272.0,16479845.0,16403888.0,17372939.0,17862984.0,18587119.0,19369162.0,20100615.0,22686637.0,23351425.0,22453024.0,23303901.0,23842532.0,24548199.0,25296276.0,26087060.0,27225600.0,27524063.0,29968443.0,29492667.0,29814641.0,30580229.0,31297024.0,32058876.0,34901985.0,34907855.0,34904193.0,35861329.0,35753260.0,37183628.0,37526857.0,39126671.0,38713433.0,40391245.0,40567461.0,41191741.0,42244781.0,42423618.0,43226173.0,44337967.0,45121983.0,46158868.0,47494664.0,48340869.0,47896190.0,48390914.0,49271226.0,49855639.0,50748348.0,51411621.0,52332170.0,53043263.0,53577690.0,54311064.0,55412640.0,56529466.0,56651556.0,58690179.0,59030333.0,58820369.0,59949221.0,60389888.0,61090629.0,63068362.0,62929492.0,63280376.0,64745756.0,65991208.0,66843127.0,66400556.0,67012967.0,67898227.0,68849954.0,69402149.0,69964204.0,71050484.0,71490775.0,72346302.0,73029543.0,73853468.0,74466997.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":676.5906660645473,"lower_bound":675.1610302329182,"upper_bound":678.2579639233415,"unit":"ns"},"mean":{"estimate":684.5514532098729,"lower_bound":680.5570002570716,"upper_bound":688.9460482580895,"unit":"ns"},"median":{"estimate":674.6027487810363,"lower_bound":672.7362438683449,"upper_bound":677.6321098797392,"unit":"ns"},"median_abs_dev":{"estimate":5.132185076103647,"lower_bound":2.553234294528002,"upper_bound":9.281615127290348,"unit":"ns"},"slope":{"estimate":676.5906660645473,"lower_bound":675.1610302329182,"upper_bound":678.2579639233415,"unit":"ns"},"change":{"mean":{"estimate":-0.07920495127306937,"lower_bound":-0.08452917254982864,"upper_bound":-0.07306860914610062,"unit":"%"},"median":{"estimate":-0.09064785206601655,"lower_bound":-0.0931908342566733,"upper_bound":-0.08631396044433803,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"ldc/10","report_directory":"/root/fuel-core/target/criterion/reports/ldc/10","iteration_count":[1115,2230,3345,4460,5575,6690,7805,8920,10035,11150,12265,13380,14495,15610,16725,17840,18955,20070,21185,22300,23415,24530,25645,26760,27875,28990,30105,31220,32335,33450,34565,35680,36795,37910,39025,40140,41255,42370,43485,44600,45715,46830,47945,49060,50175,51290,52405,53520,54635,55750,56865,57980,59095,60210,61325,62440,63555,64670,65785,66900,68015,69130,70245,71360,72475,73590,74705,75820,76935,78050,79165,80280,81395,82510,83625,84740,85855,86970,88085,89200,90315,91430,92545,93660,94775,95890,97005,98120,99235,100350,101465,102580,103695,104810,105925,107040,108155,109270,110385,111500],"measured_values":[793418.0,1517530.0,2260857.0,2996478.0,3888367.0,4492267.0,5256103.0,5992445.0,6758129.0,7480226.0,8290842.0,8998337.0,9721391.0,10743337.0,11251682.0,11986947.0,12709321.0,13498931.0,14213700.0,15035766.0,15714143.0,16481060.0,17190939.0,18014200.0,18696666.0,19475358.0,20234335.0,21677427.0,23022611.0,22536227.0,23263130.0,23999715.0,27511174.0,25450494.0,26226266.0,27162857.0,27860506.0,28665868.0,29379654.0,32544514.0,30808568.0,31608461.0,32297532.0,33145166.0,34339613.0,34520830.0,36706810.0,36186092.0,36810092.0,37604891.0,38439590.0,39193849.0,40320732.0,40762574.0,41960839.0,42173179.0,42832985.0,43648601.0,44970522.0,46336354.0,45894575.0,46850364.0,47927195.0,48747566.0,48679945.0,49411892.0,50136780.0,51043082.0,52662040.0,53771064.0,53645448.0,55567345.0,54658263.0,55444228.0,56161057.0,57574602.0,58047766.0,59011196.0,61163945.0,60193098.0,61022567.0,61716692.0,64728938.0,63407366.0,63886147.0,67104892.0,65571905.0,66196691.0,67274224.0,68263663.0,68967211.0,68970811.0,69613980.0,70437879.0,71208833.0,73574433.0,74591501.0,73972570.0,74597619.0,75403070.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":679.1842635793196,"lower_bound":677.2056269016847,"upper_bound":681.3745382425893,"unit":"ns"},"mean":{"estimate":679.1753185649469,"lower_bound":676.9746165684802,"upper_bound":681.7146940728974,"unit":"ns"},"median":{"estimate":675.1700600961894,"lower_bound":673.9514593659036,"upper_bound":675.9824100787105,"unit":"ns"},"median_abs_dev":{"estimate":4.632765904063967,"lower_bound":3.191337240529555,"upper_bound":6.034741268539056,"unit":"ns"},"slope":{"estimate":679.1842635793196,"lower_bound":677.2056269016847,"upper_bound":681.3745382425893,"unit":"ns"},"change":{"mean":{"estimate":-0.09360759607367453,"lower_bound":-0.1052687219019048,"upper_bound":-0.086304020271232,"unit":"%"},"median":{"estimate":-0.09341012515146596,"lower_bound":-0.09505491535010785,"upper_bound":-0.09219987813095731,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"ldc/100","report_directory":"/root/fuel-core/target/criterion/reports/ldc/100","iteration_count":[1033,2066,3099,4132,5165,6198,7231,8264,9297,10330,11363,12396,13429,14462,15495,16528,17561,18594,19627,20660,21693,22726,23759,24792,25825,26858,27891,28924,29957,30990,32023,33056,34089,35122,36155,37188,38221,39254,40287,41320,42353,43386,44419,45452,46485,47518,48551,49584,50617,51650,52683,53716,54749,55782,56815,57848,58881,59914,60947,61980,63013,64046,65079,66112,67145,68178,69211,70244,71277,72310,73343,74376,75409,76442,77475,78508,79541,80574,81607,82640,83673,84706,85739,86772,87805,88838,89871,90904,91937,92970,94003,95036,96069,97102,98135,99168,100201,101234,102267,103300],"measured_values":[803457.0,1505895.0,2258469.0,3008238.0,3759872.0,4514567.0,5256469.0,5902392.0,6612242.0,7351452.0,8065575.0,8812206.0,9592877.0,10259866.0,11010666.0,11691160.0,12484091.0,13259784.0,13920885.0,14666539.0,15473368.0,16201350.0,16893112.0,17649165.0,18358029.0,19159993.0,19892922.0,20601745.0,21402545.0,22079706.0,22916456.0,23662867.0,24342672.0,25027968.0,25639678.0,26419299.0,27109605.0,28050004.0,28641026.0,29312212.0,30072640.0,30836893.0,31550375.0,32386440.0,32995323.0,33846163.0,34439308.0,35203365.0,36086359.0,36795825.0,37562908.0,38089534.0,38794824.0,39676293.0,40941827.0,41104579.0,41755987.0,42564924.0,43308651.0,44550524.0,44833503.0,45505097.0,46173792.0,47013223.0,47671792.0,48448415.0,49264056.0,49874313.0,50662758.0,51434485.0,52232877.0,52764155.0,53472729.0,54384130.0,54919763.0,55635574.0,56483376.0,57247505.0,57975851.0,58825390.0,59525730.0,60377845.0,60869832.0,61658066.0,62337833.0,63082844.0,63958681.0,64650797.0,65452823.0,66283788.0,66804291.0,67720852.0,68360003.0,69253716.0,70110850.0,70385781.0,71091262.0,72203301.0,72816207.0,73571237.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":711.3442929077119,"lower_bound":710.9192950567823,"upper_bound":711.7918930973611,"unit":"ns"},"mean":{"estimate":713.1104796560544,"lower_bound":711.8158212609155,"upper_bound":714.8610782362305,"unit":"ns"},"median":{"estimate":711.2486554802624,"lower_bound":710.724083967718,"upper_bound":711.8423489401973,"unit":"ns"},"median_abs_dev":{"estimate":1.9553294236472147,"lower_bound":1.49570646582959,"upper_bound":2.4761720298882675,"unit":"ns"},"slope":{"estimate":711.3442929077119,"lower_bound":710.9192950567823,"upper_bound":711.7918930973611,"unit":"ns"},"change":{"mean":{"estimate":-0.1105147904241025,"lower_bound":-0.11256693163839435,"upper_bound":-0.10799657711714813,"unit":"%"},"median":{"estimate":-0.1118119216739033,"lower_bound":-0.11255705800484594,"upper_bound":-0.11090901726281532,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"ldc/1000","report_directory":"/root/fuel-core/target/criterion/reports/ldc/1000","iteration_count":[930,1860,2790,3720,4650,5580,6510,7440,8370,9300,10230,11160,12090,13020,13950,14880,15810,16740,17670,18600,19530,20460,21390,22320,23250,24180,25110,26040,26970,27900,28830,29760,30690,31620,32550,33480,34410,35340,36270,37200,38130,39060,39990,40920,41850,42780,43710,44640,45570,46500,47430,48360,49290,50220,51150,52080,53010,53940,54870,55800,56730,57660,58590,59520,60450,61380,62310,63240,64170,65100,66030,66960,67890,68820,69750,70680,71610,72540,73470,74400,75330,76260,77190,78120,79050,79980,80910,81840,82770,83700,84630,85560,86490,87420,88350,89280,90210,91140,92070,93000],"measured_values":[753228.0,1399795.0,2125273.0,2815391.0,3540688.0,4222442.0,4968368.0,5646313.0,6391929.0,7008717.0,7796039.0,8416645.0,9210101.0,9883230.0,10630612.0,11293342.0,12014338.0,12666470.0,13463482.0,14419507.0,15046786.0,15431220.0,16329178.0,16917629.0,17766520.0,18303636.0,19064213.0,19652746.0,20531011.0,21561961.0,22004636.0,22550603.0,23263843.0,23876273.0,24812325.0,25458401.0,26383583.0,26697184.0,27568225.0,28083543.0,29010237.0,29473480.0,30446874.0,30985660.0,31866627.0,32365185.0,33237821.0,33791607.0,34659082.0,35072338.0,36167677.0,36512733.0,37434916.0,37937686.0,38900823.0,39318206.0,40371043.0,40776209.0,41686510.0,42062265.0,43080441.0,44164375.0,44461041.0,44890416.0,45884928.0,46351408.0,47333606.0,47932171.0,48752956.0,49100736.0,50082913.0,50560790.0,51567067.0,51890503.0,52932894.0,53265503.0,54341771.0,54824387.0,55750436.0,56136359.0,57166433.0,57777357.0,58518824.0,58949112.0,59955374.0,60308226.0,61476019.0,61962919.0,62844122.0,63479810.0,64322586.0,64535640.0,65789115.0,66152489.0,68170637.0,67349451.0,68505744.0,68797649.0,69851896.0,70210961.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":758.038358533109,"lower_bound":757.1680836547413,"upper_bound":759.0955249156348,"unit":"ns"},"mean":{"estimate":759.3662803969308,"lower_bound":758.2435526174511,"upper_bound":760.7962481329596,"unit":"ns"},"median":{"estimate":758.8538146441372,"lower_bound":757.875261786722,"upper_bound":759.3943416181914,"unit":"ns"},"median_abs_dev":{"estimate":3.8394328995784717,"lower_bound":2.8143327927078357,"upper_bound":4.910198356427529,"unit":"ns"},"slope":{"estimate":758.038358533109,"lower_bound":757.1680836547413,"upper_bound":759.0955249156348,"unit":"ns"},"change":{"mean":{"estimate":-0.11717104955102386,"lower_bound":-0.12230604774494562,"upper_bound":-0.1135940297821907,"unit":"%"},"median":{"estimate":-0.11520292875520866,"lower_bound":-0.11655685048336362,"upper_bound":-0.11453444670427711,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"ldc/10000","report_directory":"/root/fuel-core/target/criterion/reports/ldc/10000","iteration_count":[404,808,1212,1616,2020,2424,2828,3232,3636,4040,4444,4848,5252,5656,6060,6464,6868,7272,7676,8080,8484,8888,9292,9696,10100,10504,10908,11312,11716,12120,12524,12928,13332,13736,14140,14544,14948,15352,15756,16160,16564,16968,17372,17776,18180,18584,18988,19392,19796,20200,20604,21008,21412,21816,22220,22624,23028,23432,23836,24240,24644,25048,25452,25856,26260,26664,27068,27472,27876,28280,28684,29088,29492,29896,30300,30704,31108,31512,31916,32320,32724,33128,33532,33936,34340,34744,35148,35552,35956,36360,36764,37168,37572,37976,38380,38784,39188,39592,39996,40400],"measured_values":[633471.0,1323160.0,1977802.0,2516468.0,3368791.0,3908156.0,4360429.0,5200513.0,5785181.0,6219592.0,7201939.0,7896951.0,7961277.0,9029960.0,9533912.0,10612879.0,11075140.0,11469862.0,11663353.0,12941212.0,13836038.0,14040843.0,14792966.0,15322098.0,15982398.0,16792464.0,17185099.0,17235481.0,18706311.0,19173618.0,20140534.0,20635917.0,21070006.0,20931813.0,22726591.0,22951520.0,22747369.0,24555795.0,24940529.0,25352356.0,26393457.0,26924871.0,26476884.0,28630409.0,28762459.0,28230276.0,30219895.0,30709356.0,30384128.0,32185542.0,32549336.0,32032760.0,34101811.0,34613666.0,33909101.0,36613485.0,36390162.0,35915088.0,37922653.0,38376342.0,37494198.0,40094636.0,40298678.0,39551220.0,42322465.0,42253104.0,41752395.0,43787464.0,44038861.0,43218151.0,45665552.0,46040814.0,44984248.0,47661411.0,48012540.0,47404819.0,49540481.0,49813609.0,48937952.0,51551836.0,51770284.0,50513024.0,53327309.0,53737514.0,52811822.0,55590159.0,55616627.0,54167770.0,57429538.0,57455059.0,56037779.0,59205818.0,59543603.0,58057227.0,61195727.0,61451426.0,59762981.0,63121556.0,63331696.0,61753732.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":1569.4334443799041,"lower_bound":1561.6036020664576,"upper_bound":1577.0340824735408,"unit":"ns"},"mean":{"estimate":1576.310160210479,"lower_bound":1569.746602031186,"upper_bound":1582.8195843395774,"unit":"ns"},"median":{"estimate":1583.2515539053907,"lower_bound":1580.408490849085,"upper_bound":1588.4795960519746,"unit":"ns"},"median_abs_dev":{"estimate":21.040456731530156,"lower_bound":14.389406840782577,"upper_bound":38.43589971985413,"unit":"ns"},"slope":{"estimate":1569.4334443799041,"lower_bound":1561.6036020664576,"upper_bound":1577.0340824735408,"unit":"ns"},"change":{"mean":{"estimate":0.013431258074141583,"lower_bound":0.007839929999271673,"upper_bound":0.01900517396692284,"unit":"%"},"median":{"estimate":0.025210458436039973,"lower_bound":0.019209996686238462,"upper_bound":0.02928669192478628,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"ldc/19753","report_directory":"/root/fuel-core/target/criterion/reports/ldc/19753","iteration_count":[218,436,654,872,1090,1308,1526,1744,1962,2180,2398,2616,2834,3052,3270,3488,3706,3924,4142,4360,4578,4796,5014,5232,5450,5668,5886,6104,6322,6540,6758,6976,7194,7412,7630,7848,8066,8284,8502,8720,8938,9156,9374,9592,9810,10028,10246,10464,10682,10900,11118,11336,11554,11772,11990,12208,12426,12644,12862,13080,13298,13516,13734,13952,14170,14388,14606,14824,15042,15260,15478,15696,15914,16132,16350,16568,16786,17004,17222,17440,17658,17876,18094,18312,18530,18748,18966,19184,19402,19620,19838,20056,20274,20492,20710,20928,21146,21364,21582,21800],"measured_values":[703328.0,1298905.0,1918386.0,2579614.0,3260242.0,3807398.0,4557956.0,5162320.0,5854366.0,6404797.0,7155375.0,7739612.0,8400972.0,8854885.0,9745544.0,10134017.0,11031057.0,11503653.0,12118225.0,12677342.0,13569801.0,13878719.0,14714001.0,15291521.0,15969097.0,16574377.0,17509965.0,17965919.0,18532086.0,18978005.0,19892483.0,20266728.0,21313809.0,21726362.0,22578196.0,22823620.0,24060890.0,24126075.0,25019145.0,25457561.0,26304635.0,26567795.0,27506805.0,27859514.0,28983474.0,29135500.0,30094228.0,30397811.0,31404968.0,31625328.0,32719275.0,32919236.0,34101094.0,34290025.0,35173023.0,35581083.0,36667005.0,36684738.0,37760961.0,37899118.0,39024167.0,39355730.0,40241237.0,40408719.0,41754272.0,41781145.0,42862682.0,43105337.0,44057596.0,44367041.0,45657670.0,45742607.0,47000384.0,47074684.0,48192751.0,48129332.0,49470010.0,49594702.0,50630288.0,50510940.0,51930689.0,51895025.0,53028398.0,53185396.0,54250457.0,54467545.0,55663748.0,55580494.0,56797178.0,57025410.0,58584220.0,58348390.0,59567535.0,59467614.0,60755318.0,60611455.0,62097793.0,62222133.0,63614931.0,63130884.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":2922.942203434639,"lower_bound":2918.048800719887,"upper_bound":2928.047043471927,"unit":"ns"},"mean":{"estimate":2933.5631964875583,"lower_bound":2926.8474893413977,"upper_bound":2941.9141740409377,"unit":"ns"},"median":{"estimate":2931.302970951114,"lower_bound":2922.5695889666827,"upper_bound":2935.224336063424,"unit":"ns"},"median_abs_dev":{"estimate":31.33966080564231,"lower_bound":23.541923731203724,"upper_bound":37.47240388501499,"unit":"ns"},"slope":{"estimate":2922.942203434639,"lower_bound":2918.048800719887,"upper_bound":2928.047043471927,"unit":"ns"},"change":{"mean":{"estimate":-0.04873090904435928,"lower_bound":-0.052214831708355905,"upper_bound":-0.04529667415473551,"unit":"%"},"median":{"estimate":-0.04755972167926781,"lower_bound":-0.05068337472554352,"upper_bound":-0.045779799880529715,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"ldc/29629","report_directory":"/root/fuel-core/target/criterion/reports/ldc/29629","iteration_count":[127,254,381,508,635,762,889,1016,1143,1270,1397,1524,1651,1778,1905,2032,2159,2286,2413,2540,2667,2794,2921,3048,3175,3302,3429,3556,3683,3810,3937,4064,4191,4318,4445,4572,4699,4826,4953,5080,5207,5334,5461,5588,5715,5842,5969,6096,6223,6350,6477,6604,6731,6858,6985,7112,7239,7366,7493,7620,7747,7874,8001,8128,8255,8382,8509,8636,8763,8890,9017,9144,9271,9398,9525,9652,9779,9906,10033,10160,10287,10414,10541,10668,10795,10922,11049,11176,11303,11430,11557,11684,11811,11938,12065,12192,12319,12446,12573,12700],"measured_values":[652624.0,1230420.0,1814780.0,2418221.0,3056122.0,3660923.0,4225871.0,4871525.0,5483820.0,6094139.0,6648345.0,7322615.0,7921230.0,8544377.0,9072835.0,9720782.0,10307197.0,10967870.0,11448999.0,12195006.0,12781974.0,13441945.0,13916960.0,14579686.0,15042766.0,15873607.0,16304638.0,17042340.0,17460484.0,18289241.0,18729627.0,19547889.0,19976253.0,20657696.0,21125594.0,21845861.0,22380650.0,22813384.0,23544894.0,24232000.0,24637546.0,25522829.0,25978063.0,26665185.0,27144559.0,27892747.0,28260338.0,29180819.0,29595412.0,30169311.0,30818773.0,31496102.0,32004019.0,32719852.0,33271709.0,34587652.0,34426606.0,35276324.0,35627895.0,36472414.0,36855524.0,37789478.0,37841535.0,38583796.0,39170313.0,39869991.0,40538388.0,41174880.0,41772483.0,42367371.0,42823261.0,43747179.0,44118435.0,44862035.0,45401494.0,45992493.0,46596637.0,47108288.0,47518860.0,48413394.0,48955360.0,50036816.0,49954377.0,51233601.0,51422729.0,52012748.0,52244847.0,53579211.0,53739349.0,54689693.0,54802404.0,55860358.0,56293303.0,56930867.0,57409799.0,58373230.0,58635137.0,58398986.0,58929241.0,59344970.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":4759.127737898952,"lower_bound":4749.76564055365,"upper_bound":4767.729112989326,"unit":"ns"},"mean":{"estimate":4772.388610328414,"lower_bound":4764.4281385785225,"upper_bound":4782.4990575116735,"unit":"ns"},"median":{"estimate":4765.085852673021,"lower_bound":4761.460301837271,"upper_bound":4770.14745833053,"unit":"ns"},"median_abs_dev":{"estimate":23.542305501535793,"lower_bound":14.379984028024182,"upper_bound":30.770809078810622,"unit":"ns"},"slope":{"estimate":4759.127737898952,"lower_bound":4749.76564055365,"upper_bound":4767.729112989326,"unit":"ns"},"change":{"mean":{"estimate":0.03453133081517534,"lower_bound":0.03238108716763447,"upper_bound":0.03691872504185374,"unit":"%"},"median":{"estimate":0.0343065815303365,"lower_bound":0.03324209983781423,"upper_bound":0.0353870985167577,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"ldc/44444","report_directory":"/root/fuel-core/target/criterion/reports/ldc/44444","iteration_count":[81,162,243,324,405,486,567,648,729,810,891,972,1053,1134,1215,1296,1377,1458,1539,1620,1701,1782,1863,1944,2025,2106,2187,2268,2349,2430,2511,2592,2673,2754,2835,2916,2997,3078,3159,3240,3321,3402,3483,3564,3645,3726,3807,3888,3969,4050,4131,4212,4293,4374,4455,4536,4617,4698,4779,4860,4941,5022,5103,5184,5265,5346,5427,5508,5589,5670,5751,5832,5913,5994,6075,6156,6237,6318,6399,6480,6561,6642,6723,6804,6885,6966,7047,7128,7209,7290,7371,7452,7533,7614,7695,7776,7857,7938,8019,8100],"measured_values":[679644.0,1308062.0,1917876.0,2573927.0,3193342.0,3869911.0,4476106.0,5159856.0,5764499.0,6449102.0,7046455.0,7750693.0,8304376.0,9018120.0,9595286.0,10291377.0,10892231.0,11594546.0,12172803.0,12856985.0,13430263.0,14187282.0,14691881.0,15444596.0,15966797.0,16766626.0,17251135.0,18035195.0,18578595.0,19352946.0,19832176.0,20605477.0,21112769.0,21941415.0,22358387.0,23168533.0,23693334.0,24499994.0,24926779.0,25742724.0,26235551.0,27138030.0,27515719.0,28375171.0,28764199.0,29912388.0,30050937.0,30894527.0,31355408.0,32276625.0,32627353.0,33558076.0,33979066.0,34739141.0,35378015.0,35958749.0,36621195.0,37399193.0,37150162.0,37172717.0,37766222.0,38468671.0,38865996.0,39636662.0,40578010.0,40946547.0,41283492.0,42163526.0,42698575.0,43366437.0,43838045.0,44848112.0,45176608.0,45960606.0,46338558.0,47055010.0,47437374.0,48315584.0,48695613.0,49559028.0,49851596.0,50718671.0,51108148.0,51975689.0,52465611.0,53198644.0,53788385.0,54497762.0,54896186.0,55813383.0,56198268.0,57108354.0,57174156.0,58212262.0,58548165.0,59489348.0,59795600.0,60803745.0,61127250.0,61870797.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":7695.55846199877,"lower_bound":7674.625041842696,"upper_bound":7721.959216551235,"unit":"ns"},"mean":{"estimate":7813.920641610886,"lower_bound":7783.116462331914,"upper_bound":7845.084223894448,"unit":"ns"},"median":{"estimate":7891.953223593964,"lower_bound":7707.1244064577395,"upper_bound":7900.00545506747,"unit":"ns"},"median_abs_dev":{"estimate":109.25034917395065,"lower_bound":81.73876101798285,"upper_bound":237.87701046778392,"unit":"ns"},"slope":{"estimate":7695.55846199877,"lower_bound":7674.625041842696,"upper_bound":7721.959216551235,"unit":"ns"},"change":{"mean":{"estimate":0.010617663939373578,"lower_bound":0.006289530814207112,"upper_bound":0.015316717150617115,"unit":"%"},"median":{"estimate":0.017851106000885464,"lower_bound":0.008565265502890718,"upper_bound":0.02812654685789951,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"ldc/66666","report_directory":"/root/fuel-core/target/criterion/reports/ldc/66666","iteration_count":[57,114,171,228,285,342,399,456,513,570,627,684,741,798,855,912,969,1026,1083,1140,1197,1254,1311,1368,1425,1482,1539,1596,1653,1710,1767,1824,1881,1938,1995,2052,2109,2166,2223,2280,2337,2394,2451,2508,2565,2622,2679,2736,2793,2850,2907,2964,3021,3078,3135,3192,3249,3306,3363,3420,3477,3534,3591,3648,3705,3762,3819,3876,3933,3990,4047,4104,4161,4218,4275,4332,4389,4446,4503,4560,4617,4674,4731,4788,4845,4902,4959,5016,5073,5130,5187,5244,5301,5358,5415,5472,5529,5586,5643,5700],"measured_values":[693008.0,1261391.0,1947713.0,2530256.0,3228127.0,3820608.0,4511710.0,5069172.0,5813029.0,6330286.0,7100877.0,7584185.0,8422095.0,8840912.0,9732021.0,10199864.0,11038800.0,11380807.0,12299452.0,12663833.0,13590966.0,13920752.0,14854984.0,15204966.0,16484779.0,16406327.0,17433838.0,17733200.0,18700987.0,18953149.0,19998501.0,20373355.0,21572057.0,21417449.0,22551682.0,22705896.0,23837508.0,23980214.0,25132043.0,25134655.0,26440716.0,26416601.0,27602118.0,27694974.0,28941262.0,28915331.0,30166337.0,30182520.0,31497624.0,31481992.0,33161699.0,32716301.0,34015153.0,33939037.0,35332609.0,35365498.0,36805875.0,36540465.0,37979214.0,37769357.0,39259389.0,39002530.0,40582738.0,40374156.0,41799306.0,41525749.0,43255090.0,42829200.0,44338255.0,44021953.0,45670021.0,45348022.0,46904108.0,46549907.0,48219024.0,47821227.0,49497270.0,49001787.0,50716504.0,50219484.0,52539979.0,51564943.0,53350484.0,52839194.0,54676697.0,54130723.0,55934873.0,55337836.0,57189806.0,56759688.0,58473905.0,58048560.0,59866086.0,59194411.0,61177055.0,60469760.0,62443944.0,61753943.0,63688932.0,62830820.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":11167.914932684156,"lower_bound":11135.283551872577,"upper_bound":11201.085850077478,"unit":"ns"},"mean":{"estimate":11199.060701102608,"lower_bound":11168.266811988036,"upper_bound":11233.435336240413,"unit":"ns"},"median":{"estimate":11221.81438265475,"lower_bound":11097.61403508772,"upper_bound":11276.78799408159,"unit":"ns"},"median_abs_dev":{"estimate":194.06195298746113,"lower_bound":93.97675242514613,"upper_bound":221.58031643251948,"unit":"ns"},"slope":{"estimate":11167.914932684156,"lower_bound":11135.283551872577,"upper_bound":11201.085850077478,"unit":"ns"},"change":{"mean":{"estimate":0.012424663804716518,"lower_bound":0.0071458977947773785,"upper_bound":0.018044878079014854,"unit":"%"},"median":{"estimate":0.00984417130038362,"lower_bound":-0.0018060008405973438,"upper_bound":0.015490904568336461,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"ldc/100000","report_directory":"/root/fuel-core/target/criterion/reports/ldc/100000","iteration_count":[39,78,117,156,195,234,273,312,351,390,429,468,507,546,585,624,663,702,741,780,819,858,897,936,975,1014,1053,1092,1131,1170,1209,1248,1287,1326,1365,1404,1443,1482,1521,1560,1599,1638,1677,1716,1755,1794,1833,1872,1911,1950,1989,2028,2067,2106,2145,2184,2223,2262,2301,2340,2379,2418,2457,2496,2535,2574,2613,2652,2691,2730,2769,2808,2847,2886,2925,2964,3003,3042,3081,3120,3159,3198,3237,3276,3315,3354,3393,3432,3471,3510,3549,3588,3627,3666,3705,3744,3783,3822,3861,3900],"measured_values":[642140.0,1228805.0,1839592.0,2457947.0,3094681.0,3693615.0,4293590.0,4938672.0,5517951.0,6183311.0,6744720.0,7381383.0,7994565.0,8618474.0,9201673.0,9887834.0,10513959.0,11183567.0,11673528.0,12322804.0,12887991.0,13592386.0,14124322.0,14766809.0,15345444.0,15984952.0,16568007.0,17250608.0,17783095.0,18472635.0,19050836.0,19705469.0,20270434.0,21006836.0,21461760.0,22171459.0,22683111.0,23396922.0,23956187.0,24620312.0,25165320.0,25870412.0,26347101.0,27138611.0,27599287.0,28249057.0,28802239.0,29618593.0,30106070.0,30763355.0,31276139.0,31952164.0,32513810.0,33206956.0,33714251.0,34485579.0,34925925.0,35671437.0,36199012.0,36842485.0,37433049.0,38111928.0,38682739.0,39316477.0,39914453.0,40680370.0,41125801.0,41809333.0,42340259.0,42997894.0,43901198.0,44332088.0,44680265.0,45501267.0,46052792.0,46671847.0,47240147.0,48001041.0,48540885.0,49202481.0,49714990.0,50481629.0,50855357.0,51564568.0,52083568.0,52824077.0,53267812.0,54041306.0,54501535.0,55365305.0,56129975.0,56687644.0,57168995.0,57989342.0,58471564.0,59236865.0,59573380.0,60028271.0,59597088.0,60577408.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":15741.730074986834,"lower_bound":15716.284248528807,"upper_bound":15762.383832982241,"unit":"ns"},"mean":{"estimate":15765.635124746965,"lower_bound":15749.443547643981,"upper_bound":15785.039813534087,"unit":"ns"},"median":{"estimate":15754.001177394035,"lower_bound":15746.301282051281,"upper_bound":15766.496948494498,"unit":"ns"},"median_abs_dev":{"estimate":41.2972231354728,"lower_bound":29.707108331447674,"upper_bound":48.097141432135764,"unit":"ns"},"slope":{"estimate":15741.730074986834,"lower_bound":15716.284248528807,"upper_bound":15762.383832982241,"unit":"ns"},"change":{"mean":{"estimate":0.012694650147938802,"lower_bound":0.010662681897887567,"upper_bound":0.014501207908363007,"unit":"%"},"median":{"estimate":0.011565775209967155,"lower_bound":0.010326828871605631,"upper_bound":0.01478052945205488,"unit":"%"},"change":"Regressed"}} -{"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":[1582,3164,4746,6328,7910,9492,11074,12656,14238,15820,17402,18984,20566,22148,23730,25312,26894,28476,30058,31640,33222,34804,36386,37968,39550,41132,42714,44296,45878,47460,49042,50624,52206,53788,55370,56952,58534,60116,61698,63280,64862,66444,68026,69608,71190,72772,74354,75936,77518,79100,80682,82264,83846,85428,87010,88592,90174,91756,93338,94920,96502,98084,99666,101248,102830,104412,105994,107576,109158,110740,112322,113904,115486,117068,118650,120232,121814,123396,124978,126560,128142,129724,131306,132888,134470,136052,137634,139216,140798,142380,143962,145544,147126,148708,150290,151872,153454,155036,156618,158200],"measured_values":[666482.0,1390132.0,2092562.0,2785949.0,3460341.0,4162886.0,4819977.0,5118776.0,5758696.0,6403470.0,7036819.0,7668934.0,8323518.0,9711453.0,10405530.0,10204762.0,10855434.0,11452269.0,12075739.0,12804716.0,13387990.0,14624171.0,14947595.0,15318614.0,16623541.0,16616711.0,17840336.0,17890700.0,19586182.0,19132090.0,19741943.0,20442971.0,21030576.0,21684385.0,22573168.0,22940983.0,23533708.0,25216810.0,25054054.0,25548212.0,26116026.0,26820369.0,29193795.0,28169760.0,28766093.0,29326867.0,29915708.0,30636292.0,31219775.0,32317290.0,32482319.0,33200733.0,34914857.0,34421640.0,36202583.0,35876490.0,36312733.0,36944696.0,37580799.0,39652519.0,38856773.0,40043883.0,40192684.0,40907556.0,41351390.0,42317314.0,42731879.0,43347549.0,45045388.0,44713261.0,45242392.0,46269739.0,46642351.0,48091737.0,47759870.0,48460902.0,49649312.0,50584023.0,50305831.0,52261371.0,51578918.0,52287858.0,54163223.0,53938198.0,55370847.0,54976679.0,55674990.0,56884513.0,56861196.0,57865626.0,58016303.0,59025573.0,59296347.0,60003370.0,60602436.0,61407981.0,63124534.0,62888119.0,63232595.0,63967223.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":405.9322682303893,"lower_bound":405.03664263599495,"upper_bound":406.9186582166315,"unit":"ns"},"mean":{"estimate":408.97721077487745,"lower_bound":407.06226624479854,"upper_bound":411.09007361462125,"unit":"ns"},"median":{"estimate":404.0803477918573,"lower_bound":403.73772491029126,"upper_bound":404.7353982300885,"unit":"ns"},"median_abs_dev":{"estimate":2.1256962136158273,"lower_bound":1.4148839124476353,"upper_bound":3.097774757625238,"unit":"ns"},"slope":{"estimate":405.9322682303893,"lower_bound":405.03664263599495,"upper_bound":406.9186582166315,"unit":"ns"},"change":{"mean":{"estimate":-0.09907108370656226,"lower_bound":-0.10355571088765682,"upper_bound":-0.09479458432274945,"unit":"%"},"median":{"estimate":-0.10988803498590394,"lower_bound":-0.11079994997257392,"upper_bound":-0.10824926303270277,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"ccp/10","report_directory":"/root/fuel-core/target/criterion/reports/ccp/10","iteration_count":[1527,3054,4581,6108,7635,9162,10689,12216,13743,15270,16797,18324,19851,21378,22905,24432,25959,27486,29013,30540,32067,33594,35121,36648,38175,39702,41229,42756,44283,45810,47337,48864,50391,51918,53445,54972,56499,58026,59553,61080,62607,64134,65661,67188,68715,70242,71769,73296,74823,76350,77877,79404,80931,82458,83985,85512,87039,88566,90093,91620,93147,94674,96201,97728,99255,100782,102309,103836,105363,106890,108417,109944,111471,112998,114525,116052,117579,119106,120633,122160,123687,125214,126741,128268,129795,131322,132849,134376,135903,137430,138957,140484,142011,143538,145065,146592,148119,149646,151173,152700],"measured_values":[720171.0,1421313.0,1966330.0,2616682.0,3267438.0,3940300.0,4604832.0,5430094.0,5908048.0,6697253.0,7200012.0,7949716.0,8501106.0,9418850.0,9984234.0,10678952.0,11266053.0,11841942.0,12691446.0,13174811.0,13727684.0,14552086.0,15045041.0,15843512.0,16834857.0,17352022.0,17648348.0,18677957.0,19093850.0,19654153.0,20290496.0,21499345.0,21759071.0,22433803.0,22982257.0,23755223.0,24284109.0,25048910.0,25528434.0,26669408.0,26900658.0,27990204.0,28271009.0,28907051.0,29745931.0,30069430.0,30815424.0,31865753.0,32308392.0,32986599.0,34982557.0,34373380.0,34853127.0,35415534.0,37128535.0,37196572.0,37636310.0,38111699.0,39012450.0,39978280.0,40223996.0,40582509.0,42475641.0,42083350.0,42750511.0,43205324.0,43904950.0,45181788.0,45257375.0,46454836.0,46480330.0,48499785.0,47995251.0,48749803.0,49334898.0,50090928.0,50989634.0,51303000.0,52412139.0,53493218.0,52989853.0,53629317.0,54515421.0,55182144.0,55815967.0,56566583.0,56963564.0,57575721.0,58606290.0,59273411.0,61799483.0,61383989.0,61334009.0,62824967.0,62424421.0,62874245.0,64060807.0,64078545.0,65022151.0,65628136.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":432.2404944543365,"lower_bound":431.26248126510797,"upper_bound":433.35956748831836,"unit":"ns"},"mean":{"estimate":433.28506094850627,"lower_bound":432.10998262314104,"upper_bound":434.67046274901264,"unit":"ns"},"median":{"estimate":431.26754944498816,"lower_bound":430.61712098886704,"upper_bound":432.04451866404713,"unit":"ns"},"median_abs_dev":{"estimate":3.4043537241886446,"lower_bound":2.240533608811555,"upper_bound":4.450106162605523,"unit":"ns"},"slope":{"estimate":432.2404944543365,"lower_bound":431.26248126510797,"upper_bound":433.35956748831836,"unit":"ns"},"change":{"mean":{"estimate":-0.07064777597020178,"lower_bound":-0.07604233650479761,"upper_bound":-0.06515881057704834,"unit":"%"},"median":{"estimate":-0.08582666072523915,"lower_bound":-0.08733232271994362,"upper_bound":-0.0839872381157899,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"ccp/100","report_directory":"/root/fuel-core/target/criterion/reports/ccp/100","iteration_count":[1491,2982,4473,5964,7455,8946,10437,11928,13419,14910,16401,17892,19383,20874,22365,23856,25347,26838,28329,29820,31311,32802,34293,35784,37275,38766,40257,41748,43239,44730,46221,47712,49203,50694,52185,53676,55167,56658,58149,59640,61131,62622,64113,65604,67095,68586,70077,71568,73059,74550,76041,77532,79023,80514,82005,83496,84987,86478,87969,89460,90951,92442,93933,95424,96915,98406,99897,101388,102879,104370,105861,107352,108843,110334,111825,113316,114807,116298,117789,119280,120771,122262,123753,125244,126735,128226,129717,131208,132699,134190,135681,137172,138663,140154,141645,143136,144627,146118,147609,149100],"measured_values":[676638.0,1386194.0,2082423.0,2771948.0,3458671.0,4149020.0,4547011.0,5526564.0,6221706.0,6916893.0,7141486.0,8298110.0,8992954.0,8987669.0,9624060.0,10425602.0,10923673.0,11572673.0,12390482.0,12873344.0,13589729.0,14364575.0,14814030.0,15584467.0,16382593.0,16956936.0,17541715.0,17941654.0,18607638.0,19251364.0,20848670.0,20560885.0,21331052.0,22682611.0,22524977.0,23047059.0,25281715.0,24353350.0,25464279.0,26801637.0,26337924.0,27644483.0,27652005.0,28246502.0,28880187.0,29620498.0,30642958.0,30975466.0,32528184.0,32083566.0,33110564.0,33547997.0,33995386.0,35398060.0,35364186.0,36414232.0,37800184.0,37213677.0,38797964.0,38490747.0,39188199.0,40617324.0,41801636.0,42757278.0,42058121.0,42455179.0,43002599.0,44587475.0,44746176.0,46198732.0,45870083.0,47353203.0,46845304.0,47546126.0,48212259.0,48709352.0,49457909.0,50021658.0,50680006.0,52708847.0,51940236.0,52766866.0,53433002.0,54614889.0,55141367.0,55154685.0,55995264.0,56684787.0,58033562.0,57818081.0,58504727.0,59097681.0,59710482.0,60720155.0,61933219.0,61564343.0,62279795.0,62894178.0,64247784.0,64339066.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":433.9128435080212,"lower_bound":432.9202411063832,"upper_bound":435.04201830096724,"unit":"ns"},"mean":{"estimate":437.8553631554759,"lower_bound":435.89429525638553,"upper_bound":439.96838902594595,"unit":"ns"},"median":{"estimate":433.27183192050114,"lower_bound":431.6304795411098,"upper_bound":435.54652753120024,"unit":"ns"},"median_abs_dev":{"estimate":4.3267821422152215,"lower_bound":2.1658810748744206,"upper_bound":7.312836201685851,"unit":"ns"},"slope":{"estimate":433.9128435080212,"lower_bound":432.9202411063832,"upper_bound":435.04201830096724,"unit":"ns"},"change":{"mean":{"estimate":-0.09574489318583612,"lower_bound":-0.10217690594414784,"upper_bound":-0.08906142187638769,"unit":"%"},"median":{"estimate":-0.11877029726572563,"lower_bound":-0.12272706790726717,"upper_bound":-0.10668451316136528,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"ccp/1000","report_directory":"/root/fuel-core/target/criterion/reports/ccp/1000","iteration_count":[1052,2104,3156,4208,5260,6312,7364,8416,9468,10520,11572,12624,13676,14728,15780,16832,17884,18936,19988,21040,22092,23144,24196,25248,26300,27352,28404,29456,30508,31560,32612,33664,34716,35768,36820,37872,38924,39976,41028,42080,43132,44184,45236,46288,47340,48392,49444,50496,51548,52600,53652,54704,55756,56808,57860,58912,59964,61016,62068,63120,64172,65224,66276,67328,68380,69432,70484,71536,72588,73640,74692,75744,76796,77848,78900,79952,81004,82056,83108,84160,85212,86264,87316,88368,89420,90472,91524,92576,93628,94680,95732,96784,97836,98888,99940,100992,102044,103096,104148,105200],"measured_values":[628562.0,1244533.0,1961412.0,2654414.0,3069151.0,3840775.0,4564808.0,5307452.0,5878747.0,6241308.0,6856453.0,7990095.0,8112885.0,9202220.0,9638711.0,9916526.0,10993626.0,11172937.0,12225116.0,12445528.0,13108159.0,14621470.0,14286014.0,15094533.0,16147712.0,16332381.0,16544303.0,17557791.0,17888651.0,19913938.0,20283411.0,20103914.0,20466066.0,21442656.0,21967653.0,22645977.0,22827363.0,24344412.0,23895253.0,26008069.0,25185743.0,26422509.0,27028751.0,27487295.0,27635638.0,28876067.0,28700557.0,29949386.0,30953663.0,32010555.0,31138485.0,32718595.0,32980216.0,33848317.0,34968386.0,35150337.0,35207300.0,36563793.0,36982799.0,38828457.0,37634331.0,38743928.0,38817426.0,39830635.0,40150356.0,41302476.0,41895711.0,42579221.0,42535247.0,43776956.0,43422792.0,45079733.0,45116202.0,46243403.0,46106710.0,47557272.0,48449199.0,48773376.0,48455895.0,50623551.0,49963908.0,51211901.0,51013508.0,52795286.0,52252657.0,53831459.0,54216507.0,55730971.0,54693821.0,56705785.0,55829579.0,57631316.0,57830484.0,58897482.0,58963223.0,61215547.0,60219823.0,61289205.0,61010844.0,62590751.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":593.1972338894692,"lower_bound":591.4845651546815,"upper_bound":594.9820773744786,"unit":"ns"},"mean":{"estimate":597.3845476124008,"lower_bound":595.0017714840118,"upper_bound":599.9415448307657,"unit":"ns"},"median":{"estimate":594.8425236960359,"lower_bound":593.3441517291327,"upper_bound":596.233046704536,"unit":"ns"},"median_abs_dev":{"estimate":7.53937771294841,"lower_bound":5.180099708355176,"upper_bound":12.64312204291237,"unit":"ns"},"slope":{"estimate":593.1972338894692,"lower_bound":591.4845651546815,"upper_bound":594.9820773744786,"unit":"ns"},"change":{"mean":{"estimate":-0.10525505961244652,"lower_bound":-0.11020136167242318,"upper_bound":-0.10053878639846457,"unit":"%"},"median":{"estimate":-0.11224402453869953,"lower_bound":-0.1171329255536091,"upper_bound":-0.10979699291480416,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"ccp/10000","report_directory":"/root/fuel-core/target/criterion/reports/ccp/10000","iteration_count":[151,302,453,604,755,906,1057,1208,1359,1510,1661,1812,1963,2114,2265,2416,2567,2718,2869,3020,3171,3322,3473,3624,3775,3926,4077,4228,4379,4530,4681,4832,4983,5134,5285,5436,5587,5738,5889,6040,6191,6342,6493,6644,6795,6946,7097,7248,7399,7550,7701,7852,8003,8154,8305,8456,8607,8758,8909,9060,9211,9362,9513,9664,9815,9966,10117,10268,10419,10570,10721,10872,11023,11174,11325,11476,11627,11778,11929,12080,12231,12382,12533,12684,12835,12986,13137,13288,13439,13590,13741,13892,14043,14194,14345,14496,14647,14798,14949,15100],"measured_values":[753106.0,1407250.0,2079989.0,2747552.0,3396152.0,4105516.0,4740649.0,5476651.0,6093469.0,6852484.0,7439802.0,8214825.0,8804620.0,9587824.0,10209355.0,10942638.0,11548368.0,12351647.0,12889511.0,13676749.0,14278413.0,15048702.0,15628902.0,16459034.0,16940896.0,17925235.0,18335290.0,19156149.0,19643561.0,20576815.0,20920050.0,21747607.0,22298026.0,23189788.0,23716945.0,24581003.0,25022189.0,25939440.0,26310633.0,27268693.0,27709908.0,28731839.0,29071385.0,29950990.0,30462121.0,31407953.0,31947873.0,32792214.0,33144732.0,34215388.0,34577701.0,35542987.0,36027337.0,37079762.0,37271661.0,38365593.0,38644273.0,39795906.0,40212506.0,41131249.0,41334022.0,42456796.0,42622903.0,43567937.0,43969527.0,45286626.0,45247983.0,46319472.0,46624979.0,47891130.0,48102201.0,49202495.0,49248586.0,50728161.0,50950595.0,52085092.0,52331564.0,53810639.0,53928335.0,55073647.0,55064363.0,56530586.0,56626599.0,57898564.0,57885188.0,59090119.0,59245028.0,60239609.0,60247986.0,61502360.0,61472814.0,62782212.0,62891716.0,64308740.0,64429806.0,65735388.0,65896155.0,66988198.0,67205002.0,68507340.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":4514.455098770132,"lower_bound":4507.504060591854,"upper_bound":4521.349558197864,"unit":"ns"},"mean":{"estimate":4519.222422457954,"lower_bound":4509.957181527505,"upper_bound":4531.602506913579,"unit":"ns"},"median":{"estimate":4514.189481142665,"lower_bound":4501.728976633763,"upper_bound":4525.559970566593,"unit":"ns"},"median_abs_dev":{"estimate":33.70173499595856,"lower_bound":26.070561989492443,"upper_bound":38.28714321391716,"unit":"ns"},"slope":{"estimate":4514.455098770132,"lower_bound":4507.504060591854,"upper_bound":4521.349558197864,"unit":"ns"},"change":{"mean":{"estimate":-0.06824637929735233,"lower_bound":-0.07074063070465747,"upper_bound":-0.06568115736743034,"unit":"%"},"median":{"estimate":-0.06760601942694466,"lower_bound":-0.07154663678754147,"upper_bound":-0.06472712255724011,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"ccp/19753","report_directory":"/root/fuel-core/target/criterion/reports/ccp/19753","iteration_count":[80,160,240,320,400,480,560,640,720,800,880,960,1040,1120,1200,1280,1360,1440,1520,1600,1680,1760,1840,1920,2000,2080,2160,2240,2320,2400,2480,2560,2640,2720,2800,2880,2960,3040,3120,3200,3280,3360,3440,3520,3600,3680,3760,3840,3920,4000,4080,4160,4240,4320,4400,4480,4560,4640,4720,4800,4880,4960,5040,5120,5200,5280,5360,5440,5520,5600,5680,5760,5840,5920,6000,6080,6160,6240,6320,6400,6480,6560,6640,6720,6800,6880,6960,7040,7120,7200,7280,7360,7440,7520,7600,7680,7760,7840,7920,8000],"measured_values":[686943.0,1336853.0,1999804.0,2676787.0,3329882.0,4012655.0,4667936.0,5213825.0,5848895.0,6539030.0,7136250.0,7836626.0,8462155.0,9132516.0,9715181.0,10462136.0,10998975.0,11735989.0,12315761.0,13066268.0,13681691.0,14350017.0,15006948.0,15716904.0,16379766.0,17121872.0,17592670.0,18405813.0,18840553.0,19619619.0,20161071.0,20885579.0,21442391.0,22241201.0,22781605.0,23560714.0,24018246.0,24842610.0,25335645.0,26071198.0,26619010.0,27476979.0,27950149.0,28784707.0,29229115.0,29991311.0,30567541.0,31308875.0,31865435.0,32760350.0,33339652.0,34144507.0,34538015.0,35195321.0,35736448.0,36655637.0,37083249.0,37893864.0,38269419.0,39633391.0,39612768.0,40515293.0,40927867.0,41715694.0,42324575.0,43346004.0,43565189.0,44565001.0,45013887.0,45496204.0,46006128.0,46917595.0,47310848.0,48204409.0,48744624.0,49574460.0,50044325.0,50837204.0,51322328.0,52241591.0,52597110.0,53561888.0,53845565.0,54614175.0,55135339.0,55891262.0,56615256.0,57396105.0,57857119.0,58603217.0,58987646.0,59980644.0,60472647.0,61426823.0,61713579.0,62539449.0,62939969.0,63862589.0,64384077.0,65240742.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":8140.495039493128,"lower_bound":8134.478096734904,"upper_bound":8147.046668181539,"unit":"ns"},"mean":{"estimate":8162.038783559612,"lower_bound":8149.41567497475,"upper_bound":8176.838213013555,"unit":"ns"},"median":{"estimate":8146.17990860849,"lower_bound":8136.6875,"upper_bound":8153.352864583333,"unit":"ns"},"median_abs_dev":{"estimate":33.48051559072037,"lower_bound":25.82469773703205,"upper_bound":40.457101491144705,"unit":"ns"},"slope":{"estimate":8140.495039493128,"lower_bound":8134.478096734904,"upper_bound":8147.046668181539,"unit":"ns"},"change":{"mean":{"estimate":-0.04525720163494584,"lower_bound":-0.04726636965540138,"upper_bound":-0.04336069849846474,"unit":"%"},"median":{"estimate":-0.04622573053834578,"lower_bound":-0.0474422266432184,"upper_bound":-0.04527596970632075,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"ccp/29629","report_directory":"/root/fuel-core/target/criterion/reports/ccp/29629","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":[717050.0,1360828.0,2053929.0,2718099.0,3394933.0,4076945.0,4781752.0,5501509.0,6154885.0,6823822.0,7539785.0,8216110.0,8826115.0,9539778.0,10205937.0,10907061.0,11586348.0,12248934.0,12936263.0,13591217.0,14263610.0,14960818.0,15648112.0,16369523.0,16987268.0,17695575.0,18321735.0,19074860.0,19706758.0,20451328.0,21066979.0,21820391.0,22439912.0,23137859.0,23765071.0,24513270.0,25166811.0,25910385.0,26534807.0,27591857.0,28154925.0,28636761.0,29277031.0,29956985.0,30742923.0,31344574.0,32134108.0,32766446.0,33234885.0,34057229.0,34604777.0,35428438.0,35937373.0,36861732.0,37298771.0,38171484.0,38624095.0,39448873.0,39982295.0,40908668.0,41289361.0,41436141.0,42610577.0,43190689.0,44059626.0,44526855.0,45336094.0,45881986.0,46661224.0,47181614.0,48020901.0,48609012.0,49380401.0,50115327.0,50760618.0,51299982.0,52144535.0,52655635.0,53473993.0,53389287.0,53153850.0,54085752.0,54492681.0,55524783.0,55790115.0,57035076.0,57012226.0,58218442.0,58338359.0,59362343.0,59681666.0,60689633.0,61338106.0,61982360.0,63208619.0,63960091.0,64487426.0,65363986.0,65804381.0,65234982.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":12165.891897524081,"lower_bound":12124.112796156873,"upper_bound":12212.859002477055,"unit":"ns"},"mean":{"estimate":12292.923314216461,"lower_bound":12258.261936221608,"upper_bound":12326.972565082286,"unit":"ns"},"median":{"estimate":12347.468658008658,"lower_bound":12321.20030816641,"upper_bound":12366.417868338558,"unit":"ns"},"median_abs_dev":{"estimate":73.01432615828195,"lower_bound":54.54375792938264,"upper_bound":101.79292959141603,"unit":"ns"},"slope":{"estimate":12165.891897524081,"lower_bound":12124.112796156873,"upper_bound":12212.859002477055,"unit":"ns"},"change":{"mean":{"estimate":0.006323088551092093,"lower_bound":0.00256950805647897,"upper_bound":0.01005142147227554,"unit":"%"},"median":{"estimate":0.012686202086126253,"lower_bound":0.010063767549517917,"upper_bound":0.014573075171289585,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"ccp/44444","report_directory":"/root/fuel-core/target/criterion/reports/ccp/44444","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":[686990.0,1322798.0,1983201.0,2648260.0,3327677.0,4010145.0,4655347.0,5331465.0,6012005.0,6641074.0,7310475.0,7977273.0,8650547.0,9342405.0,9968056.0,10676582.0,11221108.0,11911046.0,12552379.0,13254352.0,13899950.0,14574043.0,15181845.0,15858163.0,16499863.0,17220080.0,17851253.0,18520705.0,19178006.0,19841906.0,20481619.0,21217330.0,21860917.0,22621424.0,23142826.0,23818438.0,24437819.0,25177905.0,25752898.0,26464618.0,27099943.0,27778875.0,28398677.0,29123259.0,29757959.0,30437810.0,31527487.0,31901279.0,32495477.0,33169175.0,33754792.0,34486256.0,35055564.0,35803070.0,36419212.0,37568585.0,37717648.0,38396652.0,39053305.0,39810903.0,40340918.0,41022469.0,41847570.0,42420117.0,42928411.0,43627103.0,44348304.0,45044236.0,45563993.0,46343030.0,46950866.0,47746715.0,48273367.0,48974288.0,49633554.0,50305862.0,50889146.0,51578988.0,52263099.0,52969488.0,53664409.0,54358976.0,54903503.0,55662710.0,56611932.0,57339754.0,57646002.0,58270599.0,58880667.0,59731633.0,60230160.0,60975070.0,61197505.0,62528106.0,63264885.0,63922992.0,64626886.0,65145162.0,65852858.0,66481531.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":17917.493466145323,"lower_bound":17901.69540315992,"upper_bound":17932.580832106545,"unit":"ns"},"mean":{"estimate":17921.612049267496,"lower_bound":17905.919814127938,"upper_bound":17940.8252219792,"unit":"ns"},"median":{"estimate":17894.372972972975,"lower_bound":17887.931793279764,"upper_bound":17908.48320124636,"unit":"ns"},"median_abs_dev":{"estimate":37.74707509937651,"lower_bound":27.163389400842384,"upper_bound":59.08832567410856,"unit":"ns"},"slope":{"estimate":17917.493466145323,"lower_bound":17901.69540315992,"upper_bound":17932.580832106545,"unit":"ns"},"change":{"mean":{"estimate":0.017813901666237975,"lower_bound":0.016504074572033307,"upper_bound":0.019078319051976628,"unit":"%"},"median":{"estimate":0.016500915307387398,"lower_bound":0.015868059044268797,"upper_bound":0.01737654603270844,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"ccp/66666","report_directory":"/root/fuel-core/target/criterion/reports/ccp/66666","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":[680677.0,1290959.0,1936921.0,2576855.0,3250902.0,3863571.0,4500439.0,5156981.0,5799788.0,6453440.0,7077692.0,7718601.0,8386179.0,8992056.0,9639518.0,10304914.0,10934991.0,11637560.0,12247747.0,12966381.0,14036718.0,14204680.0,14864976.0,15479802.0,16085117.0,16721562.0,17389279.0,18001207.0,18611341.0,19292949.0,19953986.0,20574078.0,21209952.0,21874923.0,22505941.0,23143652.0,23784817.0,24480754.0,25237851.0,25746557.0,26234303.0,26747978.0,27533271.0,28051944.0,28756818.0,29317172.0,30089336.0,30607469.0,31589701.0,31763002.0,32361652.0,32734799.0,33383925.0,34009540.0,34700614.0,35452988.0,35928540.0,36510496.0,37153554.0,37795584.0,38404664.0,38998821.0,39687739.0,40258173.0,41027788.0,41518628.0,42610744.0,42843655.0,43414061.0,44293955.0,44774159.0,45367424.0,45896028.0,46557350.0,47282059.0,47935605.0,48707653.0,49766617.0,49993106.0,51046275.0,51421947.0,52445692.0,52539313.0,53597795.0,53919479.0,54927210.0,55072838.0,56206996.0,56205523.0,57341358.0,57549645.0,58837642.0,58754315.0,59979569.0,60052781.0,61169779.0,62198428.0,62751206.0,62707261.0,63903331.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":26461.12295662775,"lower_bound":26418.14539563685,"upper_bound":26504.850134981312,"unit":"ns"},"mean":{"estimate":26615.89675225978,"lower_bound":26553.947960851678,"upper_bound":26683.511419039034,"unit":"ns"},"median":{"estimate":26619.774450757577,"lower_bound":26549.383246527777,"upper_bound":26740.43247126437,"unit":"ns"},"median_abs_dev":{"estimate":334.31677000833605,"lower_bound":218.05770726376267,"upper_bound":386.8548121602519,"unit":"ns"},"slope":{"estimate":26461.12295662775,"lower_bound":26418.14539563685,"upper_bound":26504.850134981312,"unit":"ns"},"change":{"mean":{"estimate":0.028417478722040368,"lower_bound":0.02529519573759564,"upper_bound":0.03189871196025658,"unit":"%"},"median":{"estimate":0.02758750009531008,"lower_bound":0.02481100057856697,"upper_bound":0.032479921807883505,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"ccp/100000","report_directory":"/root/fuel-core/target/criterion/reports/ccp/100000","iteration_count":[18,36,54,72,90,108,126,144,162,180,198,216,234,252,270,288,306,324,342,360,378,396,414,432,450,468,486,504,522,540,558,576,594,612,630,648,666,684,702,720,738,756,774,792,810,828,846,864,882,900,918,936,954,972,990,1008,1026,1044,1062,1080,1098,1116,1134,1152,1170,1188,1206,1224,1242,1260,1278,1296,1314,1332,1350,1368,1386,1404,1422,1440,1458,1476,1494,1512,1530,1548,1566,1584,1602,1620,1638,1656,1674,1692,1710,1728,1746,1764,1782,1800],"measured_values":[714645.0,1378079.0,2049803.0,2736722.0,3420266.0,4122421.0,4783823.0,5490316.0,6156817.0,6851989.0,7509083.0,8211979.0,8892363.0,9597417.0,10248388.0,10946470.0,11648400.0,12318845.0,13000250.0,13702420.0,14364987.0,15069809.0,15726306.0,16451627.0,17110574.0,17812417.0,18508965.0,19184453.0,19809246.0,20518756.0,21172523.0,21878338.0,22559070.0,23464123.0,23922724.0,24672891.0,25397391.0,26023058.0,26731687.0,27506398.0,28019046.0,28925719.0,29500036.0,30137696.0,30788052.0,31477683.0,32126890.0,32906459.0,33533217.0,34226334.0,34884205.0,35672790.0,36835287.0,37126416.0,37671264.0,38392963.0,39089965.0,39863400.0,40472951.0,41323678.0,41811848.0,42493758.0,43238277.0,43851024.0,44619233.0,45153149.0,46271738.0,46535616.0,47274213.0,47824744.0,48489069.0,49191749.0,49998995.0,50670643.0,51287594.0,51959426.0,52663534.0,53419446.0,55505617.0,55074142.0,55497546.0,56022018.0,56758396.0,57391679.0,58397960.0,58910240.0,59542159.0,60121270.0,60810936.0,61430579.0,62412019.0,62841224.0,63896062.0,64382163.0,65205649.0,65883676.0,66700562.0,67182268.0,67949145.0,68580075.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":38087.20801701066,"lower_bound":38050.38350944487,"upper_bound":38135.23121476055,"unit":"ns"},"mean":{"estimate":38090.403199652435,"lower_bound":38054.12246980283,"upper_bound":38137.567070777724,"unit":"ns"},"median":{"estimate":38052.21414141414,"lower_bound":38021.12654320987,"upper_bound":38066.60555555556,"unit":"ns"},"median_abs_dev":{"estimate":84.0230728020765,"lower_bound":65.14412897842,"upper_bound":107.55578226447946,"unit":"ns"},"slope":{"estimate":38087.20801701066,"lower_bound":38050.38350944487,"upper_bound":38135.23121476055,"unit":"ns"},"change":{"mean":{"estimate":-0.00202246622543667,"lower_bound":-0.008169008503263025,"upper_bound":0.0017021933527849307,"unit":"%"},"median":{"estimate":-0.0015515676685344815,"lower_bound":-0.0029205744719793536,"upper_bound":-0.0006092973915872157,"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":[1883,3766,5649,7532,9415,11298,13181,15064,16947,18830,20713,22596,24479,26362,28245,30128,32011,33894,35777,37660,39543,41426,43309,45192,47075,48958,50841,52724,54607,56490,58373,60256,62139,64022,65905,67788,69671,71554,73437,75320,77203,79086,80969,82852,84735,86618,88501,90384,92267,94150,96033,97916,99799,101682,103565,105448,107331,109214,111097,112980,114863,116746,118629,120512,122395,124278,126161,128044,129927,131810,133693,135576,137459,139342,141225,143108,144991,146874,148757,150640,152523,154406,156289,158172,160055,161938,163821,165704,167587,169470,171353,173236,175119,177002,178885,180768,182651,184534,186417,188300],"measured_values":[1297348.0,1227583.0,1841224.0,2453391.0,3078630.0,3693980.0,4283259.0,4902017.0,5567839.0,6150045.0,6769359.0,7394121.0,7964277.0,8577437.0,9194970.0,9809907.0,10446403.0,11029022.0,11675509.0,12248904.0,12884990.0,14011951.0,14085451.0,14782381.0,15374701.0,15962300.0,16542824.0,17166286.0,17896930.0,18840766.0,19068093.0,20040998.0,21843297.0,22489829.0,21457500.0,22072729.0,22699510.0,24957496.0,23903060.0,26197325.0,25344840.0,26518694.0,26722798.0,28783821.0,27596399.0,28525016.0,29053922.0,29432303.0,30068386.0,30654779.0,31523752.0,31927974.0,32899544.0,33208884.0,35111846.0,34725742.0,36198521.0,35681179.0,37044682.0,36791538.0,37462058.0,38006153.0,38603499.0,39288954.0,39901869.0,40969471.0,41152719.0,41744965.0,42794589.0,44350498.0,43854870.0,44128905.0,44850892.0,45437824.0,46822428.0,46689618.0,47338281.0,47983630.0,49492125.0,49025585.0,49934305.0,50700496.0,52171985.0,51502304.0,52165611.0,53099718.0,53549371.0,54107709.0,54547326.0,55172503.0,56029713.0,56384381.0,57832288.0,58159701.0,58438957.0,59571617.0,59864757.0,60424520.0,60779015.0,61431549.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":328.2193430914655,"lower_bound":327.49869233242737,"upper_bound":329.06245261035923,"unit":"ns"},"mean":{"estimate":332.3159085109493,"lower_bound":327.90697040637264,"upper_bound":340.23750318833055,"unit":"ns"},"median":{"estimate":326.5978155425739,"lower_bound":326.14556471622717,"upper_bound":326.98413800750495,"unit":"ns"},"median_abs_dev":{"estimate":1.5616925452448072,"lower_bound":0.9611383634366623,"upper_bound":2.0860837388541458,"unit":"ns"},"slope":{"estimate":328.2193430914655,"lower_bound":327.49869233242737,"upper_bound":329.06245261035923,"unit":"ns"},"change":{"mean":{"estimate":-0.11241576448920099,"lower_bound":-0.12535740279368035,"upper_bound":-0.08824798973359929,"unit":"%"},"median":{"estimate":-0.12484361244535025,"lower_bound":-0.12617553601165266,"upper_bound":-0.12372772852059488,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"csiz/10","report_directory":"/root/fuel-core/target/criterion/reports/csiz/10","iteration_count":[1845,3690,5535,7380,9225,11070,12915,14760,16605,18450,20295,22140,23985,25830,27675,29520,31365,33210,35055,36900,38745,40590,42435,44280,46125,47970,49815,51660,53505,55350,57195,59040,60885,62730,64575,66420,68265,70110,71955,73800,75645,77490,79335,81180,83025,84870,86715,88560,90405,92250,94095,95940,97785,99630,101475,103320,105165,107010,108855,110700,112545,114390,116235,118080,119925,121770,123615,125460,127305,129150,130995,132840,134685,136530,138375,140220,142065,143910,145755,147600,149445,151290,153135,154980,156825,158670,160515,162360,164205,166050,167895,169740,171585,173430,175275,177120,178965,180810,182655,184500],"measured_values":[622435.0,1204880.0,1810476.0,2407127.0,3005268.0,3641381.0,4207155.0,4825000.0,5974652.0,6648410.0,6643676.0,7267235.0,7820328.0,8431562.0,9959551.0,10127475.0,10281489.0,11285949.0,11473403.0,12055561.0,13949941.0,13270245.0,13838131.0,14479340.0,15054725.0,16690486.0,16275123.0,16845318.0,17511429.0,18082888.0,18655000.0,19293381.0,19913393.0,20457132.0,21043952.0,21729290.0,22296592.0,22910125.0,23724110.0,24121173.0,24717316.0,25314756.0,27320795.0,27501719.0,27090580.0,27779687.0,28479929.0,29944832.0,29565394.0,30920428.0,30788703.0,31307190.0,31898356.0,32710176.0,33866391.0,33867135.0,34335621.0,34953382.0,35492736.0,36281122.0,36762298.0,37391566.0,39247881.0,38570871.0,39168784.0,40042885.0,40556874.0,41046864.0,41525896.0,43582287.0,42728573.0,45269154.0,45829153.0,44615675.0,45622841.0,46389004.0,46486924.0,47060936.0,47776732.0,48427727.0,49168176.0,49508853.0,49958592.0,51887002.0,51416305.0,51812850.0,52402207.0,53059790.0,53537026.0,54268029.0,54775879.0,55704161.0,56004274.0,57191299.0,57131082.0,57897036.0,58404821.0,59091649.0,59753594.0,60297143.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":328.51782060477615,"lower_bound":327.73530447848276,"upper_bound":329.45887520023456,"unit":"ns"},"mean":{"estimate":330.0833356755768,"lower_bound":328.6995409319282,"upper_bound":331.66280373116996,"unit":"ns"},"median":{"estimate":327.0057362240289,"lower_bound":326.7993458672087,"upper_bound":327.25438076548255,"unit":"ns"},"median_abs_dev":{"estimate":1.1483168741876169,"lower_bound":0.6869558701212612,"upper_bound":1.4759120950921174,"unit":"ns"},"slope":{"estimate":328.51782060477615,"lower_bound":327.73530447848276,"upper_bound":329.45887520023456,"unit":"ns"},"change":{"mean":{"estimate":-0.11831657742665258,"lower_bound":-0.12209251120418681,"upper_bound":-0.11381214743463895,"unit":"%"},"median":{"estimate":-0.12538120709085365,"lower_bound":-0.1262347666866538,"upper_bound":-0.12466886757817464,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"csiz/100","report_directory":"/root/fuel-core/target/criterion/reports/csiz/100","iteration_count":[1798,3596,5394,7192,8990,10788,12586,14384,16182,17980,19778,21576,23374,25172,26970,28768,30566,32364,34162,35960,37758,39556,41354,43152,44950,46748,48546,50344,52142,53940,55738,57536,59334,61132,62930,64728,66526,68324,70122,71920,73718,75516,77314,79112,80910,82708,84506,86304,88102,89900,91698,93496,95294,97092,98890,100688,102486,104284,106082,107880,109678,111476,113274,115072,116870,118668,120466,122264,124062,125860,127658,129456,131254,133052,134850,136648,138446,140244,142042,143840,145638,147436,149234,151032,152830,154628,156426,158224,160022,161820,163618,165416,167214,169012,170810,172608,174406,176204,178002,179800],"measured_values":[632728.0,1349971.0,1865352.0,2493033.0,3104668.0,4042341.0,4677239.0,5373911.0,5577740.0,6177856.0,6715383.0,7458542.0,7997241.0,8689478.0,9334360.0,9786681.0,10569202.0,11105182.0,11804833.0,12268770.0,12970432.0,13656634.0,14105265.0,14886208.0,15275075.0,16057697.0,16517341.0,17427727.0,17994026.0,18408650.0,19015570.0,19653040.0,20212256.0,20942877.0,21468337.0,22260643.0,22818374.0,23517562.0,24892194.0,24791300.0,25178467.0,25772897.0,26372585.0,27386140.0,27806019.0,30233867.0,28913586.0,29542325.0,29990961.0,30632039.0,31741378.0,31934137.0,32543831.0,33221286.0,33653694.0,34576720.0,35015507.0,35772799.0,36572044.0,36821304.0,37341573.0,37932052.0,39077701.0,39210425.0,41290569.0,40725497.0,41160132.0,41663862.0,42261044.0,43088194.0,43542528.0,44154542.0,44709567.0,45436569.0,46215476.0,46802438.0,47272507.0,48086279.0,48586833.0,49121134.0,49756068.0,50393234.0,52206440.0,51684663.0,52118167.0,52940322.0,53664484.0,53914258.0,54770769.0,55128581.0,55948259.0,56529563.0,57937053.0,57920635.0,58456127.0,59078112.0,59448313.0,60190957.0,60644737.0,62321181.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":342.70459226078003,"lower_bound":342.1013589927687,"upper_bound":343.41593666168137,"unit":"ns"},"mean":{"estimate":344.46081384923383,"lower_bound":343.2164253169942,"upper_bound":345.93514453013216,"unit":"ns"},"median":{"estimate":342.2688817787554,"lower_bound":341.7358071480952,"upper_bound":342.9993386044554,"unit":"ns"},"median_abs_dev":{"estimate":2.0195000770062914,"lower_bound":1.4611944964134864,"upper_bound":2.918465501415963,"unit":"ns"},"slope":{"estimate":342.70459226078003,"lower_bound":342.1013589927687,"upper_bound":343.41593666168137,"unit":"ns"},"change":{"mean":{"estimate":-0.12245950326227972,"lower_bound":-0.1260754268384711,"upper_bound":-0.11836121589631508,"unit":"%"},"median":{"estimate":-0.12702201965358906,"lower_bound":-0.1285347704570191,"upper_bound":-0.12500054181591447,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"csiz/1000","report_directory":"/root/fuel-core/target/criterion/reports/csiz/1000","iteration_count":[1738,3476,5214,6952,8690,10428,12166,13904,15642,17380,19118,20856,22594,24332,26070,27808,29546,31284,33022,34760,36498,38236,39974,41712,43450,45188,46926,48664,50402,52140,53878,55616,57354,59092,60830,62568,64306,66044,67782,69520,71258,72996,74734,76472,78210,79948,81686,83424,85162,86900,88638,90376,92114,93852,95590,97328,99066,100804,102542,104280,106018,107756,109494,111232,112970,114708,116446,118184,119922,121660,123398,125136,126874,128612,130350,132088,133826,135564,137302,139040,140778,142516,144254,145992,147730,149468,151206,152944,154682,156420,158158,159896,161634,163372,165110,166848,168586,170324,172062,173800],"measured_values":[694791.0,1253494.0,1889589.0,2505815.0,3139904.0,3759324.0,4406484.0,5022950.0,5587760.0,6210790.0,6854896.0,7466062.0,8097669.0,8705707.0,9316730.0,10315638.0,10556033.0,11255495.0,11813015.0,12446565.0,13078238.0,13656871.0,14442074.0,14853867.0,15604876.0,16193229.0,16733562.0,17406424.0,18307092.0,18888244.0,19213977.0,20899462.0,20464665.0,21142213.0,21726290.0,22387554.0,23065828.0,23700613.0,24327997.0,24799980.0,25474211.0,26080947.0,26812395.0,27343914.0,28193528.0,28587581.0,29170766.0,30178132.0,30587002.0,31180840.0,31617721.0,32288253.0,32907437.0,33774528.0,34146807.0,34816440.0,35399336.0,36171354.0,36889063.0,37342740.0,37879022.0,38536559.0,39105300.0,39903195.0,40357926.0,41394233.0,42005565.0,42595687.0,42930637.0,43787437.0,44170891.0,45126025.0,45296591.0,45903769.0,46602019.0,47347911.0,47788106.0,48874155.0,49495818.0,50951815.0,50514306.0,50857692.0,51526306.0,52277718.0,53155231.0,53361217.0,53969785.0,54723251.0,55394213.0,56460840.0,56905778.0,57849043.0,57798142.0,58756987.0,59005319.0,59773321.0,60265432.0,61072956.0,61515991.0,63643700.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":358.9145799582792,"lower_bound":358.33420614502563,"upper_bound":359.59784209955404,"unit":"ns"},"mean":{"estimate":359.451839180901,"lower_bound":358.64068330329974,"upper_bound":360.5535993329408,"unit":"ns"},"median":{"estimate":358.10871336031346,"lower_bound":357.76100916488576,"upper_bound":358.73844756904487,"unit":"ns"},"median_abs_dev":{"estimate":1.3734764076108832,"lower_bound":0.9736747237954906,"upper_bound":2.15722206661914,"unit":"ns"},"slope":{"estimate":358.9145799582792,"lower_bound":358.33420614502563,"upper_bound":359.59784209955404,"unit":"ns"},"change":{"mean":{"estimate":-0.09445481569858627,"lower_bound":-0.09745884349506341,"upper_bound":-0.09118059307745507,"unit":"%"},"median":{"estimate":-0.096576422055488,"lower_bound":-0.0975664536679673,"upper_bound":-0.09481742895451689,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"csiz/10000","report_directory":"/root/fuel-core/target/criterion/reports/csiz/10000","iteration_count":[1266,2532,3798,5064,6330,7596,8862,10128,11394,12660,13926,15192,16458,17724,18990,20256,21522,22788,24054,25320,26586,27852,29118,30384,31650,32916,34182,35448,36714,37980,39246,40512,41778,43044,44310,45576,46842,48108,49374,50640,51906,53172,54438,55704,56970,58236,59502,60768,62034,63300,64566,65832,67098,68364,69630,70896,72162,73428,74694,75960,77226,78492,79758,81024,82290,83556,84822,86088,87354,88620,89886,91152,92418,93684,94950,96216,97482,98748,100014,101280,102546,103812,105078,106344,107610,108876,110142,111408,112674,113940,115206,116472,117738,119004,120270,121536,122802,124068,125334,126600],"measured_values":[707531.0,1458813.0,2042634.0,2928971.0,3336181.0,4266047.0,4671151.0,5693346.0,5919407.0,7020293.0,7607791.0,8355771.0,8783512.0,9980172.0,9958350.0,11417246.0,11304203.0,12757328.0,13016105.0,14246836.0,13863978.0,15875169.0,15129738.0,17065001.0,17044791.0,18573560.0,17902676.0,19647796.0,18956546.0,21248603.0,20297114.0,22665148.0,21583664.0,24597663.0,22804161.0,25358079.0,24125451.0,26917560.0,25279593.0,28451390.0,27165711.0,29741030.0,28007187.0,31209106.0,29318366.0,32918191.0,31006186.0,33885755.0,32244072.0,35842545.0,33990420.0,38155249.0,35215457.0,38493741.0,35917359.0,39988784.0,37434789.0,41470560.0,39209147.0,43371923.0,39937548.0,44669031.0,41407976.0,45359626.0,42406137.0,47086967.0,44031114.0,48541145.0,45488840.0,49467442.0,46744061.0,50921596.0,47880361.0,53400897.0,49227575.0,53873218.0,50695533.0,55364353.0,51748130.0,56929692.0,53495079.0,59043338.0,54443171.0,59725954.0,55673111.0,61186113.0,56793255.0,62530667.0,57948458.0,63790718.0,59613274.0,66049950.0,61585508.0,67230188.0,62035704.0,67921947.0,63299743.0,70289843.0,64893442.0,71207791.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":541.2211898253559,"lower_bound":535.2326561462725,"upper_bound":547.2263529809939,"unit":"ns"},"mean":{"estimate":542.6342003300385,"lower_bound":538.3480882750415,"upper_bound":546.9299149134746,"unit":"ns"},"median":{"estimate":552.1410939968405,"lower_bound":525.2394294210575,"upper_bound":559.4675157977883,"unit":"ns"},"median_abs_dev":{"estimate":26.922758949708697,"lower_bound":12.114198651446891,"upper_bound":33.36355456015498,"unit":"ns"},"slope":{"estimate":541.2211898253559,"lower_bound":535.2326561462725,"upper_bound":547.2263529809939,"unit":"ns"},"change":{"mean":{"estimate":-0.0935680664238081,"lower_bound":-0.10185409822919296,"upper_bound":-0.08535375817883971,"unit":"%"},"median":{"estimate":-0.09022404071449852,"lower_bound":-0.13931584865642377,"upper_bound":-0.043933849388396506,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"csiz/19753","report_directory":"/root/fuel-core/target/criterion/reports/csiz/19753","iteration_count":[965,1930,2895,3860,4825,5790,6755,7720,8685,9650,10615,11580,12545,13510,14475,15440,16405,17370,18335,19300,20265,21230,22195,23160,24125,25090,26055,27020,27985,28950,29915,30880,31845,32810,33775,34740,35705,36670,37635,38600,39565,40530,41495,42460,43425,44390,45355,46320,47285,48250,49215,50180,51145,52110,53075,54040,55005,55970,56935,57900,58865,59830,60795,61760,62725,63690,64655,65620,66585,67550,68515,69480,70445,71410,72375,73340,74305,75270,76235,77200,78165,79130,80095,81060,82025,82990,83955,84920,85885,86850,87815,88780,89745,90710,91675,92640,93605,94570,95535,96500],"measured_values":[808688.0,1551853.0,2353208.0,3085324.0,3814889.0,4625195.0,5371515.0,6131111.0,6952410.0,7676002.0,8464426.0,9203828.0,10075626.0,10729913.0,11455234.0,12195671.0,13106477.0,13853087.0,14687763.0,15478560.0,16201927.0,17030845.0,17943755.0,18792936.0,19250166.0,19982352.0,20737403.0,21609032.0,22133070.0,23262537.0,23899610.0,24549645.0,25274950.0,26165340.0,27044794.0,27836675.0,28615987.0,29646340.0,30232314.0,30862417.0,31556771.0,32390754.0,33032374.0,33899616.0,34798908.0,35783149.0,36245628.0,37113479.0,38002760.0,38922938.0,39670990.0,39928797.0,40818246.0,41862274.0,42529781.0,43530675.0,44318773.0,45522356.0,45842076.0,46636377.0,47668318.0,48420159.0,48849607.0,49687475.0,50209053.0,51203062.0,51829499.0,52916848.0,53793492.0,54310289.0,55370147.0,55927867.0,56855515.0,57553795.0,58250693.0,59096412.0,59865836.0,60835628.0,61261453.0,62001771.0,63358465.0,63761149.0,64572985.0,65130816.0,65550428.0,66535778.0,67243727.0,67979124.0,68648645.0,69837592.0,70730353.0,71300270.0,71859100.0,72786068.0,74030017.0,74185600.0,74546582.0,75472400.0,76285719.0,76783432.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":802.9043776173767,"lower_bound":801.8831433290875,"upper_bound":803.9197588762834,"unit":"ns"},"mean":{"estimate":802.0389136066786,"lower_bound":800.906018496755,"upper_bound":803.2859847512507,"unit":"ns"},"median":{"estimate":801.5438683908562,"lower_bound":800.6288268898631,"upper_bound":803.3960598986506,"unit":"ns"},"median_abs_dev":{"estimate":5.259385426582045,"lower_bound":3.9011902318182887,"upper_bound":6.321482048705701,"unit":"ns"},"slope":{"estimate":802.9043776173767,"lower_bound":801.8831433290875,"upper_bound":803.9197588762834,"unit":"ns"},"change":{"mean":{"estimate":-0.08717254810049624,"lower_bound":-0.08895068518335594,"upper_bound":-0.08552061040384047,"unit":"%"},"median":{"estimate":-0.08690175449960968,"lower_bound":-0.08803162357327454,"upper_bound":-0.08472350695093533,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"csiz/29629","report_directory":"/root/fuel-core/target/criterion/reports/csiz/29629","iteration_count":[776,1552,2328,3104,3880,4656,5432,6208,6984,7760,8536,9312,10088,10864,11640,12416,13192,13968,14744,15520,16296,17072,17848,18624,19400,20176,20952,21728,22504,23280,24056,24832,25608,26384,27160,27936,28712,29488,30264,31040,31816,32592,33368,34144,34920,35696,36472,37248,38024,38800,39576,40352,41128,41904,42680,43456,44232,45008,45784,46560,47336,48112,48888,49664,50440,51216,51992,52768,53544,54320,55096,55872,56648,57424,58200,58976,59752,60528,61304,62080,62856,63632,64408,65184,65960,66736,67512,68288,69064,69840,70616,71392,72168,72944,73720,74496,75272,76048,76824,77600],"measured_values":[859328.0,1644036.0,2455083.0,3277596.0,4110049.0,4903832.0,5755537.0,6547488.0,7391154.0,8195352.0,9031461.0,9821099.0,10624503.0,11376614.0,12285481.0,13001308.0,13891411.0,14619542.0,15515575.0,16338090.0,17139763.0,17863965.0,18809113.0,20023060.0,20626609.0,21163650.0,22081500.0,22844348.0,23743103.0,24486036.0,25433375.0,26173472.0,27025577.0,27809454.0,28741725.0,29439286.0,30507811.0,31047498.0,31920575.0,32691325.0,33612570.0,34314103.0,35269615.0,35996725.0,36806954.0,37397489.0,38403888.0,38881527.0,39997130.0,40793394.0,41754768.0,42413666.0,43326990.0,44066563.0,44982612.0,45564283.0,46463501.0,47228004.0,48228617.0,48708277.0,49833835.0,50462075.0,51387580.0,52120414.0,53150769.0,53844877.0,54649981.0,55574777.0,56176641.0,57115571.0,58001085.0,58967338.0,59509377.0,60214722.0,61172658.0,61731168.0,62893367.0,63718695.0,64397436.0,65108527.0,66105525.0,66767777.0,67950397.0,68438617.0,69610095.0,70111352.0,71010796.0,71506366.0,72652637.0,73250584.0,74405507.0,74827257.0,76087314.0,76756443.0,77775613.0,78254641.0,79320331.0,79496365.0,80900949.0,81607581.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":1051.5606343359755,"lower_bound":1050.8386584239795,"upper_bound":1052.2625824958147,"unit":"ns"},"mean":{"estimate":1053.3266865327316,"lower_bound":1052.171417266827,"upper_bound":1054.8259995946426,"unit":"ns"},"median":{"estimate":1052.803200473615,"lower_bound":1051.8248015167674,"upper_bound":1053.3945701555128,"unit":"ns"},"median_abs_dev":{"estimate":3.0618716214326565,"lower_bound":2.221187817321283,"upper_bound":3.919447252785806,"unit":"ns"},"slope":{"estimate":1051.5606343359755,"lower_bound":1050.8386584239795,"upper_bound":1052.2625824958147,"unit":"ns"},"change":{"mean":{"estimate":-0.0620131534776992,"lower_bound":-0.06513646057856022,"upper_bound":-0.058863201634829214,"unit":"%"},"median":{"estimate":-0.06479843306347,"lower_bound":-0.07507718753602502,"upper_bound":-0.05031274784188622,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"csiz/44444","report_directory":"/root/fuel-core/target/criterion/reports/csiz/44444","iteration_count":[485,970,1455,1940,2425,2910,3395,3880,4365,4850,5335,5820,6305,6790,7275,7760,8245,8730,9215,9700,10185,10670,11155,11640,12125,12610,13095,13580,14065,14550,15035,15520,16005,16490,16975,17460,17945,18430,18915,19400,19885,20370,20855,21340,21825,22310,22795,23280,23765,24250,24735,25220,25705,26190,26675,27160,27645,28130,28615,29100,29585,30070,30555,31040,31525,32010,32495,32980,33465,33950,34435,34920,35405,35890,36375,36860,37345,37830,38315,38800,39285,39770,40255,40740,41225,41710,42195,42680,43165,43650,44135,44620,45105,45590,46075,46560,47045,47530,48015,48500],"measured_values":[898146.0,1748067.0,2596105.0,3510887.0,4324864.0,5231685.0,6105616.0,7053331.0,7847659.0,8743113.0,9568073.0,10525444.0,11334109.0,12284898.0,13024685.0,13970846.0,14766716.0,15811523.0,16493471.0,17454951.0,18292230.0,19224561.0,20118141.0,21001606.0,21755500.0,22796647.0,23593416.0,24564901.0,25203740.0,26212513.0,26833217.0,27993781.0,28628735.0,29823610.0,30438408.0,31632288.0,32115063.0,33320268.0,33863700.0,34915373.0,35405812.0,36684854.0,37184777.0,38647009.0,39007009.0,40408638.0,40527948.0,41899125.0,42769165.0,43996849.0,44243373.0,45586207.0,46067383.0,47324872.0,47776898.0,49283027.0,49408231.0,50624232.0,51229348.0,52302013.0,52874896.0,54246449.0,54808723.0,56021980.0,56281797.0,57426734.0,57836499.0,59325554.0,59484538.0,60815513.0,61220121.0,62560105.0,62951862.0,64218331.0,64434617.0,65743891.0,66311307.0,67619567.0,68006352.0,69757606.0,70159933.0,71460533.0,71715437.0,73297057.0,73457786.0,74843627.0,75092802.0,76797800.0,77090562.0,78395730.0,78584910.0,79316883.0,79559123.0,81176143.0,81098247.0,82992977.0,83032904.0,84507464.0,84641935.0,86282515.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":1786.123445191111,"lower_bound":1782.8841079887638,"upper_bound":1789.542017453398,"unit":"ns"},"mean":{"estimate":1793.4333691561894,"lower_bound":1790.7948376402937,"upper_bound":1796.1372201107895,"unit":"ns"},"median":{"estimate":1793.612936433555,"lower_bound":1790.3092783505156,"upper_bound":1797.8298969072166,"unit":"ns"},"median_abs_dev":{"estimate":12.909097073777449,"lower_bound":9.928859248636925,"upper_bound":16.253981220059053,"unit":"ns"},"slope":{"estimate":1786.123445191111,"lower_bound":1782.8841079887638,"upper_bound":1789.542017453398,"unit":"ns"},"change":{"mean":{"estimate":0.0060747832895671205,"lower_bound":0.003653464497433595,"upper_bound":0.008335238217591304,"unit":"%"},"median":{"estimate":0.007003793052249074,"lower_bound":0.0045176857505349055,"upper_bound":0.009667181001762115,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"csiz/66666","report_directory":"/root/fuel-core/target/criterion/reports/csiz/66666","iteration_count":[386,772,1158,1544,1930,2316,2702,3088,3474,3860,4246,4632,5018,5404,5790,6176,6562,6948,7334,7720,8106,8492,8878,9264,9650,10036,10422,10808,11194,11580,11966,12352,12738,13124,13510,13896,14282,14668,15054,15440,15826,16212,16598,16984,17370,17756,18142,18528,18914,19300,19686,20072,20458,20844,21230,21616,22002,22388,22774,23160,23546,23932,24318,24704,25090,25476,25862,26248,26634,27020,27406,27792,28178,28564,28950,29336,29722,30108,30494,30880,31266,31652,32038,32424,32810,33196,33582,33968,34354,34740,35126,35512,35898,36284,36670,37056,37442,37828,38214,38600],"measured_values":[1298285.0,2407236.0,2605807.0,3432717.0,4359075.0,5160521.0,6142323.0,6892446.0,7913133.0,8611363.0,9573290.0,10382848.0,11461667.0,12143031.0,13209939.0,14015166.0,15062767.0,15639337.0,16748798.0,17469770.0,18488699.0,18927480.0,20025053.0,20660227.0,21837550.0,22318379.0,23482739.0,24057762.0,25272693.0,25866534.0,28252272.0,28305651.0,28854984.0,29261967.0,30501560.0,30897323.0,32207291.0,32673893.0,34057191.0,34304210.0,35685218.0,36289625.0,37654092.0,37826938.0,39209016.0,39702499.0,40990514.0,41287681.0,42630990.0,43163844.0,44560227.0,44454525.0,45906304.0,46046819.0,47724819.0,47964164.0,49745285.0,49785148.0,51218231.0,50921872.0,52577645.0,52653219.0,54443373.0,54612673.0,56290265.0,56054726.0,57932419.0,57676963.0,59589054.0,59528584.0,61213199.0,61172958.0,62892704.0,62813824.0,64662953.0,64573059.0,66353287.0,66409456.0,68097876.0,67989937.0,70070272.0,69730822.0,71693525.0,71358853.0,73326770.0,72947169.0,74995699.0,74703807.0,76788844.0,76487861.0,78585033.0,78163001.0,80241857.0,79902471.0,81917056.0,81418564.0,83565248.0,83245151.0,85205569.0,84929542.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":2223.150785241698,"lower_bound":2218.332136742063,"upper_bound":2228.364140802812,"unit":"ns"},"mean":{"estimate":2256.9813629597693,"lower_bound":2234.4706086022893,"upper_bound":2289.4439850813615,"unit":"ns"},"median":{"estimate":2234.3946662602866,"lower_bound":2231.9341347951495,"upper_bound":2239.250855732441,"unit":"ns"},"median_abs_dev":{"estimate":29.58359125573852,"lower_bound":17.73262546238546,"upper_bound":37.29492788704446,"unit":"ns"},"slope":{"estimate":2223.150785241698,"lower_bound":2218.332136742063,"upper_bound":2228.364140802812,"unit":"ns"},"change":{"mean":{"estimate":0.026287123258636802,"lower_bound":0.015779002319158075,"upper_bound":0.042110789967280175,"unit":"%"},"median":{"estimate":0.01634430279265997,"lower_bound":0.013017029220103282,"upper_bound":0.020046522097741493,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"csiz/100000","report_directory":"/root/fuel-core/target/criterion/reports/csiz/100000","iteration_count":[284,568,852,1136,1420,1704,1988,2272,2556,2840,3124,3408,3692,3976,4260,4544,4828,5112,5396,5680,5964,6248,6532,6816,7100,7384,7668,7952,8236,8520,8804,9088,9372,9656,9940,10224,10508,10792,11076,11360,11644,11928,12212,12496,12780,13064,13348,13632,13916,14200,14484,14768,15052,15336,15620,15904,16188,16472,16756,17040,17324,17608,17892,18176,18460,18744,19028,19312,19596,19880,20164,20448,20732,21016,21300,21584,21868,22152,22436,22720,23004,23288,23572,23856,24140,24424,24708,24992,25276,25560,25844,26128,26412,26696,26980,27264,27548,27832,28116,28400],"measured_values":[1041876.0,1849914.0,2807038.0,3697054.0,4649019.0,5590458.0,6547010.0,7350784.0,8184468.0,9085089.0,10081928.0,10937087.0,11848668.0,12732231.0,13612504.0,14485609.0,15397825.0,16308192.0,17336783.0,18078678.0,19078860.0,19929311.0,20860741.0,21634840.0,22599403.0,23403868.0,24446639.0,25256600.0,26200710.0,27039875.0,28016430.0,28807847.0,29823389.0,30542907.0,31623387.0,32389588.0,33400689.0,34187888.0,35252174.0,36066548.0,37008777.0,37554461.0,38602766.0,39436107.0,40442286.0,41170144.0,42283550.0,42961324.0,44073501.0,44754973.0,45766382.0,46420814.0,47402100.0,48235128.0,49250064.0,50014411.0,51070967.0,51735308.0,53004617.0,53543561.0,54659906.0,55453497.0,56628060.0,57168829.0,58417158.0,58859363.0,60016155.0,61134083.0,62050614.0,62407279.0,63562350.0,64241137.0,65421817.0,66078697.0,67287423.0,67764277.0,68952799.0,69591497.0,70913725.0,71357855.0,72418841.0,73066403.0,74320068.0,70446537.0,70617542.0,70702388.0,72196154.0,72667920.0,73767804.0,74293081.0,75852611.0,75988987.0,77372483.0,77893532.0,79303417.0,79414983.0,80709585.0,81183462.0,82284277.0,82725964.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":3054.9987839286346,"lower_bound":3025.0356849600444,"upper_bound":3088.976835259844,"unit":"ns"},"mean":{"estimate":3137.676949690927,"lower_bound":3115.2762115752957,"upper_bound":3160.089288158325,"unit":"ns"},"median":{"estimate":3160.8817478761293,"lower_bound":3153.0130601792575,"upper_bound":3167.781690140845,"unit":"ns"},"median_abs_dev":{"estimate":30.323525079927446,"lower_bound":21.606505257243448,"upper_bound":40.5803954966435,"unit":"ns"},"slope":{"estimate":3054.9987839286346,"lower_bound":3025.0356849600444,"upper_bound":3088.976835259844,"unit":"ns"},"change":{"mean":{"estimate":0.012537818867425887,"lower_bound":0.0030662452960628643,"upper_bound":0.022779187268127533,"unit":"%"},"median":{"estimate":0.004150829758784669,"lower_bound":0.0011097097256291821,"upper_bound":0.010591485447237021,"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":[5647,11294,16941,22588,28235,33882,39529,45176,50823,56470,62117,67764,73411,79058,84705,90352,95999,101646,107293,112940,118587,124234,129881,135528,141175,146822,152469,158116,163763,169410,175057,180704,186351,191998,197645,203292,208939,214586,220233,225880,231527,237174,242821,248468,254115,259762,265409,271056,276703,282350,287997,293644,299291,304938,310585,316232,321879,327526,333173,338820,344467,350114,355761,361408,367055,372702,378349,383996,389643,395290,400937,406584,412231,417878,423525,429172,434819,440466,446113,451760,457407,463054,468701,474348,479995,485642,491289,496936,502583,508230,513877,519524,525171,530818,536465,542112,547759,553406,559053,564700],"measured_values":[126978.0,217449.0,311437.0,436575.0,562580.0,641686.0,776641.0,806580.0,890477.0,1009271.0,1227891.0,1326546.0,1414454.0,1608800.0,1622087.0,1792741.0,1876268.0,2045785.0,1933744.0,2173769.0,2214563.0,2439011.0,2503256.0,2487411.0,2624273.0,2809729.0,2887050.0,2926661.0,3071519.0,3601896.0,3555498.0,3476917.0,3550256.0,4170159.0,3770298.0,4012511.0,3971918.0,4103471.0,4017409.0,4344627.0,4949502.0,5069991.0,4866590.0,5286202.0,5137308.0,5427038.0,5534520.0,5365934.0,5330130.0,5527114.0,5997665.0,6496399.0,6000428.0,6058053.0,6129023.0,6764285.0,6615813.0,6419126.0,6641447.0,7021596.0,6827524.0,7241556.0,7336343.0,7870991.0,7479461.0,7461315.0,7607151.0,7465443.0,7593352.0,7560529.0,7797481.0,7948423.0,8125106.0,8391189.0,8726380.0,10382291.0,9423478.0,8785089.0,9412887.0,9830210.0,9155118.0,10199546.0,9296572.0,10266886.0,9357136.0,9667394.0,10172550.0,11487288.0,10485979.0,11317084.0,10488400.0,10919623.0,10360662.0,10446654.0,10759774.0,10747857.0,11057670.0,11254759.0,12326449.0,12383491.0],"unit":"ns","throughput":[],"typical":{"estimate":20.5481911333946,"lower_bound":20.267540005979136,"upper_bound":20.83721026625153,"unit":"ns"},"mean":{"estimate":20.06057663216134,"lower_bound":19.834463708302685,"upper_bound":20.293935349278758,"unit":"ns"},"median":{"estimate":19.854124240009444,"lower_bound":19.704230986648845,"upper_bound":20.064642162870143,"unit":"ns"},"median_abs_dev":{"estimate":0.9781457575452016,"lower_bound":0.7182243023459998,"upper_bound":1.2405138678416052,"unit":"ns"},"slope":{"estimate":20.5481911333946,"lower_bound":20.267540005979136,"upper_bound":20.83721026625153,"unit":"ns"},"change":{"mean":{"estimate":0.14573910218957042,"lower_bound":0.12713435566031717,"upper_bound":0.16303578839844574,"unit":"%"},"median":{"estimate":0.14879487838164218,"lower_bound":0.13580032396884412,"upper_bound":0.16695558047481507,"unit":"%"},"change":"Regressed"}} -{"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":[5163,10326,15489,20652,25815,30978,36141,41304,46467,51630,56793,61956,67119,72282,77445,82608,87771,92934,98097,103260,108423,113586,118749,123912,129075,134238,139401,144564,149727,154890,160053,165216,170379,175542,180705,185868,191031,196194,201357,206520,211683,216846,222009,227172,232335,237498,242661,247824,252987,258150,263313,268476,273639,278802,283965,289128,294291,299454,304617,309780,314943,320106,325269,330432,335595,340758,345921,351084,356247,361410,366573,371736,376899,382062,387225,392388,397551,402714,407877,413040,418203,423366,428529,433692,438855,444018,449181,454344,459507,464670,469833,474996,480159,485322,490485,495648,500811,505974,511137,516300],"measured_values":[179363.0,310007.0,453223.0,599900.0,747181.0,893352.0,1037017.0,1175597.0,1325862.0,1478063.0,1634459.0,1772602.0,1920240.0,2068770.0,2321509.0,2401867.0,2560194.0,2653810.0,2834502.0,2957393.0,3146468.0,3266907.0,3452169.0,3545053.0,3743573.0,3867514.0,4146329.0,4184105.0,4305764.0,4394866.0,4645956.0,4830056.0,4970866.0,5005923.0,5224438.0,5316147.0,5506736.0,5608526.0,5964133.0,5937260.0,6134872.0,6281060.0,6481724.0,6535137.0,6687154.0,6818417.0,7053735.0,7112717.0,7365513.0,7494597.0,7585546.0,7694753.0,7900441.0,7978277.0,8275744.0,8339875.0,8554900.0,8624912.0,8808051.0,8986475.0,9298410.0,9129003.0,9411315.0,9418723.0,9713883.0,9745286.0,10000397.0,10051538.0,10586127.0,10364586.0,10640307.0,10656069.0,10913903.0,10939151.0,11196337.0,11267777.0,11560862.0,11599991.0,11921174.0,11893883.0,12318542.0,12248554.0,12426753.0,12499996.0,12734964.0,12778846.0,12984113.0,12978169.0,13314455.0,13308686.0,13672327.0,13950109.0,13934582.0,13845854.0,14200742.0,15303671.0,14840432.0,14649430.0,14810494.0,14783034.0],"unit":"ns","throughput":[],"typical":{"estimate":28.9788125784228,"lower_bound":28.86999600812634,"upper_bound":29.116846550225983,"unit":"ns"},"mean":{"estimate":28.994187536765043,"lower_bound":28.882474118413,"upper_bound":29.1469431815862,"unit":"ns"},"median":{"estimate":28.910450693325107,"lower_bound":28.80770596502729,"upper_bound":28.954775836218023,"unit":"ns"},"median_abs_dev":{"estimate":0.2666415310798628,"lower_bound":0.20320039432513018,"upper_bound":0.3593092447346795,"unit":"ns"},"slope":{"estimate":28.9788125784228,"lower_bound":28.86999600812634,"upper_bound":29.116846550225983,"unit":"ns"},"change":{"mean":{"estimate":0.012691701888618123,"lower_bound":0.005983801975762191,"upper_bound":0.019958568841671208,"unit":"%"},"median":{"estimate":0.008940646983652822,"lower_bound":0.0020323197285043726,"upper_bound":0.01280157022048689,"unit":"%"},"change":"NoChange"}} -{"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":[402460.0,330679.0,318753.0,329896.0,326859.0,334706.0,326271.0,324759.0,326163.0,317902.0,316521.0,324605.0,326374.0,322171.0,326226.0,323041.0,324977.0,321208.0,324989.0,328036.0,325255.0,326085.0,317140.0,324361.0,327834.0,328090.0,315714.0,322109.0,316799.0,324384.0,328204.0,329289.0,323742.0,319031.0,327737.0,322670.0,316973.0,327261.0,324421.0,318645.0,324143.0,325636.0,315994.0,324461.0,323986.0,327887.0,329749.0,325362.0,324596.0,320249.0,326219.0,324682.0,324901.0,326972.0,324367.0,324123.0,325598.0,326873.0,316010.0,326577.0,325371.0,329068.0,325587.0,334894.0,318797.0,326074.0,327077.0,328622.0,325511.0,322885.0,334519.0,327377.0,326239.0,325788.0,324445.0,327622.0,323092.0,323462.0,321866.0,316046.0,314255.0,321087.0,321911.0,315051.0,326474.0,315079.0,320876.0,322733.0,325291.0,315538.0,326553.0,324554.0,325034.0,325811.0,323936.0,318284.0,322386.0,323551.0,322630.0,318602.0],"unit":"ns","throughput":[],"typical":{"estimate":324747.03,"lower_bound":323318.60975,"upper_bound":326764.3125,"unit":"ns"},"mean":{"estimate":324747.03,"lower_bound":323318.60975,"upper_bound":326764.3125,"unit":"ns"},"median":{"estimate":324643.5,"lower_bound":324143.0,"upper_bound":325436.5,"unit":"ns"},"median_abs_dev":{"estimate":3295.0784415006638,"lower_bound":2318.786358833313,"upper_bound":4273.594424128532,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.008568328279679127,"lower_bound":0.0025120060392278118,"upper_bound":0.01569457102318328,"unit":"%"},"median":{"estimate":0.009790168462438187,"lower_bound":0.0060404889417831065,"upper_bound":0.013298154020596753,"unit":"%"},"change":"NoChange"}} -{"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":[430289.0,363971.0,361429.0,365103.0,360896.0,361140.0,357378.0,359183.0,348887.0,364156.0,361011.0,351024.0,350485.0,358679.0,363148.0,359679.0,348186.0,359575.0,358882.0,347671.0,361333.0,360151.0,359390.0,362401.0,362274.0,350231.0,349537.0,360476.0,359324.0,359599.0,362915.0,360999.0,362442.0,361062.0,363087.0,361646.0,360996.0,361448.0,361839.0,360499.0,362376.0,361877.0,363427.0,360725.0,350955.0,388425.0,362616.0,360700.0,363784.0,361755.0,352427.0,362152.0,363082.0,362797.0,363872.0,362239.0,362233.0,362612.0,360341.0,350927.0,350909.0,360922.0,360370.0,349087.0,360680.0,362322.0,363394.0,350944.0,366509.0,361127.0,360121.0,359533.0,359942.0,358316.0,359097.0,360097.0,360528.0,359851.0,348869.0,349578.0,350201.0,359578.0,359977.0,359237.0,349417.0,350236.0,358795.0,358666.0,359303.0,360495.0,359421.0,361307.0,358875.0,349511.0,362254.0,360512.0,349814.0,348561.0,346242.0,359712.0],"unit":"ns","throughput":[],"typical":{"estimate":359560.53,"lower_bound":357985.919,"upper_bound":361563.89425,"unit":"ns"},"mean":{"estimate":359560.53,"lower_bound":357985.919,"upper_bound":361563.89425,"unit":"ns"},"median":{"estimate":360423.0,"lower_bound":359679.0,"upper_bound":360922.0,"unit":"ns"},"median_abs_dev":{"estimate":2595.29125392437,"lower_bound":1859.1803669929504,"upper_bound":3702.0521342754364,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0035237710110387344,"lower_bound":-0.003546364803697782,"upper_bound":0.01102690104674762,"unit":"%"},"median":{"estimate":0.006790654539766239,"lower_bound":0.004138858132549439,"upper_bound":0.009332460513285401,"unit":"%"},"change":"NoChange"}} -{"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":[5256,10512,15768,21024,26280,31536,36792,42048,47304,52560,57816,63072,68328,73584,78840,84096,89352,94608,99864,105120,110376,115632,120888,126144,131400,136656,141912,147168,152424,157680,162936,168192,173448,178704,183960,189216,194472,199728,204984,210240,215496,220752,226008,231264,236520,241776,247032,252288,257544,262800,268056,273312,278568,283824,289080,294336,299592,304848,310104,315360,320616,325872,331128,336384,341640,346896,352152,357408,362664,367920,373176,378432,383688,388944,394200,399456,404712,409968,415224,420480,425736,430992,436248,441504,446760,452016,457272,462528,467784,473040,478296,483552,488808,494064,499320,504576,509832,515088,520344,525600],"measured_values":[164196.0,324812.0,481211.0,615291.0,798835.0,923129.0,1116272.0,1230981.0,1414083.0,1476049.0,1719175.0,1778734.0,1987805.0,2094977.0,2216996.0,2358677.0,2526503.0,2677357.0,2761667.0,3046740.0,3054771.0,3229354.0,3465103.0,3571257.0,3638805.0,3859982.0,3974217.0,4197278.0,4239523.0,4554493.0,4421725.0,4780608.0,4805489.0,4986673.0,5041502.0,5431043.0,5436985.0,5639146.0,5641125.0,5997623.0,6104633.0,6216768.0,6265658.0,6602157.0,6511242.0,6820352.0,7007155.0,7050801.0,7315139.0,7459678.0,7636331.0,7700560.0,7789975.0,7853314.0,8300586.0,8420474.0,8507178.0,8486593.0,8711282.0,9085458.0,8827810.0,9213644.0,9397751.0,9664569.0,9728024.0,10006084.0,9863665.0,10271714.0,10098436.0,10535994.0,10534027.0,10919060.0,10885109.0,11161684.0,11202058.0,12191720.0,11275236.0,11788161.0,11675609.0,11812147.0,12596493.0,12744211.0,12737844.0,12977164.0,13257083.0,13476216.0,13218144.0,13343407.0,13605304.0,14076436.0,13840435.0,14406740.0,13984606.0,13924661.0,13737056.0,14373828.0,14165692.0,14613247.0,14948996.0,15365423.0],"unit":"ns","throughput":[],"typical":{"estimate":28.63643559351846,"lower_bound":28.45639219961189,"upper_bound":28.812192999890176,"unit":"ns"},"mean":{"estimate":28.585368758668995,"lower_bound":28.433628382518243,"upper_bound":28.744330686060586,"unit":"ns"},"median":{"estimate":28.410323854046943,"lower_bound":28.29339788141284,"upper_bound":28.6083727440748,"unit":"ns"},"median_abs_dev":{"estimate":0.6470344384883858,"lower_bound":0.4746480231447342,"upper_bound":0.8176778713762297,"unit":"ns"},"slope":{"estimate":28.63643559351846,"lower_bound":28.45639219961189,"upper_bound":28.812192999890176,"unit":"ns"},"change":{"mean":{"estimate":0.059988555403325705,"lower_bound":0.04909849108233929,"upper_bound":0.07117918530916595,"unit":"%"},"median":{"estimate":0.06352138050875622,"lower_bound":0.05506722953803389,"upper_bound":0.07721627075508453,"unit":"%"},"change":"Regressed"}} -{"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":[571400.0,491660.0,504720.0,501767.0,489110.0,523085.0,489901.0,501909.0,490619.0,501370.0,503649.0,504728.0,504829.0,501956.0,502354.0,520691.0,500187.0,501564.0,492012.0,491752.0,503913.0,503579.0,502504.0,499709.0,502932.0,495560.0,507340.0,502296.0,487590.0,500093.0,488753.0,504183.0,501108.0,501023.0,503766.0,488456.0,503122.0,501749.0,500659.0,488925.0,502037.0,501875.0,501508.0,499039.0,500223.0,501918.0,501105.0,489069.0,527757.0,485257.0,500275.0,499497.0,500712.0,500104.0,500094.0,500566.0,498899.0,499810.0,498356.0,491746.0,500690.0,499266.0,499672.0,486648.0,500115.0,542418.0,503161.0,499685.0,488580.0,498816.0,495539.0,503796.0,501106.0,505792.0,502261.0,491942.0,490196.0,501299.0,503130.0,503411.0,492753.0,508899.0,502642.0,501932.0,503862.0,490841.0,503396.0,502561.0,488147.0,505949.0,504975.0,502088.0,502430.0,503584.0,502815.0,504070.0,503779.0,505426.0,504419.0,504173.0],"unit":"ns","throughput":[],"typical":{"estimate":501326.34,"lower_bound":499422.94925,"upper_bound":503575.88625,"unit":"ns"},"mean":{"estimate":501326.34,"lower_bound":499422.94925,"upper_bound":503575.88625,"unit":"ns"},"median":{"estimate":501536.0,"lower_bound":500628.0,"upper_bound":502149.0,"unit":"ns"},"median_abs_dev":{"estimate":3219.4658428430557,"lower_bound":2468.5289561748505,"upper_bound":4450.765120983124,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0034712315530023297,"lower_bound":-0.0024221278173750917,"upper_bound":0.009962849447613309,"unit":"%"},"median":{"estimate":0.004346515728459455,"lower_bound":0.0011837159081820037,"upper_bound":0.007091601354562105,"unit":"%"},"change":"NoChange"}} -{"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":[371286.0,357095.0,352881.0,346674.0,356128.0,357296.0,346061.0,345563.0,382830.0,355624.0,346354.0,357996.0,356870.0,356636.0,346899.0,356772.0,355877.0,357699.0,356312.0,366545.0,350066.0,357389.0,360553.0,359200.0,358374.0,360311.0,346457.0,354603.0,346319.0,355080.0,347341.0,356528.0,347308.0,357516.0,354958.0,356082.0,356513.0,357410.0,346483.0,356159.0,354803.0,356884.0,357360.0,356161.0,356655.0,356924.0,354199.0,356083.0,356019.0,355893.0,355477.0,356179.0,355765.0,346543.0,356530.0,355287.0,345890.0,355004.0,347726.0,356460.0,356869.0,354205.0,354404.0,354745.0,354276.0,354490.0,355982.0,356161.0,357411.0,346635.0,356284.0,346265.0,345907.0,344322.0,355330.0,354822.0,345775.0,355751.0,355289.0,355076.0,356161.0,359410.0,356360.0,357016.0,357039.0,356249.0,356873.0,379233.0,356868.0,356169.0,361311.0,356154.0,350464.0,345993.0,356613.0,347849.0,349764.0,358205.0,348870.0,359178.0],"unit":"ns","throughput":[],"typical":{"estimate":354916.68,"lower_bound":353763.4165,"upper_bound":356138.9755,"unit":"ns"},"mean":{"estimate":354916.68,"lower_bound":353763.4165,"upper_bound":356138.9755,"unit":"ns"},"median":{"estimate":356082.5,"lower_bound":355330.0,"upper_bound":356249.0,"unit":"ns"},"median_abs_dev":{"estimate":1917.0017659664154,"lower_bound":1340.2703762054443,"upper_bound":2784.32275056839,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0004021298291841946,"lower_bound":-0.013142637339255792,"upper_bound":0.008618305664789442,"unit":"%"},"median":{"estimate":0.005161550751720423,"lower_bound":0.002375350487545891,"upper_bound":0.0060183629262065,"unit":"%"},"change":"NoChange"}} -{"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":[5731,11462,17193,22924,28655,34386,40117,45848,51579,57310,63041,68772,74503,80234,85965,91696,97427,103158,108889,114620,120351,126082,131813,137544,143275,149006,154737,160468,166199,171930,177661,183392,189123,194854,200585,206316,212047,217778,223509,229240,234971,240702,246433,252164,257895,263626,269357,275088,280819,286550,292281,298012,303743,309474,315205,320936,326667,332398,338129,343860,349591,355322,361053,366784,372515,378246,383977,389708,395439,401170,406901,412632,418363,424094,429825,435556,441287,447018,452749,458480,464211,469942,475673,481404,487135,492866,498597,504328,510059,515790,521521,527252,532983,538714,544445,550176,555907,561638,567369,573100],"measured_values":[151794.0,247062.0,335891.0,468456.0,586985.0,682294.0,891139.0,928417.0,1082867.0,1268435.0,1307976.0,1388328.0,1537137.0,1628051.0,1768430.0,1848456.0,2030165.0,2134254.0,2238634.0,2499608.0,2495940.0,2611240.0,2814543.0,2939012.0,3001913.0,3100332.0,3308317.0,3471452.0,3496341.0,3704510.0,3660845.0,3825628.0,3861797.0,4283112.0,4361650.0,4344178.0,4456489.0,4533955.0,4565036.0,4775817.0,4817129.0,5035402.0,5115667.0,5310661.0,5445758.0,5421458.0,5515809.0,5636313.0,5856395.0,6033713.0,6347563.0,6030256.0,6337185.0,6820140.0,6781212.0,6979532.0,7017769.0,7049893.0,7019328.0,7435384.0,7270881.0,7504532.0,7510974.0,7823402.0,7583737.0,8048895.0,8241551.0,8528510.0,8280035.0,8718164.0,8569086.0,9146523.0,8897395.0,9058124.0,9241281.0,9490942.0,9739595.0,9649090.0,9598279.0,9757835.0,9851461.0,9754699.0,9979973.0,10279128.0,10374904.0,10254023.0,10544014.0,10839844.0,10535598.0,11043601.0,11135586.0,11317207.0,11064138.0,11212858.0,11166533.0,11810517.0,11430085.0,11855778.0,11969581.0,12344848.0],"unit":"ns","throughput":[],"typical":{"estimate":21.173756819747634,"lower_bound":21.06886614522183,"upper_bound":21.2778965185578,"unit":"ns"},"mean":{"estimate":21.11473657632454,"lower_bound":20.980261214265955,"upper_bound":21.275563166823677,"unit":"ns"},"median":{"estimate":21.056174412066927,"lower_bound":20.85916887175094,"upper_bound":21.21556923913687,"unit":"ns"},"median_abs_dev":{"estimate":0.568967960594998,"lower_bound":0.4406994235231302,"upper_bound":0.6779198433602107,"unit":"ns"},"slope":{"estimate":21.173756819747634,"lower_bound":21.06886614522183,"upper_bound":21.2778965185578,"unit":"ns"},"change":{"mean":{"estimate":0.10701054808048216,"lower_bound":0.09269630013365993,"upper_bound":0.1220795612795077,"unit":"%"},"median":{"estimate":0.11616876778944674,"lower_bound":0.0974339987923542,"upper_bound":0.13168338470674978,"unit":"%"},"change":"Regressed"}} -{"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":[610,1220,1830,2440,3050,3660,4270,4880,5490,6100,6710,7320,7930,8540,9150,9760,10370,10980,11590,12200,12810,13420,14030,14640,15250,15860,16470,17080,17690,18300,18910,19520,20130,20740,21350,21960,22570,23180,23790,24400,25010,25620,26230,26840,27450,28060,28670,29280,29890,30500,31110,31720,32330,32940,33550,34160,34770,35380,35990,36600,37210,37820,38430,39040,39650,40260,40870,41480,42090,42700,43310,43920,44530,45140,45750,46360,46970,47580,48190,48800,49410,50020,50630,51240,51850,52460,53070,53680,54290,54900,55510,56120,56730,57340,57950,58560,59170,59780,60390,61000],"measured_values":[848907.0,1572564.0,2375320.0,3178580.0,3968363.0,4763824.0,5671619.0,6518911.0,7237771.0,7877859.0,8650517.0,9527099.0,10240028.0,11078218.0,11875062.0,12799107.0,13420028.0,14239017.0,15001276.0,15976837.0,16493049.0,17421122.0,18036459.0,19120747.0,19777013.0,20482751.0,21280694.0,22725383.0,22813056.0,23597202.0,25956489.0,25130427.0,25882618.0,26799786.0,27520764.0,28841152.0,29005530.0,30375609.0,30943051.0,31664163.0,32138726.0,32968477.0,33632894.0,35589528.0,35267575.0,36091293.0,36802917.0,38661277.0,38439143.0,39367307.0,40035599.0,40819851.0,42366076.0,43161472.0,43155873.0,45718098.0,45308960.0,45498401.0,46155975.0,47108858.0,47780685.0,49207434.0,49259774.0,50211975.0,51973702.0,51817368.0,52663695.0,53616754.0,54282925.0,55183537.0,55709154.0,56889766.0,57607743.0,58469106.0,59167230.0,59869290.0,60308607.0,61634345.0,62088262.0,62713962.0,63832001.0,65146607.0,65629727.0,66088411.0,68287850.0,68575549.0,68246002.0,69194719.0,70049414.0,71972097.0,71630565.0,73444622.0,72972885.0,74493798.0,74644197.0,75777368.0,76701873.0,77156379.0,77609962.0,78449666.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":1294.268882358214,"lower_bound":1291.9518766555657,"upper_bound":1296.8356410032043,"unit":"ns"},"mean":{"estimate":1297.8061478204118,"lower_bound":1294.7087806887216,"upper_bound":1301.392766841999,"unit":"ns"},"median":{"estimate":1292.1334851244687,"lower_bound":1290.2268749303,"upper_bound":1295.304326047359,"unit":"ns"},"median_abs_dev":{"estimate":8.725474224992002,"lower_bound":6.511591363268453,"upper_bound":11.97092025209314,"unit":"ns"},"slope":{"estimate":1294.268882358214,"lower_bound":1291.9518766555657,"upper_bound":1296.8356410032043,"unit":"ns"},"change":{"mean":{"estimate":-0.04615319828276698,"lower_bound":-0.049656018775480065,"upper_bound":-0.04280974039273855,"unit":"%"},"median":{"estimate":-0.048200303863784044,"lower_bound":-0.04993377251977149,"upper_bound":-0.04548289721209431,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"croo/10","report_directory":"/root/fuel-core/target/criterion/reports/croo/10","iteration_count":[612,1224,1836,2448,3060,3672,4284,4896,5508,6120,6732,7344,7956,8568,9180,9792,10404,11016,11628,12240,12852,13464,14076,14688,15300,15912,16524,17136,17748,18360,18972,19584,20196,20808,21420,22032,22644,23256,23868,24480,25092,25704,26316,26928,27540,28152,28764,29376,29988,30600,31212,31824,32436,33048,33660,34272,34884,35496,36108,36720,37332,37944,38556,39168,39780,40392,41004,41616,42228,42840,43452,44064,44676,45288,45900,46512,47124,47736,48348,48960,49572,50184,50796,51408,52020,52632,53244,53856,54468,55080,55692,56304,56916,57528,58140,58752,59364,59976,60588,61200],"measured_values":[907466.0,1587524.0,2381209.0,3189857.0,4223836.0,5014372.0,5558598.0,6341409.0,7148491.0,7942797.0,8723094.0,9512313.0,10388437.0,11632327.0,11857056.0,12643726.0,13483777.0,14270135.0,15575858.0,16190107.0,16565134.0,17338151.0,18185647.0,19464704.0,19748287.0,21356890.0,21347363.0,22049381.0,23085967.0,24174501.0,24473543.0,25241758.0,26062706.0,27872143.0,29106929.0,28361002.0,29207951.0,29912365.0,31069070.0,32191885.0,33208072.0,33061589.0,34241079.0,34694174.0,35560858.0,36156792.0,36984686.0,37870223.0,39863765.0,39270489.0,40178815.0,46386363.0,41992003.0,42642842.0,43392019.0,44187258.0,44931499.0,45703257.0,46787154.0,47468527.0,48422015.0,48941041.0,50230399.0,50418062.0,51402265.0,52160204.0,52986939.0,53759304.0,56054145.0,55201774.0,56112172.0,57295544.0,57725885.0,59868796.0,59313291.0,60661662.0,61621931.0,61533609.0,62428514.0,63314351.0,64309820.0,64578092.0,65667031.0,66083601.0,67019482.0,67948452.0,69997244.0,69275001.0,70175077.0,70834421.0,71760113.0,72953851.0,73238817.0,74399875.0,75227051.0,77062246.0,76455205.0,77152601.0,79237674.0,78652735.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":1296.310191466469,"lower_bound":1293.068053284488,"upper_bound":1300.4545372030295,"unit":"ns"},"mean":{"estimate":1303.0833522950686,"lower_bound":1297.6951826342133,"upper_bound":1309.5109588693424,"unit":"ns"},"median":{"estimate":1292.233427958248,"lower_bound":1291.2439360929557,"upper_bound":1295.4815288434215,"unit":"ns"},"median_abs_dev":{"estimate":7.112372162388024,"lower_bound":5.471162200254402,"upper_bound":10.669421015860316,"unit":"ns"},"slope":{"estimate":1296.310191466469,"lower_bound":1293.068053284488,"upper_bound":1300.4545372030295,"unit":"ns"},"change":{"mean":{"estimate":-0.04718160214523148,"lower_bound":-0.05393217692758059,"upper_bound":-0.041498905696975924,"unit":"%"},"median":{"estimate":-0.05287735211081801,"lower_bound":-0.055098255887283676,"upper_bound":-0.049767068512286405,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"croo/100","report_directory":"/root/fuel-core/target/criterion/reports/croo/100","iteration_count":[511,1022,1533,2044,2555,3066,3577,4088,4599,5110,5621,6132,6643,7154,7665,8176,8687,9198,9709,10220,10731,11242,11753,12264,12775,13286,13797,14308,14819,15330,15841,16352,16863,17374,17885,18396,18907,19418,19929,20440,20951,21462,21973,22484,22995,23506,24017,24528,25039,25550,26061,26572,27083,27594,28105,28616,29127,29638,30149,30660,31171,31682,32193,32704,33215,33726,34237,34748,35259,35770,36281,36792,37303,37814,38325,38836,39347,39858,40369,40880,41391,41902,42413,42924,43435,43946,44457,44968,45479,45990,46501,47012,47523,48034,48545,49056,49567,50078,50589,51100],"measured_values":[982750.0,1698178.0,2561042.0,3408853.0,4287414.0,5106046.0,5962476.0,6774845.0,7878092.0,8343222.0,9189331.0,9945861.0,10865762.0,11629298.0,12485472.0,13204019.0,14132507.0,15030608.0,15771912.0,16986671.0,17505331.0,18204222.0,19628392.0,19730935.0,21063761.0,21410398.0,22363960.0,22980619.0,23910111.0,24870387.0,26179212.0,26263052.0,27279660.0,28060680.0,28895367.0,29596443.0,30572470.0,31316046.0,32113314.0,32851183.0,34713090.0,34762094.0,35515477.0,36184608.0,37191428.0,37903704.0,38824398.0,39391767.0,40526308.0,41410122.0,42431890.0,42712385.0,44191016.0,44688233.0,45617686.0,46291181.0,47295296.0,48604740.0,50086917.0,49667511.0,50599803.0,52387420.0,52212649.0,52601045.0,53773702.0,54492073.0,55494145.0,56035125.0,56981676.0,57777865.0,58710204.0,59230131.0,60295371.0,61009038.0,61978536.0,62353414.0,63442950.0,64270270.0,65375900.0,66692913.0,66774154.0,67491858.0,68665204.0,69586067.0,70454109.0,72469754.0,72015377.0,72330977.0,73685440.0,74214002.0,75107045.0,75652200.0,76764342.0,77350890.0,78560902.0,78924358.0,80148372.0,80991289.0,82671122.0,82319914.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":1618.8217990264138,"lower_bound":1616.4459849023438,"upper_bound":1621.5831605102455,"unit":"ns"},"mean":{"estimate":1628.4645677712124,"lower_bound":1622.6330423522154,"upper_bound":1636.3508805246452,"unit":"ns"},"median":{"estimate":1618.9621697991724,"lower_bound":1616.9921193208863,"upper_bound":1620.8822326722552,"unit":"ns"},"median_abs_dev":{"estimate":9.671863420525224,"lower_bound":6.771310821262649,"upper_bound":14.198480314838886,"unit":"ns"},"slope":{"estimate":1618.8217990264138,"lower_bound":1616.4459849023438,"upper_bound":1621.5831605102455,"unit":"ns"},"change":{"mean":{"estimate":-0.017650288543366144,"lower_bound":-0.02161164560176377,"upper_bound":-0.01278183018787758,"unit":"%"},"median":{"estimate":-0.020940956309022263,"lower_bound":-0.02248482635758131,"upper_bound":-0.01942597492101128,"unit":"%"},"change":"Improved"}} -{"reason":"benchmark-complete","id":"croo/1000","report_directory":"/root/fuel-core/target/criterion/reports/croo/1000","iteration_count":[191,382,573,764,955,1146,1337,1528,1719,1910,2101,2292,2483,2674,2865,3056,3247,3438,3629,3820,4011,4202,4393,4584,4775,4966,5157,5348,5539,5730,5921,6112,6303,6494,6685,6876,7067,7258,7449,7640,7831,8022,8213,8404,8595,8786,8977,9168,9359,9550,9741,9932,10123,10314,10505,10696,10887,11078,11269,11460,11651,11842,12033,12224,12415,12606,12797,12988,13179,13370,13561,13752,13943,14134,14325,14516,14707,14898,15089,15280,15471,15662,15853,16044,16235,16426,16617,16808,16999,17190,17381,17572,17763,17954,18145,18336,18527,18718,18909,19100],"measured_values":[983364.0,1866792.0,2834833.0,3733690.0,4698093.0,5700415.0,6534524.0,7463020.0,8409115.0,9345528.0,10717639.0,11227489.0,12346388.0,13077973.0,14021777.0,15044378.0,15943066.0,16818353.0,17790093.0,18663880.0,19620751.0,20889322.0,21566085.0,22404754.0,23735844.0,24472724.0,25350589.0,26146324.0,27117828.0,28493836.0,28983610.0,29862178.0,30849158.0,31853156.0,32964701.0,33580245.0,34850585.0,35784936.0,36448579.0,37541419.0,38298158.0,39283234.0,40135196.0,41088541.0,42063216.0,43032107.0,43940061.0,45021047.0,45886581.0,46745839.0,47665135.0,48574471.0,49533373.0,50710147.0,51351492.0,52298903.0,53457765.0,54215620.0,55456240.0,56026349.0,57018687.0,58009492.0,58886698.0,59819957.0,60965542.0,61776197.0,62757921.0,63509838.0,64486890.0,65466465.0,66847304.0,67246203.0,68215155.0,69153743.0,70068312.0,71002256.0,71943109.0,73117974.0,74133523.0,74691081.0,75720585.0,76652651.0,77659512.0,78425005.0,79350991.0,80736802.0,81357924.0,82540974.0,83133310.0,84101713.0,85312521.0,85867791.0,87104691.0,87998198.0,88734677.0,89702807.0,90648767.0,91534274.0,92564641.0,93351340.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":4897.834513797711,"lower_bound":4895.527771248934,"upper_bound":4900.421573413764,"unit":"ns"},"mean":{"estimate":4907.090382630941,"lower_bound":4900.666651052925,"upper_bound":4915.130482766068,"unit":"ns"},"median":{"estimate":4894.268230016506,"lower_bound":4893.119260245028,"upper_bound":4897.161783356639,"unit":"ns"},"median_abs_dev":{"estimate":8.959485374617767,"lower_bound":5.763150377992187,"upper_bound":12.618127445633464,"unit":"ns"},"slope":{"estimate":4897.834513797711,"lower_bound":4895.527771248934,"upper_bound":4900.421573413764,"unit":"ns"},"change":{"mean":{"estimate":-0.010511714481189594,"lower_bound":-0.014778701050504333,"upper_bound":-0.007145907713847786,"unit":"%"},"median":{"estimate":-0.008979517631309775,"lower_bound":-0.010384528102663992,"upper_bound":-0.008027025040064806,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"croo/10000","report_directory":"/root/fuel-core/target/criterion/reports/croo/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":[1035602.0,1979022.0,2994664.0,4011489.0,4970625.0,5993883.0,6947710.0,7937088.0,8892083.0,9890384.0,10901393.0,11917524.0,12848788.0,13873645.0,14853203.0,15844582.0,16864835.0,17796716.0,18808272.0,19770366.0,20791063.0,21807973.0,22735790.0,23755515.0,24742183.0,26164082.0,26957077.0,27706099.0,28695671.0,29745448.0,30673585.0,31682608.0,32676597.0,33643184.0,34646936.0,35671917.0,36630825.0,37823339.0,38659531.0,39576492.0,40663759.0,41746961.0,42556517.0,43553007.0,44709123.0,45612686.0,46518494.0,47556645.0,48484604.0,49495764.0,50491090.0,51500472.0,52781806.0,53464531.0,54442773.0,55454214.0,56397313.0,57421514.0,58392871.0,59392901.0,60420864.0,61398384.0,62443957.0,63376607.0,64329062.0,65357711.0,66361367.0,67312191.0,68281442.0,69289995.0,70252206.0,71386776.0,72272240.0,73266880.0,74204220.0,75265734.0,76223401.0,77328395.0,78218159.0,79218087.0,80146797.0,81161111.0,82122375.0,83092019.0,84201896.0,85159076.0,86094606.0,87108282.0,88072219.0,89220101.0,90114072.0,91031433.0,92106983.0,93038659.0,94027409.0,95011401.0,95992366.0,97006315.0,98006800.0,99120404.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":39609.34445018472,"lower_bound":39601.64852812465,"upper_bound":39618.37260815627,"unit":"ns"},"mean":{"estimate":39653.70985831579,"lower_bound":39620.33945560812,"upper_bound":39700.5214551731,"unit":"ns"},"median":{"estimate":39601.626079582515,"lower_bound":39595.406470588234,"upper_bound":39610.15285714286,"unit":"ns"},"median_abs_dev":{"estimate":29.502767279495725,"lower_bound":20.284397978031127,"upper_bound":43.55126467508846,"unit":"ns"},"slope":{"estimate":39609.34445018472,"lower_bound":39601.64852812465,"upper_bound":39618.37260815627,"unit":"ns"},"change":{"mean":{"estimate":0.0007421471109476663,"lower_bound":-0.001031286127796321,"upper_bound":0.0023121006665613726,"unit":"%"},"median":{"estimate":0.0006508425857434386,"lower_bound":0.00044060879188328496,"upper_bound":0.0009489329425711457,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"croo/19753","report_directory":"/root/fuel-core/target/criterion/reports/croo/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":[1107520.0,2044198.0,3068192.0,4092761.0,5114434.0,6164666.0,7186888.0,8211221.0,9233383.0,10256129.0,11300629.0,12446413.0,13323771.0,14318302.0,15421246.0,16532459.0,17390916.0,18458091.0,19434293.0,20479303.0,21504778.0,22519694.0,23560103.0,24603098.0,25573538.0,26605966.0,27646442.0,28656645.0,29742628.0,30691742.0,31756894.0,32747795.0,33939519.0,34779911.0,35907683.0,36860460.0,37876968.0,38876664.0,39961710.0,40931878.0,41992864.0,43121815.0,44062661.0,45018578.0,46061248.0,47098719.0,48087329.0,49206868.0,50168430.0,51209670.0,52187615.0,53197357.0,54262695.0,55397335.0,56283995.0,57291792.0,58407708.0,59362906.0,60403878.0,61429508.0,62617573.0,63456977.0,64470911.0,65595153.0,66528020.0,67511333.0,68599925.0,69597360.0,70622210.0,71653409.0,72632547.0,73780364.0,74766258.0,75675814.0,76910736.0,77825727.0,78801866.0,79829336.0,80835710.0,81868893.0,82913354.0,84004683.0,84952409.0,85979298.0,87040171.0,88249521.0,89239423.0,90191251.0,91110009.0,92145476.0,93085153.0,94125573.0,95132777.0,96334900.0,97296898.0,98262726.0,99247593.0,100419508.0,101670771.0,102449878.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":78775.44257448477,"lower_bound":78755.05976425305,"upper_bound":78797.85057666468,"unit":"ns"},"mean":{"estimate":78864.9422511969,"lower_bound":78778.91218639704,"upper_bound":79012.54508680064,"unit":"ns"},"median":{"estimate":78756.2982905983,"lower_bound":78736.15865384616,"upper_bound":78776.14944034294,"unit":"ns"},"median_abs_dev":{"estimate":81.26025722939717,"lower_bound":54.706567044971585,"upper_bound":102.1461750668843,"unit":"ns"},"slope":{"estimate":78775.44257448477,"lower_bound":78755.05976425305,"upper_bound":78797.85057666468,"unit":"ns"},"change":{"mean":{"estimate":0.0020454081106295874,"lower_bound":-0.002318347079826413,"upper_bound":0.005337709124988332,"unit":"%"},"median":{"estimate":0.004653706866953211,"lower_bound":0.004252641559279624,"upper_bound":0.004957917646375654,"unit":"%"},"change":"NoChange"}} -{"reason":"benchmark-complete","id":"croo/29629","report_directory":"/root/fuel-core/target/criterion/reports/croo/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":[1067390.0,2101838.0,3187259.0,4206611.0,5260899.0,6307581.0,7364231.0,8440001.0,9466701.0,10512179.0,11594282.0,12645000.0,13699832.0,14743475.0,15838634.0,16969905.0,17877263.0,18948913.0,20003152.0,21082214.0,22088997.0,23153784.0,24236991.0,25223464.0,26306455.0,27346392.0,28418152.0,29523902.0,30492652.0,31620257.0,32709311.0,33665098.0,34747259.0,35786728.0,36821429.0,37898648.0,38934570.0,39968956.0,41060655.0,42062885.0,43158131.0,44189531.0,45442807.0,46329687.0,47326875.0,48600161.0,49492803.0,50506339.0,52192369.0,52599567.0,53662579.0,54853663.0,55820373.0,56832325.0,57851329.0,59182005.0,60149085.0,60998993.0,62187881.0,63137808.0,64324821.0,65260502.0,66334363.0,67439531.0,68388543.0,69413814.0,70546214.0,71590211.0,72628119.0,73619348.0,74723901.0,75797676.0,76829538.0,77845001.0,79167948.0,80155022.0,81245313.0,82173314.0,83373081.0,84230097.0,85308633.0,86300791.0,87406316.0,88386438.0,89439415.0,90490476.0,91665541.0,92799604.0,93743473.0,94845048.0,95793348.0,96846809.0,97860753.0,98925555.0,99963155.0,101081749.0,102267216.0,103194313.0,104363324.0,105237332.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":117023.72466545162,"lower_bound":116991.1807324569,"upper_bound":117060.9586869496,"unit":"ns"},"mean":{"estimate":117048.72655478465,"lower_bound":116998.10712185253,"upper_bound":117107.78649389399,"unit":"ns"},"median":{"estimate":116969.86728395062,"lower_bound":116938.94032921811,"upper_bound":116994.13804713805,"unit":"ns"},"median_abs_dev":{"estimate":124.10993777458626,"lower_bound":80.21906755018892,"upper_bound":165.4500867933244,"unit":"ns"},"slope":{"estimate":117023.72466545162,"lower_bound":116991.1807324569,"upper_bound":117060.9586869496,"unit":"ns"},"change":{"mean":{"estimate":0.004879588854860284,"lower_bound":0.0035806336825118584,"upper_bound":0.0058803959699626355,"unit":"%"},"median":{"estimate":0.005415098976946586,"lower_bound":0.005025820180655622,"upper_bound":0.005724193599135896,"unit":"%"},"change":"NoChange"}} -{"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":[1112184.0,2125344.0,3246592.0,4275615.0,5305735.0,6369468.0,7466074.0,8519622.0,9577540.0,10612899.0,11673097.0,12760031.0,13794865.0,14858743.0,15947089.0,16981586.0,18070746.0,19140592.0,20306158.0,21305204.0,22313435.0,23408076.0,24366489.0,25483544.0,26533304.0,27571526.0,28666342.0,29704313.0,30846528.0,31841174.0,32877964.0,33959435.0,34991996.0,36099755.0,37173840.0,38157009.0,39293387.0,40307552.0,41384187.0,42440848.0,43665704.0,44519035.0,45623776.0,46761244.0,47742577.0,48792676.0,50114648.0,50969759.0,52013656.0,53009544.0,54086066.0,55184037.0,56209613.0,57422866.0,58352271.0,59404358.0,60474072.0,62146049.0,62685018.0,63720395.0,64779853.0,65888546.0,67237017.0,68043344.0,69024778.0,70049188.0,71060542.0,72188353.0,73435148.0,74221088.0,75387757.0,76313612.0,77465994.0,78482936.0,79609135.0,80648383.0,81919173.0,82794808.0,83885770.0,84780155.0,86077984.0,86975229.0,87990867.0,89181786.0,90158657.0,92082453.0,92411964.0,93353948.0,94587503.0,95629179.0,96514670.0,97780087.0,98848370.0,99741624.0,100796854.0,101963967.0,102981696.0,103636611.0,104991875.0,105785867.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":176957.04685384958,"lower_bound":176861.42364331352,"upper_bound":177065.45929115062,"unit":"ns"},"mean":{"estimate":177135.67060331404,"lower_bound":176981.46814863864,"upper_bound":177352.7006516777,"unit":"ns"},"median":{"estimate":176923.4319727891,"lower_bound":176872.05729166666,"upper_bound":176978.32986111112,"unit":"ns"},"median_abs_dev":{"estimate":231.69454207324037,"lower_bound":155.51693408113005,"upper_bound":281.940032445887,"unit":"ns"},"slope":{"estimate":176957.04685384958,"lower_bound":176861.42364331352,"upper_bound":177065.45929115062,"unit":"ns"},"change":{"mean":{"estimate":0.009954818199787274,"lower_bound":0.00847070954341797,"upper_bound":0.011424148336771122,"unit":"%"},"median":{"estimate":0.009707830250131222,"lower_bound":0.00928856879626272,"upper_bound":0.010165213275914686,"unit":"%"},"change":"NoChange"}} -{"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":[1112003.0,2109152.0,3195520.0,4219968.0,5277118.0,6350396.0,7386573.0,8439974.0,9493372.0,10578214.0,11603285.0,12658544.0,13746959.0,14797285.0,15826019.0,16913784.0,17967632.0,19048500.0,20091153.0,21099109.0,22186489.0,23206452.0,24301272.0,25377724.0,26403806.0,27425928.0,28562381.0,29567625.0,30670646.0,31678923.0,32825188.0,33815508.0,34837505.0,35938654.0,36952417.0,38049844.0,39094516.0,40114940.0,41185414.0,42396877.0,43369503.0,44516337.0,45418204.0,47244797.0,47494242.0,48625678.0,49638679.0,50776008.0,51718221.0,52865941.0,53827333.0,54971690.0,56229125.0,57072011.0,58143100.0,59176513.0,60211941.0,61234010.0,62509564.0,63349974.0,64457996.0,65533520.0,66536295.0,67572227.0,68658355.0,69668713.0,70753346.0,71819695.0,72838337.0,73918348.0,75039356.0,76017949.0,77268972.0,78173995.0,79406647.0,80302192.0,81412746.0,82430247.0,83440237.0,84495774.0,85579022.0,86563913.0,87654567.0,88670021.0,89892525.0,90788483.0,91833912.0,92935529.0,93969763.0,95003138.0,96023159.0,97145456.0,98377723.0,99332244.0,100277010.0,101683733.0,102656822.0,103479221.0,104473415.0,105558888.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":264157.15991650656,"lower_bound":264074.75329652947,"upper_bound":264254.2336746678,"unit":"ns"},"mean":{"estimate":264338.55115503387,"lower_bound":264121.5868459288,"upper_bound":264677.6513922896,"unit":"ns"},"median":{"estimate":264064.9608676208,"lower_bound":264009.0641025641,"upper_bound":264180.86160714284,"unit":"ns"},"median_abs_dev":{"estimate":261.30942406562906,"lower_bound":212.20169985028252,"upper_bound":363.88279002482676,"unit":"ns"},"slope":{"estimate":264157.15991650656,"lower_bound":264074.75329652947,"upper_bound":264254.2336746678,"unit":"ns"},"change":{"mean":{"estimate":0.0060312506695647805,"lower_bound":0.004859725523632514,"upper_bound":0.007449154110775102,"unit":"%"},"median":{"estimate":0.005862345134921343,"lower_bound":0.005513261441367767,"upper_bound":0.006421190460951021,"unit":"%"},"change":"NoChange"}} -{"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":[1234112.0,2371796.0,3589627.0,4747217.0,5934123.0,7118922.0,8334714.0,9495029.0,10681629.0,11892703.0,13078569.0,14243662.0,15452127.0,16614910.0,17825141.0,18985639.0,20198109.0,21427175.0,22597285.0,23760687.0,24917716.0,26164015.0,27317585.0,28597932.0,29753363.0,31011048.0,32203441.0,33280405.0,34439668.0,35627611.0,36814436.0,38045034.0,39214279.0,40398057.0,41614535.0,42741060.0,43975034.0,45142217.0,46302697.0,47517696.0,48676828.0,49967364.0,51048943.0,52236939.0,53542938.0,54656479.0,55848831.0,57128663.0,58286217.0,59441307.0,60570257.0,61878772.0,62989732.0,64130885.0,65319073.0,66579893.0,67719989.0,68847219.0,70110842.0,71251614.0,72498063.0,73652746.0,74976269.0,76670036.0,77269983.0,78389078.0,79695289.0,80881336.0,81976264.0,83240105.0,84330992.0,85541742.0,86788190.0,87879196.0,89249601.0,90358047.0,91440050.0,92677561.0,93974678.0,94979389.0,96400131.0,97398309.0,98584725.0,99781002.0,101022055.0,102352620.0,103615576.0,104530718.0,105978248.0,106899984.0,108168348.0,109269739.0,110817847.0,111549884.0,112893138.0,113945870.0,115179698.0,116273111.0,117492770.0,118643939.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":396158.1511363972,"lower_bound":396024.3922481754,"upper_bound":396311.5276188373,"unit":"ns"},"mean":{"estimate":396342.08647332614,"lower_bound":396102.50697714416,"upper_bound":396716.5746154315,"unit":"ns"},"median":{"estimate":396058.6676721971,"lower_bound":395956.35714285716,"upper_bound":396167.878083001,"unit":"ns"},"median_abs_dev":{"estimate":428.7302590551577,"lower_bound":307.1816019285063,"upper_bound":557.9684444530684,"unit":"ns"},"slope":{"estimate":396158.1511363972,"lower_bound":396024.3922481754,"upper_bound":396311.5276188373,"unit":"ns"},"change":{"mean":{"estimate":0.0069930591998619285,"lower_bound":0.005197658914473447,"upper_bound":0.008514065663297354,"unit":"%"},"median":{"estimate":0.008426042423344882,"lower_bound":0.007905600378574684,"upper_bound":0.008785274136209187,"unit":"%"},"change":"NoChange"}} -{"reason":"group-complete","group_name":"croo","benchmarks":["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":[5622,11244,16866,22488,28110,33732,39354,44976,50598,56220,61842,67464,73086,78708,84330,89952,95574,101196,106818,112440,118062,123684,129306,134928,140550,146172,151794,157416,163038,168660,174282,179904,185526,191148,196770,202392,208014,213636,219258,224880,230502,236124,241746,247368,252990,258612,264234,269856,275478,281100,286722,292344,297966,303588,309210,314832,320454,326076,331698,337320,342942,348564,354186,359808,365430,371052,376674,382296,387918,393540,399162,404784,410406,416028,421650,427272,432894,438516,444138,449760,455382,461004,466626,472248,477870,483492,489114,494736,500358,505980,511602,517224,522846,528468,534090,539712,545334,550956,556578,562200],"measured_values":[123014.0,240854.0,298655.0,473582.0,492300.0,681170.0,754181.0,1009517.0,1089792.0,1250291.0,1200374.0,1253745.0,1422124.0,1770090.0,1513641.0,1732207.0,1912790.0,2174325.0,1949980.0,2377726.0,2483728.0,2741663.0,2521682.0,2905012.0,2650363.0,3136885.0,3150328.0,3363369.0,2940246.0,3531295.0,3442367.0,3891327.0,3862969.0,4047362.0,3966732.0,4275930.0,4069077.0,4506182.0,4173071.0,4594480.0,4574959.0,4753521.0,4559280.0,4748099.0,4715956.0,5031730.0,4724468.0,5233071.0,5197883.0,5244722.0,5220623.0,5514888.0,5814322.0,5912429.0,5611083.0,6033004.0,5803555.0,7103432.0,6505235.0,7213288.0,6851524.0,6850676.0,7166033.0,6812536.0,7001723.0,6764893.0,7001093.0,7230741.0,7357393.0,7504914.0,7690664.0,8237162.0,7934669.0,8779232.0,8646796.0,9317295.0,9128589.0,8497988.0,8741571.0,8965044.0,9028528.0,9289358.0,9276383.0,9517047.0,9585011.0,10340822.0,10238599.0,10857259.0,10861215.0,10354841.0,9962509.0,10295253.0,9789216.0,9967646.0,10156845.0,10359897.0,10711452.0,11463354.0,11787454.0,11734509.0],"unit":"ns","throughput":[],"typical":{"estimate":19.950709468707267,"lower_bound":19.694910470254,"upper_bound":20.20700509716309,"unit":"ns"},"mean":{"estimate":19.97183179281178,"lower_bound":19.73742210107642,"upper_bound":20.210064586248606,"unit":"ns"},"median":{"estimate":19.83703970967928,"lower_bound":19.475173590524,"upper_bound":20.15475397176597,"unit":"ns"},"median_abs_dev":{"estimate":1.439543595656356,"lower_bound":0.9587564993333938,"upper_bound":1.6745528674926957,"unit":"ns"},"slope":{"estimate":19.950709468707267,"lower_bound":19.694910470254,"upper_bound":20.20700509716309,"unit":"ns"},"change":{"mean":{"estimate":0.06817489770695584,"lower_bound":0.050008396346723716,"upper_bound":0.08661634617935687,"unit":"%"},"median":{"estimate":0.07542526426635887,"lower_bound":0.05129456296219437,"upper_bound":0.09979791929021276,"unit":"%"},"change":"Regressed"}} -{"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":[5201,10402,15603,20804,26005,31206,36407,41608,46809,52010,57211,62412,67613,72814,78015,83216,88417,93618,98819,104020,109221,114422,119623,124824,130025,135226,140427,145628,150829,156030,161231,166432,171633,176834,182035,187236,192437,197638,202839,208040,213241,218442,223643,228844,234045,239246,244447,249648,254849,260050,265251,270452,275653,280854,286055,291256,296457,301658,306859,312060,317261,322462,327663,332864,338065,343266,348467,353668,358869,364070,369271,374472,379673,384874,390075,395276,400477,405678,410879,416080,421281,426482,431683,436884,442085,447286,452487,457688,462889,468090,473291,478492,483693,488894,494095,499296,504497,509698,514899,520100],"measured_values":[120198.0,252384.0,385212.0,448213.0,561429.0,713246.0,788310.0,910642.0,1056855.0,1198858.0,1276573.0,1349237.0,1470961.0,1611898.0,1771612.0,1822995.0,2056150.0,2103021.0,2080510.0,2178252.0,2517167.0,2638677.0,2633140.0,2781516.0,2935789.0,2945837.0,3175363.0,3098703.0,3293363.0,3505252.0,3540441.0,3696486.0,3803390.0,3964318.0,3858448.0,4128397.0,4514898.0,4555281.0,4317316.0,4534410.0,4676549.0,4873264.0,5030094.0,5136918.0,5223227.0,5161604.0,5497860.0,5510982.0,5851143.0,5759410.0,6101029.0,5823739.0,6325319.0,6474143.0,6649877.0,6225618.0,6466077.0,6723129.0,6673350.0,6963195.0,7248363.0,7613812.0,7610573.0,7219066.0,7350894.0,7633990.0,8584234.0,7998824.0,8494530.0,8226964.0,8135848.0,8167738.0,8325588.0,8681782.0,8557582.0,8412873.0,8926149.0,8880139.0,9370896.0,9069443.0,9736417.0,9527429.0,9584161.0,9759808.0,10096815.0,10160008.0,10092856.0,10084501.0,10126408.0,10294171.0,10253042.0,10491664.0,10889477.0,10518988.0,10911284.0,11301794.0,11894032.0,11560987.0,11807415.0,11131971.0],"unit":"ns","throughput":[],"typical":{"estimate":22.33592604234553,"lower_bound":22.176162102896274,"upper_bound":22.50305263345529,"unit":"ns"},"mean":{"estimate":22.338626373140524,"lower_bound":22.201232137292486,"upper_bound":22.480988253212345,"unit":"ns"},"median":{"estimate":22.288024440337658,"lower_bound":22.066267592489524,"upper_bound":22.447247906871056,"unit":"ns"},"median_abs_dev":{"estimate":0.6891315231415764,"lower_bound":0.5180202534701706,"upper_bound":0.8295828291070303,"unit":"ns"},"slope":{"estimate":22.33592604234553,"lower_bound":22.176162102896274,"upper_bound":22.50305263345529,"unit":"ns"},"change":{"mean":{"estimate":0.06431794984118366,"lower_bound":0.053805523776703404,"upper_bound":0.07488248438855744,"unit":"%"},"median":{"estimate":0.07430200321437508,"lower_bound":0.06260700416687959,"upper_bound":0.08305446878089096,"unit":"%"},"change":"Regressed"}} -{"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":[430773.0,359802.0,360613.0,358072.0,360063.0,358131.0,356641.0,357975.0,355817.0,356477.0,347249.0,356403.0,357000.0,355941.0,360066.0,349868.0,357674.0,348147.0,391214.0,350549.0,358754.0,358971.0,348588.0,351125.0,358456.0,358446.0,357232.0,358590.0,357099.0,350399.0,357759.0,356547.0,358403.0,347547.0,349331.0,348061.0,356518.0,356766.0,354839.0,346889.0,356909.0,356864.0,360211.0,358509.0,350773.0,357835.0,356699.0,358387.0,357212.0,357576.0,356732.0,355997.0,358891.0,358516.0,416158.0,350524.0,358175.0,357580.0,347833.0,350026.0,348181.0,356945.0,358811.0,355040.0,356042.0,355940.0,355794.0,346818.0,355309.0,356284.0,345693.0,355007.0,344578.0,356652.0,355549.0,355024.0,358414.0,354750.0,347496.0,357059.0,345759.0,359489.0,358641.0,358031.0,360834.0,358671.0,356068.0,347963.0,356606.0,346213.0,348339.0,354877.0,346475.0,345874.0,355710.0,354391.0,354455.0,355358.0,347118.0,355074.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":356415.34,"lower_bound":354489.71325,"upper_bound":358830.09925,"unit":"ns"},"mean":{"estimate":356415.34,"lower_bound":354489.71325,"upper_bound":358830.09925,"unit":"ns"},"median":{"estimate":356497.5,"lower_bound":355763.5,"upper_bound":356909.0,"unit":"ns"},"median_abs_dev":{"estimate":2865.124449133873,"lower_bound":2245.397660136223,"upper_bound":4189.827525615692,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.014244455972615588,"lower_bound":0.0063515425461148165,"upper_bound":0.02223012815585232,"unit":"%"},"median":{"estimate":0.014272464229929893,"lower_bound":0.011127605923926476,"upper_bound":0.017446952988807052,"unit":"%"},"change":"NoChange"}} -{"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":[398409.0,355492.0,354306.0,355042.0,345530.0,354700.0,343820.0,354054.0,354819.0,354324.0,355615.0,425410.0,360216.0,357880.0,358403.0,357746.0,348842.0,348452.0,355736.0,362612.0,345930.0,356020.0,359429.0,355364.0,345601.0,347289.0,356670.0,356574.0,354490.0,357555.0,356417.0,356474.0,355920.0,354939.0,356065.0,347673.0,356044.0,357617.0,356444.0,425931.0,353643.0,358643.0,346740.0,358440.0,354853.0,355829.0,353586.0,355636.0,346151.0,381267.0,347694.0,357275.0,355817.0,347628.0,349873.0,356665.0,356678.0,357244.0,355060.0,349163.0,359734.0,355955.0,356879.0,356690.0,348945.0,348247.0,347061.0,356600.0,349589.0,356444.0,348087.0,354001.0,356192.0,356331.0,346604.0,356844.0,355563.0,356008.0,354871.0,348591.0,358576.0,356569.0,356850.0,359151.0,355536.0,349179.0,348246.0,356786.0,356235.0,348104.0,356042.0,355754.0,357265.0,350490.0,356981.0,357715.0,358457.0,359707.0,347890.0,359695.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":356322.03,"lower_bound":354255.33875000005,"upper_bound":358904.29325000005,"unit":"ns"},"mean":{"estimate":356322.03,"lower_bound":354255.33875000005,"upper_bound":358904.29325000005,"unit":"ns"},"median":{"estimate":355874.5,"lower_bound":355276.0,"upper_bound":356331.0,"unit":"ns"},"median_abs_dev":{"estimate":2537.469854950905,"lower_bound":1638.2729709148407,"upper_bound":4069.7369277477264,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.016038703463072013,"lower_bound":0.007760739657816857,"upper_bound":0.025950400932206224,"unit":"%"},"median":{"estimate":0.015478670281067197,"lower_bound":0.011130518752041407,"upper_bound":0.01869521238316385,"unit":"%"},"change":"NoChange"}} -{"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":[411238.0,356307.0,358075.0,357788.0,355442.0,357524.0,354472.0,344323.0,357947.0,356635.0,351169.0,356465.0,346689.0,356739.0,344867.0,347204.0,352273.0,356530.0,345186.0,355001.0,354767.0,345803.0,356026.0,368382.0,353046.0,350656.0,357084.0,347387.0,343905.0,353932.0,353162.0,346296.0,356132.0,345359.0,354718.0,345121.0,356352.0,355697.0,353673.0,355287.0,357952.0,357281.0,351745.0,355980.0,356713.0,347305.0,355035.0,349888.0,356311.0,355622.0,354985.0,346672.0,355472.0,345581.0,357263.0,356320.0,354146.0,348234.0,355460.0,345982.0,347047.0,346436.0,345287.0,344723.0,355254.0,360273.0,361210.0,350649.0,349635.0,358823.0,357327.0,351255.0,358566.0,347944.0,358461.0,357494.0,356650.0,359205.0,358321.0,359489.0,356575.0,356063.0,348746.0,361163.0,351700.0,358599.0,356131.0,357098.0,357170.0,350151.0,359394.0,348993.0,358777.0,358285.0,358575.0,356084.0,357033.0,360592.0,358127.0,349508.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":354414.19,"lower_bound":353078.00825,"upper_bound":356044.89300000004,"unit":"ns"},"mean":{"estimate":354414.19,"lower_bound":353078.00825,"upper_bound":356044.89300000004,"unit":"ns"},"median":{"estimate":355547.0,"lower_bound":354619.5,"upper_bound":356313.5,"unit":"ns"},"median_abs_dev":{"estimate":4086.045527458191,"lower_bound":2662.0082527399063,"upper_bound":5661.307999491692,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.01028994987321008,"lower_bound":0.003688875467926245,"upper_bound":0.01648739633482281,"unit":"%"},"median":{"estimate":0.0122637117977904,"lower_bound":0.008665535945953318,"upper_bound":0.015045623687379413,"unit":"%"},"change":"NoChange"}} -{"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":[400887.0,360586.0,361969.0,360553.0,359855.0,361852.0,361835.0,359995.0,355989.0,359811.0,362537.0,361268.0,360034.0,358236.0,358271.0,363873.0,360084.0,360490.0,360051.0,349930.0,360893.0,359267.0,363258.0,359125.0,361684.0,360077.0,356108.0,359862.0,362211.0,362252.0,358520.0,359502.0,349245.0,357934.0,362099.0,347771.0,358717.0,361862.0,359262.0,362991.0,361271.0,359423.0,351277.0,352797.0,360642.0,359807.0,359618.0,359681.0,364060.0,359599.0,359406.0,362100.0,361594.0,360526.0,357339.0,359486.0,357220.0,357750.0,356690.0,346805.0,356116.0,349635.0,357878.0,361623.0,359947.0,355459.0,360510.0,359302.0,360296.0,358981.0,359129.0,349513.0,357312.0,350226.0,356715.0,357715.0,357810.0,360109.0,350124.0,348968.0,351653.0,361277.0,360513.0,358552.0,357491.0,358434.0,359526.0,358752.0,363101.0,348964.0,359158.0,359629.0,360799.0,355942.0,359526.0,360843.0,350089.0,351137.0,357661.0,359851.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":358681.03,"lower_bound":357627.749,"upper_bound":359913.27575000003,"unit":"ns"},"mean":{"estimate":358681.03,"lower_bound":357627.749,"upper_bound":359913.27575000003,"unit":"ns"},"median":{"estimate":359514.0,"lower_bound":359069.5,"upper_bound":359856.5,"unit":"ns"},"median_abs_dev":{"estimate":2563.41535449028,"lower_bound":1613.0687713623047,"upper_bound":3175.7291436195374,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.003457172521623475,"lower_bound":-0.00287965164958274,"upper_bound":0.009609940049728784,"unit":"%"},"median":{"estimate":0.005691235441472875,"lower_bound":0.0033813711599779417,"upper_bound":0.008134410447917961,"unit":"%"},"change":"NoChange"}} -{"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":[428497.0,381520.0,388766.0,390644.0,389125.0,390809.0,390941.0,380040.0,383097.0,388938.0,389914.0,390466.0,391603.0,381503.0,393903.0,392715.0,387410.0,392312.0,392287.0,385072.0,382562.0,381945.0,417409.0,392710.0,391076.0,412234.0,389584.0,388422.0,389239.0,390584.0,390483.0,385857.0,390313.0,389006.0,390952.0,389709.0,381327.0,391174.0,382083.0,381429.0,391101.0,389295.0,388955.0,383973.0,389591.0,390702.0,390730.0,391342.0,411014.0,389536.0,381088.0,393529.0,390508.0,390553.0,391337.0,380916.0,390768.0,381748.0,390116.0,390443.0,382147.0,389615.0,391293.0,392441.0,391912.0,391108.0,391517.0,390646.0,389346.0,389341.0,388983.0,389035.0,389486.0,382628.0,416382.0,390246.0,391049.0,391750.0,382808.0,382413.0,390930.0,383002.0,382900.0,390830.0,381496.0,381121.0,390006.0,390140.0,391037.0,384112.0,389494.0,383447.0,380790.0,380649.0,417431.0,389865.0,378708.0,411842.0,390975.0,390551.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":389983.77,"lower_bound":388428.03949999996,"upper_bound":391705.72225,"unit":"ns"},"mean":{"estimate":389983.77,"lower_bound":388428.03949999996,"upper_bound":391705.72225,"unit":"ns"},"median":{"estimate":389960.0,"lower_bound":389346.0,"upper_bound":390551.0,"unit":"ns"},"median_abs_dev":{"estimate":2008.922964334488,"lower_bound":1469.2565739154816,"upper_bound":4035.637128353119,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.000976737282183393,"lower_bound":-0.007655744810365127,"upper_bound":0.008727828101119032,"unit":"%"},"median":{"estimate":0.004134109428370225,"lower_bound":0.0007371676324332554,"upper_bound":0.007092054546163634,"unit":"%"},"change":"NoChange"}} -{"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":[475627.0,430101.0,419654.0,427112.0,418790.0,425518.0,418142.0,426958.0,426661.0,429112.0,426128.0,426069.0,416971.0,417522.0,418043.0,427661.0,420034.0,426485.0,426644.0,417325.0,425895.0,422796.0,429448.0,426406.0,427711.0,426172.0,427072.0,452344.0,426907.0,418555.0,426957.0,428129.0,427166.0,427315.0,426988.0,430148.0,426605.0,417736.0,422585.0,426018.0,418375.0,426592.0,426771.0,417421.0,426312.0,426829.0,431366.0,426509.0,429169.0,427096.0,428530.0,427313.0,419914.0,415632.0,448442.0,417095.0,420691.0,426973.0,426402.0,420032.0,420009.0,419687.0,432506.0,417775.0,427126.0,427592.0,417620.0,431475.0,425881.0,419930.0,448048.0,416341.0,424584.0,416267.0,415957.0,426830.0,417411.0,426351.0,428252.0,424875.0,425810.0,426053.0,425418.0,426659.0,425278.0,424810.0,417892.0,418881.0,418545.0,420817.0,417501.0,422354.0,417127.0,427354.0,426403.0,426563.0,429606.0,430843.0,426774.0,425664.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":425358.43,"lower_bound":423923.5595,"upper_bound":427030.63300000003,"unit":"ns"},"mean":{"estimate":425358.43,"lower_bound":423923.5595,"upper_bound":427030.63300000003,"unit":"ns"},"median":{"estimate":426242.0,"lower_bound":425518.0,"upper_bound":426611.0,"unit":"ns"},"median_abs_dev":{"estimate":3186.1073434352875,"lower_bound":1537.4561727046967,"upper_bound":6608.68938267231,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0009970572800753752,"lower_bound":-0.009880799670048077,"upper_bound":0.0064356033700892525,"unit":"%"},"median":{"estimate":0.0028798780286951597,"lower_bound":0.0008997131502779254,"upper_bound":0.004759980823437759,"unit":"%"},"change":"NoChange"}} -{"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":[586673.0,467145.0,456743.0,483782.0,459139.0,467428.0,468362.0,464677.0,465651.0,464774.0,457310.0,518889.0,467340.0,465610.0,458487.0,467031.0,459748.0,466663.0,467159.0,466438.0,458288.0,457221.0,456622.0,465346.0,469351.0,468309.0,456807.0,465056.0,465381.0,466953.0,467110.0,466683.0,457476.0,456904.0,465209.0,455867.0,464941.0,468266.0,463325.0,465441.0,467528.0,466313.0,466574.0,456503.0,456441.0,466919.0,457394.0,456202.0,492606.0,455731.0,455107.0,466116.0,466052.0,467160.0,468310.0,464853.0,464809.0,465453.0,465316.0,468063.0,465240.0,457073.0,464226.0,461109.0,456617.0,456375.0,465161.0,466132.0,465062.0,460557.0,468020.0,466817.0,463417.0,460798.0,463338.0,465499.0,455484.0,463970.0,466261.0,462482.0,462333.0,466871.0,465057.0,459247.0,455411.0,454608.0,465502.0,456435.0,465966.0,465706.0,455191.0,469332.0,466786.0,456074.0,466200.0,463458.0,464183.0,463363.0,465135.0,465798.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":465393.49,"lower_bound":463067.53725,"upper_bound":468598.60099999997,"unit":"ns"},"mean":{"estimate":465393.49,"lower_bound":463067.53725,"upper_bound":468598.60099999997,"unit":"ns"},"median":{"estimate":465148.0,"lower_bound":464226.0,"upper_bound":465554.5,"unit":"ns"},"median_abs_dev":{"estimate":2971.130347251892,"lower_bound":2286.169159412384,"upper_bound":5007.481411099434,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0004129394368317385,"lower_bound":-0.0072715494640284775,"upper_bound":0.008421412278275952,"unit":"%"},"median":{"estimate":0.00138642508998843,"lower_bound":-0.0005953156303186713,"upper_bound":0.002811326007032533,"unit":"%"},"change":"NoChange"}} -{"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":[593616.0,514767.0,523975.0,521748.0,519566.0,521311.0,521202.0,524568.0,522507.0,522150.0,521382.0,520827.0,524710.0,522682.0,512226.0,513000.0,521083.0,528461.0,522226.0,547871.0,522170.0,519237.0,575051.0,512383.0,520579.0,511142.0,521164.0,520376.0,520615.0,520126.0,519036.0,520672.0,519694.0,519160.0,521301.0,518005.0,518908.0,524600.0,521924.0,509995.0,510275.0,511407.0,563024.0,520576.0,521471.0,513709.0,528364.0,523835.0,511497.0,519488.0,519111.0,512032.0,521459.0,520353.0,521330.0,522678.0,522314.0,512822.0,514564.0,513259.0,514518.0,512812.0,549067.0,520208.0,519843.0,519485.0,521388.0,550119.0,522969.0,520260.0,521306.0,520352.0,524872.0,511816.0,522700.0,519855.0,521673.0,513485.0,512895.0,520686.0,514174.0,513518.0,517756.0,520583.0,511033.0,512066.0,520839.0,521833.0,521948.0,520645.0,521733.0,521713.0,514114.0,513937.0,521951.0,520759.0,514094.0,512679.0,522448.0,512068.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":521497.84,"lower_bound":519370.73699999996,"upper_bound":524058.76475000003,"unit":"ns"},"mean":{"estimate":521497.84,"lower_bound":519370.73699999996,"upper_bound":524058.76475000003,"unit":"ns"},"median":{"estimate":520599.0,"lower_bound":519855.0,"upper_bound":521202.0,"unit":"ns"},"median_abs_dev":{"estimate":2641.9931530952454,"lower_bound":1942.2059655189514,"upper_bound":5576.058501005173,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.004680965753819377,"lower_bound":-0.0008162857226786024,"upper_bound":0.010782647754022403,"unit":"%"},"median":{"estimate":0.004177006308427211,"lower_bound":0.001877917995654732,"upper_bound":0.0057281129066337755,"unit":"%"},"change":"NoChange"}} -{"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":[802074.0,600715.0,636843.0,606348.0,606721.0,596119.0,605490.0,618182.0,606278.0,604681.0,630565.0,603971.0,608682.0,607551.0,604972.0,605438.0,605011.0,607959.0,604856.0,608909.0,603552.0,603889.0,605094.0,605325.0,607968.0,606490.0,595817.0,606529.0,595865.0,628962.0,596694.0,594816.0,605952.0,605004.0,607556.0,605420.0,605261.0,604733.0,603805.0,607597.0,605433.0,605410.0,604938.0,606768.0,608497.0,605680.0,598741.0,606674.0,596109.0,599606.0,596555.0,596110.0,606423.0,606864.0,610607.0,605850.0,596954.0,605672.0,605873.0,607873.0,606013.0,605983.0,604172.0,605418.0,604836.0,607084.0,607721.0,607018.0,605009.0,608088.0,605690.0,607987.0,597755.0,604955.0,608741.0,606258.0,604268.0,607223.0,607022.0,599709.0,596887.0,606571.0,605365.0,606475.0,611225.0,606054.0,607247.0,605112.0,604565.0,609056.0,597964.0,604339.0,603844.0,605945.0,628924.0,597490.0,624199.0,598082.0,607103.0,607718.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":607894.46,"lower_bound":604935.31375,"upper_bound":612628.5565000001,"unit":"ns"},"mean":{"estimate":607894.46,"lower_bound":604935.31375,"upper_bound":612628.5565000001,"unit":"ns"},"median":{"estimate":605685.0,"lower_bound":605313.0,"upper_bound":606303.0,"unit":"ns"},"median_abs_dev":{"estimate":2172.750261425972,"lower_bound":1581.192871928215,"upper_bound":2959.2695474624634,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.006793191531703879,"lower_bound":0.0006589014728510949,"upper_bound":0.015294173784514692,"unit":"%"},"median":{"estimate":0.001258009270586058,"lower_bound":-0.0009842714576128175,"upper_bound":0.004022934704356551,"unit":"%"},"change":"NoChange"}} -{"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":[784330.0,740624.0,735069.0,734377.0,734177.0,735095.0,733489.0,735587.0,726331.0,734122.0,737498.0,724810.0,743063.0,739010.0,738988.0,738457.0,736037.0,734859.0,739849.0,728865.0,737899.0,736488.0,726524.0,731261.0,728657.0,729553.0,736322.0,736876.0,736137.0,735702.0,734616.0,735288.0,738117.0,736285.0,736610.0,726479.0,736538.0,732338.0,737293.0,727805.0,736467.0,739842.0,737937.0,730745.0,727089.0,734976.0,726531.0,727901.0,736973.0,726846.0,763874.0,737433.0,731320.0,726660.0,726924.0,727020.0,767241.0,735779.0,735385.0,738639.0,737933.0,739220.0,734227.0,738540.0,734788.0,740144.0,736375.0,737155.0,737293.0,735089.0,736360.0,729158.0,736958.0,736319.0,739134.0,734446.0,730872.0,728080.0,732272.0,736651.0,737189.0,728852.0,728313.0,735869.0,735995.0,739856.0,736477.0,729377.0,737267.0,726980.0,726755.0,726394.0,735261.0,735076.0,766418.0,736016.0,732202.0,729329.0,728893.0,736567.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":735471.07,"lower_bound":733941.5252500001,"upper_bound":737262.25525,"unit":"ns"},"mean":{"estimate":735471.07,"lower_bound":733941.5252500001,"upper_bound":737262.25525,"unit":"ns"},"median":{"estimate":735644.5,"lower_bound":734859.0,"upper_bound":736339.5,"unit":"ns"},"median_abs_dev":{"estimate":3532.294437289238,"lower_bound":2262.4475598335266,"upper_bound":5684.28829908371,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.007668128607898561,"lower_bound":0.004269593442819953,"upper_bound":0.011315919637290017,"unit":"%"},"median":{"estimate":0.009741300327020586,"lower_bound":0.0075314968434292496,"upper_bound":0.010895201841463248,"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":[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":[939581.0,1743308.0,2638213.0,3511968.0,4471758.0,5508986.0,6391913.0,7349084.0,7986035.0,9015127.0,10052010.0,11052850.0,11466345.0,12901665.0,13609374.0,14773027.0,15203586.0,16277420.0,17305501.0,17844312.0,18412782.0,19957053.0,20798000.0,22011416.0,22879136.0,23644129.0,24283915.0,25692120.0,26220402.0,26967398.0,28223222.0,29194601.0,30105714.0,31228212.0,31746462.0,32248958.0,33319286.0,33953210.0,35291443.0,36469722.0,36601414.0,38699443.0,39434623.0,40371549.0,41963805.0,41050428.0,43755831.0,43612557.0,43681831.0,45646400.0,45268254.0,47170935.0,48246017.0,48368777.0,50083989.0,51107265.0,51868475.0,53087596.0,53177143.0,55186997.0,54187284.0,56104642.0,57073307.0,57868898.0,58518452.0,59171539.0,60459758.0,60875923.0,62757430.0,63480475.0,63773280.0,65881220.0,65872489.0,67097876.0,67900482.0,69091701.0,69592673.0,70523070.0,70757881.0,72596664.0,73605793.0,73669111.0,75312545.0,75155882.0,75988022.0,77609398.0,78119181.0,80250091.0,80121124.0,82561888.0,81841549.0,83004294.0,84708339.0,85599438.0,86051296.0,86647688.0,86810533.0,86915520.0,89812028.0,90782774.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":3349.2224954873595,"lower_bound":3341.888937761188,"upper_bound":3356.5104859360567,"unit":"ns"},"mean":{"estimate":3351.8856191256205,"lower_bound":3343.405871277051,"upper_bound":3360.3719828142853,"unit":"ns"},"median":{"estimate":3355.053006899966,"lower_bound":3345.781493352327,"upper_bound":3361.4959263721553,"unit":"ns"},"median_abs_dev":{"estimate":37.659317322154415,"lower_bound":28.455637407302056,"upper_bound":50.23706559504052,"unit":"ns"},"slope":{"estimate":3349.2224954873595,"lower_bound":3341.888937761188,"upper_bound":3356.5104859360567,"unit":"ns"},"change":{"mean":{"estimate":-0.01595659718090625,"lower_bound":-0.01892396644914076,"upper_bound":-0.01302988312414989,"unit":"%"},"median":{"estimate":-0.015278537925558444,"lower_bound":-0.018424147276914767,"upper_bound":-0.012632051046879221,"unit":"%"},"change":"Improved"}} -{"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":[1020530.0,2037978.0,3055869.0,4079974.0,5096828.0,6131360.0,7145569.0,7662320.0,8635240.0,9800613.0,10829650.0,11818499.0,12683816.0,13880627.0,14687148.0,15750169.0,16765091.0,17664823.0,18876694.0,19497952.0,20340278.0,21817719.0,22418602.0,23594795.0,24805182.0,25684434.0,26673774.0,27748317.0,28782005.0,29781232.0,30634891.0,31673497.0,32543280.0,33558432.0,34665624.0,35724746.0,36748667.0,37130479.0,38437414.0,39068567.0,39650871.0,40934229.0,42370536.0,43458838.0,44585696.0,45013963.0,46155399.0,47218491.0,47703305.0,48916097.0,50427356.0,51293833.0,51887425.0,52745622.0,54209086.0,54683799.0,56121103.0,57083537.0,57724941.0,59105686.0,59946178.0,60978337.0,61740120.0,63213692.0,64175675.0,65073905.0,65587606.0,66767446.0,68221513.0,69213584.0,70186050.0,71096698.0,72290431.0,71808442.0,74003409.0,74960102.0,76313597.0,77152032.0,77005788.0,78938418.0,79923952.0,80916525.0,81847864.0,83019822.0,83685236.0,84717256.0,86078395.0,86704059.0,87642902.0,88218666.0,89513718.0,90241897.0,91538408.0,92432477.0,93580355.0,94593057.0,94763455.0,96405098.0,96575805.0,99048859.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":31745.435483108253,"lower_bound":31705.310575554435,"upper_bound":31782.893657694847,"unit":"ns"},"mean":{"estimate":31810.623607504138,"lower_bound":31740.905049757333,"upper_bound":31884.50981894741,"unit":"ns"},"median":{"estimate":31785.574936702928,"lower_bound":31756.73791508539,"upper_bound":31829.42322580645,"unit":"ns"},"median_abs_dev":{"estimate":191.96760714065115,"lower_bound":126.70716648404915,"upper_bound":266.41589625669764,"unit":"ns"},"slope":{"estimate":31745.435483108253,"lower_bound":31705.310575554435,"upper_bound":31782.893657694847,"unit":"ns"},"change":{"mean":{"estimate":-0.02866512330384019,"lower_bound":-0.031406163470090655,"upper_bound":-0.025798058065937154,"unit":"%"},"median":{"estimate":-0.028920908958110725,"lower_bound":-0.03154192592203586,"upper_bound":-0.027228641344510418,"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":[1245640.0,2421600.0,3761418.0,4899724.0,6181715.0,7477311.0,8795860.0,10034952.0,11138462.0,12569602.0,13842439.0,15002051.0,16289513.0,17324902.0,18783638.0,19912812.0,21341854.0,22190135.0,23607470.0,24918033.0,25940553.0,27289210.0,28110753.0,30074565.0,31103695.0,32334113.0,33705733.0,34961247.0,36412569.0,37213724.0,38746627.0,39720228.0,40986260.0,42419770.0,43289220.0,44734081.0,46240434.0,47555854.0,48445343.0,50023244.0,50809930.0,52282412.0,54002639.0,55294479.0,56033045.0,57543090.0,59215702.0,59878022.0,61409628.0,62515151.0,63611343.0,64959086.0,66467013.0,67270766.0,68966673.0,68783232.0,70929715.0,72224283.0,73913500.0,73733456.0,75906423.0,77139921.0,78090542.0,79790637.0,81002918.0,82158801.0,83221258.0,84789226.0,86399517.0,87153316.0,87652632.0,89415968.0,90795730.0,92189058.0,93384806.0,94960073.0,96062242.0,96255301.0,98151991.0,99808598.0,101165549.0,102613828.0,102608049.0,104642641.0,106169225.0,107692362.0,108622641.0,108525833.0,111183212.0,111844222.0,112419839.0,113667539.0,115956457.0,116186708.0,117763192.0,119808586.0,121014591.0,122344092.0,122778998.0,124558021.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":311138.7255386434,"lower_bound":310756.1476376236,"upper_bound":311515.6805258067,"unit":"ns"},"mean":{"estimate":311250.31449061097,"lower_bound":310842.0849630334,"upper_bound":311630.5387246771,"unit":"ns"},"median":{"estimate":311444.1258758759,"lower_bound":311172.6335227273,"upper_bound":311890.3961038961,"unit":"ns"},"median_abs_dev":{"estimate":1576.949524034836,"lower_bound":1199.6103454707168,"upper_bound":2141.9211499255994,"unit":"ns"},"slope":{"estimate":311138.7255386434,"lower_bound":310756.1476376236,"upper_bound":311515.6805258067,"unit":"ns"},"change":{"mean":{"estimate":-0.03953244787225152,"lower_bound":-0.04163315027400037,"upper_bound":-0.037701347457017996,"unit":"%"},"median":{"estimate":-0.03856254099256906,"lower_bound":-0.040089425407149104,"upper_bound":-0.03662134917148796,"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":[51061850.0,50561258.0,50779844.0,50882118.0,51050803.0,50720618.0,49934235.0,49894456.0,51149924.0,50918271.0,50727492.0,50856505.0,50123279.0,50711286.0,50348929.0,50943626.0,50777120.0,50712327.0,50686525.0,50814935.0,50240295.0,50250884.0,50848490.0,50975970.0,49975946.0,50937663.0,50953394.0,50733870.0,50688826.0,50786936.0,50960264.0,50939921.0,50419171.0,50728494.0,50844596.0,50862384.0,50517677.0,50760064.0,50963005.0,50876559.0,50871561.0,50432235.0,50458593.0,50796945.0,50268592.0,50889513.0,50930595.0,50708322.0,49873326.0,50569951.0,50975723.0,50830038.0,50146302.0,50456827.0,51052747.0,51030307.0,50601724.0,50953489.0,49681980.0,50987003.0,58869610.0,51712992.0,51117072.0,50854913.0,50875825.0,50920779.0,51059123.0,50880674.0,50375338.0,50802771.0,50592881.0,50169648.0,50998318.0,50685153.0,51118883.0,51028279.0,50779300.0,50110197.0,50828461.0,51005187.0,50532522.0,50661799.0,51049271.0,51127013.0,51197513.0,50863310.0,51096253.0,50917872.0,51004600.0,50605635.0,51129903.0,51188771.0,51048425.0,50375902.0,50918901.0,50917042.0,51005030.0,50585390.0,50698964.0,50516501.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":3176663.5025,"lower_bound":3168436.4259843747,"upper_bound":3189180.419671875,"unit":"ns"},"mean":{"estimate":3176663.5025,"lower_bound":3168436.4259843747,"upper_bound":3189180.419671875,"unit":"ns"},"median":{"estimate":3177332.3125,"lower_bound":3172218.4375,"upper_bound":3180042.125,"unit":"ns"},"median_abs_dev":{"estimate":15209.807804971933,"lower_bound":11884.521389007568,"upper_bound":20916.70575365424,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.031800243019079466,"lower_bound":-0.03495429871040927,"upper_bound":-0.027380501211541976,"unit":"%"},"median":{"estimate":-0.03340696357139916,"lower_bound":-0.035885155836220095,"upper_bound":-0.03014837260976333,"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":[63752140.0,63875133.0,63743757.0,63948452.0,63831071.0,63439314.0,62636381.0,63794738.0,64087582.0,63737500.0,63877884.0,64009849.0,63734287.0,63852783.0,63765099.0,63314243.0,63936786.0,64185262.0,62102139.0,63902839.0,63788511.0,63238963.0,63523104.0,63789560.0,63811013.0,63510760.0,63778179.0,63803630.0,63769410.0,63283735.0,63871067.0,63719547.0,64033639.0,64051903.0,64153952.0,63350216.0,63827674.0,62944466.0,62631341.0,63613504.0,64019247.0,63996366.0,62962007.0,64009557.0,63844668.0,63074113.0,63682685.0,63800485.0,63810966.0,63649827.0,63696107.0,63615071.0,64041170.0,64183043.0,63874989.0,63976300.0,63736761.0,63320159.0,63941997.0,63943873.0,63800504.0,63696851.0,64337001.0,64188529.0,63313291.0,63999612.0,63967066.0,64164838.0,63494758.0,62942579.0,63160091.0,63128173.0,62911147.0,63645128.0,63566703.0,63483692.0,63086457.0,63415550.0,63993449.0,63707286.0,63650422.0,64132504.0,63494749.0,63741805.0,63840256.0,64133032.0,63907496.0,62802960.0,63946937.0,67636387.0,63041307.0,63938412.0,63093955.0,63375994.0,62992516.0,63765218.0,63225868.0,63857952.0,63951933.0,63715319.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":31847242.655,"lower_bound":31795833.15725,"upper_bound":31906261.2555,"unit":"ns"},"mean":{"estimate":31847242.655,"lower_bound":31795833.15725,"upper_bound":31906261.2555,"unit":"ns"},"median":{"estimate":31883657.0,"lower_bound":31856708.25,"upper_bound":31909660.0,"unit":"ns"},"median_abs_dev":{"estimate":151817.12535470724,"lower_bound":108350.62997639179,"upper_bound":199736.2391039729,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.032728848711997216,"lower_bound":-0.03470141292780077,"upper_bound":-0.030575133006489296,"unit":"%"},"median":{"estimate":-0.032000707092775804,"lower_bound":-0.03338179501983523,"upper_bound":-0.030203290149568573,"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":[321219516.0,323627991.0,321405336.0,320966118.0,323357352.0,324199249.0,323731982.0,322056485.0,321273532.0,320453813.0,323286799.0,321896979.0,322429775.0,322024252.0,322353338.0,322274423.0,319938889.0,323470730.0,320714342.0,323127126.0,322812175.0,320757705.0,323035597.0,321300643.0,326899025.0,319896019.0,324573089.0,321755239.0,320414732.0,320317119.0,321643287.0,321963356.0,320039094.0,320725125.0,321079479.0,322578024.0,324624852.0,323631346.0,321009743.0,324120764.0,321799557.0,320235837.0,321333327.0,320006474.0,323484577.0,321575063.0,320764118.0,323210561.0,322441237.0,322529901.0,322079091.0,322351548.0,320653811.0,320878249.0,320894539.0,324215494.0,321782560.0,323863092.0,322016400.0,320554649.0,323208817.0,321084977.0,322098360.0,321743364.0,320392531.0,323512318.0,324886535.0,321644586.0,322349382.0,322255490.0,322656268.0,322980117.0,324565313.0,321371596.0,325582812.0,322659468.0,322001366.0,322668274.0,323504569.0,322212113.0,322968669.0,323411252.0,322542908.0,319527049.0,322503212.0,322541226.0,325363454.0,319649008.0,320736709.0,321395503.0,321052513.0,326040282.0,323809938.0,322974730.0,322782054.0,322448915.0,322990146.0,321933343.0,322801402.0,324012634.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":322285177.28,"lower_bound":322003940.95625,"upper_bound":322573344.11125,"unit":"ns"},"mean":{"estimate":322285177.28,"lower_bound":322003940.95625,"upper_bound":322573344.11125,"unit":"ns"},"median":{"estimate":322264956.5,"lower_bound":321933343.0,"upper_bound":322541226.0,"unit":"ns"},"median_abs_dev":{"estimate":1492434.8006039858,"lower_bound":1120498.6517071724,"upper_bound":1834287.4763698874,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.027892840010927733,"lower_bound":-0.0290675884033886,"upper_bound":-0.026705527613082335,"unit":"%"},"median":{"estimate":-0.027494563992180532,"lower_bound":-0.029285426701793127,"upper_bound":-0.02648410732442219,"unit":"%"},"change":"Improved"}} -{"reason":"group-complete","group_name":"srwq","benchmarks":["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":[1201,2402,3603,4804,6005,7206,8407,9608,10809,12010,13211,14412,15613,16814,18015,19216,20417,21618,22819,24020,25221,26422,27623,28824,30025,31226,32427,33628,34829,36030,37231,38432,39633,40834,42035,43236,44437,45638,46839,48040,49241,50442,51643,52844,54045,55246,56447,57648,58849,60050,61251,62452,63653,64854,66055,67256,68457,69658,70859,72060,73261,74462,75663,76864,78065,79266,80467,81668,82869,84070,85271,86472,87673,88874,90075,91276,92477,93678,94879,96080,97281,98482,99683,100884,102085,103286,104487,105688,106889,108090,109291,110492,111693,112894,114095,115296,116497,117698,118899,120100],"measured_values":[781204.0,1504531.0,2243489.0,2959527.0,3773424.0,4527917.0,5322269.0,6013426.0,6767879.0,7515003.0,8272331.0,9042692.0,9794722.0,10558282.0,11292862.0,12042690.0,12825557.0,13425114.0,14346817.0,15086556.0,15719745.0,16534356.0,17169238.0,18050460.0,18821207.0,19426509.0,19985342.0,20668036.0,21511827.0,22237923.0,23373737.0,24114469.0,24686156.0,25321162.0,26317430.0,26719243.0,27577734.0,28631963.0,29283664.0,29926171.0,30567787.0,31667795.0,32478683.0,32883378.0,33201380.0,34683540.0,35013582.0,35956748.0,37024213.0,37526760.0,38286147.0,38510181.0,39475056.0,40440760.0,41667088.0,42334293.0,42745390.0,43651824.0,43752105.0,44691105.0,45600311.0,46605774.0,47444667.0,49587139.0,48923226.0,49368719.0,50500865.0,50841042.0,51433197.0,52471142.0,52962258.0,53666027.0,54433939.0,55516408.0,56675292.0,56764299.0,57957399.0,58360556.0,59069835.0,59680175.0,60461450.0,60944738.0,61949869.0,62969777.0,63446920.0,64706846.0,65398073.0,65835712.0,66572427.0,67012913.0,68069925.0,68186297.0,69321340.0,70089898.0,71589162.0,71897847.0,72679586.0,73220011.0,73349638.0,75356771.0],"unit":"ns","throughput":[],"typical":{"estimate":623.3073742719941,"lower_bound":622.3696326532033,"upper_bound":624.3347273845809,"unit":"ns"},"mean":{"estimate":624.211451242723,"lower_bound":623.2520427475363,"upper_bound":625.253765739802,"unit":"ns"},"median":{"estimate":623.8022477688983,"lower_bound":622.823392122726,"upper_bound":625.8028934221481,"unit":"ns"},"median_abs_dev":{"estimate":4.3610098732003,"lower_bound":3.416477646673069,"upper_bound":5.010336450730579,"unit":"ns"},"slope":{"estimate":623.3073742719941,"lower_bound":622.3696326532033,"upper_bound":624.3347273845809,"unit":"ns"},"change":{"mean":{"estimate":-0.11124717543994622,"lower_bound":-0.11395605818938331,"upper_bound":-0.10890739704580756,"unit":"%"},"median":{"estimate":-0.10883926572957336,"lower_bound":-0.11110792594061605,"upper_bound":-0.10587787398616433,"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":[1978,3956,5934,7912,9890,11868,13846,15824,17802,19780,21758,23736,25714,27692,29670,31648,33626,35604,37582,39560,41538,43516,45494,47472,49450,51428,53406,55384,57362,59340,61318,63296,65274,67252,69230,71208,73186,75164,77142,79120,81098,83076,85054,87032,89010,90988,92966,94944,96922,98900,100878,102856,104834,106812,108790,110768,112746,114724,116702,118680,120658,122636,124614,126592,128570,130548,132526,134504,136482,138460,140438,142416,144394,146372,148350,150328,152306,154284,156262,158240,160218,162196,164174,166152,168130,170108,172086,174064,176042,178020,179998,181976,183954,185932,187910,189888,191866,193844,195822,197800],"measured_values":[1095655.0,2018628.0,3028911.0,4038675.0,4989258.0,5942399.0,6896049.0,7900699.0,8962039.0,9921684.0,10868080.0,11820906.0,12835164.0,13793985.0,14783740.0,15820214.0,16783473.0,17756210.0,18824798.0,19721112.0,20693452.0,21800608.0,22692822.0,23640184.0,24655364.0,25684975.0,26604048.0,27673757.0,28625362.0,29706507.0,30782683.0,31735336.0,32630178.0,33552495.0,34514021.0,35504808.0,36473313.0,37471058.0,38470053.0,39457583.0,40448799.0,41469857.0,42373115.0,43436389.0,44341670.0,45388566.0,46361227.0,47368359.0,48360611.0,49292937.0,50319750.0,51325168.0,52334173.0,53467495.0,54332234.0,55217830.0,56210664.0,57219159.0,58193662.0,59194547.0,60138097.0,61220425.0,62152453.0,63139535.0,64151004.0,65158502.0,66068054.0,67125517.0,68126296.0,69168458.0,70178180.0,71025973.0,71979897.0,73004939.0,73968186.0,74906510.0,75949116.0,76927376.0,77933934.0,78994874.0,79892656.0,80847422.0,81984453.0,82985505.0,83819315.0,84833584.0,85803497.0,86772512.0,87896908.0,88735764.0,89862886.0,90812760.0,91891121.0,92776117.0,93944129.0,94726333.0,95668904.0,96627881.0,97631412.0,98648524.0],"unit":"ns","throughput":[{"per_iteration":2,"unit":"bytes"}],"typical":{"estimate":498.9097867976738,"lower_bound":498.8023711126035,"upper_bound":499.0278237063258,"unit":"ns"},"mean":{"estimate":500.0072680420606,"lower_bound":499.1550096082317,"upper_bound":501.3528279270379,"unit":"ns"},"median":{"estimate":498.81349835401693,"lower_bound":498.72127176721716,"upper_bound":499.0300547400718,"unit":"ns"},"median_abs_dev":{"estimate":0.4952700833748943,"lower_bound":0.37009478244861166,"upper_bound":0.6881177875615978,"unit":"ns"},"slope":{"estimate":498.9097867976738,"lower_bound":498.8023711126035,"upper_bound":499.0278237063258,"unit":"ns"},"change":{"mean":{"estimate":0.0017482645652249218,"lower_bound":-0.0011380776535181874,"upper_bound":0.004923678471051748,"unit":"%"},"median":{"estimate":0.0025174212627521175,"lower_bound":-0.0005772025038595086,"upper_bound":0.0036586519986931965,"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":[1988,3976,5964,7952,9940,11928,13916,15904,17892,19880,21868,23856,25844,27832,29820,31808,33796,35784,37772,39760,41748,43736,45724,47712,49700,51688,53676,55664,57652,59640,61628,63616,65604,67592,69580,71568,73556,75544,77532,79520,81508,83496,85484,87472,89460,91448,93436,95424,97412,99400,101388,103376,105364,107352,109340,111328,113316,115304,117292,119280,121268,123256,125244,127232,129220,131208,133196,135184,137172,139160,141148,143136,145124,147112,149100,151088,153076,155064,157052,159040,161028,163016,165004,166992,168980,170968,172956,174944,176932,178920,180908,182896,184884,186872,188860,190848,192836,194824,196812,198800],"measured_values":[1074673.0,1973834.0,2991376.0,3946624.0,4930478.0,5922468.0,6947528.0,7941474.0,8916096.0,9880011.0,10898891.0,11872937.0,12843676.0,13864800.0,14852974.0,15853557.0,16801757.0,17819506.0,18756082.0,19802508.0,20749512.0,21744619.0,22758278.0,23750822.0,24766305.0,25708114.0,26724821.0,27717178.0,28688593.0,29669116.0,30711316.0,31726429.0,32621933.0,33625081.0,34765366.0,35746457.0,36558932.0,37601809.0,38650353.0,39537845.0,40620777.0,41573898.0,42541508.0,43573122.0,44679906.0,45595910.0,46834121.0,47543928.0,48529587.0,49447350.0,50445254.0,51460822.0,52421564.0,53472742.0,54607711.0,55385580.0,56828776.0,57379474.0,58440141.0,59452382.0,60345863.0,61561448.0,62431076.0,63456699.0,64394912.0,65276388.0,66251837.0,67244319.0,68274112.0,69214703.0,70226715.0,71239367.0,72222161.0,73239693.0,74244477.0,75191135.0,76184509.0,77328700.0,78205155.0,79513364.0,80091406.0,81166702.0,82162643.0,83302397.0,84132283.0,85087209.0,86109847.0,87134579.0,88088342.0,89224370.0,90017790.0,90965869.0,91989825.0,93072397.0,94090523.0,94983016.0,96143666.0,97029026.0,97969148.0,99077158.0],"unit":"ns","throughput":[{"per_iteration":4,"unit":"bytes"}],"typical":{"estimate":498.06644099412495,"lower_bound":497.91951790366767,"upper_bound":498.2304263168302,"unit":"ns"},"mean":{"estimate":498.45548419399245,"lower_bound":497.895165588938,"upper_bound":499.42124385835183,"unit":"ns"},"median":{"estimate":497.8872610390009,"lower_bound":497.7178069929237,"upper_bound":498.0510060362173,"unit":"ns"},"median_abs_dev":{"estimate":0.6270721719658267,"lower_bound":0.45291943371895366,"upper_bound":0.7498455431513795,"unit":"ns"},"slope":{"estimate":498.06644099412495,"lower_bound":497.91951790366767,"upper_bound":498.2304263168302,"unit":"ns"},"change":{"mean":{"estimate":0.0033465220235777693,"lower_bound":0.00037144529503797054,"upper_bound":0.005971210007656179,"unit":"%"},"median":{"estimate":0.003955987418222229,"lower_bound":0.003529589374489106,"upper_bound":0.004295753827553428,"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":[3471,6942,10413,13884,17355,20826,24297,27768,31239,34710,38181,41652,45123,48594,52065,55536,59007,62478,65949,69420,72891,76362,79833,83304,86775,90246,93717,97188,100659,104130,107601,111072,114543,118014,121485,124956,128427,131898,135369,138840,142311,145782,149253,152724,156195,159666,163137,166608,170079,173550,177021,180492,183963,187434,190905,194376,197847,201318,204789,208260,211731,215202,218673,222144,225615,229086,232557,236028,239499,242970,246441,249912,253383,256854,260325,263796,267267,270738,274209,277680,281151,284622,288093,291564,295035,298506,301977,305448,308919,312390,315861,319332,322803,326274,329745,333216,336687,340158,343629,347100],"measured_values":[1075329.0,1980679.0,2965875.0,3952318.0,4942735.0,5936685.0,6931856.0,7939084.0,8925025.0,9889892.0,10871324.0,11895605.0,12925452.0,14034961.0,14828826.0,15812137.0,16852013.0,17851218.0,18826649.0,19785982.0,20802007.0,21780364.0,22733868.0,23764167.0,24739895.0,25703148.0,26767853.0,27911017.0,28791973.0,29724620.0,30683516.0,31673742.0,32647328.0,33745704.0,34715709.0,35677550.0,36663909.0,37804532.0,38587000.0,39617879.0,40619928.0,41543544.0,42576003.0,43653502.0,44585004.0,45521465.0,46471850.0,47546987.0,48529927.0,49601313.0,50444050.0,51500470.0,52511169.0,53405707.0,54413586.0,55376326.0,56499728.0,57440199.0,58373257.0,59407702.0,60387662.0,61394830.0,62600983.0,63384274.0,64311495.0,65320789.0,66347996.0,67331386.0,68282506.0,69362107.0,70285569.0,71286069.0,72273077.0,73278253.0,74526422.0,75348477.0,76337588.0,77321849.0,78212628.0,79180988.0,80319354.0,81134198.0,82137968.0,83161771.0,84098420.0,85147341.0,86073313.0,87119536.0,88212093.0,89251504.0,90085889.0,91045470.0,92102200.0,92991783.0,94142692.0,95168263.0,96019032.0,97021699.0,98046046.0,99517226.0],"unit":"ns","throughput":[{"per_iteration":8,"unit":"bytes"}],"typical":{"estimate":285.37364412608395,"lower_bound":285.28168642679975,"upper_bound":285.487295000791,"unit":"ns"},"mean":{"estimate":285.6341211887051,"lower_bound":285.31068838483367,"upper_bound":286.1895804909708,"unit":"ns"},"median":{"estimate":285.27986438323063,"lower_bound":285.22539231768764,"upper_bound":285.333809808745,"unit":"ns"},"median_abs_dev":{"estimate":0.3406320966263999,"lower_bound":0.2566945718480442,"upper_bound":0.41793397224145284,"unit":"ns"},"slope":{"estimate":285.37364412608395,"lower_bound":285.28168642679975,"upper_bound":285.487295000791,"unit":"ns"},"change":{"mean":{"estimate":0.003987272919327989,"lower_bound":0.0016115375534471233,"upper_bound":0.006279037071308473,"unit":"%"},"median":{"estimate":0.003792822686701669,"lower_bound":0.003535025545665871,"upper_bound":0.004182736415516507,"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":[3471,6942,10413,13884,17355,20826,24297,27768,31239,34710,38181,41652,45123,48594,52065,55536,59007,62478,65949,69420,72891,76362,79833,83304,86775,90246,93717,97188,100659,104130,107601,111072,114543,118014,121485,124956,128427,131898,135369,138840,142311,145782,149253,152724,156195,159666,163137,166608,170079,173550,177021,180492,183963,187434,190905,194376,197847,201318,204789,208260,211731,215202,218673,222144,225615,229086,232557,236028,239499,242970,246441,249912,253383,256854,260325,263796,267267,270738,274209,277680,281151,284622,288093,291564,295035,298506,301977,305448,308919,312390,315861,319332,322803,326274,329745,333216,336687,340158,343629,347100],"measured_values":[1035009.0,1980243.0,3002858.0,3980552.0,4974682.0,5958537.0,6983883.0,7963995.0,8950262.0,9967445.0,10951551.0,11943306.0,12941335.0,13927639.0,14934644.0,15924390.0,16927176.0,17941325.0,18810590.0,19784453.0,20929826.0,21890373.0,22914603.0,23930048.0,24857242.0,25809922.0,26690419.0,27724552.0,28711876.0,29732994.0,30856110.0,31705975.0,32680967.0,33840128.0,34674968.0,35651602.0,36652088.0,37644536.0,38663126.0,39623815.0,40688594.0,41697620.0,42569390.0,43567743.0,44597725.0,45519410.0,46565246.0,47556822.0,48514415.0,49565037.0,50484006.0,51469148.0,52520111.0,53501599.0,54485715.0,55568911.0,56462522.0,57425323.0,58506614.0,59484664.0,60539278.0,61372514.0,62368460.0,63345244.0,64366887.0,65356064.0,66342587.0,67278908.0,68350496.0,69353382.0,70319548.0,71432525.0,72264109.0,73287960.0,74283445.0,75532221.0,76238693.0,77283330.0,78226335.0,79202787.0,80365388.0,81263024.0,82266874.0,83146853.0,84430868.0,85121121.0,86136552.0,87325608.0,88168917.0,89133494.0,90100052.0,91104437.0,92222113.0,93116971.0,94614491.0,95367542.0,96148302.0,97053091.0,98208264.0,99077383.0],"unit":"ns","throughput":[{"per_iteration":16,"unit":"bytes"}],"typical":{"estimate":285.54310086610514,"lower_bound":285.4435906782782,"upper_bound":285.65861258582913,"unit":"ns"},"mean":{"estimate":285.91519574706564,"lower_bound":285.68889048576955,"upper_bound":286.2354870330448,"unit":"ns"},"median":{"estimate":285.4487969965428,"lower_bound":285.3950084897969,"upper_bound":285.61285080040483,"unit":"ns"},"median_abs_dev":{"estimate":0.3545400348453132,"lower_bound":0.25051330371387553,"upper_bound":0.5710305002077278,"unit":"ns"},"slope":{"estimate":285.54310086610514,"lower_bound":285.4435906782782,"upper_bound":285.65861258582913,"unit":"ns"},"change":{"mean":{"estimate":0.004035916163502851,"lower_bound":0.0009652406390765213,"upper_bound":0.006474862095866678,"unit":"%"},"median":{"estimate":0.005344546470224865,"lower_bound":0.005121377701581498,"upper_bound":0.0059561288646461374,"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":[3475,6950,10425,13900,17375,20850,24325,27800,31275,34750,38225,41700,45175,48650,52125,55600,59075,62550,66025,69500,72975,76450,79925,83400,86875,90350,93825,97300,100775,104250,107725,111200,114675,118150,121625,125100,128575,132050,135525,139000,142475,145950,149425,152900,156375,159850,163325,166800,170275,173750,177225,180700,184175,187650,191125,194600,198075,201550,205025,208500,211975,215450,218925,222400,225875,229350,232825,236300,239775,243250,246725,250200,253675,257150,260625,264100,267575,271050,274525,278000,281475,284950,288425,291900,295375,298850,302325,305800,309275,312750,316225,319700,323175,326650,330125,333600,337075,340550,344025,347500],"measured_values":[1062238.0,1979610.0,2965617.0,3954817.0,4945414.0,5933305.0,6948322.0,7916620.0,8898197.0,9887103.0,10906373.0,11893742.0,12880848.0,13876513.0,14942987.0,16229643.0,16814348.0,17822648.0,18840334.0,19800902.0,20764880.0,21776162.0,22764802.0,23756491.0,24774273.0,25732757.0,26722436.0,27777605.0,28766960.0,29743726.0,30681535.0,31696282.0,32736117.0,33784295.0,34808901.0,35623887.0,36979532.0,37649462.0,38581606.0,39635680.0,40696634.0,41605876.0,42565861.0,43609515.0,44633909.0,45507413.0,46486364.0,47512171.0,48525475.0,49516248.0,50476833.0,51434868.0,52462219.0,53533273.0,54464186.0,55391957.0,56438038.0,57763803.0,58385029.0,59368914.0,60416393.0,61385092.0,62427965.0,63366614.0,64299631.0,65305887.0,66293236.0,67311840.0,68300960.0,69299218.0,70278359.0,71292783.0,72249691.0,73650537.0,74204319.0,75254619.0,76287706.0,77201177.0,78183763.0,79204858.0,80162483.0,81114858.0,82161858.0,83308744.0,84091960.0,85481340.0,86091811.0,87111005.0,88174512.0,89067359.0,90111372.0,91014642.0,92151211.0,93107256.0,94110154.0,95134242.0,96497107.0,96988191.0,98016230.0,99098379.0],"unit":"ns","throughput":[{"per_iteration":32,"unit":"bytes"}],"typical":{"estimate":285.05289665951886,"lower_bound":284.9495156510501,"upper_bound":285.17394002351597,"unit":"ns"},"mean":{"estimate":285.3322772416419,"lower_bound":285.0113079346599,"upper_bound":285.842981927021,"unit":"ns"},"median":{"estimate":284.9098783155294,"lower_bound":284.8475809352518,"upper_bound":284.9829687270592,"unit":"ns"},"median_abs_dev":{"estimate":0.28980212550244666,"lower_bound":0.18442535599320586,"upper_bound":0.35866824834613786,"unit":"ns"},"slope":{"estimate":285.05289665951886,"lower_bound":284.9495156510501,"upper_bound":285.17394002351597,"unit":"ns"},"change":{"mean":{"estimate":0.0034033173725132038,"lower_bound":0.0006779790303609483,"upper_bound":0.005956087801352799,"unit":"%"},"median":{"estimate":0.004328631666244531,"lower_bound":0.0038276227516838347,"upper_bound":0.0046953531062623455,"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":[1827,3654,5481,7308,9135,10962,12789,14616,16443,18270,20097,21924,23751,25578,27405,29232,31059,32886,34713,36540,38367,40194,42021,43848,45675,47502,49329,51156,52983,54810,56637,58464,60291,62118,63945,65772,67599,69426,71253,73080,74907,76734,78561,80388,82215,84042,85869,87696,89523,91350,93177,95004,96831,98658,100485,102312,104139,105966,107793,109620,111447,113274,115101,116928,118755,120582,122409,124236,126063,127890,129717,131544,133371,135198,137025,138852,140679,142506,144333,146160,147987,149814,151641,153468,155295,157122,158949,160776,162603,164430,166257,168084,169911,171738,173565,175392,177219,179046,180873,182700],"measured_values":[1059855.0,1974274.0,2964062.0,3951742.0,4968337.0,5992281.0,6993390.0,7958524.0,8917190.0,9906714.0,10922034.0,11966187.0,12841634.0,13861277.0,14849130.0,15810941.0,16944032.0,17810085.0,18798768.0,20136207.0,20774449.0,21735849.0,22751752.0,23768240.0,24773654.0,25722421.0,26710401.0,27732646.0,28777795.0,29781059.0,30683117.0,31637587.0,32630064.0,33619941.0,34733298.0,35648786.0,36572849.0,37625802.0,38557063.0,39612544.0,40699906.0,41622730.0,42610578.0,43529547.0,44515437.0,45466954.0,46566005.0,47582682.0,48615257.0,49493668.0,50427218.0,51449593.0,52449365.0,53413092.0,54577406.0,55387305.0,56346288.0,57437639.0,58347587.0,59459953.0,60570652.0,61375331.0,62336560.0,63332347.0,64365593.0,65479619.0,66302442.0,67266042.0,68257898.0,69235176.0,70523217.0,71287801.0,72187865.0,73269323.0,74230513.0,75517242.0,76218284.0,77181612.0,78194008.0,79299597.0,80114250.0,81405432.0,82319679.0,83111299.0,84132233.0,85088533.0,86083191.0,87146444.0,87995838.0,89065688.0,90075434.0,91112598.0,92037113.0,92997599.0,93979057.0,95010833.0,96040624.0,97005686.0,98111162.0,98962006.0],"unit":"ns","throughput":[{"per_iteration":64,"unit":"bytes"}],"typical":{"estimate":541.9335584219402,"lower_bound":541.7894997873512,"upper_bound":542.0957489791109,"unit":"ns"},"mean":{"estimate":542.5652181074547,"lower_bound":541.9796865836088,"upper_bound":543.4886893909638,"unit":"ns"},"median":{"estimate":541.7727158418684,"lower_bound":541.6467906771561,"upper_bound":541.9436808931916,"unit":"ns"},"median_abs_dev":{"estimate":0.6081118777360215,"lower_bound":0.4298231064784399,"upper_bound":0.8619266330055348,"unit":"ns"},"slope":{"estimate":541.9335584219402,"lower_bound":541.7894997873512,"upper_bound":542.0957489791109,"unit":"ns"},"change":{"mean":{"estimate":0.006950329365262631,"lower_bound":0.004508947762314375,"upper_bound":0.009439255538798364,"unit":"%"},"median":{"estimate":0.008426166332269558,"lower_bound":0.007580961521309382,"upper_bound":0.009011175519553882,"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":[1255,2510,3765,5020,6275,7530,8785,10040,11295,12550,13805,15060,16315,17570,18825,20080,21335,22590,23845,25100,26355,27610,28865,30120,31375,32630,33885,35140,36395,37650,38905,40160,41415,42670,43925,45180,46435,47690,48945,50200,51455,52710,53965,55220,56475,57730,58985,60240,61495,62750,64005,65260,66515,67770,69025,70280,71535,72790,74045,75300,76555,77810,79065,80320,81575,82830,84085,85340,86595,87850,89105,90360,91615,92870,94125,95380,96635,97890,99145,100400,101655,102910,104165,105420,106675,107930,109185,110440,111695,112950,114205,115460,116715,117970,119225,120480,121735,122990,124245,125500],"measured_values":[1041314.0,2024548.0,3034120.0,4045947.0,4954694.0,5924415.0,6911970.0,7924998.0,8941607.0,9958225.0,10914455.0,11932460.0,12953160.0,13850055.0,14840045.0,15908599.0,16898017.0,17829640.0,18792029.0,19885069.0,20879352.0,21930386.0,22709633.0,23725553.0,24716192.0,25699948.0,26717158.0,27819774.0,28663392.0,29684764.0,30611428.0,31791163.0,32695125.0,33600114.0,34567702.0,35605411.0,36562706.0,37551472.0,38622323.0,39554993.0,40512793.0,41502822.0,42484527.0,43504408.0,44460482.0,45473596.0,46444304.0,47453377.0,48468214.0,49498716.0,50499706.0,51379673.0,52423606.0,53430860.0,54508173.0,55380360.0,56372348.0,57748048.0,58364839.0,59332947.0,60262269.0,61554891.0,62439538.0,63255654.0,64266436.0,65245966.0,66810126.0,67226261.0,68190597.0,69300361.0,70404924.0,71234884.0,72176796.0,73157322.0,74173263.0,75155990.0,76089318.0,77132471.0,78064950.0,79052708.0,80247252.0,81026615.0,82073387.0,83226877.0,84046884.0,85091922.0,86022500.0,87004630.0,87931510.0,88975600.0,89940482.0,91004882.0,92023851.0,92874849.0,94096484.0,94990024.0,95866683.0,96881531.0,97846376.0,98826683.0],"unit":"ns","throughput":[{"per_iteration":128,"unit":"bytes"}],"typical":{"estimate":788.2275449889521,"lower_bound":787.9785000857898,"upper_bound":788.5318198545672,"unit":"ns"},"mean":{"estimate":789.6317259473317,"lower_bound":788.7307086500105,"upper_bound":790.7924332357495,"unit":"ns"},"median":{"estimate":788.0126852589641,"lower_bound":787.8272771925995,"upper_bound":788.3158034528552,"unit":"ns"},"median_abs_dev":{"estimate":0.922754930967999,"lower_bound":0.6594051249520481,"upper_bound":1.3660146982067927,"unit":"ns"},"slope":{"estimate":788.2275449889521,"lower_bound":787.9785000857898,"upper_bound":788.5318198545672,"unit":"ns"},"change":{"mean":{"estimate":0.002388813711982518,"lower_bound":-0.00012375266033370547,"upper_bound":0.00463453921713739,"unit":"%"},"median":{"estimate":0.0026583862367248745,"lower_bound":0.0023309893195904152,"upper_bound":0.0031387522144974422,"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":[774,1548,2322,3096,3870,4644,5418,6192,6966,7740,8514,9288,10062,10836,11610,12384,13158,13932,14706,15480,16254,17028,17802,18576,19350,20124,20898,21672,22446,23220,23994,24768,25542,26316,27090,27864,28638,29412,30186,30960,31734,32508,33282,34056,34830,35604,36378,37152,37926,38700,39474,40248,41022,41796,42570,43344,44118,44892,45666,46440,47214,47988,48762,49536,50310,51084,51858,52632,53406,54180,54954,55728,56502,57276,58050,58824,59598,60372,61146,61920,62694,63468,64242,65016,65790,66564,67338,68112,68886,69660,70434,71208,71982,72756,73530,74304,75078,75852,76626,77400],"measured_values":[1020228.0,1978483.0,2962676.0,3951499.0,4968966.0,5952511.0,6970174.0,7962156.0,8947702.0,9952990.0,10985631.0,11915305.0,12872540.0,13833138.0,14849174.0,15837139.0,16796057.0,17811085.0,18800309.0,19758346.0,20777959.0,21737663.0,22783924.0,23741607.0,24701692.0,25751789.0,26704855.0,27759159.0,28758675.0,29700427.0,30657663.0,31651064.0,32661404.0,33620879.0,34704981.0,35627921.0,36589902.0,37575763.0,38683421.0,39589712.0,40539790.0,41675399.0,42633551.0,43558289.0,44496327.0,45537999.0,46494618.0,47451714.0,48472515.0,49461514.0,50449721.0,51554696.0,52430080.0,53391664.0,54449145.0,55417983.0,56531009.0,57389127.0,58351241.0,59373306.0,60338586.0,61486964.0,62342133.0,63296160.0,64344697.0,65275851.0,66283498.0,67268607.0,68240030.0,69319245.0,70250988.0,71298273.0,72217682.0,73208668.0,74312604.0,75327734.0,76216850.0,77191211.0,78213580.0,79127952.0,80145805.0,81098352.0,82102481.0,83217303.0,84141259.0,85056767.0,86081341.0,87046778.0,88269996.0,88995036.0,90032961.0,91013530.0,92035729.0,93008646.0,94013226.0,95114939.0,95927667.0,97211198.0,98084349.0,99017779.0],"unit":"ns","throughput":[{"per_iteration":256,"unit":"bytes"}],"typical":{"estimate":1278.8363545233385,"lower_bound":1278.5495468267543,"upper_bound":1279.1471908145559,"unit":"ns"},"mean":{"estimate":1279.563892193221,"lower_bound":1278.843147588103,"upper_bound":1280.5750053516101,"unit":"ns"},"median":{"estimate":1278.462417456216,"lower_bound":1278.1735456386618,"upper_bound":1278.8387435400516,"unit":"ns"},"median_abs_dev":{"estimate":1.0087402163282668,"lower_bound":0.7840995258080863,"upper_bound":1.526069932216753,"unit":"ns"},"slope":{"estimate":1278.8363545233385,"lower_bound":1278.5495468267543,"upper_bound":1279.1471908145559,"unit":"ns"},"change":{"mean":{"estimate":0.0033052514922895515,"lower_bound":0.001941741515455659,"upper_bound":0.004446244608151778,"unit":"%"},"median":{"estimate":0.0031097416773104847,"lower_bound":0.002855923756719392,"upper_bound":0.003474950300734064,"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":[430,860,1290,1720,2150,2580,3010,3440,3870,4300,4730,5160,5590,6020,6450,6880,7310,7740,8170,8600,9030,9460,9890,10320,10750,11180,11610,12040,12470,12900,13330,13760,14190,14620,15050,15480,15910,16340,16770,17200,17630,18060,18490,18920,19350,19780,20210,20640,21070,21500,21930,22360,22790,23220,23650,24080,24510,24940,25370,25800,26230,26660,27090,27520,27950,28380,28810,29240,29670,30100,30530,30960,31390,31820,32250,32680,33110,33540,33970,34400,34830,35260,35690,36120,36550,36980,37410,37840,38270,38700,39130,39560,39990,40420,40850,41280,41710,42140,42570,43000],"measured_values":[1061812.0,1975007.0,2962973.0,3979140.0,4966062.0,5952716.0,6970765.0,7902293.0,8917359.0,9878179.0,10893488.0,11882333.0,12869221.0,13855014.0,14816810.0,15830302.0,17188107.0,17809696.0,18767433.0,19782145.0,20803761.0,21758938.0,22719540.0,23736752.0,24720403.0,25735829.0,26696927.0,27682031.0,28700495.0,29728906.0,30649273.0,31612487.0,32651119.0,33871295.0,34597407.0,35699216.0,36601027.0,37562265.0,38858689.0,39570005.0,40527054.0,41543667.0,42497076.0,43517243.0,44529707.0,45526079.0,46475699.0,47466037.0,48514074.0,49530248.0,50423968.0,51420560.0,52406525.0,53610616.0,54379183.0,55367347.0,56382473.0,57400501.0,58497372.0,59376446.0,60363739.0,61324231.0,62280681.0,63292377.0,64314997.0,65212510.0,66259285.0,67276710.0,68200656.0,69260996.0,70239960.0,71167089.0,72214569.0,73317238.0,74283868.0,75141447.0,76166497.0,77124850.0,78107998.0,79126382.0,80092578.0,81104277.0,82089611.0,83114530.0,84035588.0,85082944.0,86381975.0,86996960.0,88018486.0,88942574.0,90016040.0,90989257.0,91939264.0,92960347.0,94134082.0,94906939.0,95975275.0,97595806.0,97891776.0,98936532.0],"unit":"ns","throughput":[{"per_iteration":512,"unit":"bytes"}],"typical":{"estimate":2301.2252082644573,"lower_bound":2300.359441354552,"upper_bound":2302.3672416685713,"unit":"ns"},"mean":{"estimate":2303.6348934678886,"lower_bound":2301.0766206302756,"upper_bound":2307.7083943624807,"unit":"ns"},"median":{"estimate":2300.281602990033,"lower_bound":2299.9343088581136,"upper_bound":2300.8450752393983,"unit":"ns"},"median_abs_dev":{"estimate":1.6609757960934288,"lower_bound":1.283030394079119,"upper_bound":2.3441253981577646,"unit":"ns"},"slope":{"estimate":2301.2252082644573,"lower_bound":2300.359441354552,"upper_bound":2302.3672416685713,"unit":"ns"},"change":{"mean":{"estimate":-0.0005216602702042827,"lower_bound":-0.003473839705726203,"upper_bound":0.0022035450934567314,"unit":"%"},"median":{"estimate":0.0010684537125074112,"lower_bound":0.0008281245512310314,"upper_bound":0.0013313954274303264,"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":[234,468,702,936,1170,1404,1638,1872,2106,2340,2574,2808,3042,3276,3510,3744,3978,4212,4446,4680,4914,5148,5382,5616,5850,6084,6318,6552,6786,7020,7254,7488,7722,7956,8190,8424,8658,8892,9126,9360,9594,9828,10062,10296,10530,10764,10998,11232,11466,11700,11934,12168,12402,12636,12870,13104,13338,13572,13806,14040,14274,14508,14742,14976,15210,15444,15678,15912,16146,16380,16614,16848,17082,17316,17550,17784,18018,18252,18486,18720,18954,19188,19422,19656,19890,20124,20358,20592,20826,21060,21294,21528,21762,21996,22230,22464,22698,22932,23166,23400],"measured_values":[1048815.0,2031634.0,3011456.0,3969299.0,4960541.0,6000386.0,6960601.0,7950622.0,8932340.0,9919880.0,10919704.0,11918003.0,12905733.0,13962335.0,14886740.0,15878515.0,16867203.0,17858959.0,18851821.0,19847226.0,20865937.0,21829899.0,22821899.0,23828876.0,24830725.0,25797779.0,26816084.0,27811790.0,28805849.0,29764713.0,30760785.0,31805703.0,32785299.0,33736156.0,34727389.0,35811157.0,36711249.0,38052226.0,38697915.0,39692676.0,40739374.0,41674816.0,42690883.0,43687437.0,44730934.0,45968038.0,46636790.0,47752779.0,48617179.0,49729019.0,50690361.0,51752813.0,52586551.0,53613184.0,54693629.0,55623186.0,56590209.0,57614457.0,58936141.0,59589836.0,60575834.0,61532688.0,62578173.0,63660555.0,64532391.0,65528606.0,66516668.0,67543148.0,68574786.0,69525847.0,70458214.0,71479866.0,72472125.0,73751565.0,74551184.0,75484781.0,76505036.0,77507877.0,78444271.0,79493938.0,80493173.0,81491943.0,82458310.0,83451982.0,84624872.0,85488188.0,86810203.0,87423849.0,88445080.0,89484318.0,90457123.0,91333003.0,92442595.0,93416113.0,94420545.0,95444929.0,96349528.0,97722081.0,98363031.0,99357620.0],"unit":"ns","throughput":[{"per_iteration":1024,"unit":"bytes"}],"typical":{"estimate":4247.370480726603,"lower_bound":4245.993427681713,"upper_bound":4248.921932218119,"unit":"ns"},"mean":{"estimate":4250.0630323477735,"lower_bound":4245.956177150309,"upper_bound":4256.095571809755,"unit":"ns"},"median":{"estimate":4244.819853265123,"lower_bound":4243.788286394843,"upper_bound":4246.033744033744,"unit":"ns"},"median_abs_dev":{"estimate":4.627900635058234,"lower_bound":3.362972631673986,"upper_bound":6.0226202002350755,"unit":"ns"},"slope":{"estimate":4247.370480726603,"lower_bound":4245.993427681713,"upper_bound":4248.921932218119,"unit":"ns"},"change":{"mean":{"estimate":0.0003271635706101339,"lower_bound":-0.0013218113160282706,"upper_bound":0.001994238402680381,"unit":"%"},"median":{"estimate":0.00025292119637287946,"lower_bound":-0.00009940374804962016,"upper_bound":0.0006833266789971759,"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":[122,244,366,488,610,732,854,976,1098,1220,1342,1464,1586,1708,1830,1952,2074,2196,2318,2440,2562,2684,2806,2928,3050,3172,3294,3416,3538,3660,3782,3904,4026,4148,4270,4392,4514,4636,4758,4880,5002,5124,5246,5368,5490,5612,5734,5856,5978,6100,6222,6344,6466,6588,6710,6832,6954,7076,7198,7320,7442,7564,7686,7808,7930,8052,8174,8296,8418,8540,8662,8784,8906,9028,9150,9272,9394,9516,9638,9760,9882,10004,10126,10248,10370,10492,10614,10736,10858,10980,11102,11224,11346,11468,11590,11712,11834,11956,12078,12200],"measured_values":[1040389.0,1982436.0,2975713.0,3970811.0,4958772.0,5977520.0,6941428.0,7932715.0,8923421.0,9914683.0,10963213.0,11926958.0,12889866.0,13909587.0,14873241.0,15894098.0,16886721.0,17967508.0,18840188.0,19862927.0,20824426.0,21843299.0,22832321.0,23827946.0,24815572.0,25836687.0,26834482.0,27796430.0,28796013.0,29923317.0,30828264.0,31791718.0,32774482.0,34119761.0,34730206.0,35725724.0,36715713.0,37708990.0,38758918.0,39743607.0,40719162.0,41955070.0,42693161.0,43715217.0,44673706.0,45641304.0,46714390.0,47718310.0,48669237.0,49631350.0,50626111.0,51616778.0,52641443.0,53765598.0,54590662.0,55590928.0,56583358.0,57568073.0,58666439.0,59646280.0,60539928.0,61659362.0,62577425.0,63574945.0,64563143.0,65817745.0,66568510.0,67484854.0,68541569.0,69661575.0,70703649.0,71486742.0,72506586.0,73429471.0,74512577.0,75421456.0,76408761.0,77426295.0,78398905.0,79529024.0,80432887.0,81428133.0,82589771.0,83442052.0,84372897.0,85360127.0,86476054.0,87387459.0,88395351.0,89396178.0,90463483.0,91688237.0,92401708.0,93373952.0,94513101.0,95499358.0,96361086.0,97265344.0,98343278.0,99224420.0],"unit":"ns","throughput":[{"per_iteration":2048,"unit":"bytes"}],"typical":{"estimate":8143.853793578771,"lower_bound":8141.520476831542,"upper_bound":8146.413315846811,"unit":"ns"},"mean":{"estimate":8147.105989808653,"lower_bound":8141.199017955519,"upper_bound":8156.428870567534,"unit":"ns"},"median":{"estimate":8140.870132062939,"lower_bound":8138.125,"upper_bound":8142.26288904728,"unit":"ns"},"median_abs_dev":{"estimate":7.995219677100655,"lower_bound":5.819556507464163,"upper_bound":10.169312828394336,"unit":"ns"},"slope":{"estimate":8143.853793578771,"lower_bound":8141.520476831542,"upper_bound":8146.413315846811,"unit":"ns"},"change":{"mean":{"estimate":0.001025365696486702,"lower_bound":-0.0016333781103007644,"upper_bound":0.002909471885847164,"unit":"%"},"median":{"estimate":0.0017864939569471883,"lower_bound":0.0013341795058332347,"upper_bound":0.002010602821558294,"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":[63,126,189,252,315,378,441,504,567,630,693,756,819,882,945,1008,1071,1134,1197,1260,1323,1386,1449,1512,1575,1638,1701,1764,1827,1890,1953,2016,2079,2142,2205,2268,2331,2394,2457,2520,2583,2646,2709,2772,2835,2898,2961,3024,3087,3150,3213,3276,3339,3402,3465,3528,3591,3654,3717,3780,3843,3906,3969,4032,4095,4158,4221,4284,4347,4410,4473,4536,4599,4662,4725,4788,4851,4914,4977,5040,5103,5166,5229,5292,5355,5418,5481,5544,5607,5670,5733,5796,5859,5922,5985,6048,6111,6174,6237,6300],"measured_values":[1074343.0,1998973.0,2999360.0,4027034.0,5026314.0,6054808.0,7023820.0,8053259.0,9080219.0,10052712.0,11111343.0,12023881.0,12997636.0,14024564.0,15023662.0,16024372.0,17024336.0,17998181.0,19022614.0,19994326.0,21020748.0,22021838.0,23020952.0,24018718.0,25018633.0,26018646.0,27018598.0,28046712.0,29132827.0,30020043.0,30997288.0,32017661.0,33043899.0,34043929.0,35017101.0,36015922.0,37070449.0,38013290.0,39106200.0,40016280.0,41048373.0,42045518.0,43016433.0,44079533.0,45023737.0,46275611.0,47068465.0,48024496.0,49048144.0,49993868.0,51022780.0,52046822.0,52993054.0,54077894.0,54996541.0,56046185.0,57044315.0,57989941.0,59077120.0,60026757.0,61027695.0,62019413.0,63082785.0,64190809.0,65077055.0,66039923.0,67008423.0,68352253.0,69124590.0,70112834.0,71192009.0,72195953.0,73519054.0,74283305.0,75233903.0,76064069.0,77232311.0,78200393.0,79081581.0,80019966.0,81049654.0,81995146.0,83016163.0,83979301.0,85023267.0,86043822.0,87095733.0,88059464.0,89067131.0,90197290.0,91083974.0,92030749.0,93084810.0,94148077.0,95084619.0,96008978.0,97248536.0,98010351.0,99070241.0,100094098.0],"unit":"ns","throughput":[{"per_iteration":4096,"unit":"bytes"}],"typical":{"estimate":15892.813437292556,"lower_bound":15887.92027771958,"upper_bound":15898.459254959784,"unit":"ns"},"mean":{"estimate":15910.727453680143,"lower_bound":15894.294361693974,"upper_bound":15937.861704338458,"unit":"ns"},"median":{"estimate":15887.80770800628,"lower_bound":15884.98858569645,"upper_bound":15892.67849960497,"unit":"ns"},"median_abs_dev":{"estimate":14.851584362275405,"lower_bound":10.96619152573952,"upper_bound":20.22823707029937,"unit":"ns"},"slope":{"estimate":15892.813437292556,"lower_bound":15887.92027771958,"upper_bound":15898.459254959784,"unit":"ns"},"change":{"mean":{"estimate":0.005127921867607688,"lower_bound":0.002879337410991185,"upper_bound":0.007466755253235735,"unit":"%"},"median":{"estimate":0.004879896821290419,"lower_bound":0.004574446171942021,"upper_bound":0.005382043306333406,"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":[32,64,96,128,160,192,224,256,288,320,352,384,416,448,480,512,544,576,608,640,672,704,736,768,800,832,864,896,928,960,992,1024,1056,1088,1120,1152,1184,1216,1248,1280,1312,1344,1376,1408,1440,1472,1504,1536,1568,1600,1632,1664,1696,1728,1760,1792,1824,1856,1888,1920,1952,1984,2016,2048,2080,2112,2144,2176,2208,2240,2272,2304,2336,2368,2400,2432,2464,2496,2528,2560,2592,2624,2656,2688,2720,2752,2784,2816,2848,2880,2912,2944,2976,3008,3040,3072,3104,3136,3168,3200],"measured_values":[1088330.0,2055070.0,3084779.0,4112690.0,5140314.0,6170042.0,7136895.0,8027580.0,9030654.0,10033133.0,11065747.0,12040230.0,13049275.0,14075900.0,15091778.0,16082991.0,17057373.0,18089451.0,19093711.0,20096390.0,21072190.0,22103130.0,23078707.0,24109023.0,25124141.0,26118955.0,27189818.0,28123257.0,29127256.0,30157669.0,31136335.0,32138573.0,33188626.0,34184330.0,35148447.0,36296109.0,37181790.0,38203040.0,39382944.0,40165862.0,41174462.0,42188020.0,43203428.0,44255497.0,45258638.0,46211776.0,47239932.0,48309576.0,49213878.0,50225829.0,51238005.0,52323296.0,53248619.0,54217986.0,55246635.0,56360102.0,57407354.0,58396070.0,59244144.0,60313377.0,61275666.0,62282725.0,63297970.0,64400233.0,65325334.0,66356779.0,67317635.0,68453217.0,69371126.0,70353800.0,71356312.0,72437400.0,73507241.0,74340325.0,75409804.0,76346704.0,77408375.0,78391354.0,79592542.0,80403323.0,81367833.0,82442997.0,83471220.0,84461190.0,85635876.0,86427778.0,87492500.0,88435934.0,89434587.0,90499798.0,91420967.0,92463649.0,93466264.0,94445500.0,95500535.0,96648190.0,97458236.0,98447593.0,99461727.0,100566253.0],"unit":"ns","throughput":[{"per_iteration":8192,"unit":"bytes"}],"typical":{"estimate":31416.38110213167,"lower_bound":31410.096560893784,"upper_bound":31423.291128910838,"unit":"ns"},"mean":{"estimate":31477.2073685746,"lower_bound":31428.212472156603,"upper_bound":31544.737331221113,"unit":"ns"},"median":{"estimate":31406.733599565756,"lower_bound":31400.372201492537,"upper_bound":31414.98757440476,"unit":"ns"},"median_abs_dev":{"estimate":24.764941870940167,"lower_bound":19.400968118726993,"upper_bound":34.6573315455917,"unit":"ns"},"slope":{"estimate":31416.38110213167,"lower_bound":31410.096560893784,"upper_bound":31423.291128910838,"unit":"ns"},"change":{"mean":{"estimate":0.003583342486406904,"lower_bound":-0.0004449982534319765,"upper_bound":0.006731033850075673,"unit":"%"},"median":{"estimate":0.004826311082652079,"lower_bound":0.004528983012197951,"upper_bound":0.005162431939776946,"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":[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":[1048070.0,1994969.0,3022167.0,4024590.0,5019181.0,5988959.0,7013930.0,7984077.0,8982610.0,10006900.0,11006178.0,12004361.0,12973309.0,14000837.0,14998859.0,15967495.0,16998036.0,17962716.0,19018117.0,19992526.0,20985880.0,21985849.0,22952703.0,23981075.0,24975582.0,25974395.0,26945635.0,27972150.0,28967442.0,29993894.0,30989369.0,31939425.0,32961826.0,33957781.0,34990505.0,35958727.0,37072575.0,37981512.0,38948162.0,39973578.0,40974854.0,41982006.0,42948483.0,44217243.0,45226962.0,45988468.0,46957354.0,47933988.0,48959560.0,49981535.0,50980660.0,52126137.0,52946134.0,53974771.0,54995043.0,56059114.0,57293619.0,58030656.0,58992844.0,59909701.0,60965534.0,62025546.0,63110328.0,64050730.0,64955586.0,65957588.0,66951759.0,67948947.0,68947180.0,69979802.0,70915808.0,71942241.0,73038275.0,73942897.0,74907035.0,75967917.0,77015879.0,78013946.0,78896478.0,79952494.0,81039287.0,81920139.0,83062535.0,83884777.0,85038988.0,86010824.0,87020644.0,87929262.0,89049986.0,89994525.0,90927605.0,91901001.0,92923378.0,93955378.0,94953415.0,95916639.0,96978977.0,97924917.0,98973528.0,99997185.0],"unit":"ns","throughput":[{"per_iteration":16384,"unit":"bytes"}],"typical":{"estimate":62484.143875794296,"lower_bound":62471.424171916726,"upper_bound":62498.4190950625,"unit":"ns"},"mean":{"estimate":62521.475859935905,"lower_bound":62476.07576886662,"upper_bound":62593.93632238581,"unit":"ns"},"median":{"estimate":62469.47203947369,"lower_bound":62454.99906716418,"upper_bound":62481.96607142857,"unit":"ns"},"median_abs_dev":{"estimate":55.687221889580584,"lower_bound":37.88897791903094,"upper_bound":72.13550511212165,"unit":"ns"},"slope":{"estimate":62484.143875794296,"lower_bound":62471.424171916726,"upper_bound":62498.4190950625,"unit":"ns"},"change":{"mean":{"estimate":0.005299454515735658,"lower_bound":0.0030426731175022094,"upper_bound":0.007289760781089366,"unit":"%"},"median":{"estimate":0.007053334262944633,"lower_bound":0.006686129319520395,"upper_bound":0.0073123187154396805,"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":[1113453.0,2006664.0,3012109.0,4015423.0,5018386.0,6024802.0,7025520.0,8085336.0,9035609.0,10036364.0,11097660.0,12044912.0,13047020.0,14081174.0,15054158.0,16115332.0,17093100.0,18064760.0,19094878.0,20126185.0,21171984.0,22093364.0,23213430.0,24093336.0,25171401.0,26258164.0,27260137.0,28125620.0,29159352.0,30196725.0,31164576.0,32195323.0,33436860.0,34188352.0,35223139.0,36194971.0,37187650.0,38167407.0,39258601.0,40323174.0,41180544.0,42227321.0,43211910.0,44218849.0,45252767.0,46283991.0,47229819.0,48229758.0,49288098.0,50296360.0,51215019.0,52246915.0,53214613.0,54313718.0,55387441.0,56307279.0,57312652.0,58285340.0,59260514.0,60237755.0,61351668.0,62268274.0,63273865.0,64303383.0,65337834.0,66312386.0,67475424.0,68328002.0,69302488.0,70369793.0,71507663.0,72337477.0,73397749.0,74337599.0,75320562.0,76353682.0,77357426.0,78365291.0,79411847.0,80423574.0,81365001.0,82377013.0,83408788.0,84574372.0,85406132.0,86438339.0,87354252.0,88434227.0,89569332.0,90370980.0,91485051.0,92572794.0,93562126.0,94456520.0,95649384.0,96488520.0,97814686.0,98524783.0,99466487.0,100669261.0],"unit":"ns","throughput":[{"per_iteration":32768,"unit":"bytes"}],"typical":{"estimate":125674.94671974287,"lower_bound":125641.26478280121,"upper_bound":125711.63317393411,"unit":"ns"},"mean":{"estimate":125820.74656766141,"lower_bound":125655.81336941727,"upper_bound":126117.10468936653,"unit":"ns"},"median":{"estimate":125635.02322635136,"lower_bound":125602.70129654255,"upper_bound":125676.55059523809,"unit":"ns"},"median_abs_dev":{"estimate":137.7250246100809,"lower_bound":101.28204553486987,"upper_bound":188.57652377709445,"unit":"ns"},"slope":{"estimate":125674.94671974287,"lower_bound":125641.26478280121,"upper_bound":125711.63317393411,"unit":"ns"},"change":{"mean":{"estimate":0.00815153876026975,"lower_bound":0.0063791041884393275,"upper_bound":0.010761810996325316,"unit":"%"},"median":{"estimate":0.007580145499660906,"lower_bound":0.007160167752962465,"upper_bound":0.00805155135470681,"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":[1110092.0,2014601.0,3025618.0,4032123.0,5038973.0,6075988.0,7056140.0,8090737.0,9070837.0,10108058.0,11086887.0,12094909.0,13139292.0,14107615.0,15117589.0,16182631.0,17131359.0,18196504.0,19148213.0,20237114.0,21330330.0,22227282.0,23203631.0,24188116.0,25222727.0,26371464.0,27329433.0,28244730.0,29253990.0,30260323.0,31425659.0,32481215.0,33314508.0,34413293.0,35299454.0,36308231.0,37375552.0,38437855.0,39428753.0,40402242.0,41376556.0,42499239.0,43539624.0,44428744.0,45407124.0,46416057.0,47450955.0,48459538.0,49437573.0,50419909.0,51454564.0,52507388.0,53639337.0,54457009.0,55488438.0,56588994.0,57530476.0,58513619.0,59519466.0,60614890.0,61613172.0,62627877.0,63521364.0,64572604.0,65543501.0,66531638.0,67562476.0,68568789.0,69546742.0,70610019.0,71536852.0,72636766.0,73601841.0,74713876.0,75621057.0,76829277.0,77591911.0,78606542.0,79602890.0,80641093.0,81643451.0,82614962.0,83659808.0,84693430.0,85671036.0,86651356.0,87726284.0,88878729.0,89703966.0,90704613.0,91745992.0,92690779.0,93882338.0,94833729.0,95836436.0,96801940.0,97970790.0,98793070.0,100222574.0,100802271.0],"unit":"ns","throughput":[{"per_iteration":65536,"unit":"bytes"}],"typical":{"estimate":252217.7345596276,"lower_bound":252145.0398825872,"upper_bound":252303.8176409494,"unit":"ns"},"mean":{"estimate":252588.26207655043,"lower_bound":252273.38088805386,"upper_bound":253146.07387308934,"unit":"ns"},"median":{"estimate":252206.0702119883,"lower_bound":252115.78240740742,"upper_bound":252261.17934782608,"unit":"ns"},"median_abs_dev":{"estimate":340.08962066673075,"lower_bound":223.28448555612553,"upper_bound":409.6930267746933,"unit":"ns"},"slope":{"estimate":252217.7345596276,"lower_bound":252145.0398825872,"upper_bound":252303.8176409494,"unit":"ns"},"change":{"mean":{"estimate":0.007276861236866772,"lower_bound":0.004148605340700496,"upper_bound":0.010365529561001431,"unit":"%"},"median":{"estimate":0.00794269763334654,"lower_bound":0.0073137147855466544,"upper_bound":0.008332322959817118,"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":[1139725.0,2047233.0,3023059.0,4061718.0,5102109.0,6076909.0,7114149.0,8121845.0,9128262.0,10168193.0,11173582.0,12182249.0,13188726.0,14227554.0,15205943.0,16283288.0,17279196.0,18229030.0,19184938.0,20190456.0,21200064.0,22208906.0,23412821.0,24193700.0,25231961.0,26298471.0,27276719.0,28261567.0,29317119.0,30335549.0,31305639.0,32289211.0,33325576.0,34302421.0,35398317.0,36347485.0,37392226.0,38393404.0,39374161.0,40382857.0,41422298.0,42493339.0,43408377.0,44417119.0,45428471.0,46433852.0,47458424.0,48448212.0,49484162.0,50559348.0,51473165.0,52570734.0,53704590.0,54553303.0,55530836.0,56544200.0,57541034.0,58556111.0,59537338.0,60571585.0,61558210.0,62564045.0,63651430.0,64575313.0,65847288.0,66673704.0,67627671.0,68636548.0,69731398.0,70739527.0,71643139.0,72704700.0,73651323.0,74690629.0,75720454.0,77029953.0,77757727.0,78721229.0,79797306.0,80798221.0,81742658.0,82932833.0,84017360.0,84745170.0,85841723.0,86819451.0,87831256.0,88835589.0,89843806.0,90927814.0,91829908.0,92805540.0,94237290.0,95102751.0,95884116.0,96949089.0,98110195.0,99183453.0,100394857.0,101046261.0],"unit":"ns","throughput":[{"per_iteration":131072,"unit":"bytes"}],"typical":{"estimate":505166.76520466973,"lower_bound":504980.4089669354,"upper_bound":505368.65713397675,"unit":"ns"},"mean":{"estimate":506207.3436856469,"lower_bound":505363.7358182184,"upper_bound":507657.8456780815,"unit":"ns"},"median":{"estimate":504941.8002232143,"lower_bound":504814.6036111111,"upper_bound":505170.07936507935,"unit":"ns"},"median_abs_dev":{"estimate":530.5312508066672,"lower_bound":358.4722978562829,"upper_bound":837.8978920474501,"unit":"ns"},"slope":{"estimate":505166.76520466973,"lower_bound":504980.4089669354,"upper_bound":505368.65713397675,"unit":"ns"},"change":{"mean":{"estimate":0.008976888012613538,"lower_bound":0.004854007673077483,"upper_bound":0.012863370201026486,"unit":"%"},"median":{"estimate":0.008273010346526277,"lower_bound":0.007937300295145278,"upper_bound":0.008925026956995152,"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":[1224029.0,2072246.0,3101702.0,4137753.0,5174463.0,6206385.0,7243641.0,8133860.0,9089569.0,10129012.0,11109509.0,12118590.0,13157058.0,14170244.0,15175581.0,16158836.0,17225076.0,18177619.0,19216496.0,20198383.0,21236332.0,22217786.0,23284653.0,24321890.0,25249496.0,26286471.0,27296472.0,28333726.0,29319460.0,30328923.0,31361501.0,32485905.0,33353506.0,34360073.0,35370858.0,36388562.0,37400367.0,38434311.0,39652410.0,40456262.0,41608897.0,42604256.0,43501618.0,44481767.0,45528019.0,46528508.0,47544392.0,48758494.0,49531360.0,50719645.0,51575894.0,52615404.0,53622755.0,54606382.0,55709337.0,56595583.0,57691472.0,58712148.0,59673460.0,60784988.0,61677090.0,62759486.0,63694969.0,64677624.0,65745120.0,66722341.0,67819463.0,68747543.0,69781122.0,70768647.0,71894430.0,72781579.0,73765331.0,74848688.0,75949601.0,76853785.0,77889096.0,78838683.0,79829203.0,80835059.0,81985668.0,83014509.0,83984802.0,85308937.0,85945859.0,86955475.0,88525385.0,89057241.0,90005078.0,91087290.0,91998924.0,93004485.0,94042886.0,95029776.0,96100542.0,97057526.0,98095743.0,99259217.0,100082559.0,101086823.0],"unit":"ns","throughput":[{"per_iteration":262144,"unit":"bytes"}],"typical":{"estimate":1011761.527152357,"lower_bound":1011441.9103336858,"upper_bound":1012165.1953493488,"unit":"ns"},"mean":{"estimate":1015264.8895390833,"lower_bound":1012344.2890047715,"upper_bound":1020148.0358900354,"unit":"ns"},"median":{"estimate":1011421.9065566459,"lower_bound":1011223.920557442,"upper_bound":1011705.4,"unit":"ns"},"median_abs_dev":{"estimate":977.457037148118,"lower_bound":665.2253062072681,"upper_bound":1271.635561676839,"unit":"ns"},"slope":{"estimate":1011761.527152357,"lower_bound":1011441.9103336858,"upper_bound":1012165.1953493488,"unit":"ns"},"change":{"mean":{"estimate":0.010939649808290541,"lower_bound":0.0075160245770305115,"upper_bound":0.015444403407752993,"unit":"%"},"median":{"estimate":0.008672207821210032,"lower_bound":0.008321223548687362,"upper_bound":0.0089630756256068,"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":[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":[50696540.0,50582528.0,50616805.0,50855161.0,50846452.0,50569778.0,50572263.0,50702459.0,50571578.0,50792508.0,50565221.0,50856265.0,50623938.0,50580882.0,50616145.0,50593248.0,50955486.0,50563384.0,50578289.0,50574131.0,50574289.0,50572796.0,50650852.0,50583998.0,50601929.0,50573642.0,50574532.0,50571689.0,50544514.0,50575650.0,50575360.0,50666471.0,50578942.0,50593161.0,50654395.0,50548308.0,50950651.0,50572972.0,50575956.0,50722166.0,50575193.0,50603154.0,50624468.0,50577739.0,50606783.0,50571799.0,50593930.0,50666041.0,50544322.0,50571737.0,50571068.0,50570176.0,50546137.0,50612156.0,50540255.0,50569974.0,50916698.0,50573982.0,50603698.0,50546963.0,50600289.0,50551818.0,50682338.0,50579641.0,50602834.0,50573356.0,50598593.0,50545283.0,50570555.0,50576879.0,50629412.0,50548265.0,50550900.0,50546645.0,50815499.0,50946368.0,50765156.0,50564044.0,50650126.0,50604029.0,50766995.0,50578121.0,50701432.0,50557716.0,50592685.0,50537239.0,50718559.0,50537753.0,50600830.0,50536419.0,50599608.0,50561500.0,50536588.0,50543922.0,50582638.0,50968340.0,50538507.0,50540873.0,50590137.0,50563477.0],"unit":"ns","throughput":[{"per_iteration":524288,"unit":"bytes"}],"typical":{"estimate":2024886.7903999996,"lower_bound":2024115.13656,"upper_bound":2025724.7117499998,"unit":"ns"},"mean":{"estimate":2024886.7903999996,"lower_bound":2024115.13656,"upper_bound":2025724.7117499998,"unit":"ns"},"median":{"estimate":2023144.62,"lower_bound":2022971.56,"upper_bound":2023741.8199999998,"unit":"ns"},"median_abs_dev":{"estimate":1471.361865877822,"lower_bound":985.6917665005973,"upper_bound":2068.138007283128,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.008737847557385381,"lower_bound":0.008172645480454432,"upper_bound":0.009345696962612754,"unit":"%"},"median":{"estimate":0.008418048932203659,"lower_bound":0.008116074470189761,"upper_bound":0.008899536959696152,"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":[13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13],"measured_values":[52964341.0,52925505.0,53348451.0,52862288.0,52859962.0,52919011.0,52907504.0,52889312.0,52964676.0,52913049.0,52900737.0,52859918.0,52885748.0,52887876.0,52886917.0,52885376.0,52908016.0,52889984.0,52859696.0,52945499.0,52892639.0,53399707.0,52868444.0,52900541.0,52878335.0,53002185.0,52870509.0,52975034.0,52905465.0,52931436.0,53063502.0,52887502.0,52953686.0,53001763.0,52873018.0,52883672.0,52914742.0,52889355.0,53129742.0,52942858.0,53315219.0,52912576.0,52893765.0,52902007.0,52965433.0,52929312.0,52940840.0,52891815.0,52917965.0,52896376.0,52863208.0,52887311.0,52917269.0,52889956.0,52956379.0,52943331.0,52900264.0,52940854.0,52853676.0,53289757.0,52883567.0,52860679.0,53010926.0,52949690.0,52881196.0,53052105.0,52866939.0,52925669.0,52900673.0,52854268.0,52916203.0,52936086.0,52895133.0,52885370.0,52889317.0,52886067.0,52887154.0,52928548.0,53275406.0,52912500.0,52888935.0,52860046.0,52924697.0,52908796.0,52992752.0,52861176.0,52993510.0,52868887.0,52921450.0,52863882.0,52922355.0,52857202.0,52923463.0,52898939.0,52926591.0,52916758.0,52917618.0,53254898.0,52911791.0,52884139.0],"unit":"ns","throughput":[{"per_iteration":1048576,"unit":"bytes"}],"typical":{"estimate":4072100.5346153844,"lower_bound":4070606.487711537,"upper_bound":4073808.901576922,"unit":"ns"},"mean":{"estimate":4072100.5346153844,"lower_bound":4070606.487711537,"upper_bound":4073808.901576922,"unit":"ns"},"median":{"estimate":4069827.692307692,"lower_bound":4068851.576923077,"upper_bound":4070559.153846154,"unit":"ns"},"median_abs_dev":{"estimate":2623.688745727428,"lower_bound":1987.1401493370197,"upper_bound":3773.445025315864,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.008260851701757499,"lower_bound":0.007784063421347381,"upper_bound":0.008788362238513037,"unit":"%"},"median":{"estimate":0.008093095270259809,"lower_bound":0.007785908829343091,"upper_bound":0.008431908892102546,"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":[7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7],"measured_values":[57303924.0,57021504.0,56934126.0,56944896.0,56932131.0,56935103.0,56999261.0,56965543.0,56968850.0,57033729.0,56906756.0,56940695.0,56969399.0,56903382.0,56913232.0,56963235.0,56978719.0,56917620.0,56911284.0,56908354.0,57032073.0,56936111.0,56943283.0,56906037.0,56929564.0,56911987.0,57051924.0,56966153.0,56880327.0,56965894.0,57038604.0,56922687.0,56933122.0,56877534.0,56991722.0,56903113.0,57019881.0,57103035.0,57003671.0,56936321.0,56932241.0,56940965.0,56940509.0,57001364.0,57045637.0,56905896.0,56933937.0,56939256.0,56905383.0,56960100.0,56942046.0,56906154.0,56978716.0,56902702.0,56938364.0,56955156.0,56909983.0,56903457.0,56970084.0,56907369.0,56930896.0,57020893.0,56933163.0,56881253.0,56936188.0,56963151.0,56911475.0,56935186.0,56943769.0,56999690.0,56902407.0,56994053.0,56971575.0,56955657.0,56965954.0,56903774.0,56999327.0,56993556.0,56942191.0,57074022.0,56961596.0,56904407.0,56925741.0,56927120.0,56902725.0,56927750.0,56907398.0,56967681.0,56877144.0,56939070.0,56945179.0,56874558.0,56932651.0,56941462.0,56930075.0,56929680.0,57083260.0,56933134.0,56909100.0,56878013.0],"unit":"ns","throughput":[{"per_iteration":2097152,"unit":"bytes"}],"typical":{"estimate":8135971.469999999,"lower_bound":8134437.819642852,"upper_bound":8137708.9738214305,"unit":"ns"},"mean":{"estimate":8135971.469999999,"lower_bound":8134437.819642852,"upper_bound":8137708.9738214305,"unit":"ns"},"median":{"estimate":8133906.071428571,"lower_bound":8133270.357142857,"upper_bound":8134754.714285715,"unit":"ns"},"median_abs_dev":{"estimate":6080.989692041444,"lower_bound":4945.9535121917725,"upper_bound":7115.632673673056,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.007239802525012662,"lower_bound":0.006739458712743551,"upper_bound":0.007693674047047766,"unit":"%"},"median":{"estimate":0.0077639499939197165,"lower_bound":0.007454149766441542,"upper_bound":0.00793821928290539,"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":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],"measured_values":[65120584.0,65128376.0,65327553.0,65163280.0,65074538.0,65060001.0,65098878.0,65100759.0,65173939.0,65160282.0,65065792.0,65165899.0,65164972.0,65091636.0,65071991.0,65124512.0,65178279.0,65266273.0,65191438.0,65108038.0,65104348.0,65128474.0,65046938.0,65075404.0,65201079.0,65171168.0,65192162.0,65137496.0,65177989.0,65076572.0,65071443.0,65157594.0,65079897.0,65286285.0,65164049.0,65108425.0,65077347.0,65059919.0,65076003.0,65075816.0,65115873.0,65103346.0,65114015.0,65174997.0,65090536.0,65075988.0,65069515.0,65137281.0,65301596.0,65177215.0,65298820.0,65122406.0,65076099.0,65213486.0,65223164.0,65115439.0,65150614.0,65182952.0,65148917.0,65178668.0,65104998.0,65068404.0,65133878.0,65221985.0,65168220.0,65111345.0,65158336.0,65051653.0,65097205.0,65095005.0,65192903.0,65077397.0,65098163.0,65126090.0,65145449.0,65127925.0,65064669.0,65257269.0,65116762.0,65243144.0,65114994.0,65106139.0,65152273.0,65038638.0,65104656.0,65124550.0,65079038.0,65095882.0,65193028.0,65124471.0,65135408.0,65123998.0,65067438.0,65101578.0,65269905.0,65081216.0,65124286.0,65074272.0,65095002.0,65067165.0],"unit":"ns","throughput":[{"per_iteration":4194304,"unit":"bytes"}],"typical":{"estimate":16283277.73,"lower_bound":16280355.587499999,"upper_bound":16286345.9825,"unit":"ns"},"mean":{"estimate":16283277.73,"lower_bound":16280355.587499999,"upper_bound":16286345.9825,"unit":"ns"},"median":{"estimate":16280373.75,"lower_bound":16276534.75,"upper_bound":16282781.75,"unit":"ns"},"median_abs_dev":{"estimate":15943.694791942835,"lower_bound":10959.00835543871,"upper_bound":17969.111680984497,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.008251505557274719,"lower_bound":0.007932447635358586,"upper_bound":0.008547359787025194,"unit":"%"},"median":{"estimate":0.008431662518995742,"lower_bound":0.008128646229615932,"upper_bound":0.00863583041266991,"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":[72083016.0,72080770.0,71948365.0,71818678.0,71698231.0,71916742.0,71720859.0,71780547.0,71845386.0,72198254.0,71881577.0,71883936.0,71786318.0,71686917.0,71967798.0,71789461.0,71829565.0,71782421.0,71777687.0,71850188.0,71761363.0,71755947.0,71751725.0,71858758.0,72010034.0,71781508.0,71748061.0,71788466.0,71751159.0,71749767.0,71770562.0,71781423.0,71812864.0,71790046.0,71765327.0,71745589.0,71771252.0,71679698.0,71940978.0,71787672.0,71800151.0,71617586.0,71760897.0,71763247.0,71769849.0,71804708.0,71596282.0,71854803.0,71866612.0,71748893.0,71765230.0,71861797.0,72000822.0,71761427.0,71756964.0,71774905.0,71721700.0,71803267.0,71882918.0,71739055.0,71862688.0,71839230.0,71757818.0,71752248.0,71961944.0,71813347.0,71967673.0,71753236.0,71591101.0,71829195.0,71597683.0,71762822.0,71769117.0,71764826.0,71732470.0,71843407.0,71873570.0,71938929.0,71952774.0,71777757.0,71963917.0,72038974.0,71764943.0,71909079.0,71983813.0,71774734.0,71898079.0,71815365.0,71696867.0,71885523.0,71755735.0,71783310.0,71851225.0,71940700.0,71965988.0,71835008.0,71805685.0,71779809.0,71788064.0,71744252.0],"unit":"ns","throughput":[{"per_iteration":8388608,"unit":"bytes"}],"typical":{"estimate":35909514.665,"lower_bound":35899577.617875,"upper_bound":35919886.361999996,"unit":"ns"},"mean":{"estimate":35909514.665,"lower_bound":35899577.617875,"upper_bound":35919886.361999996,"unit":"ns"},"median":{"estimate":35893934.0,"lower_bound":35888165.5,"upper_bound":35907057.25,"unit":"ns"},"median_abs_dev":{"estimate":31125.703847408295,"lower_bound":21821.27706259489,"upper_bound":46155.93173056841,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.006067577085108189,"lower_bound":0.005543067372834815,"upper_bound":0.00657061711735582,"unit":"%"},"median":{"estimate":0.00614672433347585,"lower_bound":0.005820038227667412,"upper_bound":0.006576354344596469,"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":[72257419.0,71792990.0,72042739.0,71954177.0,72211281.0,71778443.0,71822175.0,71777532.0,71745188.0,71797954.0,71763432.0,71901389.0,71834119.0,71789277.0,71776541.0,71739670.0,71719501.0,71893215.0,71902803.0,71792503.0,71926931.0,71830794.0,71792372.0,71884896.0,71745352.0,71778403.0,71816262.0,71816578.0,71879794.0,71856110.0,72386092.0,72710967.0,72084534.0,71843794.0,71879010.0,71796230.0,71781787.0,71812831.0,71872668.0,71717919.0,71910293.0,71809862.0,71718923.0,71817650.0,71881610.0,72026464.0,72012953.0,71768807.0,71750230.0,71874386.0,71780033.0,71773393.0,71936958.0,71730854.0,71801149.0,71980469.0,71820672.0,71994120.0,71959520.0,71953813.0,72104862.0,71735746.0,71920890.0,72025572.0,71779425.0,71817668.0,71770900.0,71749328.0,71815033.0,71888649.0,71711089.0,71777098.0,71779297.0,71847999.0,71929878.0,71782304.0,71776218.0,71785670.0,71699660.0,71895908.0,71802247.0,71797380.0,71763536.0,71902839.0,71829368.0,71743344.0,71982739.0,71845263.0,72005347.0,71776899.0,71766939.0,71782504.0,71780252.0,71854095.0,71861711.0,71806717.0,71839505.0,71854289.0,71782676.0,71791043.0],"unit":"ns","throughput":[{"per_iteration":16777216,"unit":"bytes"}],"typical":{"estimate":71859697.18,"lower_bound":71833520.56125,"upper_bound":71889866.50275,"unit":"ns"},"mean":{"estimate":71859697.18,"lower_bound":71833520.56125,"upper_bound":71889866.50275,"unit":"ns"},"median":{"estimate":71816420.0,"lower_bound":71795185.0,"upper_bound":71843794.0,"unit":"ns"},"median_abs_dev":{"estimate":71975.78092217445,"lower_bound":48878.35593223572,"upper_bound":100188.17582130432,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.006304060644488407,"lower_bound":0.005703750649588041,"upper_bound":0.006924210273507009,"unit":"%"},"median":{"estimate":0.006206157988826844,"lower_bound":0.005807061618247511,"upper_bound":0.0068787109156507814,"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":[144569405.0,144008090.0,143665153.0,143668656.0,143837942.0,144183956.0,144026703.0,144110074.0,143765965.0,143888204.0,144103771.0,143813404.0,144217587.0,143967452.0,144371771.0,144159996.0,144028233.0,143681977.0,144074561.0,143631349.0,143700188.0,146521427.0,143856996.0,143739091.0,143710689.0,144467617.0,143961567.0,143806727.0,144109535.0,143704855.0,143974681.0,143650569.0,144456127.0,144000494.0,143935098.0,143838995.0,143744411.0,143951476.0,143962787.0,144275623.0,143775337.0,143891144.0,143871141.0,143624312.0,143863429.0,143618843.0,144141821.0,143858448.0,144204943.0,144132429.0,143913760.0,143694627.0,144022138.0,145120023.0,143696655.0,143900521.0,143745296.0,143743357.0,143599669.0,143640743.0,144223266.0,143566342.0,144083492.0,144345601.0,143628317.0,144075278.0,143795931.0,144077441.0,143698392.0,144229630.0,143806786.0,143838444.0,143645453.0,144379976.0,144355424.0,143697582.0,143973951.0,144128579.0,143647721.0,143777786.0,143575462.0,143925728.0,143968068.0,145163646.0,145331359.0,143776117.0,144017199.0,143857463.0,144761680.0,144082900.0,144170972.0,144065227.0,143761177.0,143685757.0,143973998.0,144176833.0,143704549.0,144336377.0,143784909.0,143812501.0],"unit":"ns","throughput":[{"per_iteration":33554432,"unit":"bytes"}],"typical":{"estimate":144001091.52,"lower_bound":143926740.934,"upper_bound":144087287.3705,"unit":"ns"},"mean":{"estimate":144001091.52,"lower_bound":143926740.934,"upper_bound":144087287.3705,"unit":"ns"},"median":{"estimate":143919744.0,"lower_bound":143838995.0,"upper_bound":143987246.0,"unit":"ns"},"median_abs_dev":{"estimate":277111.27848029137,"lower_bound":215737.5699698925,"upper_bound":337565.7750070095,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.006704332067615004,"lower_bound":0.006090607816932065,"upper_bound":0.007351831481334803,"unit":"%"},"median":{"estimate":0.006443790206642541,"lower_bound":0.005697945219051765,"upper_bound":0.007043104179517812,"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":[234,468,702,936,1170,1404,1638,1872,2106,2340,2574,2808,3042,3276,3510,3744,3978,4212,4446,4680,4914,5148,5382,5616,5850,6084,6318,6552,6786,7020,7254,7488,7722,7956,8190,8424,8658,8892,9126,9360,9594,9828,10062,10296,10530,10764,10998,11232,11466,11700,11934,12168,12402,12636,12870,13104,13338,13572,13806,14040,14274,14508,14742,14976,15210,15444,15678,15912,16146,16380,16614,16848,17082,17316,17550,17784,18018,18252,18486,18720,18954,19188,19422,19656,19890,20124,20358,20592,20826,21060,21294,21528,21762,21996,22230,22464,22698,22932,23166,23400],"measured_values":[1043073.0,1978264.0,2963781.0,3951905.0,4941433.0,5927329.0,6949340.0,7932006.0,8891156.0,9879581.0,10888220.0,11843240.0,12991154.0,13860391.0,14820305.0,15870987.0,16865723.0,17944644.0,18797929.0,19784756.0,20744297.0,21764685.0,22749885.0,23732684.0,24787760.0,25800272.0,26674373.0,27718448.0,28678110.0,29688615.0,30679796.0,31628140.0,32697882.0,33587303.0,34623426.0,35587251.0,36582990.0,37557937.0,38598558.0,39599874.0,40530858.0,41756318.0,42598325.0,43599442.0,44676314.0,45768446.0,47026808.0,47870891.0,48612625.0,49471349.0,50410339.0,51494259.0,52436601.0,53406351.0,54364615.0,55450148.0,56592650.0,57351919.0,58371959.0,59554520.0,60439845.0,61464645.0,62310917.0,63529531.0,64412067.0,65326934.0,66305276.0,67218949.0,68301857.0,69171967.0,70202030.0,71840410.0,72487941.0,73572336.0,74294933.0,75327313.0,76280742.0,77113582.0,78186858.0,79103098.0,80098412.0,81187798.0,82141098.0,83063014.0,84131014.0,85039854.0,86010903.0,87130643.0,88453883.0,89004252.0,90055586.0,91022106.0,92270310.0,93037288.0,93964496.0,94951048.0,95963412.0,96915162.0,98076540.0,99162379.0],"unit":"ns","throughput":[{"per_iteration":2,"unit":"bytes"}],"typical":{"estimate":4232.157612256059,"lower_bound":4230.277470730304,"upper_bound":4234.308852430394,"unit":"ns"},"mean":{"estimate":4234.486915671985,"lower_bound":4230.68811861786,"upper_bound":4240.101368878278,"unit":"ns"},"median":{"estimate":4229.236684203327,"lower_bound":4227.680061175937,"upper_bound":4230.532356532357,"unit":"ns"},"median_abs_dev":{"estimate":6.489036018588021,"lower_bound":4.4194185258363845,"upper_bound":8.517739609520863,"unit":"ns"},"slope":{"estimate":4232.157612256059,"lower_bound":4230.277470730304,"upper_bound":4234.308852430394,"unit":"ns"},"change":{"mean":{"estimate":0.0036985405471232635,"lower_bound":0.001621434721898907,"upper_bound":0.005424266417861499,"unit":"%"},"median":{"estimate":0.003932231917878504,"lower_bound":0.0033505117301502185,"upper_bound":0.004271653806763087,"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":[155,310,465,620,775,930,1085,1240,1395,1550,1705,1860,2015,2170,2325,2480,2635,2790,2945,3100,3255,3410,3565,3720,3875,4030,4185,4340,4495,4650,4805,4960,5115,5270,5425,5580,5735,5890,6045,6200,6355,6510,6665,6820,6975,7130,7285,7440,7595,7750,7905,8060,8215,8370,8525,8680,8835,8990,9145,9300,9455,9610,9765,9920,10075,10230,10385,10540,10695,10850,11005,11160,11315,11470,11625,11780,11935,12090,12245,12400,12555,12710,12865,13020,13175,13330,13485,13640,13795,13950,14105,14260,14415,14570,14725,14880,15035,15190,15345,15500],"measured_values":[1064673.0,1976650.0,2965895.0,3956334.0,4942841.0,5932247.0,6945419.0,8083732.0,8986756.0,9972267.0,10956822.0,11891054.0,12876201.0,13990601.0,14988063.0,15929867.0,16859934.0,17843284.0,18812249.0,19823267.0,20795094.0,21741768.0,22792992.0,23747625.0,24740168.0,25726099.0,26713015.0,27727008.0,28728403.0,29693816.0,30811921.0,31702349.0,32643201.0,33671702.0,34617415.0,35605602.0,36619651.0,37574906.0,38607097.0,39589948.0,40548207.0,41531842.0,42585735.0,43552770.0,44546783.0,45522683.0,46580953.0,47508991.0,48493931.0,49728722.0,50446970.0,51536169.0,52532972.0,53513674.0,54696154.0,55459553.0,56379437.0,57406659.0,58395611.0,59530595.0,60673929.0,61418580.0,62324241.0,63416406.0,64356678.0,65308180.0,66319170.0,67250606.0,68418639.0,69440215.0,70558528.0,71204769.0,72203139.0,73198287.0,74256300.0,75198119.0,76177286.0,77277668.0,78209163.0,79143772.0,80176723.0,81186780.0,82226834.0,83839257.0,85078121.0,85785163.0,86179150.0,87157407.0,88051911.0,89097077.0,90047556.0,90974340.0,92085876.0,93082816.0,94158712.0,95807706.0,96042971.0,96967367.0,97958434.0,98974969.0],"unit":"ns","throughput":[{"per_iteration":4,"unit":"bytes"}],"typical":{"estimate":6393.388312579549,"lower_bound":6388.911417949933,"upper_bound":6398.700904980865,"unit":"ns"},"mean":{"estimate":6399.561656477727,"lower_bound":6391.768318022989,"upper_bound":6411.330330890849,"unit":"ns"},"median":{"estimate":6387.699156327544,"lower_bound":6385.76688172043,"upper_bound":6389.578245213041,"unit":"ns"},"median_abs_dev":{"estimate":7.879301473018249,"lower_bound":5.754511576046065,"upper_bound":9.924912181166716,"unit":"ns"},"slope":{"estimate":6393.388312579549,"lower_bound":6388.911417949933,"upper_bound":6398.700904980865,"unit":"ns"},"change":{"mean":{"estimate":0.0028497538265286337,"lower_bound":-0.0000246657178860569,"upper_bound":0.0053643082447825275,"unit":"%"},"median":{"estimate":0.0027481146194778816,"lower_bound":0.00235165717339636,"upper_bound":0.0030548034870458984,"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":[71,142,213,284,355,426,497,568,639,710,781,852,923,994,1065,1136,1207,1278,1349,1420,1491,1562,1633,1704,1775,1846,1917,1988,2059,2130,2201,2272,2343,2414,2485,2556,2627,2698,2769,2840,2911,2982,3053,3124,3195,3266,3337,3408,3479,3550,3621,3692,3763,3834,3905,3976,4047,4118,4189,4260,4331,4402,4473,4544,4615,4686,4757,4828,4899,4970,5041,5112,5183,5254,5325,5396,5467,5538,5609,5680,5751,5822,5893,5964,6035,6106,6177,6248,6319,6390,6461,6532,6603,6674,6745,6816,6887,6958,7029,7100],"measured_values":[1032587.0,1964794.0,2945707.0,3956343.0,4905194.0,5881383.0,6862803.0,7838958.0,8821918.0,9823858.0,10801310.0,11754332.0,12770551.0,13738232.0,14794978.0,15682691.0,16653231.0,17666564.0,18613038.0,19619001.0,20603712.0,21551651.0,22592405.0,23518223.0,24603303.0,25525076.0,26581143.0,27432441.0,28467357.0,29428948.0,30402180.0,31392223.0,32377089.0,34069023.0,34398935.0,35325519.0,36304388.0,37460076.0,38305814.0,39263161.0,40223616.0,41217618.0,42173287.0,43368564.0,44185030.0,45311503.0,46111354.0,47223031.0,48056952.0,49042406.0,50088568.0,51032733.0,52038324.0,52992308.0,53987701.0,54959210.0,55918919.0,56913965.0,58038348.0,58876596.0,59825690.0,60788117.0,61874441.0,62763039.0,63764658.0,64795352.0,66212500.0,67053346.0,67682446.0,68690773.0,69601010.0,70612829.0,73435484.0,72782945.0,73625393.0,74678793.0,75530106.0,76723977.0,77482786.0,78676730.0,79556962.0,80442646.0,81593051.0,82600806.0,83475606.0,84506980.0,85794272.0,87362093.0,87859444.0,88976017.0,89331432.0,90318999.0,91248546.0,92257957.0,93292731.0,94175779.0,95246624.0,96270614.0,97168401.0,98101688.0],"unit":"ns","throughput":[{"per_iteration":8,"unit":"bytes"}],"typical":{"estimate":13845.470236170979,"lower_bound":13833.136747047702,"upper_bound":13861.021181014505,"unit":"ns"},"mean":{"estimate":13846.453930970316,"lower_bound":13831.87686216538,"upper_bound":13865.877372535797,"unit":"ns"},"median":{"estimate":13824.493133802818,"lower_bound":13820.797183098592,"upper_bound":13829.430359937402,"unit":"ns"},"median_abs_dev":{"estimate":15.491277501374695,"lower_bound":11.081595676402726,"upper_bound":20.611102198828362,"unit":"ns"},"slope":{"estimate":13845.470236170979,"lower_bound":13833.136747047702,"upper_bound":13861.021181014505,"unit":"ns"},"change":{"mean":{"estimate":0.0025860914823967462,"lower_bound":0.0012700335651098296,"upper_bound":0.004375713479400728,"unit":"%"},"median":{"estimate":0.0016230462069406482,"lower_bound":0.0012793659118757184,"upper_bound":0.002024430330810123,"unit":"%"},"change":"NoChange"}} -{"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":[35,70,105,140,175,210,245,280,315,350,385,420,455,490,525,560,595,630,665,700,735,770,805,840,875,910,945,980,1015,1050,1085,1120,1155,1190,1225,1260,1295,1330,1365,1400,1435,1470,1505,1540,1575,1610,1645,1680,1715,1750,1785,1820,1855,1890,1925,1960,1995,2030,2065,2100,2135,2170,2205,2240,2275,2310,2345,2380,2415,2450,2485,2520,2555,2590,2625,2660,2695,2730,2765,2800,2835,2870,2905,2940,2975,3010,3045,3080,3115,3150,3185,3220,3255,3290,3325,3360,3395,3430,3465,3500],"measured_values":[1057003.0,2013324.0,3020206.0,4025427.0,5027485.0,6035422.0,7042185.0,8075751.0,9056776.0,10100182.0,11073699.0,12068127.0,13076763.0,14127885.0,15381047.0,16274074.0,17280067.0,18249476.0,19436761.0,20328862.0,21325234.0,22176654.0,23229960.0,24180823.0,25135969.0,26176065.0,27163793.0,28282909.0,29222225.0,30222477.0,31171473.0,32464060.0,33208314.0,34221201.0,35192721.0,36255541.0,37206485.0,38246282.0,39642243.0,40733251.0,41644863.0,42507823.0,43340873.0,44305105.0,45277632.0,46329980.0,47323877.0,48292236.0,49324161.0,50329481.0,51382162.0,52337094.0,53362107.0,54298429.0,55745754.0,56381774.0,57444941.0,58364712.0,59419381.0,60359341.0,61435010.0,62416570.0,63398818.0,64402636.0,65438764.0,66388227.0,67397962.0,68471224.0,69497036.0,70424408.0,71835051.0,72810360.0,73482543.0,74911361.0,75688851.0,76596333.0,77516564.0,78781972.0,79583420.0,80524723.0,81525305.0,82540798.0,83566733.0,84890452.0,85557853.0,86528504.0,88390473.0,89611631.0,89608106.0,90654168.0,91602452.0,92986030.0,93623268.0,94791018.0,96025965.0,97035693.0,98020424.0,98876511.0,99655375.0,100662989.0],"unit":"ns","throughput":[{"per_iteration":16,"unit":"bytes"}],"typical":{"estimate":28813.310720766745,"lower_bound":28793.13546239785,"upper_bound":28836.241145280906,"unit":"ns"},"mean":{"estimate":28835.969846805772,"lower_bound":28805.897473782792,"upper_bound":28875.01539851427,"unit":"ns"},"median":{"estimate":28768.86806722689,"lower_bound":28763.103525046383,"upper_bound":28783.97765485941,"unit":"ns"},"median_abs_dev":{"estimate":36.6703038195571,"lower_bound":23.806672507532706,"upper_bound":61.486640057647314,"unit":"ns"},"slope":{"estimate":28813.310720766745,"lower_bound":28793.13546239785,"upper_bound":28836.241145280906,"unit":"ns"},"change":{"mean":{"estimate":0.001686607318357014,"lower_bound":-0.0002877861251681099,"upper_bound":0.003438833148234887,"unit":"%"},"median":{"estimate":0.0007349109547225563,"lower_bound":0.00047685498870841947,"upper_bound":0.0013110890526470964,"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":[17,34,51,68,85,102,119,136,153,170,187,204,221,238,255,272,289,306,323,340,357,374,391,408,425,442,459,476,493,510,527,544,561,578,595,612,629,646,663,680,697,714,731,748,765,782,799,816,833,850,867,884,901,918,935,952,969,986,1003,1020,1037,1054,1071,1088,1105,1122,1139,1156,1173,1190,1207,1224,1241,1258,1275,1292,1309,1326,1343,1360,1377,1394,1411,1428,1445,1462,1479,1496,1513,1530,1547,1564,1581,1598,1615,1632,1649,1666,1683,1700],"measured_values":[1076128.0,2081362.0,3106415.0,4312977.0,5159512.0,6216220.0,7265504.0,8266171.0,9261372.0,10413624.0,11299260.0,12366636.0,13334491.0,14421364.0,15534440.0,16669604.0,17715483.0,18687756.0,19600918.0,20618969.0,21535425.0,22591507.0,23671966.0,24649273.0,25708310.0,26883941.0,27696022.0,28771775.0,29774083.0,30835204.0,31857111.0,32883915.0,33881202.0,34943669.0,35925834.0,37006829.0,38056537.0,39061859.0,40465682.0,41069325.0,42090451.0,43182347.0,44171155.0,45167532.0,46218704.0,47309627.0,48363499.0,49259201.0,50301490.0,51890869.0,52521077.0,53370407.0,54419168.0,55496859.0,56577123.0,57517029.0,58538270.0,59921303.0,60611134.0,61612503.0,62616332.0,63771504.0,64672274.0,65708776.0,66764509.0,67758890.0,68773726.0,69916040.0,71043800.0,72543932.0,73395138.0,73967406.0,75161239.0,75971436.0,76989854.0,77998852.0,79020835.0,80079575.0,81106058.0,82111603.0,84550634.0,84169285.0,86378150.0,87155620.0,87537440.0,88386939.0,89334266.0,90328723.0,91374055.0,92592060.0,93421919.0,94497986.0,95443063.0,96693367.0,97592351.0,98686177.0,99564352.0,100579268.0,101650733.0,102789207.0],"unit":"ns","throughput":[{"per_iteration":32,"unit":"bytes"}],"typical":{"estimate":60503.43260807204,"lower_bound":60451.58162426603,"upper_bound":60567.81265885286,"unit":"ns"},"mean":{"estimate":60616.1108342035,"lower_bound":60534.05063708123,"upper_bound":60717.31897669243,"unit":"ns"},"median":{"estimate":60452.01038372338,"lower_bound":60418.877215016444,"upper_bound":60484.8093837535,"unit":"ns"},"median_abs_dev":{"estimate":100.3872017035873,"lower_bound":61.45357225175406,"upper_bound":144.41770721993166,"unit":"ns"},"slope":{"estimate":60503.43260807204,"lower_bound":60451.58162426603,"upper_bound":60567.81265885286,"unit":"ns"},"change":{"mean":{"estimate":0.0023815305156675848,"lower_bound":0.000498986344186148,"upper_bound":0.004395778721528598,"unit":"%"},"median":{"estimate":0.001072917851956845,"lower_bound":0.00040689920088010645,"upper_bound":0.00152570431804544,"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":[1081266.0,2006884.0,2978700.0,3967479.0,4959127.0,5950650.0,6999376.0,8042998.0,8981392.0,10003446.0,11002896.0,11986028.0,12950405.0,13998719.0,14935229.0,15899363.0,16886663.0,17880004.0,18844470.0,19969229.0,20827056.0,21859745.0,22865808.0,23804853.0,24821855.0,25812284.0,26771439.0,27836782.0,28786138.0,29790778.0,30768116.0,31731001.0,32785668.0,33749089.0,34786152.0,35743661.0,36724236.0,37765659.0,38738038.0,39808153.0,40862085.0,41730436.0,42705497.0,43672756.0,44778527.0,45731449.0,46788898.0,47661556.0,48733570.0,49627019.0,50723817.0,51606450.0,52641803.0,53617470.0,55160709.0,55947956.0,56627272.0,57618886.0,58687304.0,59791206.0,60696159.0,61564271.0,62837086.0,63624638.0,64779572.0,65502417.0,66567866.0,67535167.0,68483879.0,69513893.0,70518668.0,71457429.0,73012657.0,74290758.0,74933544.0,75473425.0,77421494.0,77540495.0,78812156.0,79436021.0,80494909.0,81454664.0,82456048.0,83495587.0,84412121.0,85463737.0,86517563.0,87499709.0,88346899.0,89423693.0,90454064.0,91526773.0,92388850.0,93382044.0,94358913.0,95354489.0,96519258.0,97374850.0,98349277.0,99381694.0],"unit":"ns","throughput":[{"per_iteration":64,"unit":"bytes"}],"typical":{"estimate":124313.89412849121,"lower_bound":124241.81444587118,"upper_bound":124401.49531516094,"unit":"ns"},"mean":{"estimate":124450.11883732861,"lower_bound":124287.08870663628,"upper_bound":124712.07026739515,"unit":"ns"},"median":{"estimate":124198.64990079365,"lower_bound":124168.69512195123,"upper_bound":124249.38541666667,"unit":"ns"},"median_abs_dev":{"estimate":175.2399458254908,"lower_bound":112.94239395841215,"upper_bound":228.35808958565426,"unit":"ns"},"slope":{"estimate":124313.89412849121,"lower_bound":124241.81444587118,"upper_bound":124401.49531516094,"unit":"ns"},"change":{"mean":{"estimate":0.0030700474747709094,"lower_bound":0.000718324064196724,"upper_bound":0.005456138103368535,"unit":"%"},"median":{"estimate":0.003039377567027657,"lower_bound":0.0026573258480668827,"upper_bound":0.0034888415549119145,"unit":"%"},"change":"NoChange"}} -{"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":[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":[1313448.0,2396015.0,3591832.0,4788162.0,6011993.0,7182271.0,8409916.0,9577655.0,10832826.0,11971861.0,13171491.0,14393338.0,15563071.0,16786801.0,17955835.0,19192771.0,20350258.0,21574144.0,22773182.0,24079014.0,25188015.0,26384770.0,27663422.0,28791433.0,30014655.0,31149962.0,32374935.0,33635374.0,34740464.0,35932940.0,37176219.0,38442602.0,39550629.0,40838014.0,41986283.0,43265216.0,44524631.0,45678013.0,46764970.0,47929240.0,49138778.0,50359586.0,51526814.0,52716930.0,53925752.0,55109674.0,56801457.0,57653893.0,58755417.0,59878457.0,61131663.0,62316190.0,63551468.0,64952789.0,66071211.0,67371540.0,68284178.0,69495842.0,70715269.0,71880802.0,74290966.0,75102483.0,75900027.0,76811254.0,77926448.0,79063432.0,80422595.0,81621899.0,83054562.0,83939904.0,85046747.0,86307818.0,87432338.0,88735868.0,89824440.0,93235631.0,92294037.0,93534947.0,94922031.0,96004750.0,97134381.0,98266526.0,99471372.0,100593821.0,101895543.0,103099972.0,104243072.0,105392544.0,107059740.0,107952431.0,109783784.0,110247204.0,111496879.0,112693509.0,113914527.0,115402671.0,116871904.0,117901187.0,118762714.0,121188751.0],"unit":"ns","throughput":[{"per_iteration":128,"unit":"bytes"}],"typical":{"estimate":240214.86335510566,"lower_bound":239974.46810459252,"upper_bound":240502.5411508835,"unit":"ns"},"mean":{"estimate":240299.42052055176,"lower_bound":239954.8413794112,"upper_bound":240851.58263208103,"unit":"ns"},"median":{"estimate":239817.44447439353,"lower_bound":239743.9388888889,"upper_bound":239885.85714285713,"unit":"ns"},"median_abs_dev":{"estimate":334.97495726979605,"lower_bound":224.52069771739917,"upper_bound":476.3682753954285,"unit":"ns"},"slope":{"estimate":240214.86335510566,"lower_bound":239974.46810459252,"upper_bound":240502.5411508835,"unit":"ns"},"change":{"mean":{"estimate":0.0033979910965429294,"lower_bound":0.0007451014797506162,"upper_bound":0.006235818199048962,"unit":"%"},"median":{"estimate":0.0027962211910224077,"lower_bound":0.0024139130416374055,"upper_bound":0.0031707560134228707,"unit":"%"},"change":"NoChange"}} -{"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":[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":[1530646.0,2810045.0,4211227.0,5612880.0,7019373.0,8422112.0,9853645.0,11286670.0,12632917.0,14086780.0,15444899.0,16873242.0,18250624.0,19680156.0,21078069.0,22482753.0,23886041.0,25268822.0,26699932.0,28119798.0,29505307.0,30972827.0,32349688.0,33689457.0,35143835.0,36543851.0,37920945.0,39386603.0,40825720.0,42286375.0,43588337.0,45197867.0,46405637.0,47749505.0,49202232.0,50602800.0,51988791.0,53389099.0,54794681.0,56842131.0,57932302.0,59066546.0,60594301.0,62221257.0,63533129.0,65468999.0,66137455.0,67534626.0,68941884.0,70535677.0,71671235.0,73088844.0,74439595.0,75910592.0,77436804.0,78677068.0,80092542.0,81557892.0,82922901.0,84296924.0,85783911.0,87603453.0,88721187.0,89958359.0,91366445.0,92993094.0,95034368.0,95904109.0,97022206.0,98391696.0,99790889.0,101284075.0,102686104.0,103900717.0,105334596.0,106806574.0,108220257.0,109625145.0,110984636.0,112406310.0,113866501.0,115584371.0,118580509.0,118160562.0,119429382.0,121002111.0,122274584.0,123582360.0,125028436.0,126650193.0,127847557.0,129312551.0,130757892.0,132067191.0,133600979.0,134960804.0,136492764.0,138418183.0,139361541.0,141261045.0],"unit":"ns","throughput":[{"per_iteration":256,"unit":"bytes"}],"typical":{"estimate":469158.6131520615,"lower_bound":468832.7380171881,"upper_bound":469575.0349180986,"unit":"ns"},"mean":{"estimate":469453.7146695629,"lower_bound":468846.75315913995,"upper_bound":470452.03030144545,"unit":"ns"},"median":{"estimate":468585.4452674897,"lower_bound":468510.0285301553,"upper_bound":468743.8080808081,"unit":"ns"},"median_abs_dev":{"estimate":450.9768634133253,"lower_bound":326.31512316847704,"upper_bound":689.4800484353678,"unit":"ns"},"slope":{"estimate":469158.6131520615,"lower_bound":468832.7380171881,"upper_bound":469575.0349180986,"unit":"ns"},"change":{"mean":{"estimate":0.004912844409308281,"lower_bound":0.0027360757757249003,"upper_bound":0.007426990495451972,"unit":"%"},"median":{"estimate":0.004336873271292063,"lower_bound":0.003966614028050763,"upper_bound":0.0046741844039739355,"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":[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":[1974554.0,3767833.0,5651366.0,7592552.0,9474055.0,11361905.0,13252814.0,15059316.0,16944797.0,18860538.0,20806794.0,22753654.0,24505476.0,26416348.0,28332098.0,30224227.0,32067119.0,33925059.0,35859702.0,37731150.0,39597891.0,41602932.0,43405579.0,45253869.0,47252184.0,49460938.0,51044553.0,52831460.0,55204847.0,56943386.0,58424204.0,60462219.0,62265533.0,64307577.0,65949869.0,67959116.0,69748566.0,71658496.0,73597390.0,75483438.0,77335631.0,79506697.0,81142514.0,83016516.0,84819389.0,86662998.0,88637893.0,91126336.0,92433822.0,94294027.0,96488370.0,98128402.0,100901232.0,102332072.0,103937803.0,106256762.0,108189350.0,109446350.0,111256863.0,113084575.0,115099577.0,117024845.0,118906959.0,120625602.0,122514137.0,124420161.0,126368839.0,128184722.0,130167207.0,132132487.0,133864671.0,136056179.0,137787353.0,140384153.0,141861416.0,143343447.0,145686125.0,147209142.0,149056268.0,150985974.0,153041464.0,154660340.0,158006616.0,158737962.0,161694165.0,162311306.0,164137998.0,165946465.0,167885230.0,169821274.0,171686544.0,173459212.0,175413109.0,177222678.0,179339789.0,181006772.0,182949029.0,184818924.0,187003901.0,188710186.0],"unit":"ns","throughput":[{"per_iteration":512,"unit":"bytes"}],"typical":{"estimate":944210.7444436235,"lower_bound":943708.9936922905,"upper_bound":944825.9451977522,"unit":"ns"},"mean":{"estimate":944833.9345254187,"lower_bound":944048.7611995623,"upper_bound":945945.2355410397,"unit":"ns"},"median":{"estimate":943510.310946271,"lower_bound":943305.7046703297,"upper_bound":943688.203765227,"unit":"ns"},"median_abs_dev":{"estimate":1282.039422132891,"lower_bound":757.1838232542874,"upper_bound":1704.196870262949,"unit":"ns"},"slope":{"estimate":944210.7444436235,"lower_bound":943708.9936922905,"upper_bound":944825.9451977522,"unit":"ns"},"change":{"mean":{"estimate":0.004299987383342474,"lower_bound":0.002558098921655224,"upper_bound":0.005970259954074002,"unit":"%"},"median":{"estimate":0.003946251043474014,"lower_bound":0.003608755090882987,"upper_bound":0.004612010510543163,"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":[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":[2057014.0,3862876.0,5821445.0,7717411.0,9650467.0,11579774.0,13535459.0,15440725.0,17427374.0,19293650.0,21397560.0,23183275.0,25111790.0,27050162.0,29029957.0,30998156.0,32831925.0,34819876.0,36752055.0,38804189.0,40716813.0,42735563.0,44511152.0,46755023.0,48791402.0,50378822.0,52178941.0,54071560.0,56008787.0,57943192.0,59866908.0,61919440.0,63729523.0,65620850.0,67558011.0,69552446.0,71388476.0,73313604.0,75272575.0,77245189.0,79432781.0,81239931.0,82974651.0,84956175.0,87356105.0,88785964.0,90714055.0,92816637.0,95773363.0,97714837.0,98695260.0,100583467.0,102344483.0,104188981.0,106223630.0,108008687.0,110017280.0,112342240.0,114099727.0,116039914.0,117985794.0,119953461.0,121573410.0,123624869.0,125431220.0,127687916.0,129295929.0,131279933.0,133356515.0,135390748.0,137841248.0,139185073.0,141035280.0,143052618.0,144968924.0,146998082.0,149580636.0,151202000.0,152464056.0,154476204.0,156274256.0,158345153.0,160358726.0,162161494.0,164268316.0,166201195.0,168155326.0,170115025.0,171887756.0,173957182.0,176059899.0,178237043.0,179709221.0,181917332.0,183695281.0,185466652.0,187702568.0,189566819.0,192160659.0,193871941.0],"unit":"ns","throughput":[{"per_iteration":1024,"unit":"bytes"}],"typical":{"estimate":1933933.364176149,"lower_bound":1933027.2397799818,"upper_bound":1934901.9080177273,"unit":"ns"},"mean":{"estimate":1935363.1510166805,"lower_bound":1933391.460122549,"upper_bound":1938360.9586271576,"unit":"ns"},"median":{"estimate":1932761.4775112444,"lower_bound":1931944.2916666667,"upper_bound":1933893.6779661018,"unit":"ns"},"median_abs_dev":{"estimate":3258.198767155409,"lower_bound":2476.665236857274,"upper_bound":4412.927833796109,"unit":"ns"},"slope":{"estimate":1933933.364176149,"lower_bound":1933027.2397799818,"upper_bound":1934901.9080177273,"unit":"ns"},"change":{"mean":{"estimate":0.003837031258758783,"lower_bound":0.0009140379292803654,"upper_bound":0.006208984914566556,"unit":"%"},"median":{"estimate":0.004697978628585009,"lower_bound":0.004038261784862218,"upper_bound":0.005336045507430942,"unit":"%"},"change":"NoChange"}} -{"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":[13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13],"measured_values":[51893094.0,51274846.0,50996917.0,50580242.0,50673564.0,50966423.0,51191937.0,50619440.0,50688042.0,50715897.0,50657554.0,50647207.0,50628872.0,50633470.0,50631679.0,50605513.0,50724543.0,50591140.0,50629211.0,50627516.0,50632783.0,50647190.0,50826300.0,50993756.0,50801087.0,50563885.0,50625766.0,50641781.0,50651594.0,50686633.0,50837250.0,50826553.0,50618900.0,50635844.0,50642582.0,50578831.0,50620526.0,50718709.0,50620250.0,50583485.0,50641199.0,50647045.0,50616592.0,50603903.0,50610636.0,50606626.0,50818237.0,51251541.0,51060899.0,50717653.0,50631610.0,50620996.0,50618522.0,50596493.0,50668415.0,50579751.0,50587982.0,50631144.0,50628217.0,50617529.0,50590781.0,50611920.0,50637914.0,50607241.0,50655910.0,50628496.0,50784694.0,50581078.0,50765950.0,50657464.0,50615362.0,51080641.0,51096304.0,50966018.0,51109656.0,50943086.0,50714970.0,50682168.0,50629448.0,50638982.0,50622460.0,50600739.0,50663683.0,50668180.0,50788607.0,50634064.0,50708910.0,50611412.0,50789958.0,50617649.0,50835283.0,50634150.0,50609281.0,50596133.0,50725689.0,50700686.0,50635104.0,50595821.0,50743310.0,50670747.0],"unit":"ns","throughput":[{"per_iteration":2048,"unit":"bytes"}],"typical":{"estimate":3901489.0392307686,"lower_bound":3898779.2698269235,"upper_bound":3904630.3057692293,"unit":"ns"},"mean":{"estimate":3901489.0392307686,"lower_bound":3898779.2698269235,"upper_bound":3904630.3057692293,"unit":"ns"},"median":{"estimate":3895391.576923077,"lower_bound":3894723.9615384615,"upper_bound":3896914.3846153845,"unit":"ns"},"median_abs_dev":{"estimate":3880.4773388001963,"lower_bound":2690.6338368468196,"upper_bound":6383.510958208306,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0041270582408059475,"lower_bound":0.003316481433098723,"upper_bound":0.005086044563457892,"unit":"%"},"median":{"estimate":0.0033367723577568675,"lower_bound":0.0028308720193792603,"upper_bound":0.0038031076510531836,"unit":"%"},"change":"NoChange"}} -{"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":[7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7],"measured_values":[55071240.0,54906298.0,55399642.0,55368071.0,55153198.0,55071179.0,54873264.0,55387705.0,55031779.0,54995361.0,54981165.0,55044587.0,54957660.0,55115838.0,55149227.0,55008955.0,55004005.0,54966696.0,55121109.0,54934492.0,54921482.0,54878685.0,54848599.0,55278744.0,54917741.0,54893618.0,55119387.0,54955904.0,54938291.0,54965479.0,54906695.0,55652104.0,55029765.0,55246767.0,55034471.0,54983580.0,54988903.0,55487787.0,55366046.0,55065442.0,54943501.0,55171922.0,55136964.0,55020401.0,54905517.0,54971732.0,54917285.0,54992514.0,54863823.0,55090943.0,54900247.0,55047200.0,54896691.0,54923787.0,54893459.0,55961937.0,55873794.0,55003866.0,54883534.0,55440784.0,55235453.0,55018506.0,54947607.0,55011113.0,55029245.0,55164179.0,54915089.0,55092784.0,55022330.0,54963406.0,55140737.0,54943502.0,55019361.0,55011938.0,55127255.0,54955334.0,54978668.0,54960473.0,55062752.0,54942141.0,54879252.0,54958195.0,54912173.0,54938727.0,55077193.0,55015808.0,54964777.0,54988564.0,54890892.0,54903935.0,54869569.0,54940436.0,54905891.0,55240064.0,54863753.0,54933720.0,55621141.0,55067098.0,55021488.0,55016415.0],"unit":"ns","throughput":[{"per_iteration":4096,"unit":"bytes"}],"typical":{"estimate":7864874.037142861,"lower_bound":7859535.432250007,"upper_bound":7870793.640678575,"unit":"ns"},"mean":{"estimate":7864874.037142861,"lower_bound":7859535.432250007,"upper_bound":7870793.640678575,"unit":"ns"},"median":{"estimate":7857087.642857143,"lower_bound":7852211.285714285,"upper_bound":7860060.642857144,"unit":"ns"},"median_abs_dev":{"estimate":16245.695111581159,"lower_bound":11461.344996520353,"upper_bound":21533.282017707825,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0051633232385572825,"lower_bound":0.004440177855323579,"upper_bound":0.005885790025833137,"unit":"%"},"median":{"estimate":0.004585701105196405,"lower_bound":0.003941761023118273,"upper_bound":0.004986016380248204,"unit":"%"},"change":"NoChange"}} -{"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":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],"measured_values":[63185018.0,63410332.0,63576703.0,63115566.0,63019458.0,63198814.0,63011451.0,63079888.0,63062597.0,63051250.0,63011349.0,62979945.0,63015791.0,63098691.0,63323149.0,62996630.0,63028013.0,63027476.0,63408534.0,62994994.0,63042935.0,63048132.0,63301123.0,63821080.0,63226094.0,63022498.0,63036385.0,63013706.0,62980683.0,62955920.0,63051405.0,62996702.0,63034719.0,62972933.0,63420891.0,63106405.0,62988752.0,63161044.0,63068872.0,63093816.0,64031327.0,63659181.0,63072809.0,63022591.0,63204551.0,62980933.0,63133438.0,62989624.0,63066187.0,63400502.0,63001614.0,63018691.0,62973772.0,62972248.0,63133478.0,62959677.0,63052081.0,63004205.0,63096636.0,62995112.0,62973890.0,63028490.0,62961572.0,63036275.0,63131961.0,63398648.0,62973070.0,63144464.0,62961235.0,63002709.0,63231485.0,62997044.0,63095129.0,62993092.0,63321122.0,62976147.0,63005934.0,63688959.0,63182857.0,63026925.0,63065107.0,63381443.0,62988611.0,62989656.0,62973186.0,62948739.0,63048339.0,63004177.0,63031455.0,62991356.0,62955104.0,62950801.0,62944582.0,63012190.0,62958192.0,62932344.0,63015883.0,63401716.0,62948332.0,63059090.0],"unit":"ns","throughput":[{"per_iteration":8192,"unit":"bytes"}],"typical":{"estimate":15776099.28,"lower_bound":15767085.7738125,"upper_bound":15786148.101375,"unit":"ns"},"mean":{"estimate":15776099.28,"lower_bound":15767085.7738125,"upper_bound":15786148.101375,"unit":"ns"},"median":{"estimate":15757062.875,"lower_bound":15753426.5,"upper_bound":15762916.375,"unit":"ns"},"median_abs_dev":{"estimate":19225.80048367381,"lower_bound":13567.272359132767,"upper_bound":27041.733959913203,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0044922794716437675,"lower_bound":0.0037386549568863836,"upper_bound":0.005252273028834419,"unit":"%"},"median":{"estimate":0.003926907792983325,"lower_bound":0.003575271995106988,"upper_bound":0.0043600011595767985,"unit":"%"},"change":"NoChange"}} -{"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":[63091597.0,63030652.0,63034957.0,63044696.0,63060974.0,63101657.0,63120371.0,62974284.0,63083861.0,63584604.0,63195247.0,63083898.0,63087706.0,63041319.0,63034609.0,63197779.0,63078140.0,63047337.0,63052839.0,63455630.0,63046461.0,63029033.0,63168402.0,63093766.0,63734259.0,63759788.0,63257942.0,63025334.0,63138220.0,63184999.0,64781993.0,63197128.0,63137541.0,63054724.0,63026449.0,64511380.0,63815263.0,63105640.0,63167966.0,63257347.0,63589434.0,63780834.0,63097928.0,63046222.0,63074079.0,63070010.0,63008898.0,63180284.0,63301702.0,64700391.0,63247793.0,63243266.0,63153924.0,63228139.0,63408822.0,63844774.0,63302679.0,63124977.0,63092907.0,63137148.0,63224305.0,63095494.0,62971764.0,63058211.0,63074002.0,63044520.0,63219700.0,63705154.0,63597162.0,63074381.0,63123255.0,63147109.0,63081710.0,63211607.0,63053321.0,63018993.0,63008666.0,63053101.0,63041288.0,63184878.0,64734998.0,63264348.0,63072689.0,63011108.0,63049014.0,63021641.0,63052663.0,63066700.0,63067008.0,63069737.0,63075311.0,63052602.0,62997882.0,63030966.0,63080408.0,63178430.0,63064075.0,63614363.0,64407798.0,63728917.0],"unit":"ns","throughput":[{"per_iteration":16384,"unit":"bytes"}],"typical":{"estimate":31625796.41,"lower_bound":31591353.388875,"upper_bound":31665188.41575,"unit":"ns"},"mean":{"estimate":31625796.41,"lower_bound":31591353.388875,"upper_bound":31665188.41575,"unit":"ns"},"median":{"estimate":31547315.0,"lower_bound":31537655.5,"upper_bound":31571162.5,"unit":"ns"},"median_abs_dev":{"estimate":47310.50646007061,"lower_bound":31586.792439222336,"upper_bound":70310.8211517334,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.004000445304651379,"lower_bound":0.0024981882436878045,"upper_bound":0.005441050554087784,"unit":"%"},"median":{"estimate":0.0027466551321386756,"lower_bound":0.0023050645475033438,"upper_bound":0.0035630571912470543,"unit":"%"},"change":"NoChange"}} -{"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":[63648516.0,63471258.0,63641708.0,63959161.0,63685016.0,63491222.0,63438231.0,63803491.0,64670189.0,63765470.0,63574290.0,63688949.0,63760212.0,63478763.0,63521539.0,63624460.0,63643122.0,63495409.0,64857407.0,65006502.0,64348478.0,64076017.0,65179169.0,63915795.0,63668995.0,63668630.0,63668389.0,63669741.0,63610161.0,63626075.0,63677097.0,63630152.0,63621501.0,63606492.0,64098725.0,63672147.0,63510904.0,63578382.0,63654742.0,63611293.0,63685986.0,63578434.0,63688677.0,63633042.0,63470205.0,63411910.0,63513675.0,63401280.0,64637690.0,63738466.0,63962640.0,63708952.0,63653877.0,63630737.0,64933927.0,64103148.0,63951047.0,63592541.0,63818344.0,63953256.0,63687957.0,63700426.0,63698152.0,63653994.0,63496100.0,64083145.0,63653126.0,63616493.0,64001587.0,63587354.0,63506808.0,63771315.0,63583745.0,63696916.0,64436304.0,65325421.0,65863517.0,64390068.0,63681887.0,63626526.0,63716598.0,64139704.0,63775315.0,63777334.0,63679023.0,63626975.0,63719958.0,63573091.0,63518685.0,63555182.0,63511766.0,63622491.0,63638657.0,63653801.0,63620054.0,63619172.0,63669623.0,64154701.0,63408332.0,63632502.0],"unit":"ns","throughput":[{"per_iteration":32768,"unit":"bytes"}],"typical":{"estimate":63810594.39,"lower_bound":63731182.570250005,"upper_bound":63901055.356,"unit":"ns"},"mean":{"estimate":63810594.39,"lower_bound":63731182.570250005,"upper_bound":63901055.356,"unit":"ns"},"median":{"estimate":63668509.5,"lower_bound":63637375.0,"upper_bound":63686486.5,"unit":"ns"},"median_abs_dev":{"estimate":133584.48152840137,"lower_bound":72593.28381121159,"upper_bound":193953.728556633,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.007542584584760315,"lower_bound":0.0061907476025431125,"upper_bound":0.00906267511021258,"unit":"%"},"median":{"estimate":0.006116921645660911,"lower_bound":0.005447168513537104,"upper_bound":0.0064716956341013265,"unit":"%"},"change":"NoChange"}} -{"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":[135879522.0,135220437.0,135488582.0,135716425.0,136335845.0,137357739.0,137287917.0,135284725.0,135468694.0,136085924.0,137292052.0,135659005.0,135577651.0,136145595.0,137700612.0,137299410.0,135511930.0,135373757.0,135615959.0,136102745.0,137315024.0,135569563.0,135378418.0,138264061.0,139366451.0,135850178.0,135563828.0,136220992.0,137431049.0,137243365.0,135421385.0,135188055.0,136842740.0,137641219.0,135759693.0,135356878.0,135384815.0,136078497.0,137756612.0,135738483.0,135649294.0,135451886.0,135338438.0,135203432.0,135483303.0,135459885.0,135471615.0,135701331.0,138242328.0,135794635.0,136038352.0,137991264.0,138161672.0,135590164.0,135410262.0,135490385.0,135567960.0,135582892.0,137651569.0,135378136.0,135597830.0,135472200.0,136101618.0,135705960.0,135590220.0,135422114.0,137086268.0,137887967.0,135847167.0,137662606.0,135430859.0,135398227.0,135335492.0,136204592.0,137469422.0,136143259.0,135513959.0,135584843.0,135775007.0,135803355.0,137665110.0,135624185.0,137676296.0,135660436.0,135641618.0,135565791.0,135911260.0,135387812.0,135679615.0,137681584.0,135450884.0,135361537.0,135457977.0,135441137.0,135400092.0,135378856.0,135477492.0,136688740.0,135640900.0,135667949.0],"unit":"ns","throughput":[{"per_iteration":65536,"unit":"bytes"}],"typical":{"estimate":136119268.71,"lower_bound":135942158.2145,"upper_bound":136309118.836,"unit":"ns"},"mean":{"estimate":136119268.71,"lower_bound":135942158.2145,"upper_bound":136309118.836,"unit":"ns"},"median":{"estimate":135659720.5,"lower_bound":135584843.0,"upper_bound":135794635.0,"unit":"ns"},"median_abs_dev":{"estimate":386307.7317416668,"lower_bound":269667.1440124512,"upper_bound":565487.3515605927,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.004957365108487766,"lower_bound":0.0029778982959114413,"upper_bound":0.0069463779787035315,"unit":"%"},"median":{"estimate":0.004001698058559766,"lower_bound":0.003316405092278041,"upper_bound":0.005296887596319744,"unit":"%"},"change":"NoChange"}} -{"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":[276188133.0,274748061.0,273419051.0,274189842.0,274783882.0,276092717.0,275334664.0,274444734.0,274900109.0,274503158.0,274702676.0,274362298.0,274806759.0,274433077.0,275291977.0,276907957.0,277074847.0,276166697.0,276236459.0,275428145.0,274527275.0,274637600.0,274485912.0,274558336.0,274050291.0,273898537.0,273877387.0,273864378.0,273616739.0,274355720.0,274964578.0,275477558.0,276566416.0,274380603.0,274334806.0,273982271.0,274110693.0,275467779.0,276675363.0,274341360.0,274963354.0,276576272.0,276696943.0,274598125.0,275112068.0,275167134.0,276870731.0,274347946.0,274429577.0,274577698.0,275712007.0,276239361.0,275181573.0,277547003.0,276804290.0,276269377.0,274749919.0,274371734.0,274838306.0,275894775.0,275686197.0,274906934.0,274661422.0,274274431.0,274870572.0,274276263.0,275078609.0,274646079.0,274834418.0,274678259.0,275228811.0,274857139.0,275365955.0,275719399.0,274903250.0,274221970.0,274336524.0,274446599.0,274236048.0,274600821.0,274435102.0,274545364.0,274763643.0,274384557.0,274675596.0,273671153.0,276678281.0,276038288.0,275586880.0,275564145.0,275118651.0,274499090.0,274290868.0,274671412.0,274863147.0,275374120.0,275016491.0,275052517.0,274743375.0,274469937.0],"unit":"ns","throughput":[{"per_iteration":131072,"unit":"bytes"}],"typical":{"estimate":275014093.55,"lower_bound":274849968.69675,"upper_bound":275184864.994,"unit":"ns"},"mean":{"estimate":275014093.55,"lower_bound":274849968.69675,"upper_bound":275184864.994,"unit":"ns"},"median":{"estimate":274773762.5,"lower_bound":274646079.0,"upper_bound":274933302.0,"unit":"ns"},"median_abs_dev":{"estimate":625552.6655942202,"lower_bound":459190.86384773254,"upper_bound":830729.6759516001,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0015931134393007973,"lower_bound":0.0007686474166511581,"upper_bound":0.0023871579980375922,"unit":"%"},"median":{"estimate":-0.0001272048429307171,"lower_bound":-0.0007794570218673247,"upper_bound":0.0005890786812701165,"unit":"%"},"change":"NoChange"}} -{"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":[556049502.0,556982732.0,555631549.0,555646028.0,559117090.0,556153835.0,555254161.0,555049725.0,555628796.0,557317624.0,557107510.0,556525507.0,555949614.0,556009778.0,556012542.0,556406249.0,555686094.0,555432808.0,557997355.0,556047267.0,555768577.0,555437497.0,555952885.0,555119907.0,556039703.0,558683143.0,555384854.0,555933676.0,555385274.0,555772259.0,555588494.0,555798401.0,558407213.0,555699466.0,556398457.0,555850301.0,556080938.0,556639962.0,557544272.0,556265128.0,555929607.0,555442856.0,555478737.0,556749559.0,555932367.0,557562094.0,555268762.0,555410204.0,555968537.0,558604044.0,554913406.0,555136324.0,558664112.0,555544410.0,555593291.0,555791872.0,557612859.0,555043497.0,557683140.0,556497064.0,555571963.0,554954120.0,556560067.0,555274584.0,555492509.0,557173643.0,556765741.0,555765466.0,555961181.0,555860236.0,555148142.0,556898376.0,558671445.0,555919569.0,556086410.0,555767908.0,555338791.0,556361590.0,557586415.0,556274426.0,555260778.0,556166150.0,556066454.0,555599490.0,556396023.0,556973084.0,555114445.0,555320417.0,555372588.0,555592313.0,555339391.0,554878834.0,558090832.0,556163930.0,555435748.0,555353024.0,556363341.0,555842491.0,555160160.0,558473302.0],"unit":"ns","throughput":[{"per_iteration":262144,"unit":"bytes"}],"typical":{"estimate":556169782.92,"lower_bound":555983880.6882501,"upper_bound":556367528.51575,"unit":"ns"},"mean":{"estimate":556169782.92,"lower_bound":555983880.6882501,"upper_bound":556367528.51575,"unit":"ns"},"median":{"estimate":555930987.0,"lower_bound":555767021.5,"upper_bound":556047267.0,"unit":"ns"},"median_abs_dev":{"estimate":732944.7946876287,"lower_bound":530168.8549876213,"upper_bound":918672.5396803016,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0035224577101800048,"lower_bound":0.003093241462030938,"upper_bound":0.003937149255641764,"unit":"%"},"median":{"estimate":0.0035609390326485357,"lower_bound":0.0031880093800333853,"upper_bound":0.0037881794184644324,"unit":"%"},"change":"NoChange"}} -{"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":[1141963736.0,1144651405.0,1145171935.0,1143128295.0,1141784589.0,1141597792.0,1143367678.0,1141118218.0,1143186227.0,1142283331.0,1142691570.0,1144084119.0,1141505761.0,1143214618.0,1144400729.0,1141241149.0,1144054702.0,1142711657.0,1142097809.0,1141177218.0,1143946502.0,1143015168.0,1140781471.0,1142034736.0,1143990024.0,1141373191.0,1141507111.0,1143162175.0,1142490055.0,1141330797.0,1144094481.0,1143697649.0,1142559812.0,1141760186.0,1142746449.0,1142884754.0,1141579262.0,1142902271.0,1141514588.0,1141890992.0,1145432051.0,1142854962.0,1141482001.0,1142904135.0,1144323316.0,1141827565.0,1145410946.0,1140787661.0,1143072014.0,1143678974.0,1142860195.0,1141754985.0,1143297655.0,1141306370.0,1145065219.0,1143671464.0,1141485754.0,1141343528.0,1141637850.0,1144446464.0,1141922009.0,1142507000.0,1143970644.0,1143847388.0,1142621866.0,1145162519.0,1142137051.0,1141207920.0,1144758755.0,1141670072.0,1143838159.0,1145224217.0,1143976832.0,1143126491.0,1145430243.0,1141835944.0,1141839194.0,1142705864.0,1143546323.0,1141784980.0,1140773710.0,1146017918.0,1140240516.0,1144019100.0,1144232574.0,1142230000.0,1143293252.0,1142918217.0,1141286350.0,1142861743.0,1141921297.0,1144597345.0,1143349439.0,1142903265.0,1144912798.0,1143405643.0,1140326059.0,1144040896.0,1141152583.0,1141665685.0],"unit":"ns","throughput":[{"per_iteration":524288,"unit":"bytes"}],"typical":{"estimate":1142825991.82,"lower_bound":1142568323.87725,"upper_bound":1143087868.229,"unit":"ns"},"mean":{"estimate":1142825991.82,"lower_bound":1142568323.87725,"upper_bound":1143087868.229,"unit":"ns"},"median":{"estimate":1142857578.5,"lower_bound":1142283331.0,"upper_bound":1143126491.0,"unit":"ns"},"median_abs_dev":{"estimate":1630849.592846632,"lower_bound":1232925.264063701,"upper_bound":1813419.177505374,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.003983969919390429,"lower_bound":0.003736596446951007,"upper_bound":0.004246882768203753,"unit":"%"},"median":{"estimate":0.004074848898258043,"lower_bound":0.0036942855149433296,"upper_bound":0.004331953197677985,"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":[2303970711.0,2307581585.0,2307800887.0,2308002912.0,2313958488.0,2307893214.0,2309309051.0,2307170243.0,2304295601.0,2309042078.0,2307242444.0,2307777688.0,2310311870.0,2305104804.0,2308956765.0,2306661727.0,2307396555.0,2308191328.0,2307416926.0,2307685483.0,2308754601.0,2310603228.0,2307352435.0,2303737773.0,2309872742.0,2308490179.0,2309362423.0,2308334505.0,2306534013.0,2308585353.0,2306066604.0,2308180374.0,2307394382.0,2307237902.0,2307953668.0,2309162313.0,2311331183.0,2306841193.0,2308093193.0,2315324926.0,2306482892.0,2309638827.0,2306559936.0,2306181705.0,2307955453.0,2306112788.0,2308201821.0,2310300830.0,2310457304.0,2306209014.0,2309553420.0,2307880467.0,2307508133.0,2307975267.0,2305736239.0,2306636347.0,2304440093.0,2310529139.0,2303899124.0,2311648395.0,2311016564.0,2303560756.0,2307342531.0,2308723265.0,2305965069.0,2309414389.0,2306012812.0,2307734255.0,2308791785.0,2304762844.0,2305889855.0,2310034285.0,2304374928.0,2309457646.0,2306941567.0,2307449667.0,2311551724.0,2303953953.0,2309371374.0,2308641096.0,2308509180.0,2309569532.0,2309841295.0,2304861940.0,2310437851.0,2303516559.0,2308683608.0,2310285037.0,2305149088.0,2310102362.0,2304813342.0,2310176383.0,2308394050.0,2306376003.0,2310835641.0,2312966786.0,2308625119.0,2308202164.0,2310013001.0,2308393433.0],"unit":"ns","throughput":[{"per_iteration":1048576,"unit":"bytes"}],"typical":{"estimate":2307996332.83,"lower_bound":2307559614.9025,"upper_bound":2308440634.073,"unit":"ns"},"mean":{"estimate":2307996332.83,"lower_bound":2307559614.9025,"upper_bound":2308440634.073,"unit":"ns"},"median":{"estimate":2307989089.5,"lower_bound":2307581585.0,"upper_bound":2308490179.0,"unit":"ns"},"median_abs_dev":{"estimate":2138079.661041498,"lower_bound":1544807.9226616782,"upper_bound":2685255.4203271866,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.003055359768838972,"lower_bound":0.0026299658276052297,"upper_bound":0.003479638759852427,"unit":"%"},"median":{"estimate":0.002986457356437322,"lower_bound":0.0021856748758415367,"upper_bound":0.003585678037917983,"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_61888","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_61888","iteration_count":[18,36,54,72,90,108,126,144,162,180,198,216,234,252,270,288,306,324,342,360,378,396,414,432,450,468,486,504,522,540,558,576,594,612,630,648,666,684,702,720,738,756,774,792,810,828,846,864,882,900,918,936,954,972,990,1008,1026,1044,1062,1080,1098,1116,1134,1152,1170,1188,1206,1224,1242,1260,1278,1296,1314,1332,1350,1368,1386,1404,1422,1440,1458,1476,1494,1512,1530,1548,1566,1584,1602,1620,1638,1656,1674,1692,1710,1728,1746,1764,1782,1800],"measured_values":[1055004.0,2003631.0,3031532.0,4003002.0,5006481.0,6042782.0,7035208.0,8042258.0,9092367.0,10031899.0,11038455.0,12035027.0,13038359.0,14013065.0,15092944.0,16186707.0,17019002.0,18067517.0,19039356.0,20029283.0,21035210.0,22090287.0,23091708.0,24036424.0,25010926.0,26032910.0,27082772.0,28088300.0,29032533.0,30050420.0,31091259.0,32050562.0,33070207.0,34131190.0,35054278.0,36064208.0,37077256.0,38244153.0,39188648.0,40076110.0,41090717.0,42114041.0,43074001.0,44089148.0,45068137.0,46087074.0,47104935.0,48068798.0,49089262.0,50149017.0,51119267.0,52220657.0,53097657.0,54052885.0,55282643.0,56166529.0,57107824.0,58073428.0,59799941.0,60262414.0,61130419.0,62115078.0,63112507.0,64123339.0,65118817.0,66155452.0,67117847.0,68162870.0,69152077.0,70124747.0,71976829.0,72325773.0,73127354.0,74306283.0,75143964.0,76136650.0,77173279.0,78549137.0,79769263.0,80948397.0,81905317.0,82419284.0,83230024.0,84249040.0,85330207.0,86287632.0,87246113.0,88237399.0,89271092.0,90322749.0,91229554.0,92268493.0,93222437.0,94247221.0,95231174.0,96262899.0,97251804.0,98248575.0,99698821.0,100668754.0],"unit":"ns","throughput":[{"per_iteration":61888,"unit":"bytes"}],"typical":{"estimate":55764.42629033053,"lower_bound":55727.03524510253,"upper_bound":55806.00185012417,"unit":"ns"},"mean":{"estimate":55778.79387737212,"lower_bound":55727.56159553098,"upper_bound":55852.27726502482,"unit":"ns"},"median":{"estimate":55698.12214215583,"lower_bound":55678.4783197832,"upper_bound":55719.102150537634,"unit":"ns"},"median_abs_dev":{"estimate":67.08399697507157,"lower_bound":49.1940922007035,"upper_bound":96.70539015991419,"unit":"ns"},"slope":{"estimate":55764.42629033053,"lower_bound":55727.03524510253,"upper_bound":55806.00185012417,"unit":"ns"},"change":{"mean":{"estimate":0.0530560836959304,"lower_bound":0.04875087239046947,"upper_bound":0.05596499828432955,"unit":"%"},"median":{"estimate":0.054468943209748266,"lower_bound":0.054001254380024344,"upper_bound":0.05491851744692933,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_62400","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_62400","iteration_count":[18,36,54,72,90,108,126,144,162,180,198,216,234,252,270,288,306,324,342,360,378,396,414,432,450,468,486,504,522,540,558,576,594,612,630,648,666,684,702,720,738,756,774,792,810,828,846,864,882,900,918,936,954,972,990,1008,1026,1044,1062,1080,1098,1116,1134,1152,1170,1188,1206,1224,1242,1260,1278,1296,1314,1332,1350,1368,1386,1404,1422,1440,1458,1476,1494,1512,1530,1548,1566,1584,1602,1620,1638,1656,1674,1692,1710,1728,1746,1764,1782,1800],"measured_values":[1165144.0,2014973.0,3025485.0,4031624.0,5034859.0,6102655.0,7057572.0,8060744.0,9067018.0,10103698.0,11085167.0,12116951.0,13150309.0,14106465.0,15161828.0,16148381.0,17209152.0,18161124.0,19154268.0,20188854.0,21186648.0,22184004.0,23198630.0,24201407.0,25260647.0,26253043.0,27239650.0,28221211.0,29254863.0,30254096.0,31356666.0,32324650.0,33270047.0,34277890.0,35301638.0,38117643.0,37344498.0,38374001.0,39339633.0,40383987.0,41381369.0,42493974.0,43428769.0,44778201.0,45560505.0,46430271.0,47561676.0,48396551.0,49419840.0,50895340.0,51485999.0,52494399.0,53520757.0,54511202.0,55566013.0,56496356.0,57497479.0,58494252.0,59585243.0,60827208.0,61587091.0,62692081.0,63694673.0,65239974.0,65931100.0,66577301.0,67618814.0,68721089.0,69621585.0,70644714.0,71642290.0,72856374.0,73614946.0,74687839.0,75812136.0,77563840.0,78890408.0,79003238.0,79915774.0,80710704.0,81676116.0,82735992.0,83799933.0,84740561.0,85766361.0,86652063.0,87737328.0,88695688.0,89883733.0,90581734.0,91622774.0,92730180.0,93612236.0,94664685.0,95755952.0,96950418.0,97733047.0,98835110.0,99926765.0,101119605.0],"unit":"ns","throughput":[{"per_iteration":62400,"unit":"bytes"}],"typical":{"estimate":56116.699878166924,"lower_bound":56071.395386631826,"upper_bound":56172.09586876868,"unit":"ns"},"mean":{"estimate":56220.92701693351,"lower_bound":56093.07211845245,"upper_bound":56429.09427090658,"unit":"ns"},"median":{"estimate":56069.71784307629,"lower_bound":56048.53611111111,"upper_bound":56086.31522435897,"unit":"ns"},"median_abs_dev":{"estimate":78.29989648165372,"lower_bound":57.04123718551437,"upper_bound":109.0065374068532,"unit":"ns"},"slope":{"estimate":56116.699878166924,"lower_bound":56071.395386631826,"upper_bound":56172.09586876868,"unit":"ns"},"change":{"mean":{"estimate":0.05906898795021198,"lower_bound":0.05427451853616281,"upper_bound":0.06405159631602206,"unit":"%"},"median":{"estimate":0.059208604406981946,"lower_bound":0.05833104984379012,"upper_bound":0.05995232655054261,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_63424","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_63424","iteration_count":[18,36,54,72,90,108,126,144,162,180,198,216,234,252,270,288,306,324,342,360,378,396,414,432,450,468,486,504,522,540,558,576,594,612,630,648,666,684,702,720,738,756,774,792,810,828,846,864,882,900,918,936,954,972,990,1008,1026,1044,1062,1080,1098,1116,1134,1152,1170,1188,1206,1224,1242,1260,1278,1296,1314,1332,1350,1368,1386,1404,1422,1440,1458,1476,1494,1512,1530,1548,1566,1584,1602,1620,1638,1656,1674,1692,1710,1728,1746,1764,1782,1800],"measured_values":[1122279.0,2066819.0,3025755.0,4063536.0,5105919.0,6079147.0,7115180.0,8124369.0,9136798.0,10176334.0,11088899.0,12095963.0,13136105.0,14111217.0,15144094.0,16167188.0,17172961.0,18174746.0,19157641.0,20200180.0,21206611.0,22220721.0,23229751.0,24304307.0,25221898.0,26291547.0,27780867.0,28256638.0,29249067.0,30276514.0,31521771.0,32308659.0,33331542.0,34358706.0,35531425.0,36326733.0,37478519.0,38334981.0,39374723.0,40405337.0,41595092.0,42477814.0,43435569.0,44638721.0,45924499.0,46645048.0,47480694.0,48493323.0,49439862.0,50482199.0,51465425.0,52901787.0,53794883.0,54577082.0,55532342.0,56579247.0,57562673.0,58652423.0,59583291.0,60653301.0,61804339.0,62636933.0,63714793.0,64616698.0,65741568.0,67067642.0,68295874.0,69715747.0,69660785.0,70687898.0,71697670.0,72742972.0,73788865.0,74724001.0,75783220.0,77113142.0,77734370.0,78748875.0,79848617.0,80710340.0,81946983.0,83158290.0,83898027.0,84756621.0,85795828.0,86765930.0,87709999.0,88777028.0,89839207.0,90796978.0,91916014.0,92862369.0,94182555.0,94890971.0,96335145.0,96922341.0,97972706.0,98943043.0,99926237.0,100851942.0],"unit":"ns","throughput":[{"per_iteration":63424,"unit":"bytes"}],"typical":{"estimate":56162.027904865114,"lower_bound":56128.20220345756,"upper_bound":56203.295661739314,"unit":"ns"},"mean":{"estimate":56269.07976492814,"lower_bound":56173.80069360807,"upper_bound":56419.05492882551,"unit":"ns"},"median":{"estimate":56118.41490633075,"lower_bound":56102.1455026455,"upper_bound":56138.872957516345,"unit":"ns"},"median_abs_dev":{"estimate":88.0264694842304,"lower_bound":54.662596076328676,"upper_bound":120.917731378111,"unit":"ns"},"slope":{"estimate":56162.027904865114,"lower_bound":56128.20220345756,"upper_bound":56203.295661739314,"unit":"ns"},"change":{"mean":{"estimate":0.06602877735211621,"lower_bound":0.06418149964825422,"upper_bound":0.06897588719460152,"unit":"%"},"median":{"estimate":0.06382033611828941,"lower_bound":0.06342279560839255,"upper_bound":0.06429821554201709,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_65472","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_65472","iteration_count":[18,36,54,72,90,108,126,144,162,180,198,216,234,252,270,288,306,324,342,360,378,396,414,432,450,468,486,504,522,540,558,576,594,612,630,648,666,684,702,720,738,756,774,792,810,828,846,864,882,900,918,936,954,972,990,1008,1026,1044,1062,1080,1098,1116,1134,1152,1170,1188,1206,1224,1242,1260,1278,1296,1314,1332,1350,1368,1386,1404,1422,1440,1458,1476,1494,1512,1530,1548,1566,1584,1602,1620,1638,1656,1674,1692,1710,1728,1746,1764,1782,1800],"measured_values":[1123112.0,2069269.0,3096653.0,4134591.0,5170098.0,6136270.0,7113143.0,8125352.0,9101437.0,10084821.0,11129830.0,12156106.0,13198589.0,14227918.0,15204606.0,16243416.0,17292651.0,18404991.0,19216790.0,20164942.0,21198664.0,22231215.0,23348998.0,24375135.0,25368917.0,26400990.0,27413893.0,28419951.0,29552402.0,30307843.0,31290295.0,32281920.0,33513428.0,34384917.0,35368451.0,36401016.0,37321000.0,38790479.0,39638200.0,40710667.0,41373175.0,42432662.0,43586912.0,44528609.0,45426000.0,46448924.0,47442364.0,48644716.0,49605899.0,50504235.0,51455252.0,52510126.0,53614606.0,54518118.0,55475500.0,56499785.0,57555480.0,58551122.0,59708275.0,60633530.0,61582730.0,62671411.0,63626003.0,64631554.0,65617653.0,66602410.0,68216039.0,69173768.0,70517895.0,70800775.0,71712670.0,72663968.0,73695337.0,74740203.0,75729181.0,76872130.0,77707383.0,78755452.0,79813977.0,80781187.0,81708855.0,82832015.0,83678954.0,84711169.0,85683682.0,86712492.0,87888474.0,88856783.0,89739161.0,90495846.0,91501765.0,92698413.0,93573675.0,94718269.0,95800438.0,96518947.0,97781844.0,98708325.0,99636472.0,100212483.0],"unit":"ns","throughput":[{"per_iteration":65472,"unit":"bytes"}],"typical":{"estimate":56077.29884012282,"lower_bound":56034.160897698246,"upper_bound":56125.30365660645,"unit":"ns"},"mean":{"estimate":56296.19488613594,"lower_bound":56187.94874844657,"upper_bound":56452.16874663266,"unit":"ns"},"median":{"estimate":56121.07970049528,"lower_bound":56096.959064327486,"upper_bound":56181.70987654321,"unit":"ns"},"median_abs_dev":{"estimate":142.77884342238895,"lower_bound":103.41498198754563,"upper_bound":221.20951332646962,"unit":"ns"},"slope":{"estimate":56077.29884012282,"lower_bound":56034.160897698246,"upper_bound":56125.30365660645,"unit":"ns"},"change":{"mean":{"estimate":0.05648661635253194,"lower_bound":0.05335558841107909,"upper_bound":0.05946062560841487,"unit":"%"},"median":{"estimate":0.054365859192151866,"lower_bound":0.05382596778850468,"upper_bound":0.05533739828487261,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_69568","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_69568","iteration_count":[18,36,54,72,90,108,126,144,162,180,198,216,234,252,270,288,306,324,342,360,378,396,414,432,450,468,486,504,522,540,558,576,594,612,630,648,666,684,702,720,738,756,774,792,810,828,846,864,882,900,918,936,954,972,990,1008,1026,1044,1062,1080,1098,1116,1134,1152,1170,1188,1206,1224,1242,1260,1278,1296,1314,1332,1350,1368,1386,1404,1422,1440,1458,1476,1494,1512,1530,1548,1566,1584,1602,1620,1638,1656,1674,1692,1710,1728,1746,1764,1782,1800],"measured_values":[1088338.0,2032901.0,3054328.0,4069892.0,5088033.0,6104389.0,7151536.0,8141715.0,9156118.0,10170962.0,11248296.0,12200108.0,13227893.0,14294528.0,15291385.0,16305994.0,17321723.0,18403041.0,19389617.0,20374396.0,21355470.0,22470130.0,23486162.0,24444398.0,25554250.0,26477437.0,27513771.0,28523016.0,29534274.0,30547670.0,31593609.0,32627939.0,33578407.0,34595572.0,35613217.0,36926145.0,37815985.0,38707632.0,39917076.0,40807664.0,41760198.0,43133871.0,43983525.0,44793555.0,45822457.0,47040767.0,48512961.0,48975121.0,49883837.0,50933865.0,52030413.0,53032539.0,54218592.0,55029306.0,56868220.0,57662353.0,58077340.0,59131032.0,60088545.0,61088738.0,62282467.0,63227668.0,64156564.0,65184216.0,66222018.0,67207086.0,68292513.0,69353365.0,70902386.0,71722496.0,72557124.0,73356006.0,75782074.0,76066111.0,76480325.0,77530890.0,78442421.0,79464587.0,80439354.0,81482517.0,82544829.0,83525315.0,84541293.0,85508658.0,86370494.0,87297948.0,88472623.0,89484450.0,90478158.0,91602705.0,92532799.0,93639416.0,94682187.0,95653916.0,96927718.0,97756476.0,98649690.0,99875606.0,100821140.0,101713257.0],"unit":"ns","throughput":[{"per_iteration":69568,"unit":"bytes"}],"typical":{"estimate":56643.599626126794,"lower_bound":56598.158132588134,"upper_bound":56700.564928803404,"unit":"ns"},"mean":{"estimate":56699.47857257713,"lower_bound":56632.00371870258,"upper_bound":56796.45891980269,"unit":"ns"},"median":{"estimate":56595.9038961039,"lower_bound":56582.40273854363,"upper_bound":56618.03472222222,"unit":"ns"},"median_abs_dev":{"estimate":95.0336454811558,"lower_bound":64.940506589611,"upper_bound":123.58075248644943,"unit":"ns"},"slope":{"estimate":56643.599626126794,"lower_bound":56598.158132588134,"upper_bound":56700.564928803404,"unit":"ns"},"change":{"mean":{"estimate":0.05299294963935619,"lower_bound":0.05124705013772095,"upper_bound":0.05482862489297813,"unit":"%"},"median":{"estimate":0.052033083962978566,"lower_bound":0.051656232101821964,"upper_bound":0.05247207099380313,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_77760","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_77760","iteration_count":[18,36,54,72,90,108,126,144,162,180,198,216,234,252,270,288,306,324,342,360,378,396,414,432,450,468,486,504,522,540,558,576,594,612,630,648,666,684,702,720,738,756,774,792,810,828,846,864,882,900,918,936,954,972,990,1008,1026,1044,1062,1080,1098,1116,1134,1152,1170,1188,1206,1224,1242,1260,1278,1296,1314,1332,1350,1368,1386,1404,1422,1440,1458,1476,1494,1512,1530,1548,1566,1584,1602,1620,1638,1656,1674,1692,1710,1728,1746,1764,1782,1800],"measured_values":[1102352.0,2121520.0,3178957.0,4240483.0,5196833.0,6206142.0,7245218.0,8278664.0,9336100.0,10374593.0,11385498.0,12442296.0,13484393.0,14481357.0,15551528.0,16556101.0,17619705.0,18630874.0,19848106.0,20741209.0,22085025.0,22761800.0,23824887.0,24862055.0,25908993.0,26894374.0,27959738.0,29011769.0,30016408.0,31079676.0,32049855.0,33432527.0,34152871.0,35175189.0,36324565.0,37737937.0,38798123.0,39743294.0,40444482.0,41461480.0,42427809.0,43488977.0,44678957.0,45634801.0,46630386.0,47633192.0,48728788.0,49860632.0,50767172.0,51761809.0,52784522.0,53807238.0,54918020.0,55945392.0,57285069.0,57994866.0,59135767.0,60017574.0,61123063.0,62136472.0,63073007.0,64647347.0,65912715.0,66384546.0,67692533.0,68837358.0,69301084.0,70479265.0,71475089.0,72917966.0,73515225.0,74623851.0,75567632.0,76630172.0,77609996.0,78860726.0,79683682.0,80928290.0,81883853.0,82743010.0,83531244.0,84627587.0,85670125.0,86795276.0,87748764.0,88746438.0,89701630.0,90645682.0,91663157.0,92743690.0,93679717.0,95124622.0,95877962.0,96914523.0,98979040.0,99387654.0,100228976.0,101224896.0,102256586.0,103492826.0],"unit":"ns","throughput":[{"per_iteration":77760,"unit":"bytes"}],"typical":{"estimate":57501.15289411031,"lower_bound":57452.72143231716,"upper_bound":57556.24416389318,"unit":"ns"},"mean":{"estimate":57652.05379190658,"lower_bound":57570.07439196098,"upper_bound":57755.96770257602,"unit":"ns"},"median":{"estimate":57541.31275879917,"lower_bound":57507.90932098766,"upper_bound":57570.79935010482,"unit":"ns"},"median_abs_dev":{"estimate":114.7253158006537,"lower_bound":83.52583110032059,"upper_bound":155.34508025753726,"unit":"ns"},"slope":{"estimate":57501.15289411031,"lower_bound":57452.72143231716,"upper_bound":57556.24416389318,"unit":"ns"},"change":{"mean":{"estimate":0.05744132101777155,"lower_bound":0.05217177365900364,"upper_bound":0.06121687415696268,"unit":"%"},"median":{"estimate":0.05952648920163783,"lower_bound":0.058810222277675406,"upper_bound":0.060239479724721656,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_94144","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_94144","iteration_count":[17,34,51,68,85,102,119,136,153,170,187,204,221,238,255,272,289,306,323,340,357,374,391,408,425,442,459,476,493,510,527,544,561,578,595,612,629,646,663,680,697,714,731,748,765,782,799,816,833,850,867,884,901,918,935,952,969,986,1003,1020,1037,1054,1071,1088,1105,1122,1139,1156,1173,1190,1207,1224,1241,1258,1275,1292,1309,1326,1343,1360,1377,1394,1411,1428,1445,1462,1479,1496,1513,1530,1547,1564,1581,1598,1615,1632,1649,1666,1683,1700],"measured_values":[1217055.0,2060203.0,3047389.0,4024432.0,5038932.0,6040215.0,7044142.0,8112035.0,9119741.0,10151706.0,11192979.0,12108013.0,13196851.0,14169433.0,15266502.0,16095616.0,17134476.0,18142690.0,19149285.0,20116277.0,21158034.0,22162147.0,23145284.0,24202273.0,25211863.0,26224806.0,27185133.0,28396481.0,29213760.0,30205993.0,31196536.0,32456163.0,33239155.0,34249963.0,35261447.0,36238722.0,37250765.0,38337732.0,39260739.0,40304680.0,41319274.0,42343723.0,43695887.0,44328595.0,45452030.0,46284264.0,47350751.0,48419004.0,49339167.0,50534389.0,51399227.0,52716119.0,53869197.0,54591719.0,55596373.0,56454298.0,57415937.0,58441444.0,60438229.0,61004186.0,61669334.0,62476737.0,63639625.0,64625615.0,65579140.0,66533902.0,67472733.0,68551039.0,69570287.0,70781264.0,71598353.0,72536493.0,73488575.0,74522236.0,75552247.0,76368572.0,77603740.0,78336724.0,79304648.0,80390423.0,81350417.0,82235793.0,83457353.0,84474379.0,85629579.0,86491306.0,87575620.0,88398864.0,90028585.0,90734022.0,91512974.0,92466252.0,93637303.0,94542782.0,95617451.0,96487969.0,97484875.0,98448114.0,99470788.0,100610899.0],"unit":"ns","throughput":[{"per_iteration":94144,"unit":"bytes"}],"typical":{"estimate":59251.911006702074,"lower_bound":59213.52117372943,"upper_bound":59297.76593073852,"unit":"ns"},"mean":{"estimate":59461.67008133771,"lower_bound":59303.48717154794,"upper_bound":59738.03683980557,"unit":"ns"},"median":{"estimate":59268.72152999131,"lower_bound":59254.7186377709,"upper_bound":59294.11109363532,"unit":"ns"},"median_abs_dev":{"estimate":116.03517869893058,"lower_bound":80.74520818413018,"upper_bound":178.36868387711024,"unit":"ns"},"slope":{"estimate":59251.911006702074,"lower_bound":59213.52117372943,"upper_bound":59297.76593073852,"unit":"ns"},"change":{"mean":{"estimate":0.055874117217789454,"lower_bound":0.05159265150230261,"upper_bound":0.061379445758492926,"unit":"%"},"median":{"estimate":0.05476542794692829,"lower_bound":0.054302404159098705,"upper_bound":0.055217608008790484,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_126912","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_126912","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":[1319507.0,2069196.0,3110089.0,4143218.0,5179161.0,6212793.0,7251835.0,8194305.0,9145846.0,10222259.0,11166522.0,12237930.0,13215893.0,14285711.0,15273448.0,16191290.0,17255389.0,18174164.0,19215678.0,20228825.0,21223122.0,22270274.0,23248780.0,24284117.0,25359298.0,26268398.0,27425161.0,28347241.0,29303430.0,30376764.0,31377084.0,32334773.0,33498019.0,34378314.0,35428645.0,36482449.0,37768823.0,38395731.0,39445391.0,40476059.0,41587391.0,42537205.0,43536603.0,44522416.0,45490947.0,46509055.0,47878847.0,51796712.0,49609746.0,50574769.0,51664169.0,52544933.0,53578262.0,54823501.0,56523709.0,57534892.0,58588914.0,59105092.0,59855270.0,60903842.0,61830130.0,62724523.0,63762684.0,64844851.0,65834272.0,66821018.0,67786617.0,68912169.0,69874996.0,70814860.0,71977169.0,72929607.0,73887799.0,74937393.0,76107877.0,76753119.0,77662642.0,78736841.0,79827087.0,80891656.0,81852254.0,82844109.0,83770844.0,84983440.0,85885595.0,86927799.0,88023637.0,88949601.0,89916984.0,90923712.0,91957792.0,92987426.0,97912877.0,95384121.0,95914213.0,96929410.0,98130693.0,99217183.0,100005766.0,102118715.0],"unit":"ns","throughput":[{"per_iteration":126912,"unit":"bytes"}],"typical":{"estimate":63373.61358929363,"lower_bound":63254.87609083424,"upper_bound":63541.199956622324,"unit":"ns"},"mean":{"estimate":63677.51491295349,"lower_bound":63400.07606039872,"upper_bound":64130.29068576388,"unit":"ns"},"median":{"estimate":63275.67809311225,"lower_bound":63238.71979493208,"upper_bound":63308.058606711915,"unit":"ns"},"median_abs_dev":{"estimate":179.4299250485935,"lower_bound":120.72432414981986,"upper_bound":215.44307229353987,"unit":"ns"},"slope":{"estimate":63373.61358929363,"lower_bound":63254.87609083424,"upper_bound":63541.199956622324,"unit":"ns"},"change":{"mean":{"estimate":0.06147222357858606,"lower_bound":0.05548716575209914,"upper_bound":0.06863903520203704,"unit":"%"},"median":{"estimate":0.05853124287444289,"lower_bound":0.0575258190029877,"upper_bound":0.05917657625917716,"unit":"%"},"change":"Regressed"}} -{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_192448","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_192448","iteration_count":[14,28,42,56,70,84,98,112,126,140,154,168,182,196,210,224,238,252,266,280,294,308,322,336,350,364,378,392,406,420,434,448,462,476,490,504,518,532,546,560,574,588,602,616,630,644,658,672,686,700,714,728,742,756,770,784,798,812,826,840,854,868,882,896,910,924,938,952,966,980,994,1008,1022,1036,1050,1064,1078,1092,1106,1120,1134,1148,1162,1176,1190,1204,1218,1232,1246,1260,1274,1288,1302,1316,1330,1344,1358,1372,1386,1400],"measured_values":[1085946.0,1986787.0,3005527.0,4004431.0,4989424.0,5956886.0,6945612.0,7935355.0,9013802.0,10020658.0,11000496.0,11907038.0,12913455.0,13921013.0,14908048.0,15895137.0,16864982.0,17885608.0,18847621.0,19882744.0,20857734.0,21915097.0,23162730.0,24215908.0,25163881.0,26149688.0,26917421.0,27880967.0,28806955.0,29761643.0,30971085.0,31778502.0,32804639.0,33801487.0,34735897.0,35841768.0,36933930.0,37833479.0,38742374.0,39744225.0,40947935.0,41801181.0,42689933.0,43932207.0,45119665.0,45665138.0,46700757.0,47624943.0,48766250.0,50136711.0,50825303.0,51493928.0,52614435.0,53525118.0,54594678.0,55477996.0,56971648.0,57667493.0,58621495.0,59647365.0,60623141.0,61674650.0,62694149.0,63712893.0,64888341.0,65707033.0,66766866.0,67744988.0,68733861.0,70184935.0,70796644.0,71674992.0,72991895.0,73607796.0,74743963.0,75760381.0,76530975.0,77668849.0,78641185.0,79689828.0,80625084.0,81500055.0,82405476.0,83644017.0,84645557.0,85579492.0,86537664.0,87682661.0,88501589.0,89477266.0,90560652.0,91506317.0,93304273.0,93673329.0,95098621.0,95617590.0,96713368.0,97853840.0,98674640.0,99540362.0],"unit":"ns","throughput":[{"per_iteration":192448,"unit":"bytes"}],"typical":{"estimate":71146.40676138403,"lower_bound":71102.3831643462,"upper_bound":71194.30223260917,"unit":"ns"},"mean":{"estimate":71210.20670475358,"lower_bound":71108.00121092857,"upper_bound":71367.71906156826,"unit":"ns"},"median":{"estimate":71099.10812169312,"lower_bound":71038.77391099796,"upper_bound":71128.01988256842,"unit":"ns"},"median_abs_dev":{"estimate":187.24574457347308,"lower_bound":143.2139662809677,"upper_bound":259.04904121252986,"unit":"ns"},"slope":{"estimate":71146.40676138403,"lower_bound":71102.3831643462,"upper_bound":71194.30223260917,"unit":"ns"},"change":{"mean":{"estimate":0.05871376641021153,"lower_bound":0.05615191493228837,"upper_bound":0.06128879677213986,"unit":"%"},"median":{"estimate":0.05807314475440095,"lower_bound":0.05709826076424074,"upper_bound":0.05860505274483452,"unit":"%"},"change":"Regressed"}} -{"reason":"group-complete","group_name":"vm_initialization","benchmarks":["vm_initialization/vm_initialization_with_tx_size_928","vm_initialization/vm_initialization_with_tx_size_16800","vm_initialization/vm_initialization_with_tx_size_65952","vm_initialization/vm_initialization_with_tx_size_1440","vm_initialization/vm_initialization_with_tx_size_8608","vm_initialization/vm_initialization_with_tx_size_2464","vm_initialization/vm_initialization_with_tx_size_33184","vm_initialization/vm_initialization_with_tx_size_4512","vm_initialization/vm_initialization_with_tx_size_61888","vm_initialization/vm_initialization_with_tx_size_62400","vm_initialization/vm_initialization_with_tx_size_63424","vm_initialization/vm_initialization_with_tx_size_65472","vm_initialization/vm_initialization_with_tx_size_69568","vm_initialization/vm_initialization_with_tx_size_77760","vm_initialization/vm_initialization_with_tx_size_94144","vm_initialization/vm_initialization_with_tx_size_126912","vm_initialization/vm_initialization_with_tx_size_192448"],"report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization"} diff --git a/bin/fuel-core/chainspec/local-testnet/benchmarks_fuel_core_0_35_0.json b/bin/fuel-core/chainspec/local-testnet/benchmarks_fuel_core_0_35_0.json new file mode 100644 index 00000000000..ca1467b62d9 --- /dev/null +++ b/bin/fuel-core/chainspec/local-testnet/benchmarks_fuel_core_0_35_0.json @@ -0,0 +1,474 @@ +{"reason":"benchmark-complete","id":"add/add","report_directory":"/root/fuel-core/target/criterion/reports/add/add","iteration_count":[5580,11160,16740,22320,27900,33480,39060,44640,50220,55800,61380,66960,72540,78120,83700,89280,94860,100440,106020,111600,117180,122760,128340,133920,139500,145080,150660,156240,161820,167400,172980,178560,184140,189720,195300,200880,206460,212040,217620,223200,228780,234360,239940,245520,251100,256680,262260,267840,273420,279000,284580,290160,295740,301320,306900,312480,318060,323640,329220,334800,340380,345960,351540,357120,362700,368280,373860,379440,385020,390600,396180,401760,407340,412920,418500,424080,429660,435240,440820,446400,451980,457560,463140,468720,474300,479880,485460,491040,496620,502200,507780,513360,518940,524520,530100,535680,541260,546840,552420,558000],"measured_values":[147380.0,279207.0,432142.0,562584.0,688787.0,905963.0,997068.0,1186713.0,1232297.0,1446242.0,1536485.0,1852959.0,1839295.0,2055190.0,2000863.0,2233479.0,2327021.0,2579771.0,2670271.0,2918875.0,2801346.0,3125408.0,3085988.0,3361392.0,3362161.0,3600459.0,3694998.0,3933628.0,4047319.0,4224289.0,4119042.0,4683996.0,4457607.0,4973763.0,4588964.0,5033520.0,5016339.0,5526583.0,5325477.0,5838650.0,5737449.0,6272105.0,6017558.0,6485516.0,6282255.0,6352466.0,6406889.0,6790425.0,6648950.0,7540483.0,6843186.0,7514576.0,7280317.0,7844780.0,7383135.0,7794999.0,7543674.0,8018022.0,7813824.0,8435219.0,8489437.0,8635452.0,8450709.0,9478088.0,9343053.0,9798410.0,9058891.0,9546121.0,9227900.0,10079855.0,9542447.0,10202049.0,10030588.0,10464984.0,10163556.0,10450053.0,10349689.0,11360699.0,11038648.0,11536101.0,11284426.0,11540635.0,11248277.0,11777016.0,11301372.0,11534821.0,11566723.0,12920524.0,12338690.0,12748034.0,12706733.0,13322010.0,12271308.0,13238010.0,12941830.0,13829246.0,13106539.0,13569120.0,13293208.0,14314404.0],"unit":"ns","throughput":[],"typical":{"estimate":24.940998627113554,"lower_bound":24.736554340563018,"upper_bound":25.15071873224083,"unit":"ns"},"mean":{"estimate":25.083844678409218,"lower_bound":24.912379814804382,"upper_bound":25.261258866332817,"unit":"ns"},"median":{"estimate":25.028215333054042,"lower_bound":24.845334460956064,"upper_bound":25.18648368232409,"unit":"ns"},"median_abs_dev":{"estimate":1.0843899869181721,"lower_bound":0.7196625814795924,"upper_bound":1.260550658539467,"unit":"ns"},"slope":{"estimate":24.940998627113554,"lower_bound":24.736554340563018,"upper_bound":25.15071873224083,"unit":"ns"},"change":{"mean":{"estimate":-0.055229550673195904,"lower_bound":-0.06625038020555683,"upper_bound":-0.04422162058215613,"unit":"%"},"median":{"estimate":-0.050783380297776515,"lower_bound":-0.06529091071990467,"upper_bound":-0.04116684921897695,"unit":"%"},"change":"Improved"}} +{"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":[5588,11176,16764,22352,27940,33528,39116,44704,50292,55880,61468,67056,72644,78232,83820,89408,94996,100584,106172,111760,117348,122936,128524,134112,139700,145288,150876,156464,162052,167640,173228,178816,184404,189992,195580,201168,206756,212344,217932,223520,229108,234696,240284,245872,251460,257048,262636,268224,273812,279400,284988,290576,296164,301752,307340,312928,318516,324104,329692,335280,340868,346456,352044,357632,363220,368808,374396,379984,385572,391160,396748,402336,407924,413512,419100,424688,430276,435864,441452,447040,452628,458216,463804,469392,474980,480568,486156,491744,497332,502920,508508,514096,519684,525272,530860,536448,542036,547624,553212,558800],"measured_values":[159978.0,322004.0,399290.0,581787.0,713178.0,861282.0,996577.0,1121314.0,1330776.0,1563875.0,1633473.0,1890041.0,1937474.0,2169737.0,2219838.0,2342335.0,2785750.0,2648453.0,2697536.0,2836039.0,2825263.0,3038335.0,3092059.0,3553268.0,3440133.0,3811113.0,3747879.0,4078348.0,4021833.0,4337203.0,4222838.0,4251753.0,4538432.0,4712594.0,4863085.0,5281961.0,5110910.0,5665765.0,5373513.0,5671154.0,5611520.0,5960498.0,6248001.0,6644003.0,6311061.0,6839143.0,6633244.0,6793154.0,6758968.0,6843464.0,7698620.0,7786544.0,7678261.0,8113903.0,7752496.0,8513292.0,8137044.0,8713560.0,8106239.0,8499309.0,8586646.0,9025684.0,9061547.0,9109643.0,9304703.0,9791632.0,9409945.0,9980656.0,9798901.0,10372922.0,9831387.0,10025770.0,9998553.0,10732230.0,10420075.0,10728341.0,11920726.0,11010520.0,10856534.0,12076287.0,11478104.0,12085975.0,11587287.0,13204234.0,12206560.0,12494958.0,13060715.0,13747184.0,12651128.0,12719963.0,13356657.0,13443690.0,13363041.0,13832986.0,13654851.0,14599889.0,13786644.0,13957607.0,13747821.0,14405200.0],"unit":"ns","throughput":[],"typical":{"estimate":25.837724694316886,"lower_bound":25.61408242224758,"upper_bound":26.07461884035997,"unit":"ns"},"mean":{"estimate":25.83387449868514,"lower_bound":25.620011607814874,"upper_bound":26.056006746447864,"unit":"ns"},"median":{"estimate":25.652852265844395,"lower_bound":25.40530395657065,"upper_bound":26.000395365484177,"unit":"ns"},"median_abs_dev":{"estimate":1.1281590395172743,"lower_bound":0.8263480166500086,"upper_bound":1.2886999566546107,"unit":"ns"},"slope":{"estimate":25.837724694316886,"lower_bound":25.61408242224758,"upper_bound":26.07461884035997,"unit":"ns"},"change":{"mean":{"estimate":0.07229705422812382,"lower_bound":0.06068899930073863,"upper_bound":0.0846029664939974,"unit":"%"},"median":{"estimate":0.069250587162619,"lower_bound":0.0585795916378542,"upper_bound":0.08436084993495507,"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/1","report_directory":"/root/fuel-core/target/criterion/reports/aloc/1","iteration_count":[4905,9810,14715,19620,24525,29430,34335,39240,44145,49050,53955,58860,63765,68670,73575,78480,83385,88290,93195,98100,103005,107910,112815,117720,122625,127530,132435,137340,142245,147150,152055,156960,161865,166770,171675,176580,181485,186390,191295,196200,201105,206010,210915,215820,220725,225630,230535,235440,240345,245250,250155,255060,259965,264870,269775,274680,279585,284490,289395,294300,299205,304110,309015,313920,318825,323730,328635,333540,338445,343350,348255,353160,358065,362970,367875,372780,377685,382590,387495,392400,397305,402210,407115,412020,416925,421830,426735,431640,436545,441450,446355,451260,456165,461070,465975,470880,475785,480690,485595,490500],"measured_values":[250405.0,444175.0,667669.0,889102.0,1119224.0,1334920.0,1572296.0,1788694.0,2006641.0,2227449.0,2465536.0,2671930.0,2890552.0,3113874.0,3341134.0,3584732.0,3780003.0,4031633.0,4246177.0,4451473.0,4698962.0,4927703.0,5152666.0,5351084.0,5562355.0,5796718.0,6048652.0,6289353.0,6573088.0,6717961.0,6922438.0,7128074.0,7371370.0,7558954.0,7826875.0,8040589.0,8247679.0,8486518.0,8703479.0,8906018.0,9187410.0,9386109.0,9627660.0,9797749.0,10061109.0,10260721.0,10501685.0,10732177.0,10997065.0,11156269.0,11407385.0,11582141.0,11841225.0,12022233.0,12229542.0,12478060.0,12707062.0,12919506.0,13182214.0,13362162.0,13601138.0,13829843.0,14114507.0,14267996.0,14478083.0,14808748.0,14953512.0,15211167.0,15539760.0,15611135.0,15848783.0,16058352.0,16402439.0,16492747.0,16753043.0,16967951.0,17163289.0,17389409.0,17627603.0,17906984.0,18140760.0,18267904.0,18538732.0,18705165.0,18967473.0,19169647.0,19448319.0,19673458.0,19973200.0,20049253.0,20378195.0,20534979.0,20723019.0,20980949.0,21186305.0,21404172.0,21622117.0,21929417.0,22140960.0,22257420.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":45.52443128530298,"lower_bound":45.49672210945047,"upper_bound":45.55428577217351,"unit":"ns"},"mean":{"estimate":45.5799956848492,"lower_bound":45.50386855915811,"upper_bound":45.707522247986994,"unit":"ns"},"median":{"estimate":45.499783330661046,"lower_bound":45.45758927825404,"upper_bound":45.540042133876995,"unit":"ns"},"median_abs_dev":{"estimate":0.13083571580497103,"lower_bound":0.09778123815530548,"upper_bound":0.16919093691353887,"unit":"ns"},"slope":{"estimate":45.52443128530298,"lower_bound":45.49672210945047,"upper_bound":45.55428577217351,"unit":"ns"},"change":{"mean":{"estimate":0.5591934392804772,"lower_bound":0.5529191917326094,"upper_bound":0.5656370723121843,"unit":"%"},"median":{"estimate":0.5640251308561803,"lower_bound":0.5593056443268662,"upper_bound":0.5669110700343654,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"aloc/10","report_directory":"/root/fuel-core/target/criterion/reports/aloc/10","iteration_count":[4872,9744,14616,19488,24360,29232,34104,38976,43848,48720,53592,58464,63336,68208,73080,77952,82824,87696,92568,97440,102312,107184,112056,116928,121800,126672,131544,136416,141288,146160,151032,155904,160776,165648,170520,175392,180264,185136,190008,194880,199752,204624,209496,214368,219240,224112,228984,233856,238728,243600,248472,253344,258216,263088,267960,272832,277704,282576,287448,292320,297192,302064,306936,311808,316680,321552,326424,331296,336168,341040,345912,350784,355656,360528,365400,370272,375144,380016,384888,389760,394632,399504,404376,409248,414120,418992,423864,428736,433608,438480,443352,448224,453096,457968,462840,467712,472584,477456,482328,487200],"measured_values":[247159.0,459221.0,663858.0,884714.0,1105085.0,1330104.0,1548567.0,1773547.0,1989179.0,2242443.0,2439739.0,2667588.0,2891794.0,3100537.0,3319944.0,3557542.0,3761995.0,3986956.0,4212146.0,4444300.0,4662780.0,4914789.0,5097542.0,5314186.0,5525348.0,5858579.0,6060831.0,6202776.0,6497975.0,6670652.0,6850388.0,7075714.0,7326456.0,7513207.0,7752810.0,7978177.0,8208331.0,8426646.0,8701273.0,9006029.0,9135105.0,9296440.0,9540934.0,9738978.0,9977920.0,10231360.0,10422097.0,10670663.0,10869863.0,11088602.0,11306440.0,11608900.0,11781855.0,11990380.0,12186939.0,12401463.0,12668797.0,13004418.0,13093925.0,13317446.0,13534560.0,13796839.0,14002739.0,14248549.0,14570762.0,14721437.0,14887872.0,15118249.0,15428489.0,15630893.0,15737837.0,15983839.0,16178143.0,16387925.0,16607944.0,16871449.0,17309405.0,17279414.0,17541130.0,17752317.0,17964908.0,18194826.0,18441139.0,18622107.0,18842412.0,19048430.0,19354171.0,19542969.0,19753771.0,20015579.0,20186919.0,20434281.0,20674049.0,20873301.0,21109546.0,21283585.0,21577324.0,21769344.0,21970341.0,22205723.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":45.60131240471301,"lower_bound":45.5718632479134,"upper_bound":45.636040070871076,"unit":"ns"},"mean":{"estimate":45.66191083633782,"lower_bound":45.57692174543232,"upper_bound":45.79005944547428,"unit":"ns"},"median":{"estimate":45.554537700067456,"lower_bound":45.524313330347816,"upper_bound":45.58041736441292,"unit":"ns"},"median_abs_dev":{"estimate":0.11400302072130906,"lower_bound":0.08988536816419801,"upper_bound":0.14275731272123032,"unit":"ns"},"slope":{"estimate":45.60131240471301,"lower_bound":45.5718632479134,"upper_bound":45.636040070871076,"unit":"ns"},"change":{"mean":{"estimate":0.43021237137970236,"lower_bound":0.3405304034993333,"upper_bound":0.51435964539138,"unit":"%"},"median":{"estimate":0.5416244513778101,"lower_bound":0.5368359346612059,"upper_bound":0.5475032316984201,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"aloc/100","report_directory":"/root/fuel-core/target/criterion/reports/aloc/100","iteration_count":[4893,9786,14679,19572,24465,29358,34251,39144,44037,48930,53823,58716,63609,68502,73395,78288,83181,88074,92967,97860,102753,107646,112539,117432,122325,127218,132111,137004,141897,146790,151683,156576,161469,166362,171255,176148,181041,185934,190827,195720,200613,205506,210399,215292,220185,225078,229971,234864,239757,244650,249543,254436,259329,264222,269115,274008,278901,283794,288687,293580,298473,303366,308259,313152,318045,322938,327831,332724,337617,342510,347403,352296,357189,362082,366975,371868,376761,381654,386547,391440,396333,401226,406119,411012,415905,420798,425691,430584,435477,440370,445263,450156,455049,459942,464835,469728,474621,479514,484407,489300],"measured_values":[231560.0,443515.0,667710.0,886917.0,1108140.0,1345142.0,1551348.0,1773376.0,1996869.0,2218395.0,2438413.0,2658726.0,2883509.0,3107604.0,3328390.0,3547962.0,3771159.0,3990808.0,4224938.0,4449784.0,4660682.0,4885726.0,5115192.0,5355676.0,5579153.0,5780884.0,5992841.0,6247809.0,6431920.0,6710836.0,6887969.0,7098819.0,7336168.0,7547108.0,7797946.0,8032764.0,8206937.0,8447574.0,8732109.0,8895179.0,9102980.0,9330970.0,9555910.0,9839120.0,10020878.0,10246009.0,10429231.0,10663830.0,10868682.0,11126296.0,11328158.0,11544958.0,11768840.0,11989730.0,12249487.0,12424971.0,12645777.0,12895529.0,13396956.0,13404505.0,13606925.0,13811546.0,13990590.0,14255515.0,14423664.0,14728464.0,14951472.0,15112226.0,15433141.0,15583190.0,15835163.0,16029253.0,16261818.0,16485150.0,16802812.0,16916112.0,17112245.0,17378731.0,17554843.0,17794968.0,18003399.0,18231344.0,18428901.0,18630572.0,18859393.0,19153641.0,19340709.0,19557461.0,19789184.0,19998923.0,20214405.0,20449850.0,20681267.0,20907498.0,21152127.0,21312551.0,21556569.0,21878518.0,22041762.0,22268028.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":45.47834653818704,"lower_bound":45.45080414611039,"upper_bound":45.510700705713845,"unit":"ns"},"mean":{"estimate":45.478923200756896,"lower_bound":45.43889338895191,"upper_bound":45.53123507621408,"unit":"ns"},"median":{"estimate":45.43077429064357,"lower_bound":45.40938155901369,"upper_bound":45.45052802244804,"unit":"ns"},"median_abs_dev":{"estimate":0.11933003633558795,"lower_bound":0.0901813749546818,"upper_bound":0.13558022692392044,"unit":"ns"},"slope":{"estimate":45.47834653818704,"lower_bound":45.45080414611039,"upper_bound":45.510700705713845,"unit":"ns"},"change":{"mean":{"estimate":0.500559204903694,"lower_bound":0.4916508479728336,"upper_bound":0.5092634082744139,"unit":"%"},"median":{"estimate":0.5065857678933443,"lower_bound":0.49013476519856414,"upper_bound":0.5235085367963843,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"aloc/1000","report_directory":"/root/fuel-core/target/criterion/reports/aloc/1000","iteration_count":[4635,9270,13905,18540,23175,27810,32445,37080,41715,46350,50985,55620,60255,64890,69525,74160,78795,83430,88065,92700,97335,101970,106605,111240,115875,120510,125145,129780,134415,139050,143685,148320,152955,157590,162225,166860,171495,176130,180765,185400,190035,194670,199305,203940,208575,213210,217845,222480,227115,231750,236385,241020,245655,250290,254925,259560,264195,268830,273465,278100,282735,287370,292005,296640,301275,305910,310545,315180,319815,324450,329085,333720,338355,342990,347625,352260,356895,361530,366165,370800,375435,380070,384705,389340,393975,398610,403245,407880,412515,417150,421785,426420,431055,435690,440325,444960,449595,454230,458865,463500],"measured_values":[263342.0,501386.0,745937.0,1022962.0,1244630.0,1513370.0,1755832.0,2039242.0,2221734.0,2498385.0,2736395.0,3031309.0,3219706.0,3498019.0,3760251.0,4025485.0,4233267.0,4498183.0,4698033.0,5032348.0,5193794.0,5494551.0,5674792.0,6037565.0,6185192.0,6513933.0,6720749.0,7062684.0,7189151.0,7508801.0,7710765.0,8051263.0,8160260.0,8540602.0,8683721.0,9064328.0,9145468.0,9496431.0,9671827.0,10064532.0,10168130.0,10495788.0,10695718.0,11071436.0,11167825.0,11525763.0,11712110.0,12094722.0,12203688.0,12502650.0,12641830.0,13165831.0,13104790.0,13531249.0,13629868.0,14086950.0,14124831.0,14533516.0,14696426.0,15143925.0,15101544.0,15626723.0,15753415.0,16210343.0,16181205.0,16502476.0,16705111.0,17119650.0,17116362.0,17557355.0,17713593.0,18151625.0,18125773.0,18526040.0,18670623.0,19107858.0,19084269.0,19492014.0,19636881.0,20189774.0,20101089.0,20468397.0,20643322.0,21186470.0,21984251.0,21504753.0,21575686.0,22160870.0,22047571.0,22498062.0,22725789.0,23205029.0,23048551.0,23694539.0,23503948.0,24274483.0,24108512.0,24495418.0,24588088.0,25231708.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":53.95894942602506,"lower_bound":53.83868141626787,"upper_bound":54.09143345484206,"unit":"ns"},"mean":{"estimate":53.963110843652885,"lower_bound":53.86490114493609,"upper_bound":54.072563899773584,"unit":"ns"},"median":{"estimate":53.91549848329784,"lower_bound":53.74152450953504,"upper_bound":54.000726357425386,"unit":"ns"},"median_abs_dev":{"estimate":0.5467543713991626,"lower_bound":0.3801323138839751,"upper_bound":0.6021324361294061,"unit":"ns"},"slope":{"estimate":53.95894942602506,"lower_bound":53.83868141626787,"upper_bound":54.09143345484206,"unit":"ns"},"change":{"mean":{"estimate":-0.5553386865856675,"lower_bound":-0.5572201765961291,"upper_bound":-0.5534635839669821,"unit":"%"},"median":{"estimate":-0.5505735515687502,"lower_bound":-0.5538483400100405,"upper_bound":-0.5498496035680684,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"aloc/10000","report_directory":"/root/fuel-core/target/criterion/reports/aloc/10000","iteration_count":[1614,3228,4842,6456,8070,9684,11298,12912,14526,16140,17754,19368,20982,22596,24210,25824,27438,29052,30666,32280,33894,35508,37122,38736,40350,41964,43578,45192,46806,48420,50034,51648,53262,54876,56490,58104,59718,61332,62946,64560,66174,67788,69402,71016,72630,74244,75858,77472,79086,80700,82314,83928,85542,87156,88770,90384,91998,93612,95226,96840,98454,100068,101682,103296,104910,106524,108138,109752,111366,112980,114594,116208,117822,119436,121050,122664,124278,125892,127506,129120,130734,132348,133962,135576,137190,138804,140418,142032,143646,145260,146874,148488,150102,151716,153330,154944,156558,158172,159786,161400],"measured_values":[650599.0,1273589.0,1905892.0,2545014.0,3177965.0,3847109.0,4554169.0,4775972.0,5366107.0,5951627.0,6512637.0,7107717.0,7720444.0,8289882.0,8841621.0,9459968.0,9993266.0,10718766.0,11515147.0,12114915.0,12704546.0,13314219.0,13924236.0,14587259.0,15149234.0,15682331.0,16265027.0,16759636.0,17273983.0,17713909.0,18289805.0,18867528.0,19424377.0,20026567.0,20656301.0,21055284.0,21572987.0,22175430.0,22774505.0,23327177.0,23890207.0,24461472.0,25068583.0,25503471.0,26086214.0,26549508.0,27107249.0,27752000.0,28573419.0,29028145.0,29388964.0,29990438.0,30589809.0,31157136.0,31798238.0,32295663.0,33121096.0,33663079.0,34128154.0,34607059.0,35183338.0,35577423.0,36194811.0,37056453.0,37492320.0,38318665.0,39202566.0,39640161.0,40133331.0,40574601.0,41102041.0,41696623.0,42482173.0,42958188.0,43374942.0,43897868.0,44344607.0,44937191.0,45527311.0,46679403.0,47606518.0,47766752.0,48252687.0,48714663.0,49108261.0,49696235.0,50284446.0,50685149.0,51255756.0,52012071.0,52881017.0,53950998.0,54545579.0,54987770.0,55299429.0,55913637.0,56623795.0,56975068.0,57508320.0,57746198.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":359.9000603500954,"lower_bound":359.3443955533655,"upper_bound":360.4866108365355,"unit":"ns"},"mean":{"estimate":364.8667702211954,"lower_bound":362.955556352446,"upper_bound":366.99193795197675,"unit":"ns"},"median":{"estimate":361.10022296387956,"lower_bound":360.04341816795346,"upper_bound":362.3723667905824,"unit":"ns"},"median_abs_dev":{"estimate":5.190980618518973,"lower_bound":3.5021706282030767,"upper_bound":6.358444175667821,"unit":"ns"},"slope":{"estimate":359.9000603500954,"lower_bound":359.3443955533655,"upper_bound":360.4866108365355,"unit":"ns"},"change":{"mean":{"estimate":-0.7511407749410743,"lower_bound":-0.7526986986031308,"upper_bound":-0.7496173827157852,"unit":"%"},"median":{"estimate":-0.754263811906325,"lower_bound":-0.7552353636024015,"upper_bound":-0.7536085327541729,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"aloc/100000","report_directory":"/root/fuel-core/target/criterion/reports/aloc/100000","iteration_count":[217,434,651,868,1085,1302,1519,1736,1953,2170,2387,2604,2821,3038,3255,3472,3689,3906,4123,4340,4557,4774,4991,5208,5425,5642,5859,6076,6293,6510,6727,6944,7161,7378,7595,7812,8029,8246,8463,8680,8897,9114,9331,9548,9765,9982,10199,10416,10633,10850,11067,11284,11501,11718,11935,12152,12369,12586,12803,13020,13237,13454,13671,13888,14105,14322,14539,14756,14973,15190,15407,15624,15841,16058,16275,16492,16709,16926,17143,17360,17577,17794,18011,18228,18445,18662,18879,19096,19313,19530,19747,19964,20181,20398,20615,20832,21049,21266,21483,21700],"measured_values":[1033075.0,1979661.0,2965971.0,3953058.0,4929587.0,5915858.0,6891727.0,7875954.0,8831707.0,9668432.0,10613487.0,11508081.0,12455985.0,13368200.0,14210248.0,15103002.0,15969208.0,16879399.0,17739716.0,18629113.0,19501300.0,20360915.0,21228479.0,22066318.0,22785544.0,23563871.0,24442300.0,25312382.0,26122183.0,26814908.0,27681111.0,28375982.0,29127746.0,30012635.0,30657843.0,31303937.0,32042328.0,33193358.0,34385447.0,35375048.0,35734716.0,36535126.0,37522269.0,42954445.0,44060188.0,44418791.0,44366888.0,44398799.0,45306046.0,45971569.0,46557564.0,46991316.0,47846014.0,48583955.0,49245385.0,49962877.0,50742990.0,51698249.0,52292240.0,55597360.0,57971858.0,58275231.0,58705952.0,59487145.0,59466993.0,59332108.0,59721369.0,60829695.0,61198772.0,61746771.0,62264581.0,62826291.0,63710931.0,64210085.0,64518364.0,65258648.0,66267694.0,69543487.0,70224635.0,70652886.0,71220150.0,71478722.0,71854498.0,72295623.0,72992773.0,73967211.0,74386920.0,76724688.0,78695657.0,79422614.0,80405646.0,80919298.0,81150762.0,82758214.0,83681707.0,84005929.0,83943826.0,86095620.0,86596348.0,86153296.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":4077.650827388812,"lower_bound":4055.8900047563616,"upper_bound":4103.412053045108,"unit":"ns"},"mean":{"estimate":4185.175851343229,"lower_bound":4149.587348543362,"upper_bound":4222.357167402851,"unit":"ns"},"median":{"estimate":4116.98002576681,"lower_bound":4081.3707940960394,"upper_bound":4171.752858849633,"unit":"ns"},"median_abs_dev":{"estimate":154.77434958873113,"lower_bound":109.66018191200595,"upper_bound":213.40891145701434,"unit":"ns"},"slope":{"estimate":4077.650827388812,"lower_bound":4055.8900047563616,"upper_bound":4103.412053045108,"unit":"ns"},"change":{"mean":{"estimate":-0.6287065474863457,"lower_bound":-0.6320024801962747,"upper_bound":-0.6251691382464036,"unit":"%"},"median":{"estimate":-0.6342248909505892,"lower_bound":-0.637381843945247,"upper_bound":-0.6294934314011327,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"aloc/1000000","report_directory":"/root/fuel-core/target/criterion/reports/aloc/1000000","iteration_count":[28,56,84,112,140,168,196,224,252,280,308,336,364,392,420,448,476,504,532,560,588,616,644,672,700,728,756,784,812,840,868,896,924,952,980,1008,1036,1064,1092,1120,1148,1176,1204,1232,1260,1288,1316,1344,1372,1400,1428,1456,1484,1512,1540,1568,1596,1624,1652,1680,1708,1736,1764,1792,1820,1848,1876,1904,1932,1960,1988,2016,2044,2072,2100,2128,2156,2184,2212,2240,2268,2296,2324,2352,2380,2408,2436,2464,2492,2520,2548,2576,2604,2632,2660,2688,2716,2744,2772,2800],"measured_values":[1119429.0,2030212.0,3047141.0,4060275.0,5076522.0,6090573.0,7134707.0,8120840.0,9133354.0,10185496.0,11189837.0,12169591.0,13180538.0,14216656.0,15196731.0,16230953.0,17714535.0,18288434.0,19269640.0,20267826.0,21236212.0,22288443.0,23280124.0,24275392.0,25247933.0,26239143.0,27249123.0,28151131.0,29163068.0,30151512.0,31139967.0,32101584.0,33076498.0,34169390.0,35002344.0,36038551.0,37023854.0,38389318.0,38905838.0,39847828.0,40775487.0,41806833.0,42796570.0,43764789.0,44852029.0,45878601.0,46699283.0,47640300.0,48672396.0,49636191.0,50703927.0,51661850.0,52709576.0,53614688.0,54639635.0,55650040.0,56754849.0,57689060.0,58611064.0,59705122.0,60570562.0,61551108.0,62699092.0,63754458.0,64866311.0,65676465.0,66812996.0,67518816.0,68409262.0,69343526.0,70245326.0,71226688.0,72226790.0,73397648.0,74449493.0,75377644.0,76292546.0,77356906.0,78292153.0,80127453.0,81401296.0,82181873.0,83186807.0,84555156.0,85968029.0,86181035.0,87223893.0,88131630.0,88750684.0,90503110.0,91920460.0,92062712.0,93491052.0,94387695.0,96096864.0,96589185.0,96899582.0,97935968.0,99207271.0,100679104.0],"unit":"ns","throughput":[{"per_iteration":1000000,"unit":"bytes"}],"typical":{"estimate":35693.374511600414,"lower_bound":35632.514556141665,"upper_bound":35752.01303417747,"unit":"ns"},"mean":{"estimate":35850.41018891139,"lower_bound":35757.90267019525,"upper_bound":35966.056401766684,"unit":"ns"},"median":{"estimate":35780.1215886544,"lower_bound":35628.056776556776,"upper_bound":35891.223985890654,"unit":"ns"},"median_abs_dev":{"estimate":432.45134522378197,"lower_bound":275.41586865009106,"upper_bound":492.0625989822746,"unit":"ns"},"slope":{"estimate":35693.374511600414,"lower_bound":35632.514556141665,"upper_bound":35752.01303417747,"unit":"ns"},"change":{"mean":{"estimate":-0.8241061510260885,"lower_bound":-0.8294886521431208,"upper_bound":-0.8179658497630364,"unit":"%"},"median":{"estimate":-0.8378315265064653,"lower_bound":-0.8385825402971707,"upper_bound":-0.837398795475727,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"aloc/10000000","report_directory":"/root/fuel-core/target/criterion/reports/aloc/10000000","iteration_count":[7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7],"measured_values":[45454452.0,45210042.0,45189301.0,45095640.0,45141831.0,45226205.0,45265968.0,45143180.0,45163778.0,45094884.0,45188246.0,45138185.0,45334576.0,45192745.0,45142165.0,45117215.0,45125144.0,45130649.0,45166982.0,45086759.0,45148134.0,45157626.0,45906795.0,45156373.0,45171212.0,45073343.0,45245187.0,45830906.0,45111950.0,45155222.0,45128460.0,45410449.0,45473656.0,45127658.0,45217981.0,45465674.0,45128374.0,45095144.0,45326449.0,45456282.0,45255783.0,45124300.0,45147848.0,45091498.0,45093310.0,45281940.0,45154735.0,45126060.0,45110567.0,45158923.0,45196565.0,45300082.0,45308857.0,45111860.0,45129667.0,45099700.0,45163318.0,45483396.0,45114716.0,45119994.0,45116720.0,45230970.0,45117090.0,45422955.0,45093177.0,45151937.0,45100046.0,45145353.0,45230912.0,45131068.0,45173935.0,45475620.0,45207654.0,45142915.0,45313071.0,45073774.0,45088988.0,45246908.0,45422990.0,45157286.0,45121399.0,45181569.0,45132659.0,45140429.0,45216109.0,45126054.0,45384412.0,45126232.0,45132449.0,45109125.0,45321752.0,45123836.0,45151055.0,45132075.0,45155001.0,45096200.0,45111728.0,45144200.0,45118061.0,45136443.0],"unit":"ns","throughput":[{"per_iteration":10000000,"unit":"bytes"}],"typical":{"estimate":6457388.711428573,"lower_bound":6453708.624035714,"upper_bound":6461602.447642859,"unit":"ns"},"mean":{"estimate":6457388.711428573,"lower_bound":6453708.624035714,"upper_bound":6461602.447642859,"unit":"ns"},"median":{"estimate":6449713.0,"lower_bound":6448062.714285715,"upper_bound":6451471.714285715,"unit":"ns"},"median_abs_dev":{"estimate":7666.524463891983,"lower_bound":5085.529709713603,"upper_bound":11540.558195114136,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.4435833737113012,"lower_bound":-0.45522683870410585,"upper_bound":-0.43136381892336845,"unit":"%"},"median":{"estimate":-0.4430604977340836,"lower_bound":-0.49692224645832617,"upper_bound":-0.37840211117247435,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"aloc/30000000","report_directory":"/root/fuel-core/target/criterion/reports/aloc/30000000","iteration_count":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],"measured_values":[53003301.0,52983769.0,52874435.0,52968314.0,53049572.0,53036434.0,52870468.0,52934682.0,52814002.0,52971881.0,53048171.0,52840231.0,52877051.0,52852294.0,52884609.0,52857650.0,52978562.0,52843577.0,52928930.0,52866207.0,53031977.0,52873982.0,53403968.0,52915474.0,52871130.0,52909570.0,52937522.0,52944147.0,53119216.0,52969177.0,52911437.0,52873387.0,52886167.0,52846109.0,52980196.0,52912664.0,52961752.0,52985323.0,52864859.0,52874583.0,52882927.0,52879721.0,52868795.0,52875775.0,52938631.0,52861421.0,52861958.0,52947671.0,52846660.0,52872226.0,52903992.0,52972000.0,52877254.0,53123393.0,52960563.0,52880658.0,52884833.0,52861264.0,52833590.0,52893535.0,52908174.0,52942596.0,52885237.0,52912855.0,52929848.0,52842177.0,52851559.0,52955600.0,52872579.0,52932654.0,53144346.0,52911622.0,52847111.0,52874570.0,52867069.0,52898614.0,52971173.0,52896880.0,52936443.0,52851739.0,53405073.0,53020876.0,52965033.0,53050595.0,52957846.0,52901792.0,53196043.0,52983509.0,52825970.0,52941192.0,52849763.0,52887634.0,52932013.0,52869266.0,52949534.0,52947368.0,52911446.0,52897091.0,52919172.0,53036540.0],"unit":"ns","throughput":[{"per_iteration":30000000,"unit":"bytes"}],"typical":{"estimate":13233160.6225,"lower_bound":13228644.61425,"upper_bound":13238275.325,"unit":"ns"},"mean":{"estimate":13233160.6225,"lower_bound":13228644.61425,"upper_bound":13238275.325,"unit":"ns"},"median":{"estimate":13227625.875,"lower_bound":13221541.75,"upper_bound":13233003.25,"unit":"ns"},"median_abs_dev":{"estimate":15371.967177093029,"lower_bound":11576.881894469261,"upper_bound":19641.299126297235,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.4370750053354021,"lower_bound":-0.43798700901557125,"upper_bound":-0.43625478963800884,"unit":"%"},"median":{"estimate":-0.43636026226607305,"lower_bound":-0.43696298140061685,"upper_bound":-0.43541692796131704,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"aloc","benchmarks":["aloc/aloc","aloc/1","aloc/10","aloc/100","aloc/1000","aloc/10000","aloc/100000","aloc/1000000","aloc/10000000","aloc/30000000"],"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":[5594,11188,16782,22376,27970,33564,39158,44752,50346,55940,61534,67128,72722,78316,83910,89504,95098,100692,106286,111880,117474,123068,128662,134256,139850,145444,151038,156632,162226,167820,173414,179008,184602,190196,195790,201384,206978,212572,218166,223760,229354,234948,240542,246136,251730,257324,262918,268512,274106,279700,285294,290888,296482,302076,307670,313264,318858,324452,330046,335640,341234,346828,352422,358016,363610,369204,374798,380392,385986,391580,397174,402768,408362,413956,419550,425144,430738,436332,441926,447520,453114,458708,464302,469896,475490,481084,486678,492272,497866,503460,509054,514648,520242,525836,531430,537024,542618,548212,553806,559400],"measured_values":[163382.0,320911.0,451707.0,577662.0,739509.0,866604.0,1011205.0,1197314.0,1312067.0,1550886.0,1521096.0,1791989.0,1820346.0,2128432.0,2035642.0,2504962.0,2322167.0,2760816.0,2662692.0,2961650.0,2944803.0,3407015.0,3321327.0,3682977.0,3393556.0,3889637.0,3636378.0,3799544.0,3850553.0,4195466.0,4163753.0,4547750.0,4402302.0,4764534.0,4692940.0,4910506.0,4860488.0,5282693.0,5202625.0,5652174.0,5351816.0,5968398.0,5834879.0,6323130.0,6027236.0,6585358.0,6414905.0,6663136.0,6603292.0,6998268.0,6709384.0,7224783.0,7005638.0,7423140.0,7261508.0,7735774.0,7492648.0,7735658.0,8181227.0,8431566.0,8211276.0,8843541.0,8423406.0,8787465.0,8754506.0,9263795.0,9062533.0,9269505.0,9180818.0,9900056.0,9451635.0,9935237.0,9923836.0,10356193.0,9947854.0,10798945.0,10012848.0,10985138.0,10475842.0,11254707.0,10980333.0,11482422.0,11284987.0,11807458.0,11420113.0,11940359.0,11646740.0,12337629.0,12213972.0,12905289.0,12241914.0,13179984.0,12816350.0,13625009.0,12968426.0,13193838.0,12925583.0,13614348.0,13335828.0,13737931.0],"unit":"ns","throughput":[],"typical":{"estimate":24.571284292069354,"lower_bound":24.407084909990367,"upper_bound":24.739494951934546,"unit":"ns"},"mean":{"estimate":24.97435485013596,"lower_bound":24.745518105508047,"upper_bound":25.218138601598845,"unit":"ns"},"median":{"estimate":24.753871912069556,"lower_bound":24.418673368525102,"upper_bound":25.03157228899095,"unit":"ns"},"median_abs_dev":{"estimate":1.0046038840209037,"lower_bound":0.7509413792194818,"upper_bound":1.2547505762467392,"unit":"ns"},"slope":{"estimate":24.571284292069354,"lower_bound":24.407084909990367,"upper_bound":24.739494951934546,"unit":"ns"},"change":{"mean":{"estimate":-0.00481011180620361,"lower_bound":-0.018567966137005443,"upper_bound":0.008063135006962931,"unit":"%"},"median":{"estimate":-0.0070933987232798534,"lower_bound":-0.021332496406373913,"upper_bound":0.0076621812898103325,"unit":"%"},"change":"NoChange"}} +{"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":[5648,11296,16944,22592,28240,33888,39536,45184,50832,56480,62128,67776,73424,79072,84720,90368,96016,101664,107312,112960,118608,124256,129904,135552,141200,146848,152496,158144,163792,169440,175088,180736,186384,192032,197680,203328,208976,214624,220272,225920,231568,237216,242864,248512,254160,259808,265456,271104,276752,282400,288048,293696,299344,304992,310640,316288,321936,327584,333232,338880,344528,350176,355824,361472,367120,372768,378416,384064,389712,395360,401008,406656,412304,417952,423600,429248,434896,440544,446192,451840,457488,463136,468784,474432,480080,485728,491376,497024,502672,508320,513968,519616,525264,530912,536560,542208,547856,553504,559152,564800],"measured_values":[168459.0,275816.0,499329.0,540312.0,702323.0,930232.0,1023400.0,1309030.0,1334162.0,1583634.0,1629695.0,1838620.0,1891138.0,2033615.0,2022760.0,2512668.0,2411233.0,2746346.0,2638267.0,2788168.0,2993636.0,3529823.0,3140533.0,3491806.0,3767770.0,3809147.0,3858618.0,4541992.0,4272872.0,4496185.0,4293875.0,4687310.0,4710829.0,4873412.0,4858286.0,5272963.0,5194862.0,5292109.0,5319543.0,5648920.0,5589082.0,5908099.0,6057798.0,6360120.0,6041681.0,6240881.0,6430636.0,7281090.0,6769445.0,6856182.0,7292194.0,7816282.0,7711317.0,7844859.0,7589277.0,8478086.0,8189691.0,8714324.0,8129772.0,8835688.0,8826156.0,9202002.0,8809349.0,8923034.0,8929689.0,9266209.0,9208694.0,10431850.0,9821214.0,10389381.0,10774530.0,10451969.0,10129293.0,11473095.0,10470383.0,10795164.0,10643776.0,11415959.0,10905025.0,11195304.0,11227093.0,11967279.0,11397435.0,12281982.0,12187675.0,13273483.0,12341915.0,13408801.0,12029331.0,12719022.0,12573445.0,12869710.0,12793283.0,14855114.0,13524738.0,15132428.0,13902205.0,14204208.0,13828966.0,14094907.0],"unit":"ns","throughput":[],"typical":{"estimate":25.431887408943,"lower_bound":25.15560547946676,"upper_bound":25.734894597848324,"unit":"ns"},"mean":{"estimate":25.61801669349927,"lower_bound":25.367768539945928,"upper_bound":25.8783555214853,"unit":"ns"},"median":{"estimate":25.30948777055676,"lower_bound":24.988627537771485,"upper_bound":25.718522359368677,"unit":"ns"},"median_abs_dev":{"estimate":1.1463804473999122,"lower_bound":0.8968792016435014,"upper_bound":1.545733778114021,"unit":"ns"},"slope":{"estimate":25.431887408943,"lower_bound":25.15560547946676,"upper_bound":25.734894597848324,"unit":"ns"},"change":{"mean":{"estimate":0.04207389343577539,"lower_bound":0.028876801466149227,"upper_bound":0.05555643465465891,"unit":"%"},"median":{"estimate":0.039561367249553836,"lower_bound":0.02669637374755185,"upper_bound":0.056286028908315355,"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":[5512,11024,16536,22048,27560,33072,38584,44096,49608,55120,60632,66144,71656,77168,82680,88192,93704,99216,104728,110240,115752,121264,126776,132288,137800,143312,148824,154336,159848,165360,170872,176384,181896,187408,192920,198432,203944,209456,214968,220480,225992,231504,237016,242528,248040,253552,259064,264576,270088,275600,281112,286624,292136,297648,303160,308672,314184,319696,325208,330720,336232,341744,347256,352768,358280,363792,369304,374816,380328,385840,391352,396864,402376,407888,413400,418912,424424,429936,435448,440960,446472,451984,457496,463008,468520,474032,479544,485056,490568,496080,501592,507104,512616,518128,523640,529152,534664,540176,545688,551200],"measured_values":[185736.0,294035.0,462770.0,571026.0,760171.0,897434.0,1090340.0,1188457.0,1426215.0,1466825.0,1755382.0,1757685.0,2015572.0,2106782.0,2224648.0,2315687.0,2598999.0,2741126.0,2866439.0,2957562.0,3358852.0,3176897.0,3376103.0,3555594.0,4122834.0,3906737.0,4225291.0,4338856.0,4568916.0,4365082.0,4629383.0,4710854.0,4913738.0,4980626.0,5465539.0,5309987.0,6047869.0,5517855.0,5970549.0,5792190.0,6121268.0,6159407.0,6548032.0,6512326.0,6977297.0,6679536.0,7048947.0,7058670.0,7596992.0,7385501.0,7816101.0,7435241.0,7882035.0,7701356.0,8038684.0,8182974.0,8527044.0,8413778.0,8919833.0,8549880.0,8871400.0,8866750.0,9636466.0,9369242.0,9976331.0,9652215.0,10303269.0,10025778.0,10539152.0,10117206.0,10406837.0,10375969.0,11247719.0,10742573.0,11460599.0,11337701.0,11899385.0,11388811.0,12145738.0,11631875.0,12203528.0,11998602.0,12882103.0,12170856.0,13359722.0,12518813.0,12952674.0,12794417.0,13235592.0,12887514.0,13279615.0,13026867.0,14093777.0,13714348.0,14310924.0,14682900.0,14928758.0,14478647.0,14722834.0,14811249.0],"unit":"ns","throughput":[],"typical":{"estimate":26.994959058120138,"lower_bound":26.81270032209624,"upper_bound":27.181851144056058,"unit":"ns"},"mean":{"estimate":27.20545402628812,"lower_bound":27.00692057300316,"upper_bound":27.425952924030934,"unit":"ns"},"median":{"estimate":26.98022603441832,"lower_bound":26.759731293339783,"upper_bound":27.209288052373157,"unit":"ns"},"median_abs_dev":{"estimate":0.8934194952466281,"lower_bound":0.6218265380395589,"upper_bound":1.0693375997608945,"unit":"ns"},"slope":{"estimate":26.994959058120138,"lower_bound":26.81270032209624,"upper_bound":27.181851144056058,"unit":"ns"},"change":{"mean":{"estimate":0.02054513932025226,"lower_bound":0.010884610679320561,"upper_bound":0.030643233903849928,"unit":"%"},"median":{"estimate":0.02496107623762822,"lower_bound":0.01362208167739376,"upper_bound":0.0342610134471264,"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":[5645,11290,16935,22580,28225,33870,39515,45160,50805,56450,62095,67740,73385,79030,84675,90320,95965,101610,107255,112900,118545,124190,129835,135480,141125,146770,152415,158060,163705,169350,174995,180640,186285,191930,197575,203220,208865,214510,220155,225800,231445,237090,242735,248380,254025,259670,265315,270960,276605,282250,287895,293540,299185,304830,310475,316120,321765,327410,333055,338700,344345,349990,355635,361280,366925,372570,378215,383860,389505,395150,400795,406440,412085,417730,423375,429020,434665,440310,445955,451600,457245,462890,468535,474180,479825,485470,491115,496760,502405,508050,513695,519340,524985,530630,536275,541920,547565,553210,558855,564500],"measured_values":[164123.0,283007.0,425595.0,561440.0,708113.0,847737.0,986013.0,1136688.0,1263493.0,1403416.0,1544958.0,1685825.0,1825692.0,1969671.0,2101332.0,2249596.0,2384318.0,2547878.0,2667694.0,2824725.0,2948641.0,3110081.0,3447638.0,3397515.0,3516314.0,3673484.0,3812581.0,3933532.0,4072290.0,4230933.0,4359148.0,4552768.0,4643693.0,4780280.0,4936800.0,5063554.0,5192174.0,5846772.0,5871851.0,5678134.0,5768617.0,5932229.0,6050980.0,6253317.0,6361594.0,6577161.0,6699736.0,6802518.0,6892483.0,7026343.0,7165790.0,7322850.0,7469214.0,7606425.0,7797597.0,7901447.0,8040428.0,8170778.0,8324272.0,8442588.0,8572225.0,8764312.0,9155165.0,9083333.0,9182790.0,9310685.0,9516489.0,9566301.0,9722147.0,9858023.0,9971849.0,10152037.0,10316985.0,10464248.0,10567723.0,10803856.0,10857855.0,11182948.0,11156217.0,11357313.0,11420217.0,11585676.0,11704057.0,11843196.0,11976477.0,12159466.0,12258284.0,12391394.0,12548351.0,12696127.0,12900271.0,13012558.0,13148790.0,13297086.0,13348030.0,14250132.0,13881770.0,14825605.0,14009699.0,14103669.0],"unit":"ns","throughput":[],"typical":{"estimate":25.13858143444264,"lower_bound":25.035767120798237,"upper_bound":25.271749142038885,"unit":"ns"},"mean":{"estimate":25.135350241809807,"lower_bound":25.038452908496446,"upper_bound":25.25657262464412,"unit":"ns"},"median":{"estimate":24.98773861136455,"lower_bound":24.96520213245985,"upper_bound":25.026340532806433,"unit":"ns"},"median_abs_dev":{"estimate":0.10581767780023436,"lower_bound":0.0878053281245034,"upper_bound":0.1491330308067714,"unit":"ns"},"slope":{"estimate":25.13858143444264,"lower_bound":25.035767120798237,"upper_bound":25.271749142038885,"unit":"ns"},"change":{"mean":{"estimate":-0.06215139642454848,"lower_bound":-0.06902883042105493,"upper_bound":-0.05504905383267453,"unit":"%"},"median":{"estimate":-0.061347766253670666,"lower_bound":-0.0697981893739511,"upper_bound":-0.05431197674069099,"unit":"%"},"change":"Improved"}} +{"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":[5534,11068,16602,22136,27670,33204,38738,44272,49806,55340,60874,66408,71942,77476,83010,88544,94078,99612,105146,110680,116214,121748,127282,132816,138350,143884,149418,154952,160486,166020,171554,177088,182622,188156,193690,199224,204758,210292,215826,221360,226894,232428,237962,243496,249030,254564,260098,265632,271166,276700,282234,287768,293302,298836,304370,309904,315438,320972,326506,332040,337574,343108,348642,354176,359710,365244,370778,376312,381846,387380,392914,398448,403982,409516,415050,420584,426118,431652,437186,442720,448254,453788,459322,464856,470390,475924,481458,486992,492526,498060,503594,509128,514662,520196,525730,531264,536798,542332,547866,553400],"measured_values":[169308.0,271409.0,500697.0,578645.0,687120.0,764451.0,1021340.0,1073558.0,1283446.0,1305705.0,1588980.0,1663729.0,1882850.0,1929849.0,2064553.0,2126365.0,2517401.0,2481943.0,2803513.0,2697959.0,2990487.0,2887110.0,3084234.0,3225182.0,3509804.0,3494985.0,3853654.0,3796803.0,3973724.0,3872415.0,4214829.0,4249739.0,4461096.0,4489584.0,4740609.0,4595926.0,4949566.0,4952762.0,5551817.0,5450754.0,5576582.0,5617563.0,5717968.0,5682774.0,5823655.0,5976377.0,6119540.0,6141444.0,6574925.0,6518148.0,6623179.0,6765082.0,7169040.0,7158871.0,7468756.0,7420546.0,8015247.0,7700731.0,8154122.0,7863047.0,8036074.0,8083922.0,8557525.0,8554559.0,8830064.0,8603316.0,9017732.0,8949941.0,9375808.0,9427257.0,9513290.0,9605372.0,9932657.0,9773263.0,10084744.0,10153296.0,10262261.0,10139578.0,10431652.0,10470283.0,11038334.0,11872900.0,11507664.0,11285411.0,11264921.0,11132223.0,11261524.0,11509511.0,11482743.0,11521083.0,11730928.0,12091829.0,12362905.0,12309457.0,12859946.0,12715088.0,13247686.0,13101394.0,13275442.0,13324110.0],"unit":"ns","throughput":[],"typical":{"estimate":24.072800041699846,"lower_bound":23.92998485215173,"upper_bound":24.22842342111692,"unit":"ns"},"mean":{"estimate":24.43552408906658,"lower_bound":24.219606072824934,"upper_bound":24.682512871457835,"unit":"ns"},"median":{"estimate":24.221663691486604,"lower_bound":24.02891217925551,"upper_bound":24.348659642697246,"unit":"ns"},"median_abs_dev":{"estimate":0.6886774076154536,"lower_bound":0.5044668837543063,"upper_bound":0.9336337888154058,"unit":"ns"},"slope":{"estimate":24.072800041699846,"lower_bound":23.92998485215173,"upper_bound":24.22842342111692,"unit":"ns"},"change":{"mean":{"estimate":-0.004092858276024569,"lower_bound":-0.016521226042685893,"upper_bound":0.009635915178971643,"unit":"%"},"median":{"estimate":-0.004974227118801577,"lower_bound":-0.019931737812749706,"upper_bound":0.010439443803758941,"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":[5414,10828,16242,21656,27070,32484,37898,43312,48726,54140,59554,64968,70382,75796,81210,86624,92038,97452,102866,108280,113694,119108,124522,129936,135350,140764,146178,151592,157006,162420,167834,173248,178662,184076,189490,194904,200318,205732,211146,216560,221974,227388,232802,238216,243630,249044,254458,259872,265286,270700,276114,281528,286942,292356,297770,303184,308598,314012,319426,324840,330254,335668,341082,346496,351910,357324,362738,368152,373566,378980,384394,389808,395222,400636,406050,411464,416878,422292,427706,433120,438534,443948,449362,454776,460190,465604,471018,476432,481846,487260,492674,498088,503502,508916,514330,519744,525158,530572,535986,541400],"measured_values":[207045.0,333069.0,502046.0,664004.0,837908.0,985709.0,1171914.0,1323104.0,1505527.0,1651777.0,1833852.0,1994850.0,2194158.0,2305097.0,2507248.0,2638279.0,2836017.0,2970604.0,3215203.0,3330442.0,3525499.0,3631299.0,3845977.0,3995790.0,4160509.0,4307575.0,4530434.0,4625020.0,4833126.0,5047224.0,5306464.0,5313574.0,5568454.0,5649238.0,5965274.0,5967353.0,6211156.0,6334806.0,6553431.0,6634745.0,6820698.0,6924959.0,7213277.0,7250612.0,7501421.0,7567255.0,7831492.0,7915259.0,8272691.0,8251239.0,8563607.0,8584048.0,8942645.0,8925429.0,9337409.0,9190747.0,9536312.0,9584066.0,9953633.0,9892819.0,10223945.0,10279292.0,10685210.0,10648866.0,11083867.0,10982912.0,11339345.0,11288720.0,11803900.0,11622589.0,11975561.0,11920415.0,12351458.0,12282536.0,12659770.0,12688595.0,12875318.0,12891256.0,13239677.0,13266675.0,13762926.0,13582947.0,13927158.0,13948191.0,14375490.0,14249499.0,14840910.0,14625193.0,15370980.0,14948241.0,15532944.0,15158871.0,15527832.0,15510917.0,15823318.0,15822686.0,16284394.0,16148778.0,16566585.0,16518392.0],"unit":"ns","throughput":[],"typical":{"estimate":30.86278437280291,"lower_bound":30.7678818541023,"upper_bound":30.966442380022507,"unit":"ns"},"mean":{"estimate":30.909596518000594,"lower_bound":30.787592914330766,"upper_bound":31.094461274999194,"unit":"ns"},"median":{"estimate":30.771031720259078,"lower_bound":30.69733561137791,"upper_bound":30.885098278153322,"unit":"ns"},"median_abs_dev":{"estimate":0.35061820693697904,"lower_bound":0.25334910074887534,"upper_bound":0.4311351998376179,"unit":"ns"},"slope":{"estimate":30.86278437280291,"lower_bound":30.7678818541023,"upper_bound":30.966442380022507,"unit":"ns"},"change":{"mean":{"estimate":-0.000651100752471323,"lower_bound":-0.005442606508096811,"upper_bound":0.005153540427230173,"unit":"%"},"median":{"estimate":-0.00160677259551667,"lower_bound":-0.0046088339324055205,"upper_bound":0.0018202593428322533,"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":[5691,11382,17073,22764,28455,34146,39837,45528,51219,56910,62601,68292,73983,79674,85365,91056,96747,102438,108129,113820,119511,125202,130893,136584,142275,147966,153657,159348,165039,170730,176421,182112,187803,193494,199185,204876,210567,216258,221949,227640,233331,239022,244713,250404,256095,261786,267477,273168,278859,284550,290241,295932,301623,307314,313005,318696,324387,330078,335769,341460,347151,352842,358533,364224,369915,375606,381297,386988,392679,398370,404061,409752,415443,421134,426825,432516,438207,443898,449589,455280,460971,466662,472353,478044,483735,489426,495117,500808,506499,512190,517881,523572,529263,534954,540645,546336,552027,557718,563409,569100],"measured_values":[158494.0,268278.0,416751.0,549536.0,669011.0,813873.0,928237.0,1183400.0,1248565.0,1326630.0,1497520.0,1648119.0,1771283.0,1881272.0,2006196.0,2130098.0,2307637.0,2367570.0,2569914.0,2733858.0,2839393.0,3148683.0,3091127.0,3221843.0,3395740.0,3663244.0,3613057.0,3817354.0,3885077.0,3999168.0,4162945.0,4300477.0,4510158.0,4581787.0,4765151.0,4908967.0,5032350.0,5075337.0,5385279.0,5471270.0,5571211.0,5561664.0,5830984.0,5989861.0,6216086.0,6227643.0,6351873.0,6496805.0,6727145.0,6821384.0,6967468.0,7177925.0,7092133.0,7206493.0,7449408.0,7586267.0,7714828.0,7713529.0,7945767.0,8069156.0,8422676.0,8477268.0,8408135.0,8810301.0,9158612.0,9083155.0,9212831.0,10143795.0,9751053.0,9665127.0,9520284.0,9937779.0,9944481.0,10547468.0,10770917.0,10303381.0,10354649.0,10644597.0,10716623.0,11526737.0,11294864.0,10929788.0,11214365.0,11822391.0,11656550.0,11707299.0,11974087.0,12281402.0,12126271.0,12446825.0,12198387.0,12630085.0,13508064.0,13387121.0,12970211.0,12974676.0,13532083.0,13870588.0,13556030.0,13476293.0],"unit":"ns","throughput":[],"typical":{"estimate":24.173338131443337,"lower_bound":24.024247053016623,"upper_bound":24.328124833363574,"unit":"ns"},"mean":{"estimate":24.064442130522544,"lower_bound":23.94068155364493,"upper_bound":24.204609647536422,"unit":"ns"},"median":{"estimate":23.922452402631635,"lower_bound":23.827847315018,"upper_bound":24.00580207482747,"unit":"ns"},"median_abs_dev":{"estimate":0.44451506246067923,"lower_bound":0.3143051009578887,"upper_bound":0.5205440087986775,"unit":"ns"},"slope":{"estimate":24.173338131443337,"lower_bound":24.024247053016623,"upper_bound":24.328124833363574,"unit":"ns"},"change":{"mean":{"estimate":-0.01654453700237657,"lower_bound":-0.026204309458366475,"upper_bound":-0.0077155227137794555,"unit":"%"},"median":{"estimate":-0.016911734105855114,"lower_bound":-0.02490740667015401,"upper_bound":-0.00882025767938754,"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":[5611,11222,16833,22444,28055,33666,39277,44888,50499,56110,61721,67332,72943,78554,84165,89776,95387,100998,106609,112220,117831,123442,129053,134664,140275,145886,151497,157108,162719,168330,173941,179552,185163,190774,196385,201996,207607,213218,218829,224440,230051,235662,241273,246884,252495,258106,263717,269328,274939,280550,286161,291772,297383,302994,308605,314216,319827,325438,331049,336660,342271,347882,353493,359104,364715,370326,375937,381548,387159,392770,398381,403992,409603,415214,420825,426436,432047,437658,443269,448880,454491,460102,465713,471324,476935,482546,488157,493768,499379,504990,510601,516212,521823,527434,533045,538656,544267,549878,555489,561100],"measured_values":[176115.0,264830.0,409934.0,535084.0,665326.0,804746.0,945685.0,1047415.0,1179390.0,1321152.0,1457559.0,1593352.0,1735897.0,1907766.0,1996871.0,2124385.0,2287078.0,2389462.0,2527769.0,2612136.0,2826419.0,2917945.0,3062466.0,3195553.0,3348297.0,3467401.0,3550897.0,3680848.0,3879852.0,4005035.0,4137019.0,4535903.0,4623598.0,4539337.0,4926576.0,4734381.0,4952029.0,5067301.0,5135303.0,5388017.0,5534921.0,5674596.0,5909205.0,6078453.0,6130660.0,6166493.0,6307114.0,6359867.0,6805989.0,6899373.0,6912859.0,6974825.0,7250568.0,7262335.0,7626635.0,8454578.0,8237397.0,7865062.0,7948893.0,8004799.0,8209236.0,8590821.0,8685347.0,8685756.0,8770559.0,9148590.0,8874213.0,9078531.0,9163686.0,9504647.0,9465127.0,11067222.0,10435898.0,10171798.0,9939206.0,10162340.0,10428644.0,10376725.0,10504414.0,11173577.0,11592494.0,10893819.0,10972518.0,11256531.0,11915583.0,11715970.0,11718108.0,11847398.0,12045028.0,12331058.0,12830066.0,14140765.0,13034297.0,12778404.0,13128129.0,13808019.0,13578404.0,13037313.0,13387844.0,14101978.0],"unit":"ns","throughput":[],"typical":{"estimate":24.468781074730842,"lower_bound":24.246608485334736,"upper_bound":24.713016348613092,"unit":"ns"},"mean":{"estimate":24.279647291900584,"lower_bound":24.094781796336182,"upper_bound":24.50422518049022,"unit":"ns"},"median":{"estimate":23.98583321124962,"lower_bound":23.85289995038703,"upper_bound":24.10100650057877,"unit":"ns"},"median_abs_dev":{"estimate":0.45151111495246177,"lower_bound":0.31506974805992943,"upper_bound":0.6221107918987078,"unit":"ns"},"slope":{"estimate":24.468781074730842,"lower_bound":24.246608485334736,"upper_bound":24.713016348613092,"unit":"ns"},"change":{"mean":{"estimate":0.00027783033346096,"lower_bound":-0.010559867499346405,"upper_bound":0.011536128644326803,"unit":"%"},"median":{"estimate":-0.0033701664919504326,"lower_bound":-0.01643120118657056,"upper_bound":0.005110919760111354,"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":[566,1132,1698,2264,2830,3396,3962,4528,5094,5660,6226,6792,7358,7924,8490,9056,9622,10188,10754,11320,11886,12452,13018,13584,14150,14716,15282,15848,16414,16980,17546,18112,18678,19244,19810,20376,20942,21508,22074,22640,23206,23772,24338,24904,25470,26036,26602,27168,27734,28300,28866,29432,29998,30564,31130,31696,32262,32828,33394,33960,34526,35092,35658,36224,36790,37356,37922,38488,39054,39620,40186,40752,41318,41884,42450,43016,43582,44148,44714,45280,45846,46412,46978,47544,48110,48676,49242,49808,50374,50940,51506,52072,52638,53204,53770,54336,54902,55468,56034,56600],"measured_values":[50850.0,70812.0,118222.0,142659.0,199325.0,213464.0,280477.0,297541.0,339576.0,356606.0,427425.0,426980.0,515980.0,497065.0,581021.0,567188.0,667906.0,637485.0,749911.0,709121.0,844843.0,783552.0,921653.0,855216.0,1008486.0,920535.0,1077766.0,996806.0,1171325.0,1070513.0,1218965.0,1139033.0,1291300.0,1206426.0,1393518.0,1279842.0,1478719.0,1353433.0,1494692.0,1427351.0,1643840.0,1494577.0,1695978.0,1712490.0,1609209.0,1752986.0,1688354.0,1828381.0,1750491.0,1903431.0,1822572.0,1981249.0,1898585.0,2076509.0,1968182.0,2133398.0,2037721.0,2218394.0,2138051.0,2290255.0,2181954.0,2357614.0,2253001.0,2435540.0,2322447.0,2515481.0,2400622.0,2624237.0,2471819.0,2711099.0,2548633.0,2781574.0,2620877.0,2861257.0,2691115.0,2964990.0,2766293.0,3027579.0,2836952.0,3082869.0,2909821.0,3184090.0,2960709.0,3246052.0,3393379.0,3279611.0,3452267.0,3367702.0,3532359.0,3456239.0,3621100.0,3582788.0,3692943.0,3580425.0,3753210.0,3668114.0,3969932.0,3759181.0,3939566.0,3809354.0],"unit":"ns","throughput":[],"typical":{"estimate":67.14996417346497,"lower_bound":66.43588971818717,"upper_bound":67.80853366975835,"unit":"ns"},"mean":{"estimate":66.75914397723966,"lower_bound":66.04753807546484,"upper_bound":67.53830109434217,"unit":"ns"},"median":{"estimate":67.32273287282698,"lower_bound":65.34347986664271,"upper_bound":67.85588353912433,"unit":"ns"},"median_abs_dev":{"estimate":4.754315062010585,"lower_bound":2.9818063741329923,"upper_bound":5.631831229458683,"unit":"ns"},"slope":{"estimate":67.14996417346497,"lower_bound":66.43588971818717,"upper_bound":67.80853366975835,"unit":"ns"},"change":{"mean":{"estimate":0.16125179708296966,"lower_bound":0.1477263547350237,"upper_bound":0.1758435575352495,"unit":"%"},"median":{"estimate":0.18361374247541273,"lower_bound":0.1673667140036914,"upper_bound":0.19468654471635372,"unit":"%"},"change":"Regressed"}} +{"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":[5620,11240,16860,22480,28100,33720,39340,44960,50580,56200,61820,67440,73060,78680,84300,89920,95540,101160,106780,112400,118020,123640,129260,134880,140500,146120,151740,157360,162980,168600,174220,179840,185460,191080,196700,202320,207940,213560,219180,224800,230420,236040,241660,247280,252900,258520,264140,269760,275380,281000,286620,292240,297860,303480,309100,314720,320340,325960,331580,337200,342820,348440,354060,359680,365300,370920,376540,382160,387780,393400,399020,404640,410260,415880,421500,427120,432740,438360,443980,449600,455220,460840,466460,472080,477700,483320,488940,494560,500180,505800,511420,517040,522660,528280,533900,539520,545140,550760,556380,562000],"measured_values":[161334.0,285136.0,416120.0,578395.0,736422.0,928631.0,1030444.0,1215177.0,1301978.0,1446770.0,1552140.0,1699802.0,1785647.0,1956161.0,2043701.0,2263754.0,2371558.0,2515855.0,2656448.0,2739193.0,2882153.0,2986692.0,3125265.0,3236860.0,3350145.0,3526990.0,3663763.0,3863355.0,3990060.0,4228770.0,4203438.0,4458599.0,4673580.0,4647447.0,4779459.0,4917748.0,5078186.0,5247805.0,5532198.0,5565689.0,5527607.0,5624872.0,5770140.0,5955258.0,6989020.0,6568799.0,6463128.0,6502187.0,6776239.0,7008554.0,6992353.0,7173250.0,7823760.0,7752911.0,7718475.0,7635247.0,7875337.0,7919909.0,8288026.0,8298950.0,8298309.0,8343939.0,9136526.0,8824213.0,9295830.0,9147659.0,9105595.0,9252710.0,9711856.0,9649089.0,9739977.0,10061559.0,9967758.0,10253964.0,10377920.0,10455978.0,10549942.0,10648142.0,10865496.0,11052128.0,11019177.0,11205591.0,11967523.0,12596034.0,12187305.0,12181329.0,12341373.0,11892524.0,12281655.0,12299527.0,12502231.0,12649175.0,12760802.0,13206239.0,13047601.0,13397484.0,13183830.0,13299774.0,13559355.0,13456278.0],"unit":"ns","throughput":[],"typical":{"estimate":24.646721655280203,"lower_bound":24.508267966100256,"upper_bound":24.804545789903568,"unit":"ns"},"mean":{"estimate":24.809626510513027,"lower_bound":24.65407063380445,"upper_bound":24.981696956194945,"unit":"ns"},"median":{"estimate":24.548405664620077,"lower_bound":24.440829455242266,"upper_bound":24.668482895707093,"unit":"ns"},"median_abs_dev":{"estimate":0.5074350085024728,"lower_bound":0.3694776015859645,"upper_bound":0.6640533173731615,"unit":"ns"},"slope":{"estimate":24.646721655280203,"lower_bound":24.508267966100256,"upper_bound":24.804545789903568,"unit":"ns"},"change":{"mean":{"estimate":0.0002347288681490145,"lower_bound":-0.007191913497884296,"upper_bound":0.00828703550140361,"unit":"%"},"median":{"estimate":-0.005334481256815793,"lower_bound":-0.01310905872337631,"upper_bound":0.0004126219072004833,"unit":"%"},"change":"NoChange"}} +{"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":[4860,9720,14580,19440,24300,29160,34020,38880,43740,48600,53460,58320,63180,68040,72900,77760,82620,87480,92340,97200,102060,106920,111780,116640,121500,126360,131220,136080,140940,145800,150660,155520,160380,165240,170100,174960,179820,184680,189540,194400,199260,204120,208980,213840,218700,223560,228420,233280,238140,243000,247860,252720,257580,262440,267300,272160,277020,281880,286740,291600,296460,301320,306180,311040,315900,320760,325620,330480,335340,340200,345060,349920,354780,359640,364500,369360,374220,379080,383940,388800,393660,398520,403380,408240,413100,417960,422820,427680,432540,437400,442260,447120,451980,456840,461700,466560,471420,476280,481140,486000],"measured_values":[254746.0,483032.0,729407.0,967830.0,1209962.0,1453290.0,1696742.0,1905088.0,2128602.0,2361092.0,2593362.0,2829671.0,3083736.0,3312121.0,3547036.0,3772041.0,4013393.0,4262398.0,4483055.0,4778371.0,4985196.0,5203810.0,5453955.0,5658732.0,5886847.0,6127758.0,6406465.0,6586888.0,6831559.0,7079914.0,7309758.0,7564099.0,7798649.0,8012584.0,8251296.0,8518060.0,8744699.0,8960750.0,9216525.0,9436842.0,9668745.0,9917165.0,10130742.0,10390334.0,10611226.0,11136762.0,11125890.0,11355912.0,11575245.0,11787948.0,12090798.0,12267300.0,12586207.0,12744491.0,12945930.0,13219235.0,13461908.0,13693710.0,13916785.0,14164938.0,14380212.0,14622360.0,14861289.0,15105918.0,15348568.0,15597565.0,15823484.0,16212835.0,16350101.0,16524646.0,16799275.0,17011177.0,17283273.0,17495179.0,17721174.0,17998841.0,18145276.0,18406203.0,18707472.0,18948546.0,19668644.0,19391592.0,19618543.0,19850852.0,20091659.0,20300491.0,20584298.0,20821338.0,20906126.0,21143056.0,21429235.0,21632562.0,21994684.0,22182313.0,22487134.0,22661892.0,22925405.0,23146683.0,23375953.0,23636224.0],"unit":"ns","throughput":[],"typical":{"estimate":48.63569543493874,"lower_bound":48.58386909167257,"upper_bound":48.70540993777161,"unit":"ns"},"mean":{"estimate":48.74990841014268,"lower_bound":48.65981376838255,"upper_bound":48.860366740251166,"unit":"ns"},"median":{"estimate":48.610682820796356,"lower_bound":48.57937242798354,"upper_bound":48.63538846745005,"unit":"ns"},"median_abs_dev":{"estimate":0.11799925099382919,"lower_bound":0.08961004340390122,"upper_bound":0.15427014558424443,"unit":"ns"},"slope":{"estimate":48.63569543493874,"lower_bound":48.58386909167257,"upper_bound":48.70540993777161,"unit":"ns"},"change":{"mean":{"estimate":0.06293618756712105,"lower_bound":0.05978418941429371,"upper_bound":0.0658868603231861,"unit":"%"},"median":{"estimate":0.060508366384548706,"lower_bound":0.05959884739584087,"upper_bound":0.061451977059290286,"unit":"%"},"change":"Regressed"}} +{"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":[5523,11046,16569,22092,27615,33138,38661,44184,49707,55230,60753,66276,71799,77322,82845,88368,93891,99414,104937,110460,115983,121506,127029,132552,138075,143598,149121,154644,160167,165690,171213,176736,182259,187782,193305,198828,204351,209874,215397,220920,226443,231966,237489,243012,248535,254058,259581,265104,270627,276150,281673,287196,292719,298242,303765,309288,314811,320334,325857,331380,336903,342426,347949,353472,358995,364518,370041,375564,381087,386610,392133,397656,403179,408702,414225,419748,425271,430794,436317,441840,447363,452886,458409,463932,469455,474978,480501,486024,491547,497070,502593,508116,513639,519162,524685,530208,535731,541254,546777,552300],"measured_values":[171417.0,289884.0,442130.0,584121.0,734041.0,869701.0,1015498.0,1172452.0,1347078.0,1449205.0,1596823.0,1737730.0,1929330.0,2029412.0,2182338.0,2344322.0,2534273.0,2611796.0,2753113.0,2898858.0,3063223.0,3187347.0,3334796.0,3495156.0,3705138.0,3783016.0,3951327.0,4163257.0,4383974.0,4364215.0,4494638.0,4660093.0,4903153.0,4934281.0,5109045.0,5270132.0,5434512.0,5535095.0,5679371.0,5919212.0,6157911.0,6128059.0,6345446.0,6504125.0,6743649.0,6701234.0,6887331.0,7337086.0,7564638.0,7296203.0,7487214.0,7616263.0,7807821.0,7879318.0,8097341.0,8207002.0,8515449.0,8428467.0,8647935.0,8823373.0,9247836.0,9044367.0,9199843.0,9402894.0,9663619.0,9587424.0,9951068.0,10175848.0,10521168.0,10202856.0,10362186.0,10681886.0,11020658.0,10728175.0,11155904.0,11312390.0,11614651.0,11369800.0,11943598.0,12436881.0,12008408.0,12125353.0,12501632.0,12423250.0,12595965.0,12466020.0,12939047.0,12914853.0,13127942.0,13093293.0,13711936.0,13545767.0,13860954.0,13642169.0,14670482.0,14349079.0,14623104.0,14349408.0,14717037.0,14850341.0],"unit":"ns","throughput":[],"typical":{"estimate":26.841553674772083,"lower_bound":26.72734615332987,"upper_bound":26.96138875043001,"unit":"ns"},"mean":{"estimate":26.743609910557325,"lower_bound":26.636385461949786,"upper_bound":26.87268893520834,"unit":"ns"},"median":{"estimate":26.581234623126818,"lower_bound":26.505985072524997,"upper_bound":26.72439701194454,"unit":"ns"},"median_abs_dev":{"estimate":0.4154833787664901,"lower_bound":0.29063218748917213,"upper_bound":0.49413416536821314,"unit":"ns"},"slope":{"estimate":26.841553674772083,"lower_bound":26.72734615332987,"upper_bound":26.96138875043001,"unit":"ns"},"change":{"mean":{"estimate":0.01385628730069377,"lower_bound":0.005538082915841253,"upper_bound":0.021261189958087755,"unit":"%"},"median":{"estimate":0.023965822815190885,"lower_bound":0.018721367025541155,"upper_bound":0.029166579338851584,"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":[5512,11024,16536,22048,27560,33072,38584,44096,49608,55120,60632,66144,71656,77168,82680,88192,93704,99216,104728,110240,115752,121264,126776,132288,137800,143312,148824,154336,159848,165360,170872,176384,181896,187408,192920,198432,203944,209456,214968,220480,225992,231504,237016,242528,248040,253552,259064,264576,270088,275600,281112,286624,292136,297648,303160,308672,314184,319696,325208,330720,336232,341744,347256,352768,358280,363792,369304,374816,380328,385840,391352,396864,402376,407888,413400,418912,424424,429936,435448,440960,446472,451984,457496,463008,468520,474032,479544,485056,490568,496080,501592,507104,512616,518128,523640,529152,534664,540176,545688,551200],"measured_values":[150443.0,271100.0,445134.0,551838.0,703545.0,924292.0,963412.0,1153030.0,1325118.0,1521475.0,1477427.0,1636020.0,1728606.0,1919181.0,2055676.0,2301302.0,2339644.0,2557224.0,2540204.0,2678592.0,2845871.0,3006788.0,3106573.0,3256216.0,3363526.0,3591532.0,3738750.0,4035037.0,4190351.0,4145866.0,4392623.0,4702952.0,4805186.0,4671122.0,4953417.0,5001229.0,5418469.0,5206234.0,5554458.0,5565707.0,5760290.0,5723069.0,5971458.0,6141585.0,6289064.0,6337602.0,6536006.0,6682067.0,6836841.0,6940199.0,7040419.0,7003418.0,7357204.0,7576815.0,7615657.0,7726374.0,7945726.0,7825823.0,8202744.0,8351436.0,8443768.0,8876010.0,8843627.0,8987321.0,8853840.0,9394940.0,9132089.0,9407643.0,9504677.0,10270459.0,10290486.0,10028999.0,10185014.0,10188654.0,10372233.0,10482102.0,10764028.0,10599571.0,10783688.0,10857726.0,11440312.0,11189377.0,11419728.0,12303910.0,12039168.0,11887932.0,12221662.0,12183469.0,12410534.0,12295854.0,12554882.0,12638203.0,12828681.0,12855779.0,14076323.0,14598646.0,13633266.0,13502270.0,13885772.0,13757970.0],"unit":"ns","throughput":[],"typical":{"estimate":25.32910484866046,"lower_bound":25.16035763869364,"upper_bound":25.527106968779073,"unit":"ns"},"mean":{"estimate":25.35198815705535,"lower_bound":25.209168614097674,"upper_bound":25.504417093135324,"unit":"ns"},"median":{"estimate":25.15205027414933,"lower_bound":25.044889581376818,"upper_bound":25.272898305610724,"unit":"ns"},"median_abs_dev":{"estimate":0.49727745173785676,"lower_bound":0.34111777011824745,"upper_bound":0.6728893735762542,"unit":"ns"},"slope":{"estimate":25.32910484866046,"lower_bound":25.16035763869364,"upper_bound":25.527106968779073,"unit":"ns"},"change":{"mean":{"estimate":0.03952304364008885,"lower_bound":0.03142663207292119,"upper_bound":0.04748877318817444,"unit":"%"},"median":{"estimate":0.039216541223051404,"lower_bound":0.0343245959129892,"upper_bound":0.04445630597874661,"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":[5569,11138,16707,22276,27845,33414,38983,44552,50121,55690,61259,66828,72397,77966,83535,89104,94673,100242,105811,111380,116949,122518,128087,133656,139225,144794,150363,155932,161501,167070,172639,178208,183777,189346,194915,200484,206053,211622,217191,222760,228329,233898,239467,245036,250605,256174,261743,267312,272881,278450,284019,289588,295157,300726,306295,311864,317433,323002,328571,334140,339709,345278,350847,356416,361985,367554,373123,378692,384261,389830,395399,400968,406537,412106,417675,423244,428813,434382,439951,445520,451089,456658,462227,467796,473365,478934,484503,490072,495641,501210,506779,512348,517917,523486,529055,534624,540193,545762,551331,556900],"measured_values":[165607.0,276235.0,426990.0,552467.0,696293.0,837171.0,1002310.0,1158273.0,1254323.0,1374064.0,1521702.0,1662572.0,1827521.0,1963739.0,2079924.0,2199624.0,2375838.0,2506761.0,2656971.0,2749843.0,2972555.0,3058067.0,3175551.0,3376184.0,3528661.0,3618579.0,3722675.0,3976701.0,4105780.0,4188627.0,4305183.0,4645330.0,4867654.0,4720197.0,4847709.0,5049631.0,5207243.0,5258522.0,5696313.0,5685213.0,5675418.0,5827333.0,6051009.0,6290473.0,6301422.0,6364084.0,6550012.0,6716140.0,6884833.0,6952919.0,7272530.0,7286407.0,7365268.0,7541035.0,7911254.0,7908904.0,8009928.0,8070263.0,8336602.0,8327783.0,8553097.0,8578645.0,8788464.0,8930630.0,9108025.0,9148185.0,9673005.0,9765417.0,9820521.0,9693095.0,9902729.0,10075437.0,10160669.0,10251139.0,11099214.0,11653460.0,11468169.0,10832351.0,11111067.0,11428887.0,11605951.0,11427378.0,11720167.0,12209512.0,12028003.0,11928765.0,12226052.0,12551474.0,12730779.0,12509776.0,12769655.0,13136922.0,13453123.0,13136322.0,13626977.0,14048706.0,13652844.0,13650708.0,14812223.0,15144203.0],"unit":"ns","throughput":[],"typical":{"estimate":25.511083069440403,"lower_bound":25.335175694610264,"upper_bound":25.698836831833276,"unit":"ns"},"mean":{"estimate":25.367733591455284,"lower_bound":25.242040969952097,"upper_bound":25.516093169470974,"unit":"ns"},"median":{"estimate":25.161310206224016,"lower_bound":25.056759516968935,"upper_bound":25.255237515086908,"unit":"ns"},"median_abs_dev":{"estimate":0.37262642239516386,"lower_bound":0.25824590998474023,"upper_bound":0.5031169488051386,"unit":"ns"},"slope":{"estimate":25.511083069440403,"lower_bound":25.335175694610264,"upper_bound":25.698836831833276,"unit":"ns"},"change":{"mean":{"estimate":0.0015833655082533316,"lower_bound":-0.0064933367572396535,"upper_bound":0.010057419963954557,"unit":"%"},"median":{"estimate":0.0019133203933292542,"lower_bound":-0.007213086662226864,"upper_bound":0.01127924407609382,"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":[5596,11192,16788,22384,27980,33576,39172,44768,50364,55960,61556,67152,72748,78344,83940,89536,95132,100728,106324,111920,117516,123112,128708,134304,139900,145496,151092,156688,162284,167880,173476,179072,184668,190264,195860,201456,207052,212648,218244,223840,229436,235032,240628,246224,251820,257416,263012,268608,274204,279800,285396,290992,296588,302184,307780,313376,318972,324568,330164,335760,341356,346952,352548,358144,363740,369336,374932,380528,386124,391720,397316,402912,408508,414104,419700,425296,430892,436488,442084,447680,453276,458872,464468,470064,475660,481256,486852,492448,498044,503640,509236,514832,520428,526024,531620,537216,542812,548408,554004,559600],"measured_values":[166139.0,291292.0,420011.0,602141.0,706762.0,824386.0,914087.0,1108806.0,1295011.0,1402942.0,1606318.0,1795717.0,1856769.0,2133190.0,2097771.0,2249091.0,2589819.0,2624863.0,2792374.0,2835879.0,2807321.0,3279992.0,3165373.0,3409976.0,3327465.0,3705757.0,3558421.0,3845801.0,3749304.0,4073511.0,4131027.0,4438967.0,4678333.0,4462798.0,4454274.0,4915303.0,4708458.0,5362935.0,5214665.0,5565759.0,5408451.0,5614648.0,5717342.0,5963063.0,5768326.0,6245703.0,6168938.0,6472616.0,6770609.0,6749705.0,7428836.0,6989431.0,6842177.0,6868693.0,7000436.0,7156581.0,7718375.0,8142129.0,8121363.0,7828124.0,7683069.0,7886033.0,8302795.0,8295992.0,8225425.0,8438311.0,8689217.0,8858919.0,9168638.0,9445779.0,9452169.0,9362252.0,9439561.0,9793340.0,9845926.0,10071245.0,10361746.0,10291104.0,10235520.0,10542355.0,10752370.0,10951469.0,10431497.0,11134855.0,10830510.0,10916156.0,11121984.0,11611387.0,11457883.0,11605086.0,11338964.0,11995183.0,12401557.0,12202925.0,14278520.0,12534155.0,14436763.0,12870022.0,13321943.0,13187041.0],"unit":"ns","throughput":[],"typical":{"estimate":23.66568825945785,"lower_bound":23.416758219205786,"upper_bound":23.965298521175516,"unit":"ns"},"mean":{"estimate":24.200988935828015,"lower_bound":23.95017937156435,"upper_bound":24.46604635791079,"unit":"ns"},"median":{"estimate":23.821391239518242,"lower_bound":23.578909854441484,"upper_bound":24.113598999285205,"unit":"ns"},"median_abs_dev":{"estimate":1.0994961698066483,"lower_bound":0.7823224564714775,"upper_bound":1.4582373665038164,"unit":"ns"},"slope":{"estimate":23.66568825945785,"lower_bound":23.416758219205786,"upper_bound":23.965298521175516,"unit":"ns"},"change":{"mean":{"estimate":0.018401630625340948,"lower_bound":0.004683160863491067,"upper_bound":0.031883790517478444,"unit":"%"},"median":{"estimate":0.014917373928158506,"lower_bound":0.003674029883922403,"upper_bound":0.030943508860987512,"unit":"%"},"change":"NoChange"}} +{"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":[5667,11334,17001,22668,28335,34002,39669,45336,51003,56670,62337,68004,73671,79338,85005,90672,96339,102006,107673,113340,119007,124674,130341,136008,141675,147342,153009,158676,164343,170010,175677,181344,187011,192678,198345,204012,209679,215346,221013,226680,232347,238014,243681,249348,255015,260682,266349,272016,277683,283350,289017,294684,300351,306018,311685,317352,323019,328686,334353,340020,345687,351354,357021,362688,368355,374022,379689,385356,391023,396690,402357,408024,413691,419358,425025,430692,436359,442026,447693,453360,459027,464694,470361,476028,481695,487362,493029,498696,504363,510030,515697,521364,527031,532698,538365,544032,549699,555366,561033,566700],"measured_values":[150111.0,251627.0,409462.0,498821.0,663277.0,795777.0,888620.0,1066321.0,1217933.0,1369288.0,1427961.0,1612140.0,1779598.0,1901858.0,2058396.0,2105855.0,2204115.0,2406269.0,2484963.0,2639059.0,2777501.0,2801915.0,3028952.0,3104847.0,3309749.0,3437174.0,3453044.0,3753165.0,4191294.0,3985228.0,4086635.0,4112349.0,4402019.0,4472633.0,4743540.0,4781011.0,5089862.0,5484578.0,5614617.0,5366186.0,5369885.0,5479922.0,5576208.0,5933914.0,6260283.0,6236693.0,6120834.0,6364015.0,6494165.0,6536952.0,6761926.0,6930348.0,7171696.0,7123759.0,7980418.0,8123642.0,7807947.0,7627900.0,7770681.0,7854730.0,7989733.0,8208721.0,8368638.0,9156840.0,8882775.0,8775678.0,8885533.0,9233254.0,9157158.0,9669411.0,9201316.0,9967688.0,9775370.0,10157086.0,9961410.0,10247253.0,11152549.0,10647476.0,10456799.0,10580858.0,10820180.0,10817356.0,11091996.0,11461137.0,11694640.0,11290116.0,11502665.0,11697070.0,11799766.0,11847862.0,12231957.0,12138203.0,12510402.0,12730029.0,13299636.0,13427807.0,13176656.0,13217417.0,13026982.0,13113107.0],"unit":"ns","throughput":[],"typical":{"estimate":23.738881628734763,"lower_bound":23.593476900767296,"upper_bound":23.89545977151212,"unit":"ns"},"mean":{"estimate":23.664119628112076,"lower_bound":23.518035913567953,"upper_bound":23.818071636520674,"unit":"ns"},"median":{"estimate":23.440661473694824,"lower_bound":23.391355693062472,"upper_bound":23.62964144736047,"unit":"ns"},"median_abs_dev":{"estimate":0.5127893473272149,"lower_bound":0.3438678959069229,"upper_bound":0.679600829875135,"unit":"ns"},"slope":{"estimate":23.738881628734763,"lower_bound":23.593476900767296,"upper_bound":23.89545977151212,"unit":"ns"},"change":{"mean":{"estimate":-0.06437234556729599,"lower_bound":-0.0744096661216152,"upper_bound":-0.054586989586708594,"unit":"%"},"median":{"estimate":-0.06721363736910602,"lower_bound":-0.07847149517123553,"upper_bound":-0.05684120361876621,"unit":"%"},"change":"Improved"}} +{"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":[4484,8968,13452,17936,22420,26904,31388,35872,40356,44840,49324,53808,58292,62776,67260,71744,76228,80712,85196,89680,94164,98648,103132,107616,112100,116584,121068,125552,130036,134520,139004,143488,147972,152456,156940,161424,165908,170392,174876,179360,183844,188328,192812,197296,201780,206264,210748,215232,219716,224200,228684,233168,237652,242136,246620,251104,255588,260072,264556,269040,273524,278008,282492,286976,291460,295944,300428,304912,309396,313880,318364,322848,327332,331816,336300,340784,345268,349752,354236,358720,363204,367688,372172,376656,381140,385624,390108,394592,399076,403560,408044,412528,417012,421496,425980,430464,434948,439432,443916,448400],"measured_values":[307048.0,579072.0,890149.0,1156562.0,1434031.0,1720670.0,2024620.0,2307722.0,2610341.0,2887173.0,3193096.0,3483649.0,3690496.0,4049445.0,4344915.0,4601203.0,4931869.0,5164034.0,5475356.0,5761215.0,6011580.0,6338719.0,6630663.0,6891771.0,7228707.0,7523157.0,7778056.0,8077469.0,8365476.0,8646601.0,8940986.0,9221666.0,9517367.0,9814664.0,10091036.0,10371169.0,10651645.0,10964525.0,11258383.0,11497588.0,11872637.0,12145352.0,12438876.0,12734807.0,12940375.0,13338384.0,13523616.0,13875468.0,14126688.0,14417708.0,14706789.0,15031718.0,15298676.0,15579108.0,15868341.0,16158079.0,16363946.0,16726122.0,16991456.0,17282950.0,17691575.0,17852921.0,18186060.0,18518133.0,18824395.0,19069040.0,19293911.0,19475521.0,19821959.0,20197143.0,20369412.0,20791699.0,21034954.0,21300486.0,21680561.0,21894908.0,22174080.0,22457799.0,22783373.0,23094382.0,23356955.0,23656182.0,23917860.0,24314934.0,24667866.0,24838993.0,25038304.0,25307455.0,25655747.0,26001721.0,26199240.0,26463553.0,26781907.0,27123435.0,27355255.0,27742234.0,28038291.0,28326062.0,28599729.0,28742888.0],"unit":"ns","throughput":[],"typical":{"estimate":64.31842166561843,"lower_bound":64.27771718786374,"upper_bound":64.35953027334686,"unit":"ns"},"mean":{"estimate":64.38101076015083,"lower_bound":64.29901535239364,"upper_bound":64.49251207402632,"unit":"ns"},"median":{"estimate":64.32689483507792,"lower_bound":64.29154497399196,"upper_bound":64.36155170939907,"unit":"ns"},"median_abs_dev":{"estimate":0.17513404246655373,"lower_bound":0.1284331778583059,"upper_bound":0.2231003537809016,"unit":"ns"},"slope":{"estimate":64.31842166561843,"lower_bound":64.27771718786374,"upper_bound":64.35953027334686,"unit":"ns"},"change":{"mean":{"estimate":0.02741348109291497,"lower_bound":0.024637613586635503,"upper_bound":0.029756300374235482,"unit":"%"},"median":{"estimate":0.027948289305374407,"lower_bound":0.02704202630097859,"upper_bound":0.02858702884014952,"unit":"%"},"change":"Regressed"}} +{"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":[5588,11176,16764,22352,27940,33528,39116,44704,50292,55880,61468,67056,72644,78232,83820,89408,94996,100584,106172,111760,117348,122936,128524,134112,139700,145288,150876,156464,162052,167640,173228,178816,184404,189992,195580,201168,206756,212344,217932,223520,229108,234696,240284,245872,251460,257048,262636,268224,273812,279400,284988,290576,296164,301752,307340,312928,318516,324104,329692,335280,340868,346456,352044,357632,363220,368808,374396,379984,385572,391160,396748,402336,407924,413512,419100,424688,430276,435864,441452,447040,452628,458216,463804,469392,474980,480568,486156,491744,497332,502920,508508,514096,519684,525272,530860,536448,542036,547624,553212,558800],"measured_values":[165157.0,346651.0,487957.0,579241.0,740863.0,882364.0,1063777.0,1230525.0,1396037.0,1516772.0,1674499.0,1781464.0,1953204.0,2110717.0,2202204.0,2293272.0,2485761.0,2597194.0,2759367.0,2899165.0,3242568.0,3255510.0,3488211.0,3532817.0,3697449.0,3684901.0,4032869.0,4079349.0,4338842.0,4378873.0,4701955.0,4673595.0,4909060.0,4837986.0,4971022.0,5105177.0,5266347.0,5836694.0,6124001.0,5768963.0,6062807.0,5990021.0,6262472.0,6360640.0,6735641.0,6705911.0,6988142.0,6947683.0,7261921.0,7228057.0,7558264.0,7521615.0,7826234.0,7769585.0,8135131.0,8081373.0,8052590.0,8206481.0,8292525.0,8402445.0,8515822.0,8824581.0,8905329.0,9052352.0,9415879.0,9221598.0,9640492.0,9551351.0,9872226.0,9906143.0,10037399.0,10287106.0,10584685.0,10647511.0,11659176.0,11168536.0,11516715.0,11215846.0,11448999.0,11514409.0,11834502.0,11717756.0,11967343.0,12046344.0,12135347.0,12215677.0,13064316.0,12476714.0,12571518.0,12627443.0,12963334.0,13005160.0,14243529.0,13357670.0,13347142.0,13817727.0,14478008.0,14289258.0,14785863.0,14388739.0],"unit":"ns","throughput":[],"typical":{"estimate":25.87291843739551,"lower_bound":25.710190103580693,"upper_bound":26.04993899034554,"unit":"ns"},"mean":{"estimate":26.203731590039684,"lower_bound":26.021693798213164,"upper_bound":26.401327647650614,"unit":"ns"},"median":{"estimate":25.9379284157734,"lower_bound":25.80960540443808,"upper_bound":26.14619952808929,"unit":"ns"},"median_abs_dev":{"estimate":0.7862906812972401,"lower_bound":0.6012898352132198,"upper_bound":0.9575618776116436,"unit":"ns"},"slope":{"estimate":25.87291843739551,"lower_bound":25.710190103580693,"upper_bound":26.04993899034554,"unit":"ns"},"change":{"mean":{"estimate":-0.03290285183552777,"lower_bound":-0.044165330841973285,"upper_bound":-0.021711516420359213,"unit":"%"},"median":{"estimate":-0.04297272685007347,"lower_bound":-0.05544068854578621,"upper_bound":-0.02355223467828438,"unit":"%"},"change":"Improved"}} +{"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":[5576,11152,16728,22304,27880,33456,39032,44608,50184,55760,61336,66912,72488,78064,83640,89216,94792,100368,105944,111520,117096,122672,128248,133824,139400,144976,150552,156128,161704,167280,172856,178432,184008,189584,195160,200736,206312,211888,217464,223040,228616,234192,239768,245344,250920,256496,262072,267648,273224,278800,284376,289952,295528,301104,306680,312256,317832,323408,328984,334560,340136,345712,351288,356864,362440,368016,373592,379168,384744,390320,395896,401472,407048,412624,418200,423776,429352,434928,440504,446080,451656,457232,462808,468384,473960,479536,485112,490688,496264,501840,507416,512992,518568,524144,529720,535296,540872,546448,552024,557600],"measured_values":[182342.0,292751.0,500391.0,606943.0,769811.0,932052.0,1072121.0,1258567.0,1365845.0,1509338.0,1549459.0,1723353.0,2053789.0,2019578.0,2202012.0,2356943.0,2485418.0,2619531.0,2767726.0,2827615.0,3356760.0,3002952.0,3450943.0,3381449.0,3800396.0,3762703.0,4103245.0,4073836.0,4380351.0,4175553.0,4790141.0,4502204.0,5150666.0,4772544.0,4998031.0,4961597.0,5575626.0,5397538.0,5887614.0,5766214.0,5812982.0,6185538.0,6729454.0,6212712.0,6916862.0,6598751.0,6771733.0,6759270.0,7264225.0,7116385.0,7925670.0,7219927.0,7946765.0,7623177.0,8239110.0,7969576.0,8847296.0,8814689.0,8686163.0,8654545.0,8840215.0,8759167.0,8880443.0,9137421.0,9829095.0,9404537.0,9873331.0,9641094.0,10571354.0,9880745.0,10307832.0,10454989.0,11248537.0,10371343.0,11204143.0,10678049.0,10749695.0,10854699.0,11993994.0,11074444.0,12234643.0,11530481.0,11763654.0,11574964.0,12841122.0,12064971.0,12286773.0,11998722.0,12465307.0,12968607.0,14190578.0,12963774.0,13707428.0,13190427.0,13749651.0,13383499.0,14351246.0,13573409.0,14950780.0,14761184.0],"unit":"ns","throughput":[],"typical":{"estimate":25.955559921460356,"lower_bound":25.715523867376593,"upper_bound":26.208108362067648,"unit":"ns"},"mean":{"estimate":26.30105914185328,"lower_bound":26.063637591388314,"upper_bound":26.556954564409512,"unit":"ns"},"median":{"estimate":26.039177990487964,"lower_bound":25.75551470588235,"upper_bound":26.418389078192252,"unit":"ns"},"median_abs_dev":{"estimate":1.2365664516080623,"lower_bound":0.8794074818402473,"upper_bound":1.4846679694903788,"unit":"ns"},"slope":{"estimate":25.955559921460356,"lower_bound":25.715523867376593,"upper_bound":26.208108362067648,"unit":"ns"},"change":{"mean":{"estimate":0.0312415931359864,"lower_bound":0.019381273893620005,"upper_bound":0.0425370210274706,"unit":"%"},"median":{"estimate":0.030729868013863904,"lower_bound":0.01841451347350076,"upper_bound":0.04793055571981242,"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":[5685,11370,17055,22740,28425,34110,39795,45480,51165,56850,62535,68220,73905,79590,85275,90960,96645,102330,108015,113700,119385,125070,130755,136440,142125,147810,153495,159180,164865,170550,176235,181920,187605,193290,198975,204660,210345,216030,221715,227400,233085,238770,244455,250140,255825,261510,267195,272880,278565,284250,289935,295620,301305,306990,312675,318360,324045,329730,335415,341100,346785,352470,358155,363840,369525,375210,380895,386580,392265,397950,403635,409320,415005,420690,426375,432060,437745,443430,449115,454800,460485,466170,471855,477540,483225,488910,494595,500280,505965,511650,517335,523020,528705,534390,540075,545760,551445,557130,562815,568500],"measured_values":[147651.0,263214.0,378632.0,555808.0,688122.0,772859.0,837641.0,972265.0,1119920.0,1264364.0,1376661.0,1718278.0,1850038.0,1957619.0,1894441.0,1997984.0,2156794.0,2299564.0,2478600.0,2477948.0,2677014.0,2818730.0,2995749.0,2987134.0,3206047.0,3683149.0,3323292.0,3433353.0,3608131.0,3883033.0,4135642.0,4787110.0,4531803.0,4272116.0,4463433.0,4546905.0,4977235.0,4877319.0,5288479.0,5238329.0,5459763.0,5508289.0,6518784.0,6388886.0,6242514.0,5870304.0,6021573.0,5972015.0,6144709.0,6607041.0,7364561.0,7549785.0,7210212.0,6987066.0,7656379.0,7798454.0,7847963.0,7662888.0,8160226.0,9512795.0,8176890.0,9041746.0,9478585.0,8769357.0,9382284.0,8597320.0,9643859.0,8826153.0,8890978.0,9766926.0,9057373.0,8995568.0,9495246.0,9432889.0,9711615.0,10595849.0,10038760.0,10830866.0,11341141.0,12216981.0,10280961.0,11145457.0,10975117.0,10771721.0,11260882.0,10867384.0,13753092.0,11746680.0,11766348.0,11271135.0,12795131.0,12872555.0,12844258.0,12228867.0,12554904.0,12385236.0,12632857.0,14104011.0,14887802.0,14326087.0],"unit":"ns","throughput":[],"typical":{"estimate":23.899792192931734,"lower_bound":23.52429188806866,"upper_bound":24.29408601221518,"unit":"ns"},"mean":{"estimate":23.566653242848737,"lower_bound":23.283319236884235,"upper_bound":23.861582298046425,"unit":"ns"},"median":{"estimate":23.194877627149488,"lower_bound":22.857581128785654,"upper_bound":23.57913404559021,"unit":"ns"},"median_abs_dev":{"estimate":1.4629135088596257,"lower_bound":0.9924392588199746,"upper_bound":1.7744478431445463,"unit":"ns"},"slope":{"estimate":23.899792192931734,"lower_bound":23.52429188806866,"upper_bound":24.29408601221518,"unit":"ns"},"change":{"mean":{"estimate":0.027144331025548807,"lower_bound":0.010703261563900416,"upper_bound":0.0428065646853779,"unit":"%"},"median":{"estimate":0.022496598701123194,"lower_bound":0.0019443130538912001,"upper_bound":0.04086089814161786,"unit":"%"},"change":"Regressed"}} +{"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":[5523,11046,16569,22092,27615,33138,38661,44184,49707,55230,60753,66276,71799,77322,82845,88368,93891,99414,104937,110460,115983,121506,127029,132552,138075,143598,149121,154644,160167,165690,171213,176736,182259,187782,193305,198828,204351,209874,215397,220920,226443,231966,237489,243012,248535,254058,259581,265104,270627,276150,281673,287196,292719,298242,303765,309288,314811,320334,325857,331380,336903,342426,347949,353472,358995,364518,370041,375564,381087,386610,392133,397656,403179,408702,414225,419748,425271,430794,436317,441840,447363,452886,458409,463932,469455,474978,480501,486024,491547,497070,502593,508116,513639,519162,524685,530208,535731,541254,546777,552300],"measured_values":[171190.0,269846.0,391645.0,570607.0,669394.0,868359.0,918231.0,1114318.0,1200596.0,1296480.0,1434762.0,1726734.0,1789871.0,1914389.0,2038460.0,2327712.0,2263714.0,2589154.0,2709760.0,3022501.0,2990532.0,3033321.0,3328498.0,3468914.0,3549671.0,3894126.0,3608281.0,3995588.0,4217329.0,4243656.0,4299241.0,4498229.0,4576937.0,4767150.0,4623624.0,5699534.0,5532225.0,5611010.0,5518013.0,6055456.0,5910745.0,6152648.0,6053995.0,6521681.0,6227773.0,6362122.0,6491349.0,7228206.0,6780192.0,6933458.0,7158575.0,8171414.0,7322602.0,7961563.0,8375139.0,8528977.0,8246277.0,8482834.0,9202643.0,8978994.0,8388216.0,8872769.0,9107531.0,9344367.0,9326428.0,10066189.0,9893374.0,9694263.0,9888646.0,10249453.0,10224749.0,10698237.0,10089145.0,10840918.0,10385987.0,11303136.0,11003569.0,11818489.0,10839473.0,11911644.0,11168778.0,11635846.0,11463412.0,12722404.0,12503438.0,13194897.0,12724852.0,13968364.0,12424762.0,13089195.0,13149931.0,13529386.0,12874052.0,12989740.0,13025020.0,14762490.0,14355668.0,15205219.0,13604214.0,15967490.0],"unit":"ns","throughput":[],"typical":{"estimate":26.344676159379823,"lower_bound":26.025476551856507,"upper_bound":26.67344345995653,"unit":"ns"},"mean":{"estimate":26.024310955524143,"lower_bound":25.773529100937004,"upper_bound":26.28148798650339,"unit":"ns"},"median":{"estimate":25.963898047911933,"lower_bound":25.663077387335942,"upper_bound":26.20266238417999,"unit":"ns"},"median_abs_dev":{"estimate":1.3383928477595315,"lower_bound":1.0099279583436154,"upper_bound":1.5975506569683586,"unit":"ns"},"slope":{"estimate":26.344676159379823,"lower_bound":26.025476551856507,"upper_bound":26.67344345995653,"unit":"ns"},"change":{"mean":{"estimate":0.0883382413396494,"lower_bound":0.07615161053870888,"upper_bound":0.10094129899372004,"unit":"%"},"median":{"estimate":0.08999506033291027,"lower_bound":0.07899175338369682,"upper_bound":0.1012614392626916,"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":[5627,11254,16881,22508,28135,33762,39389,45016,50643,56270,61897,67524,73151,78778,84405,90032,95659,101286,106913,112540,118167,123794,129421,135048,140675,146302,151929,157556,163183,168810,174437,180064,185691,191318,196945,202572,208199,213826,219453,225080,230707,236334,241961,247588,253215,258842,264469,270096,275723,281350,286977,292604,298231,303858,309485,315112,320739,326366,331993,337620,343247,348874,354501,360128,365755,371382,377009,382636,388263,393890,399517,405144,410771,416398,422025,427652,433279,438906,444533,450160,455787,461414,467041,472668,478295,483922,489549,495176,500803,506430,512057,517684,523311,528938,534565,540192,545819,551446,557073,562700],"measured_values":[158385.0,262810.0,434922.0,528158.0,663027.0,793282.0,904426.0,1059591.0,1204222.0,1316179.0,1414058.0,1605234.0,1721605.0,1797796.0,1987431.0,2090044.0,2255180.0,2415745.0,2427743.0,2916751.0,2887047.0,2834253.0,2932901.0,3178686.0,3302562.0,3436860.0,3507129.0,3676013.0,3732503.0,3892321.0,4050109.0,4224894.0,4336477.0,4436375.0,4510132.0,4748963.0,4900266.0,5256535.0,5121806.0,5264402.0,5391249.0,5493723.0,5847409.0,6219497.0,6280919.0,6149678.0,6138928.0,6461215.0,6476293.0,6682132.0,6651139.0,7185343.0,7192073.0,7045010.0,7377687.0,7429932.0,7532153.0,7562496.0,7676710.0,7746895.0,7891550.0,8290344.0,8819548.0,8737503.0,8748758.0,8949608.0,8829774.0,9292626.0,9497678.0,9421597.0,9283671.0,9387309.0,9848068.0,9720030.0,10103332.0,10163346.0,10447221.0,10577918.0,10949897.0,10494388.0,10884075.0,10795156.0,10902444.0,10982201.0,11120027.0,11292290.0,12113992.0,11687369.0,11840243.0,11934026.0,12855023.0,12497929.0,12639919.0,12419456.0,12938131.0,14113558.0,14246637.0,13403426.0,13118083.0,13830587.0],"unit":"ns","throughput":[],"typical":{"estimate":23.942266474768875,"lower_bound":23.739226325699,"upper_bound":24.16345934672208,"unit":"ns"},"mean":{"estimate":23.7784049928602,"lower_bound":23.625495282282795,"upper_bound":23.949905924897845,"unit":"ns"},"median":{"estimate":23.53777545761507,"lower_bound":23.465345654878266,"upper_bound":23.75024702328061,"unit":"ns"},"median_abs_dev":{"estimate":0.5124255787255761,"lower_bound":0.38820962137975157,"upper_bound":0.6592788933133185,"unit":"ns"},"slope":{"estimate":23.942266474768875,"lower_bound":23.739226325699,"upper_bound":24.16345934672208,"unit":"ns"},"change":{"mean":{"estimate":-0.006744355907647659,"lower_bound":-0.016331790500704046,"upper_bound":0.002229241265714909,"unit":"%"},"median":{"estimate":-0.00943162191277036,"lower_bound":-0.013681095615210267,"upper_bound":-0.0010781905522203594,"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":[5642,11284,16926,22568,28210,33852,39494,45136,50778,56420,62062,67704,73346,78988,84630,90272,95914,101556,107198,112840,118482,124124,129766,135408,141050,146692,152334,157976,163618,169260,174902,180544,186186,191828,197470,203112,208754,214396,220038,225680,231322,236964,242606,248248,253890,259532,265174,270816,276458,282100,287742,293384,299026,304668,310310,315952,321594,327236,332878,338520,344162,349804,355446,361088,366730,372372,378014,383656,389298,394940,400582,406224,411866,417508,423150,428792,434434,440076,445718,451360,457002,462644,468286,473928,479570,485212,490854,496496,502138,507780,513422,519064,524706,530348,535990,541632,547274,552916,558558,564200],"measured_values":[147362.0,291340.0,419102.0,578713.0,740207.0,873061.0,977755.0,1137516.0,1282895.0,1435981.0,1536110.0,1680504.0,1783053.0,2074380.0,2065338.0,2260460.0,2341762.0,2654016.0,2707065.0,2909085.0,2980419.0,3200126.0,3347859.0,3405844.0,3513445.0,3711699.0,3747224.0,3996104.0,4210824.0,4290158.0,4529243.0,4681654.0,4644548.0,5090782.0,4861700.0,5239180.0,5636031.0,5408896.0,5275934.0,5403017.0,5541501.0,5649405.0,5768354.0,6370017.0,6173908.0,6369383.0,6510423.0,6351194.0,6754147.0,7188393.0,7121455.0,6948052.0,7146002.0,7399041.0,7332476.0,7651948.0,8091978.0,8481205.0,8560042.0,8704621.0,8644727.0,9024931.0,8896759.0,9546435.0,9231966.0,9709605.0,9318287.0,9809627.0,9204999.0,9178964.0,9340694.0,9965927.0,9945932.0,9805571.0,9838889.0,10041512.0,10373787.0,10345216.0,10473350.0,10513400.0,10768128.0,10868923.0,11165237.0,11185982.0,11581240.0,12356330.0,12044023.0,11812073.0,12071630.0,12109498.0,12218094.0,12304008.0,12213474.0,12370239.0,12652644.0,13233292.0,13660557.0,13466630.0,13188903.0,13578428.0],"unit":"ns","throughput":[],"typical":{"estimate":24.236835379401057,"lower_bound":24.053606246012585,"upper_bound":24.44225370351958,"unit":"ns"},"mean":{"estimate":24.70688971243674,"lower_bound":24.524232007049527,"upper_bound":24.890221089003916,"unit":"ns"},"median":{"estimate":24.635291096550468,"lower_bound":24.385439358302698,"upper_bound":25.02984700910968,"unit":"ns"},"median_abs_dev":{"estimate":1.1941285289594985,"lower_bound":0.9499463761366905,"upper_bound":1.4195957522992066,"unit":"ns"},"slope":{"estimate":24.236835379401057,"lower_bound":24.053606246012585,"upper_bound":24.44225370351958,"unit":"ns"},"change":{"mean":{"estimate":-0.0906867855326291,"lower_bound":-0.10053285855893966,"upper_bound":-0.0802933749020269,"unit":"%"},"median":{"estimate":-0.09113290593440193,"lower_bound":-0.10538594352280435,"upper_bound":-0.07479225354398811,"unit":"%"},"change":"Improved"}} +{"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":[5477,10954,16431,21908,27385,32862,38339,43816,49293,54770,60247,65724,71201,76678,82155,87632,93109,98586,104063,109540,115017,120494,125971,131448,136925,142402,147879,153356,158833,164310,169787,175264,180741,186218,191695,197172,202649,208126,213603,219080,224557,230034,235511,240988,246465,251942,257419,262896,268373,273850,279327,284804,290281,295758,301235,306712,312189,317666,323143,328620,334097,339574,345051,350528,356005,361482,366959,372436,377913,383390,388867,394344,399821,405298,410775,416252,421729,427206,432683,438160,443637,449114,454591,460068,465545,471022,476499,481976,487453,492930,498407,503884,509361,514838,520315,525792,531269,536746,542223,547700],"measured_values":[173774.0,284204.0,390539.0,545860.0,691346.0,828998.0,977342.0,1076939.0,1281121.0,1539224.0,1708044.0,1708275.0,1940786.0,1911957.0,2065054.0,2156180.0,2415985.0,2614387.0,2754361.0,2763166.0,3092808.0,3398309.0,3289492.0,3309784.0,3846107.0,3775079.0,4180765.0,3930868.0,4513917.0,4259909.0,4626480.0,4575922.0,4908924.0,5023159.0,5617367.0,5337519.0,5899911.0,5582568.0,5568796.0,5509455.0,5984058.0,5921666.0,6396442.0,6411422.0,7180616.0,6966469.0,7067370.0,6732294.0,7989438.0,7539747.0,7505573.0,7413310.0,7957188.0,7933031.0,8168244.0,8309550.0,8997411.0,8228426.0,8865540.0,8290165.0,9265696.0,8743159.0,9294524.0,9160711.0,10359580.0,9864833.0,9956336.0,9463585.0,10627916.0,11016373.0,10805017.0,10496427.0,10808040.0,10876204.0,11481843.0,10791150.0,11047524.0,11042335.0,11687648.0,11450674.0,12386144.0,12148657.0,12875594.0,11893177.0,13633289.0,12765312.0,12935250.0,12628213.0,13566931.0,13044843.0,13963797.0,12926721.0,14385539.0,14411092.0,14111192.0,13589868.0,14703227.0,13972538.0,15779556.0,14264642.0],"unit":"ns","throughput":[],"typical":{"estimate":27.095275304044947,"lower_bound":26.816646288594445,"upper_bound":27.37950169673078,"unit":"ns"},"mean":{"estimate":26.882956988539657,"lower_bound":26.62865605540244,"upper_bound":27.145429773291994,"unit":"ns"},"median":{"estimate":26.880104935894387,"lower_bound":26.46820675936692,"upper_bound":27.115853071522235,"unit":"ns"},"median_abs_dev":{"estimate":1.3840538735475405,"lower_bound":1.0081022243080395,"upper_bound":1.6163241527298646,"unit":"ns"},"slope":{"estimate":27.095275304044947,"lower_bound":26.816646288594445,"upper_bound":27.37950169673078,"unit":"ns"},"change":{"mean":{"estimate":0.112914832714474,"lower_bound":0.10132397945560927,"upper_bound":0.12577371447331062,"unit":"%"},"median":{"estimate":0.11647478007307965,"lower_bound":0.09917159379258256,"upper_bound":0.12645292453130663,"unit":"%"},"change":"Regressed"}} +{"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":[5637,11274,16911,22548,28185,33822,39459,45096,50733,56370,62007,67644,73281,78918,84555,90192,95829,101466,107103,112740,118377,124014,129651,135288,140925,146562,152199,157836,163473,169110,174747,180384,186021,191658,197295,202932,208569,214206,219843,225480,231117,236754,242391,248028,253665,259302,264939,270576,276213,281850,287487,293124,298761,304398,310035,315672,321309,326946,332583,338220,343857,349494,355131,360768,366405,372042,377679,383316,388953,394590,400227,405864,411501,417138,422775,428412,434049,439686,445323,450960,456597,462234,467871,473508,479145,484782,490419,496056,501693,507330,512967,518604,524241,529878,535515,541152,546789,552426,558063,563700],"measured_values":[142998.0,262037.0,391101.0,518122.0,643264.0,783366.0,922989.0,1044867.0,1197281.0,1340030.0,1463196.0,1607927.0,1748351.0,1868190.0,1925648.0,2081145.0,2233757.0,2408965.0,2530760.0,2645176.0,2860956.0,2992850.0,3105899.0,3184751.0,3272706.0,3462404.0,3622548.0,3921041.0,3937095.0,4113387.0,4124531.0,4279558.0,4414151.0,4576726.0,4876292.0,4900980.0,4950232.0,4947173.0,5097310.0,5264623.0,5547869.0,5863387.0,6940811.0,6635891.0,6514686.0,6255254.0,6317113.0,6543909.0,6836703.0,6750060.0,6731610.0,7245429.0,7577137.0,7229913.0,7409519.0,7917839.0,7763904.0,7795226.0,8021990.0,8554649.0,8483952.0,9444918.0,8746175.0,8867665.0,8873155.0,8952181.0,8860992.0,9105465.0,9241097.0,10214431.0,9708967.0,9621145.0,10152208.0,9912807.0,10006810.0,10095025.0,10300269.0,10656114.0,10713515.0,12382824.0,11600011.0,11080426.0,12557045.0,11889357.0,11645026.0,11527213.0,11970680.0,11773050.0,11750968.0,12166518.0,12518305.0,12387747.0,12660458.0,12716137.0,13392264.0,13372489.0,13037073.0,12966462.0,13235798.0,13404901.0],"unit":"ns","throughput":[],"typical":{"estimate":24.332984454633657,"lower_bound":24.121160804635622,"upper_bound":24.578604992512787,"unit":"ns"},"mean":{"estimate":24.158140429444078,"lower_bound":23.976782998792665,"upper_bound":24.357585736445206,"unit":"ns"},"median":{"estimate":23.883183621459782,"lower_bound":23.76794849666058,"upper_bound":24.070960659550714,"unit":"ns"},"median_abs_dev":{"estimate":0.5013169168718722,"lower_bound":0.38176993408370347,"upper_bound":0.763079765985739,"unit":"ns"},"slope":{"estimate":24.332984454633657,"lower_bound":24.121160804635622,"upper_bound":24.578604992512787,"unit":"ns"},"change":{"mean":{"estimate":-0.06271342346759434,"lower_bound":-0.07284166889282334,"upper_bound":-0.05340280660475766,"unit":"%"},"median":{"estimate":-0.06693165518976452,"lower_bound":-0.07384177243813639,"upper_bound":-0.058348715533323325,"unit":"%"},"change":"Improved"}} +{"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":[5659,11318,16977,22636,28295,33954,39613,45272,50931,56590,62249,67908,73567,79226,84885,90544,96203,101862,107521,113180,118839,124498,130157,135816,141475,147134,152793,158452,164111,169770,175429,181088,186747,192406,198065,203724,209383,215042,220701,226360,232019,237678,243337,248996,254655,260314,265973,271632,277291,282950,288609,294268,299927,305586,311245,316904,322563,328222,333881,339540,345199,350858,356517,362176,367835,373494,379153,384812,390471,396130,401789,407448,413107,418766,424425,430084,435743,441402,447061,452720,458379,464038,469697,475356,481015,486674,492333,497992,503651,509310,514969,520628,526287,531946,537605,543264,548923,554582,560241,565900],"measured_values":[155975.0,275353.0,405992.0,542182.0,680643.0,818591.0,952389.0,1090401.0,1259368.0,1362144.0,1543032.0,1648047.0,1756626.0,1877079.0,2040596.0,2173678.0,2315720.0,2450501.0,2598593.0,2731877.0,2858700.0,3044120.0,3121653.0,3221987.0,3450507.0,3526836.0,3665616.0,3735376.0,3911147.0,4084816.0,4295948.0,4370301.0,4447737.0,4569707.0,4733685.0,4806697.0,4952268.0,5146603.0,5687307.0,5874661.0,5729794.0,5624588.0,5778160.0,5965479.0,6232184.0,6272716.0,6328678.0,6648856.0,6660016.0,6741836.0,6902370.0,7084424.0,7207062.0,7290476.0,7586204.0,7527057.0,7791077.0,7855833.0,7936404.0,8394898.0,8311598.0,8484883.0,8531225.0,8653720.0,8865029.0,8993516.0,9085935.0,9128464.0,9350745.0,9455150.0,9649036.0,9823238.0,9854913.0,9927118.0,10199270.0,10377368.0,10451297.0,10705332.0,10645227.0,11830264.0,11730176.0,11381081.0,11193602.0,11602706.0,11770590.0,11840312.0,11698119.0,12482050.0,12262317.0,12040865.0,12378728.0,12721488.0,12829323.0,12765814.0,12935888.0,13077783.0,13153663.0,13319903.0,13478438.0,13513390.0],"unit":"ns","throughput":[],"typical":{"estimate":24.16455750497337,"lower_bound":24.053994174944208,"upper_bound":24.29535644255179,"unit":"ns"},"mean":{"estimate":24.169745782153612,"lower_bound":24.069026097450596,"upper_bound":24.288978237724304,"unit":"ns"},"median":{"estimate":24.040935214870537,"lower_bound":23.990732559737683,"upper_bound":24.072958703510764,"unit":"ns"},"median_abs_dev":{"estimate":0.24054953220634312,"lower_bound":0.15756299717479877,"upper_bound":0.3568300173012019,"unit":"ns"},"slope":{"estimate":24.16455750497337,"lower_bound":24.053994174944208,"upper_bound":24.29535644255179,"unit":"ns"},"change":{"mean":{"estimate":-0.009679115889545398,"lower_bound":-0.017297764521041818,"upper_bound":-0.0021777459601312484,"unit":"%"},"median":{"estimate":-0.008329442786386254,"lower_bound":-0.011964336922877905,"upper_bound":-0.005333829242753829,"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":[5690,11380,17070,22760,28450,34140,39830,45520,51210,56900,62590,68280,73970,79660,85350,91040,96730,102420,108110,113800,119490,125180,130870,136560,142250,147940,153630,159320,165010,170700,176390,182080,187770,193460,199150,204840,210530,216220,221910,227600,233290,238980,244670,250360,256050,261740,267430,273120,278810,284500,290190,295880,301570,307260,312950,318640,324330,330020,335710,341400,347090,352780,358470,364160,369850,375540,381230,386920,392610,398300,403990,409680,415370,421060,426750,432440,438130,443820,449510,455200,460890,466580,472270,477960,483650,489340,495030,500720,506410,512100,517790,523480,529170,534860,540550,546240,551930,557620,563310,569000],"measured_values":[176284.0,311628.0,440646.0,654770.0,753653.0,829076.0,994164.0,1211955.0,1293648.0,1445523.0,1524704.0,1783581.0,1771191.0,2043851.0,2058166.0,2191031.0,2437020.0,2686837.0,2697034.0,2881753.0,3007886.0,3077090.0,3066030.0,3272572.0,3359068.0,3736425.0,3686704.0,4042196.0,4082409.0,4393763.0,4222288.0,4405458.0,4415555.0,4651609.0,4861364.0,5117505.0,5045160.0,5444712.0,5132056.0,5411553.0,5563898.0,5498968.0,5719582.0,5937095.0,5983183.0,6348463.0,6214474.0,6435601.0,6476483.0,6800052.0,6806433.0,7018876.0,7114927.0,7218770.0,7364419.0,7869819.0,7424608.0,8023877.0,7729966.0,8031946.0,8070523.0,8594026.0,8555047.0,9454684.0,9050389.0,9711185.0,9247135.0,9961004.0,9603134.0,10183799.0,9813647.0,10485227.0,10030803.0,10792728.0,10175696.0,11027753.0,10645174.0,11159921.0,10633621.0,11119564.0,11169473.0,11572356.0,11478539.0,12065792.0,11579279.0,12060842.0,11723073.0,12160741.0,12003293.0,12519908.0,12324567.0,13003169.0,12626093.0,13341123.0,13586234.0,14223862.0,14421335.0,14814408.0,14484065.0,14914190.0],"unit":"ns","throughput":[],"typical":{"estimate":24.616221980286323,"lower_bound":24.364150487597023,"upper_bound":24.864495195778098,"unit":"ns"},"mean":{"estimate":24.655642670834226,"lower_bound":24.424990506046154,"upper_bound":24.905485856347628,"unit":"ns"},"median":{"estimate":24.336745293673662,"lower_bound":24.191826772322877,"upper_bound":24.698151518955562,"unit":"ns"},"median_abs_dev":{"estimate":1.0872663559030527,"lower_bound":0.8088108785721841,"upper_bound":1.293303288722626,"unit":"ns"},"slope":{"estimate":24.616221980286323,"lower_bound":24.364150487597023,"upper_bound":24.864495195778098,"unit":"ns"},"change":{"mean":{"estimate":0.02360142545691324,"lower_bound":0.01034312244714746,"upper_bound":0.03598161170863754,"unit":"%"},"median":{"estimate":0.02387006035116479,"lower_bound":0.014855511253345277,"upper_bound":0.0381200911623667,"unit":"%"},"change":"Regressed"}} +{"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":[5582,11164,16746,22328,27910,33492,39074,44656,50238,55820,61402,66984,72566,78148,83730,89312,94894,100476,106058,111640,117222,122804,128386,133968,139550,145132,150714,156296,161878,167460,173042,178624,184206,189788,195370,200952,206534,212116,217698,223280,228862,234444,240026,245608,251190,256772,262354,267936,273518,279100,284682,290264,295846,301428,307010,312592,318174,323756,329338,334920,340502,346084,351666,357248,362830,368412,373994,379576,385158,390740,396322,401904,407486,413068,418650,424232,429814,435396,440978,446560,452142,457724,463306,468888,474470,480052,485634,491216,496798,502380,507962,513544,519126,524708,530290,535872,541454,547036,552618,558200],"measured_values":[150699.0,281262.0,426187.0,605866.0,699822.0,929355.0,950688.0,1165633.0,1241698.0,1460541.0,1550752.0,1772640.0,1800632.0,2205059.0,2176081.0,2386488.0,2425108.0,2673649.0,2739613.0,2989176.0,2982999.0,3124748.0,3262851.0,3375156.0,3592366.0,3826532.0,3813196.0,4041639.0,3965660.0,4261254.0,4399531.0,4609724.0,4461189.0,4681734.0,4628124.0,4996639.0,4971319.0,5519278.0,5815156.0,6312652.0,5698711.0,6206578.0,6150579.0,6829159.0,6382579.0,6795439.0,6509487.0,7154251.0,6759817.0,6922842.0,7167549.0,7258508.0,7569739.0,7715507.0,7798741.0,8173501.0,7781427.0,8231148.0,7979981.0,9352158.0,8296305.0,8622974.0,8636611.0,8624353.0,8636018.0,9110784.0,9152988.0,9275514.0,9768876.0,10904187.0,9965464.0,10411224.0,10220641.0,10910291.0,11070249.0,11360337.0,10977546.0,11173053.0,10935219.0,11193012.0,11041623.0,11110808.0,11469730.0,11307880.0,11821493.0,11921796.0,11964064.0,12853148.0,12384838.0,13276533.0,12658700.0,13848331.0,12788364.0,13636771.0,13863443.0,13800640.0,13620448.0,14067343.0,14333051.0,14519012.0],"unit":"ns","throughput":[],"typical":{"estimate":25.42752641290322,"lower_bound":25.20864566751929,"upper_bound":25.648768485870164,"unit":"ns"},"mean":{"estimate":25.54489246261062,"lower_bound":25.353911451381045,"upper_bound":25.744574432276153,"unit":"ns"},"median":{"estimate":25.424283381072723,"lower_bound":25.174488506872237,"upper_bound":25.6291677257281,"unit":"ns"},"median_abs_dev":{"estimate":0.9597176034218966,"lower_bound":0.7615824547690293,"upper_bound":1.1973244710571938,"unit":"ns"},"slope":{"estimate":25.42752641290322,"lower_bound":25.20864566751929,"upper_bound":25.648768485870164,"unit":"ns"},"change":{"mean":{"estimate":0.01045748864300311,"lower_bound":-0.00041052395062485367,"upper_bound":0.021898816492119264,"unit":"%"},"median":{"estimate":0.014011742254419257,"lower_bound":0.0021737019317054074,"upper_bound":0.030616033201422477,"unit":"%"},"change":"NoChange"}} +{"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":[5534,11068,16602,22136,27670,33204,38738,44272,49806,55340,60874,66408,71942,77476,83010,88544,94078,99612,105146,110680,116214,121748,127282,132816,138350,143884,149418,154952,160486,166020,171554,177088,182622,188156,193690,199224,204758,210292,215826,221360,226894,232428,237962,243496,249030,254564,260098,265632,271166,276700,282234,287768,293302,298836,304370,309904,315438,320972,326506,332040,337574,343108,348642,354176,359710,365244,370778,376312,381846,387380,392914,398448,403982,409516,415050,420584,426118,431652,437186,442720,448254,453788,459322,464856,470390,475924,481458,486992,492526,498060,503594,509128,514662,520196,525730,531264,536798,542332,547866,553400],"measured_values":[170382.0,320366.0,463246.0,608110.0,725754.0,857622.0,931669.0,1091459.0,1361971.0,1460120.0,1644957.0,1760379.0,1949652.0,2015660.0,2222816.0,2222811.0,2570475.0,2671431.0,2982553.0,2949764.0,3265700.0,3357160.0,3781112.0,3787606.0,4016232.0,3813579.0,3937795.0,3951541.0,4201757.0,4085858.0,4672999.0,4606496.0,4899186.0,4956318.0,5384106.0,5146581.0,5153168.0,5427436.0,5708592.0,5796347.0,6532161.0,6251269.0,6655754.0,6575244.0,6869756.0,6631331.0,7277086.0,7053902.0,7547525.0,7335297.0,7727119.0,7634835.0,8127526.0,7701080.0,8388571.0,8088374.0,8458726.0,8360057.0,8839710.0,8922740.0,9654565.0,8847490.0,9894531.0,9433126.0,9588646.0,9555656.0,10729381.0,10558012.0,10453955.0,10306247.0,11138263.0,10800350.0,11220546.0,10778110.0,11449989.0,11123383.0,11846425.0,11459098.0,12141131.0,12082035.0,13102126.0,11987417.0,12600638.0,11629515.0,13267593.0,12570996.0,13779051.0,12929551.0,13728650.0,12986757.0,13623170.0,13240299.0,14084167.0,13999861.0,15719351.0,13908668.0,15030681.0,14298797.0,14964197.0,14616162.0],"unit":"ns","throughput":[],"typical":{"estimate":27.132308107399965,"lower_bound":26.867816492763378,"upper_bound":27.40987360852918,"unit":"ns"},"mean":{"estimate":27.035898343694335,"lower_bound":26.8096706339352,"upper_bound":27.265035015503756,"unit":"ns"},"median":{"estimate":26.8839963343487,"lower_bound":26.555166546199253,"upper_bound":27.290465757137696,"unit":"ns"},"median_abs_dev":{"estimate":1.0419387356860565,"lower_bound":0.7908933326561653,"upper_bound":1.2905082828217733,"unit":"ns"},"slope":{"estimate":27.132308107399965,"lower_bound":26.867816492763378,"upper_bound":27.40987360852918,"unit":"ns"},"change":{"mean":{"estimate":0.06122190783656567,"lower_bound":0.04723700775479957,"upper_bound":0.07551697043678632,"unit":"%"},"median":{"estimate":0.05956854760192609,"lower_bound":0.045713882103550096,"upper_bound":0.07806168827558646,"unit":"%"},"change":"Regressed"}} +{"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":[5584,11168,16752,22336,27920,33504,39088,44672,50256,55840,61424,67008,72592,78176,83760,89344,94928,100512,106096,111680,117264,122848,128432,134016,139600,145184,150768,156352,161936,167520,173104,178688,184272,189856,195440,201024,206608,212192,217776,223360,228944,234528,240112,245696,251280,256864,262448,268032,273616,279200,284784,290368,295952,301536,307120,312704,318288,323872,329456,335040,340624,346208,351792,357376,362960,368544,374128,379712,385296,390880,396464,402048,407632,413216,418800,424384,429968,435552,441136,446720,452304,457888,463472,469056,474640,480224,485808,491392,496976,502560,508144,513728,519312,524896,530480,536064,541648,547232,552816,558400],"measured_values":[152627.0,291587.0,409805.0,554939.0,670473.0,770230.0,941765.0,1111209.0,1218282.0,1343124.0,1520806.0,1672913.0,1734563.0,2038850.0,1973638.0,2130825.0,2311846.0,2447251.0,2560754.0,2680255.0,2821809.0,2937027.0,3109100.0,3453153.0,3265658.0,3632556.0,3530643.0,3741582.0,3860142.0,4001235.0,4162511.0,4165923.0,4371727.0,4539360.0,4618456.0,4987489.0,4960566.0,5467202.0,5170056.0,5326245.0,5388828.0,5424649.0,5739456.0,5760164.0,6061853.0,6455713.0,6226356.0,6428571.0,6515329.0,6694037.0,6851945.0,6849891.0,7003851.0,7523407.0,7934040.0,7470482.0,7912619.0,7923623.0,7836739.0,7921111.0,8028959.0,8316942.0,8334967.0,8707736.0,8693821.0,8942694.0,9074728.0,9247047.0,9424870.0,9925807.0,9545614.0,9764912.0,9774608.0,9902014.0,10597999.0,10576541.0,10209337.0,10540380.0,10420687.0,10665091.0,10701193.0,10947663.0,11546226.0,11476065.0,11449437.0,11593688.0,11624676.0,12483056.0,11986794.0,11991404.0,12250598.0,12531588.0,12603733.0,12586019.0,13708797.0,12963630.0,12919091.0,13209597.0,13213241.0,13435747.0],"unit":"ns","throughput":[],"typical":{"estimate":24.22079816755678,"lower_bound":24.089222538054774,"upper_bound":24.370350292316505,"unit":"ns"},"mean":{"estimate":24.24268007659706,"lower_bound":24.1106855578015,"upper_bound":24.386100644008028,"unit":"ns"},"median":{"estimate":24.056613784482273,"lower_bound":23.970703720356035,"upper_bound":24.136197406122758,"unit":"ns"},"median_abs_dev":{"estimate":0.4158268302428559,"lower_bound":0.2729038736101113,"upper_bound":0.5392659717312408,"unit":"ns"},"slope":{"estimate":24.22079816755678,"lower_bound":24.089222538054774,"upper_bound":24.370350292316505,"unit":"ns"},"change":{"mean":{"estimate":0.010896333237043976,"lower_bound":0.0021117757787930684,"upper_bound":0.01935157777578105,"unit":"%"},"median":{"estimate":0.010806560860985748,"lower_bound":0.003202690538290616,"upper_bound":0.016587593532859657,"unit":"%"},"change":"NoChange"}} +{"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":[5605,11210,16815,22420,28025,33630,39235,44840,50445,56050,61655,67260,72865,78470,84075,89680,95285,100890,106495,112100,117705,123310,128915,134520,140125,145730,151335,156940,162545,168150,173755,179360,184965,190570,196175,201780,207385,212990,218595,224200,229805,235410,241015,246620,252225,257830,263435,269040,274645,280250,285855,291460,297065,302670,308275,313880,319485,325090,330695,336300,341905,347510,353115,358720,364325,369930,375535,381140,386745,392350,397955,403560,409165,414770,420375,425980,431585,437190,442795,448400,454005,459610,465215,470820,476425,482030,487635,493240,498845,504450,510055,515660,521265,526870,532475,538080,543685,549290,554895,560500],"measured_values":[153762.0,278909.0,404835.0,533926.0,663450.0,798569.0,917854.0,1061411.0,1180467.0,1324347.0,1425629.0,1589958.0,1749648.0,1918783.0,1993670.0,2147981.0,2265951.0,2381931.0,2505869.0,2687548.0,2800714.0,2918079.0,3029658.0,3163445.0,3377146.0,3415174.0,3640000.0,3759287.0,3972335.0,4053374.0,4167538.0,4196908.0,4462268.0,4666277.0,4733124.0,4744203.0,4882913.0,5137352.0,5589507.0,5947472.0,5606892.0,5564272.0,6076935.0,5945790.0,6098732.0,6215846.0,6392611.0,6471739.0,6536091.0,6775342.0,6858172.0,6938290.0,7314823.0,7875673.0,8131182.0,7464184.0,7581771.0,7649675.0,7743061.0,7948713.0,8044487.0,8152214.0,8579822.0,8617534.0,8718916.0,8921699.0,8920299.0,9139064.0,9468031.0,9974354.0,10379637.0,9796883.0,9720468.0,10014113.0,10011172.0,10113634.0,11129644.0,11317427.0,11824054.0,10635558.0,10772808.0,11164498.0,11494528.0,11283719.0,11297818.0,11665119.0,11599968.0,11939922.0,14014578.0,12767658.0,13230117.0,12127472.0,12315967.0,12665737.0,13475202.0,12903480.0,13117283.0,13233855.0,14891659.0,13697481.0],"unit":"ns","throughput":[],"typical":{"estimate":24.501878410563307,"lower_bound":24.22530110417634,"upper_bound":24.807743588484502,"unit":"ns"},"mean":{"estimate":24.27132126986435,"lower_bound":24.09842724412203,"upper_bound":24.463774138086222,"unit":"ns"},"median":{"estimate":24.001986483195488,"lower_bound":23.814860541183467,"upper_bound":24.108311678237598,"unit":"ns"},"median_abs_dev":{"estimate":0.4335113000478928,"lower_bound":0.3513952321441756,"upper_bound":0.6041256654626334,"unit":"ns"},"slope":{"estimate":24.501878410563307,"lower_bound":24.22530110417634,"upper_bound":24.807743588484502,"unit":"ns"},"change":{"mean":{"estimate":0.0073077845081557236,"lower_bound":-0.0022268126294300358,"upper_bound":0.016325488431710534,"unit":"%"},"median":{"estimate":0.002539618554973977,"lower_bound":-0.00540025950574341,"upper_bound":0.007973330838863127,"unit":"%"},"change":"NoChange"}} +{"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":[4871,9742,14613,19484,24355,29226,34097,38968,43839,48710,53581,58452,63323,68194,73065,77936,82807,87678,92549,97420,102291,107162,112033,116904,121775,126646,131517,136388,141259,146130,151001,155872,160743,165614,170485,175356,180227,185098,189969,194840,199711,204582,209453,214324,219195,224066,228937,233808,238679,243550,248421,253292,258163,263034,267905,272776,277647,282518,287389,292260,297131,302002,306873,311744,316615,321486,326357,331228,336099,340970,345841,350712,355583,360454,365325,370196,375067,379938,384809,389680,394551,399422,404293,409164,414035,418906,423777,428648,433519,438390,443261,448132,453003,457874,462745,467616,472487,477358,482229,487100],"measured_values":[183264.0,368340.0,557569.0,759450.0,903885.0,1125211.0,1278634.0,1482785.0,1635759.0,1831459.0,1994455.0,2226349.0,2356344.0,2543663.0,2721235.0,2909886.0,3090789.0,3267521.0,3438769.0,3726526.0,3799733.0,4010390.0,4200764.0,4376532.0,4529017.0,4724976.0,4899319.0,5084861.0,5241706.0,5447534.0,5598930.0,5883481.0,5970417.0,6186123.0,6343395.0,6534795.0,6711162.0,6995465.0,7201813.0,7369746.0,7539234.0,7677339.0,7815341.0,8071773.0,8189219.0,8411637.0,8520638.0,8720250.0,8883086.0,9094983.0,9281239.0,9578785.0,9638156.0,9823450.0,9989209.0,10168943.0,10360512.0,10578323.0,10671057.0,10995344.0,11082589.0,11276624.0,11420036.0,11764796.0,11810818.0,11991146.0,12241346.0,12469324.0,12535757.0,12765190.0,12871539.0,13048503.0,13258084.0,13498865.0,13630532.0,13996070.0,13973885.0,14155728.0,14406523.0,14676655.0,14809415.0,15018390.0,15358611.0,15478860.0,15450758.0,15702383.0,15825422.0,15998033.0,16157038.0,16417740.0,16574140.0,16844755.0,17128573.0,17065496.0,17178118.0,17443986.0,17533102.0,18027816.0,17918060.0,18315691.0],"unit":"ns","throughput":[],"typical":{"estimate":37.427875382898584,"lower_bound":37.36966946470612,"upper_bound":37.48840512896092,"unit":"ns"},"mean":{"estimate":37.459363246670186,"lower_bound":37.40077111613643,"upper_bound":37.52409452807889,"unit":"ns"},"median":{"estimate":37.338216717107834,"lower_bound":37.30739213371655,"upper_bound":37.436973927324985,"unit":"ns"},"median_abs_dev":{"estimate":0.1812578411521851,"lower_bound":0.13595321483588743,"upper_bound":0.27327798332727227,"unit":"ns"},"slope":{"estimate":37.427875382898584,"lower_bound":37.36966946470612,"upper_bound":37.48840512896092,"unit":"ns"},"change":{"mean":{"estimate":-0.012282185709416638,"lower_bound":-0.01548763683361436,"upper_bound":-0.009485325642327014,"unit":"%"},"median":{"estimate":-0.012744980006943019,"lower_bound":-0.013784395682311117,"upper_bound":-0.010070880041312291,"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":[4555,9110,13665,18220,22775,27330,31885,36440,40995,45550,50105,54660,59215,63770,68325,72880,77435,81990,86545,91100,95655,100210,104765,109320,113875,118430,122985,127540,132095,136650,141205,145760,150315,154870,159425,163980,168535,173090,177645,182200,186755,191310,195865,200420,204975,209530,214085,218640,223195,227750,232305,236860,241415,245970,250525,255080,259635,264190,268745,273300,277855,282410,286965,291520,296075,300630,305185,309740,314295,318850,323405,327960,332515,337070,341625,346180,350735,355290,359845,364400,368955,373510,378065,382620,387175,391730,396285,400840,405395,409950,414505,419060,423615,428170,432725,437280,441835,446390,450945,455500],"measured_values":[224446.0,418453.0,641309.0,834034.0,1033810.0,1246277.0,1466923.0,1672099.0,1872993.0,2075356.0,2293796.0,2495555.0,2716895.0,2899982.0,3105465.0,3345769.0,3534246.0,3755748.0,3930976.0,4165666.0,4357832.0,4573756.0,4779188.0,5009710.0,5204626.0,5437874.0,5634962.0,5845020.0,6004570.0,6285581.0,6447119.0,6676356.0,6882664.0,7045457.0,7278697.0,7546445.0,7776123.0,7903017.0,8149361.0,8349849.0,8509989.0,8716222.0,8940693.0,9178308.0,9357601.0,9549128.0,9823195.0,10014833.0,10203012.0,10423295.0,10630263.0,10837952.0,11007741.0,11283003.0,11453695.0,11686293.0,11866132.0,12064029.0,12254085.0,12617065.0,12705902.0,12878249.0,13174405.0,13394101.0,13535063.0,13742223.0,14011634.0,14160097.0,14729177.0,14528292.0,14781466.0,15090500.0,15205266.0,15436145.0,15652061.0,15835668.0,16017245.0,16204492.0,16557902.0,16711493.0,16866046.0,17084591.0,17299727.0,17526629.0,17669718.0,17969546.0,18082251.0,18424887.0,18502515.0,18754732.0,18912883.0,19203233.0,19372336.0,19510085.0,19772973.0,20069886.0,20324808.0,20446017.0,20688771.0,20865341.0],"unit":"ns","throughput":[],"typical":{"estimate":45.78455896885788,"lower_bound":45.742832383949995,"upper_bound":45.832424617669126,"unit":"ns"},"mean":{"estimate":45.806675188013145,"lower_bound":45.739907743711115,"upper_bound":45.89941841881229,"unit":"ns"},"median":{"estimate":45.74642851182108,"lower_bound":45.71344340150989,"upper_bound":45.79601545088647,"unit":"ns"},"median_abs_dev":{"estimate":0.15618779744463637,"lower_bound":0.12042259610575971,"upper_bound":0.19422878226361615,"unit":"ns"},"slope":{"estimate":45.78455896885788,"lower_bound":45.742832383949995,"upper_bound":45.832424617669126,"unit":"ns"},"change":{"mean":{"estimate":-0.004838346802911064,"lower_bound":-0.006795750020598757,"upper_bound":-0.0025185900935913723,"unit":"%"},"median":{"estimate":-0.0041784912049358525,"lower_bound":-0.005684175528048385,"upper_bound":-0.002993460283705729,"unit":"%"},"change":"NoChange"}} +{"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":[4346,8692,13038,17384,21730,26076,30422,34768,39114,43460,47806,52152,56498,60844,65190,69536,73882,78228,82574,86920,91266,95612,99958,104304,108650,112996,117342,121688,126034,130380,134726,139072,143418,147764,152110,156456,160802,165148,169494,173840,178186,182532,186878,191224,195570,199916,204262,208608,212954,217300,221646,225992,230338,234684,239030,243376,247722,252068,256414,260760,265106,269452,273798,278144,282490,286836,291182,295528,299874,304220,308566,312912,317258,321604,325950,330296,334642,338988,343334,347680,352026,356372,360718,365064,369410,373756,378102,382448,386794,391140,395486,399832,404178,408524,412870,417216,421562,425908,430254,434600],"measured_values":[226589.0,422291.0,622023.0,815924.0,1013970.0,1218593.0,1420633.0,1622770.0,1830777.0,2051793.0,2245080.0,2448679.0,2709124.0,2829871.0,3036781.0,3307190.0,3453787.0,3700468.0,3894884.0,4059327.0,4294321.0,4512807.0,4702140.0,4863695.0,5153575.0,5260851.0,5550527.0,5699181.0,5893155.0,6113631.0,6335275.0,6481513.0,6693906.0,6887953.0,7108013.0,7318870.0,7613661.0,7808864.0,7922102.0,8139536.0,8320009.0,8554103.0,8903321.0,9004529.0,9164192.0,9373123.0,9616775.0,9751423.0,10005896.0,10143706.0,10406234.0,11036161.0,10837701.0,10966745.0,11150660.0,11436041.0,11567192.0,11766258.0,12402121.0,12229006.0,12584158.0,12653140.0,12855023.0,13084748.0,13312846.0,13408759.0,13720540.0,13820163.0,14026852.0,14235049.0,14641362.0,14696748.0,14983966.0,15322005.0,15281472.0,15451718.0,15827314.0,15857096.0,16074965.0,16283641.0,16500023.0,16661843.0,16889936.0,17093225.0,17237028.0,17430910.0,18008213.0,17948842.0,18168130.0,18295667.0,18468719.0,18704059.0,18937696.0,19122962.0,19373275.0,19548187.0,19760759.0,20016561.0,20172909.0,20497270.0],"unit":"ns","throughput":[],"typical":{"estimate":46.9584628129894,"lower_bound":46.89222113511925,"upper_bound":47.03583436487222,"unit":"ns"},"mean":{"estimate":47.044247269447425,"lower_bound":46.93501435623431,"upper_bound":47.18776363343346,"unit":"ns"},"median":{"estimate":46.87898354215987,"lower_bound":46.82254344443714,"upper_bound":46.95126406522112,"unit":"ns"},"median_abs_dev":{"estimate":0.23108634396358632,"lower_bound":0.17015744899694138,"upper_bound":0.3135103954719801,"unit":"ns"},"slope":{"estimate":46.9584628129894,"lower_bound":46.89222113511925,"upper_bound":47.03583436487222,"unit":"ns"},"change":{"mean":{"estimate":0.01993906325568018,"lower_bound":0.0172765846728929,"upper_bound":0.023546538057727846,"unit":"%"},"median":{"estimate":0.017807781000270584,"lower_bound":0.016605052929650706,"upper_bound":0.019558210135946164,"unit":"%"},"change":"Regressed"}} +{"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":[4260,8520,12780,17040,21300,25560,29820,34080,38340,42600,46860,51120,55380,59640,63900,68160,72420,76680,80940,85200,89460,93720,97980,102240,106500,110760,115020,119280,123540,127800,132060,136320,140580,144840,149100,153360,157620,161880,166140,170400,174660,178920,183180,187440,191700,195960,200220,204480,208740,213000,217260,221520,225780,230040,234300,238560,242820,247080,251340,255600,259860,264120,268380,272640,276900,281160,285420,289680,293940,298200,302460,306720,310980,315240,319500,323760,328020,332280,336540,340800,345060,349320,353580,357840,362100,366360,370620,374880,379140,383400,387660,391920,396180,400440,404700,408960,413220,417480,421740,426000],"measured_values":[329500.0,570094.0,856835.0,1134557.0,1428510.0,1705442.0,2000399.0,2300709.0,2576749.0,2869747.0,3143087.0,3436257.0,3744025.0,4037486.0,4317930.0,4590594.0,4886606.0,5174678.0,5485271.0,5744541.0,5999949.0,6326172.0,6632921.0,6921146.0,7210805.0,7472000.0,7769008.0,7996458.0,8318838.0,8584542.0,8885389.0,9139890.0,9454236.0,9802409.0,10051118.0,10289936.0,10605213.0,10899658.0,11166010.0,11462749.0,11722364.0,12018454.0,12320028.0,12585836.0,12909214.0,13143112.0,13449032.0,13765579.0,14031817.0,14286078.0,14597193.0,14895647.0,15176881.0,15466953.0,15763882.0,16047012.0,16369953.0,16735682.0,16880316.0,17154463.0,17484589.0,17834731.0,18125534.0,18336874.0,18594807.0,18931646.0,19202147.0,19484854.0,19798239.0,20084733.0,20348038.0,20693352.0,20806671.0,21181579.0,21401020.0,21743362.0,21965225.0,22344257.0,22527010.0,22957083.0,23133227.0,23490371.0,23650506.0,24029167.0,24355287.0,24693090.0,24862630.0,25187818.0,25445806.0,25770632.0,25969520.0,26339179.0,26529962.0,26891390.0,27100848.0,27560303.0,27681934.0,28012945.0,28222363.0,28567559.0],"unit":"ns","throughput":[],"typical":{"estimate":67.18205947393142,"lower_bound":67.1393964679459,"upper_bound":67.22798698606466,"unit":"ns"},"mean":{"estimate":67.34504185805865,"lower_bound":67.21081253102427,"upper_bound":67.57483256015509,"unit":"ns"},"median":{"estimate":67.2394137976004,"lower_bound":67.18901515151515,"upper_bound":67.27064204475681,"unit":"ns"},"median_abs_dev":{"estimate":0.2091427301903779,"lower_bound":0.15021682714532503,"upper_bound":0.2619764594334978,"unit":"ns"},"slope":{"estimate":67.18205947393142,"lower_bound":67.1393964679459,"upper_bound":67.22798698606466,"unit":"ns"},"change":{"mean":{"estimate":-0.004073942306510481,"lower_bound":-0.006397277660837722,"upper_bound":-0.0006054794145537336,"unit":"%"},"median":{"estimate":-0.005203796356487378,"lower_bound":-0.006693448271718472,"upper_bound":-0.004419368109261357,"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":[3211,6422,9633,12844,16055,19266,22477,25688,28899,32110,35321,38532,41743,44954,48165,51376,54587,57798,61009,64220,67431,70642,73853,77064,80275,83486,86697,89908,93119,96330,99541,102752,105963,109174,112385,115596,118807,122018,125229,128440,131651,134862,138073,141284,144495,147706,150917,154128,157339,160550,163761,166972,170183,173394,176605,179816,183027,186238,189449,192660,195871,199082,202293,205504,208715,211926,215137,218348,221559,224770,227981,231192,234403,237614,240825,244036,247247,250458,253669,256880,260091,263302,266513,269724,272935,276146,279357,282568,285779,288990,292201,295412,298623,301834,305045,308256,311467,314678,317889,321100],"measured_values":[449634.0,852284.0,1278531.0,1707741.0,2151740.0,2558462.0,3000169.0,3438192.0,3861301.0,4267678.0,4700264.0,5124768.0,5554893.0,5987596.0,6408058.0,6858359.0,7260034.0,7684139.0,8139196.0,8571441.0,8966440.0,9406664.0,9839885.0,10259662.0,10711204.0,11125697.0,11559774.0,11980749.0,12477121.0,12850491.0,13262896.0,13667201.0,14303518.0,14614560.0,14962780.0,15449297.0,15820730.0,16250201.0,16728579.0,17121778.0,17616712.0,17982487.0,18418393.0,18903272.0,19352762.0,19746711.0,20147645.0,20593109.0,20941786.0,21404138.0,21922980.0,22302773.0,22753128.0,23091732.0,23598150.0,24072563.0,24432667.0,24811017.0,25308054.0,25722032.0,26089356.0,26547606.0,26989837.0,27458222.0,27821108.0,28270082.0,28701257.0,29155299.0,29588753.0,29912762.0,30388108.0,30979264.0,31274751.0,31704406.0,32133507.0,32594934.0,32974998.0,33436534.0,33887356.0,34393762.0,34685261.0,35084260.0,35594790.0,35962220.0,36598919.0,36711674.0,37218394.0,37724371.0,38087236.0,38516655.0,38900948.0,39384405.0,39785270.0,40242091.0,40704574.0,41182835.0,41546540.0,41850185.0,42319935.0,42844911.0],"unit":"ns","throughput":[],"typical":{"estimate":133.4157855480254,"lower_bound":133.35458700680516,"upper_bound":133.48213973075678,"unit":"ns"},"mean":{"estimate":133.4634829050571,"lower_bound":133.34844108457256,"upper_bound":133.63132053360653,"unit":"ns"},"median":{"estimate":133.39293383967618,"lower_bound":133.31544706693083,"upper_bound":133.43137963251323,"unit":"ns"},"median_abs_dev":{"estimate":0.2896218407360577,"lower_bound":0.21953431534583023,"upper_bound":0.3475213080878972,"unit":"ns"},"slope":{"estimate":133.4157855480254,"lower_bound":133.35458700680516,"upper_bound":133.48213973075678,"unit":"ns"},"change":{"mean":{"estimate":0.007834186517190478,"lower_bound":0.006313781968282096,"upper_bound":0.009433136385741453,"unit":"%"},"median":{"estimate":0.008604982082328183,"lower_bound":0.0077956137465881375,"upper_bound":0.009085669373142258,"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":[3347,6694,10041,13388,16735,20082,23429,26776,30123,33470,36817,40164,43511,46858,50205,53552,56899,60246,63593,66940,70287,73634,76981,80328,83675,87022,90369,93716,97063,100410,103757,107104,110451,113798,117145,120492,123839,127186,130533,133880,137227,140574,143921,147268,150615,153962,157309,160656,164003,167350,170697,174044,177391,180738,184085,187432,190779,194126,197473,200820,204167,207514,210861,214208,217555,220902,224249,227596,230943,234290,237637,240984,244331,247678,251025,254372,257719,261066,264413,267760,271107,274454,277801,281148,284495,287842,291189,294536,297883,301230,304577,307924,311271,314618,317965,321312,324659,328006,331353,334700],"measured_values":[419348.0,792655.0,1189593.0,1587621.0,1981571.0,2384610.0,2791525.0,3175686.0,3566560.0,3963213.0,4374624.0,4766632.0,5153202.0,5571856.0,5989613.0,6374913.0,6747010.0,7172946.0,7548157.0,7976475.0,8373741.0,8835005.0,9129690.0,9540370.0,9959084.0,10332934.0,10767098.0,11176337.0,11517385.0,11934305.0,12334694.0,12809749.0,13118690.0,13606677.0,13928412.0,14326984.0,14721405.0,15123351.0,15510930.0,15927070.0,16346749.0,17380333.0,17127119.0,17618979.0,17921022.0,18300813.0,18667091.0,19128496.0,19562865.0,19914216.0,20282836.0,20709727.0,21167124.0,21505530.0,21867433.0,22687449.0,22834611.0,23108061.0,23489770.0,23943490.0,24325027.0,24657301.0,25333442.0,25529263.0,25847388.0,26313372.0,26736887.0,27108534.0,27501415.0,27922370.0,28247320.0,28708737.0,29036765.0,29472116.0,29825611.0,30351335.0,30629026.0,31040698.0,31399695.0,31846581.0,32228219.0,32641669.0,33007064.0,33454177.0,33888980.0,34293352.0,34586414.0,35117671.0,35395301.0,35818037.0,36182019.0,36659078.0,37017753.0,37420270.0,37796922.0,38296409.0,38541750.0,39000767.0,39483647.0,39794556.0],"unit":"ns","throughput":[],"typical":{"estimate":119.04279669580522,"lower_bound":118.97149528038426,"upper_bound":119.13336568372019,"unit":"ns"},"mean":{"estimate":119.09928005485483,"lower_bound":118.95645146970803,"upper_bound":119.28640021732369,"unit":"ns"},"median":{"estimate":118.93507568663601,"lower_bound":118.88974953841324,"upper_bound":118.99747608724496,"unit":"ns"},"median_abs_dev":{"estimate":0.25237756234834235,"lower_bound":0.17707186785886767,"upper_bound":0.3105967184139269,"unit":"ns"},"slope":{"estimate":119.04279669580522,"lower_bound":118.97149528038426,"upper_bound":119.13336568372019,"unit":"ns"},"change":{"mean":{"estimate":0.04190184586719514,"lower_bound":0.03795160107208821,"upper_bound":0.045229941465574956,"unit":"%"},"median":{"estimate":0.04500835296905947,"lower_bound":0.04418955790760437,"upper_bound":0.0463442428081795,"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":[3297,6594,9891,13188,16485,19782,23079,26376,29673,32970,36267,39564,42861,46158,49455,52752,56049,59346,62643,65940,69237,72534,75831,79128,82425,85722,89019,92316,95613,98910,102207,105504,108801,112098,115395,118692,121989,125286,128583,131880,135177,138474,141771,145068,148365,151662,154959,158256,161553,164850,168147,171444,174741,178038,181335,184632,187929,191226,194523,197820,201117,204414,207711,211008,214305,217602,220899,224196,227493,230790,234087,237384,240681,243978,247275,250572,253869,257166,260463,263760,267057,270354,273651,276948,280245,283542,286839,290136,293433,296730,300027,303324,306621,309918,313215,316512,319809,323106,326403,329700],"measured_values":[473887.0,875503.0,1317497.0,1764877.0,2190450.0,2630643.0,3071903.0,3501683.0,3943411.0,4394791.0,4805722.0,5245078.0,5711745.0,6145684.0,6616369.0,7063447.0,7542199.0,7892091.0,8367257.0,8870693.0,9220092.0,9642458.0,10090030.0,10556034.0,10955058.0,11429737.0,11875235.0,12260283.0,12725593.0,13173032.0,13579125.0,14054940.0,14495656.0,14937887.0,15362348.0,15779713.0,16240992.0,16663466.0,17093545.0,17525961.0,18026808.0,18514580.0,18851403.0,19290308.0,19776203.0,20222008.0,20621452.0,21059370.0,21589232.0,21928744.0,22359136.0,22790849.0,23247083.0,23713886.0,24106209.0,24613127.0,25031377.0,25465597.0,25906259.0,26298539.0,26757251.0,27459663.0,27683848.0,28040874.0,28578028.0,29075270.0,29491017.0,29943157.0,30255091.0,30727953.0,31126146.0,31601624.0,32050900.0,32473622.0,32869913.0,33386797.0,33731379.0,34237702.0,34665991.0,35082052.0,35534355.0,35980069.0,36422828.0,36815274.0,37351940.0,37801025.0,38205047.0,38606117.0,39090164.0,39519737.0,39985718.0,40343852.0,40789127.0,41230524.0,41753916.0,42073689.0,42600007.0,43169757.0,43576787.0,43827725.0],"unit":"ns","throughput":[],"typical":{"estimate":133.17132101723476,"lower_bound":133.11587610214926,"upper_bound":133.2316261174067,"unit":"ns"},"mean":{"estimate":133.29104617723496,"lower_bound":133.13687366181156,"upper_bound":133.54301759847584,"unit":"ns"},"median":{"estimate":133.13150227590626,"lower_bound":133.06948329880805,"upper_bound":133.18767636200099,"unit":"ns"},"median_abs_dev":{"estimate":0.23607688606619429,"lower_bound":0.18004890386776573,"upper_bound":0.2871384522410711,"unit":"ns"},"slope":{"estimate":133.17132101723476,"lower_bound":133.11587610214926,"upper_bound":133.2316261174067,"unit":"ns"},"change":{"mean":{"estimate":0.01966698659721544,"lower_bound":0.01578198218631621,"upper_bound":0.02280470508081542,"unit":"%"},"median":{"estimate":0.02156758649504753,"lower_bound":0.020791318700900785,"upper_bound":0.022271898042722782,"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":[4671,9342,14013,18684,23355,28026,32697,37368,42039,46710,51381,56052,60723,65394,70065,74736,79407,84078,88749,93420,98091,102762,107433,112104,116775,121446,126117,130788,135459,140130,144801,149472,154143,158814,163485,168156,172827,177498,182169,186840,191511,196182,200853,205524,210195,214866,219537,224208,228879,233550,238221,242892,247563,252234,256905,261576,266247,270918,275589,280260,284931,289602,294273,298944,303615,308286,312957,317628,322299,326970,331641,336312,340983,345654,350325,354996,359667,364338,369009,373680,378351,383022,387693,392364,397035,401706,406377,411048,415719,420390,425061,429732,434403,439074,443745,448416,453087,457758,462429,467100],"measured_values":[210621.0,381374.0,578750.0,769441.0,959391.0,1149295.0,1347120.0,1539422.0,1724785.0,1916510.0,2109041.0,2316345.0,2492905.0,2681491.0,2894409.0,3094795.0,3258420.0,3458850.0,3653423.0,3848612.0,4028267.0,4229145.0,4429648.0,4620724.0,4825774.0,4978256.0,5213159.0,5384141.0,5566193.0,5745348.0,6018601.0,6164136.0,6332229.0,6537017.0,6772714.0,6981274.0,7162975.0,7279515.0,7493555.0,7723491.0,7904020.0,8063780.0,8290922.0,8461722.0,8646460.0,8816736.0,9050498.0,9235774.0,9460959.0,9609257.0,9795867.0,10015638.0,10185594.0,10395989.0,10559789.0,10817551.0,11008712.0,11119300.0,11348467.0,11606650.0,11776249.0,11892931.0,12110189.0,12343241.0,12514637.0,12660968.0,12880715.0,13111942.0,13318665.0,13415213.0,13737901.0,13890664.0,14061705.0,14163363.0,14496075.0,14724133.0,14821801.0,14962779.0,15216866.0,15421236.0,15645342.0,15738609.0,16062656.0,16292399.0,16415837.0,16514308.0,16863524.0,16988063.0,17081402.0,17262976.0,17525427.0,17720724.0,17990009.0,18016269.0,18275479.0,18505286.0,18657383.0,18828167.0,19179091.0,19290908.0],"unit":"ns","throughput":[],"typical":{"estimate":41.24101526806406,"lower_bound":41.203585717284156,"upper_bound":41.27831296136174,"unit":"ns"},"mean":{"estimate":41.24959709602571,"lower_bound":41.18920810885916,"upper_bound":41.34406477118796,"unit":"ns"},"median":{"estimate":41.19849221641129,"lower_bound":41.16419994458927,"upper_bound":41.236687051464635,"unit":"ns"},"median_abs_dev":{"estimate":0.17058512921883615,"lower_bound":0.12830804659939354,"upper_bound":0.19527247766149178,"unit":"ns"},"slope":{"estimate":41.24101526806406,"lower_bound":41.203585717284156,"upper_bound":41.27831296136174,"unit":"ns"},"change":{"mean":{"estimate":0.0008473989584771857,"lower_bound":-0.0011972401502600867,"upper_bound":0.003936490791703006,"unit":"%"},"median":{"estimate":0.001447906430660728,"lower_bound":-0.00045715682084535025,"upper_bound":0.003409469373617302,"unit":"%"},"change":"NoChange"}} +{"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":[4348,8696,13044,17392,21740,26088,30436,34784,39132,43480,47828,52176,56524,60872,65220,69568,73916,78264,82612,86960,91308,95656,100004,104352,108700,113048,117396,121744,126092,130440,134788,139136,143484,147832,152180,156528,160876,165224,169572,173920,178268,182616,186964,191312,195660,200008,204356,208704,213052,217400,221748,226096,230444,234792,239140,243488,247836,252184,256532,260880,265228,269576,273924,278272,282620,286968,291316,295664,300012,304360,308708,313056,317404,321752,326100,330448,334796,339144,343492,347840,352188,356536,360884,365232,369580,373928,378276,382624,386972,391320,395668,400016,404364,408712,413060,417408,421756,426104,430452,434800],"measured_values":[231479.0,429718.0,631911.0,854662.0,1064601.0,1295045.0,1499225.0,1703809.0,1929426.0,2133364.0,2343778.0,2593858.0,2776857.0,2980687.0,3197754.0,3408904.0,3623169.0,3856162.0,4171833.0,4250338.0,4475486.0,4683373.0,4882707.0,5151273.0,5369335.0,5533009.0,5813923.0,5968106.0,6228173.0,6444611.0,6640178.0,6859273.0,7109916.0,7256564.0,7480032.0,7678467.0,7913099.0,8130809.0,8347166.0,8561714.0,8789515.0,9047542.0,9214466.0,9439891.0,9645422.0,9823712.0,10003351.0,10250165.0,10454808.0,10709550.0,10895891.0,11128717.0,11410268.0,11731196.0,11794378.0,11983747.0,12219645.0,12426399.0,12689047.0,12893683.0,13066910.0,13239603.0,13493034.0,13713871.0,13904157.0,14114744.0,14374061.0,14597053.0,14826222.0,14974088.0,15289819.0,15474467.0,15634554.0,15904260.0,16049435.0,16234498.0,16425072.0,16701247.0,16884323.0,17137471.0,17336608.0,17555683.0,17844566.0,17980579.0,18159988.0,18368221.0,18589241.0,18835044.0,19035846.0,19207306.0,19678725.0,19696916.0,19829503.0,20148668.0,20296519.0,20549462.0,20737314.0,20953011.0,21249869.0,21430974.0],"unit":"ns","throughput":[],"typical":{"estimate":49.256735318144536,"lower_bound":49.22011113507039,"upper_bound":49.29835560150474,"unit":"ns"},"mean":{"estimate":49.282862788811336,"lower_bound":49.20784350154513,"upper_bound":49.38680237392777,"unit":"ns"},"median":{"estimate":49.22922744994962,"lower_bound":49.19735687495577,"upper_bound":49.26433295127211,"unit":"ns"},"median_abs_dev":{"estimate":0.16695742415674114,"lower_bound":0.12278692402811453,"upper_bound":0.22719509823756046,"unit":"ns"},"slope":{"estimate":49.256735318144536,"lower_bound":49.22011113507039,"upper_bound":49.29835560150474,"unit":"ns"},"change":{"mean":{"estimate":-0.02634575803672512,"lower_bound":-0.03054515963982274,"upper_bound":-0.023131809439647124,"unit":"%"},"median":{"estimate":-0.024638838089429682,"lower_bound":-0.025546183920354345,"upper_bound":-0.023502170750635765,"unit":"%"},"change":"Improved"}} +{"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":[4085,8170,12255,16340,20425,24510,28595,32680,36765,40850,44935,49020,53105,57190,61275,65360,69445,73530,77615,81700,85785,89870,93955,98040,102125,106210,110295,114380,118465,122550,126635,130720,134805,138890,142975,147060,151145,155230,159315,163400,167485,171570,175655,179740,183825,187910,191995,196080,200165,204250,208335,212420,216505,220590,224675,228760,232845,236930,241015,245100,249185,253270,257355,261440,265525,269610,273695,277780,281865,285950,290035,294120,298205,302290,306375,310460,314545,318630,322715,326800,330885,334970,339055,343140,347225,351310,355395,359480,363565,367650,371735,375820,379905,383990,388075,392160,396245,400330,404415,408500],"measured_values":[220707.0,432491.0,649970.0,872839.0,1082708.0,1297690.0,1544348.0,1735509.0,1945892.0,2164383.0,2375454.0,2605399.0,2813736.0,3039233.0,3252353.0,3567285.0,3739870.0,3889333.0,4130697.0,4373841.0,4593841.0,4756689.0,4970935.0,5222590.0,5417543.0,5617673.0,5882124.0,6238268.0,6330186.0,6483747.0,6712340.0,6965203.0,7191532.0,7349068.0,7583384.0,7844834.0,8021238.0,8229016.0,8441508.0,8697405.0,8916100.0,9077275.0,9293669.0,9550511.0,9784972.0,9963450.0,10145783.0,10432196.0,10665111.0,10848455.0,11032011.0,11356191.0,11468439.0,11767014.0,11900625.0,12223382.0,12434991.0,12617828.0,12771102.0,13059822.0,13435910.0,13445904.0,13621709.0,14013745.0,14098366.0,14276054.0,14528554.0,14877142.0,14946236.0,15146185.0,15376565.0,15959979.0,15848552.0,16015362.0,16237504.0,16650844.0,16656776.0,16900612.0,17086599.0,17461520.0,17569458.0,17786443.0,17970678.0,18334957.0,18418621.0,18702863.0,18839045.0,19109824.0,19313802.0,19517032.0,19840476.0,20082661.0,20151745.0,20422389.0,20625832.0,20905763.0,21073012.0,21249266.0,21375253.0,21659509.0],"unit":"ns","throughput":[],"typical":{"estimate":53.17453407249054,"lower_bound":53.11841207220508,"upper_bound":53.23804876904904,"unit":"ns"},"mean":{"estimate":53.202457742693134,"lower_bound":53.140981475694524,"upper_bound":53.27065635030355,"unit":"ns"},"median":{"estimate":53.097286089403596,"lower_bound":53.043350262428675,"upper_bound":53.15435886924388,"unit":"ns"},"median_abs_dev":{"estimate":0.20930336173964847,"lower_bound":0.14901444418901857,"upper_bound":0.2752859273572867,"unit":"ns"},"slope":{"estimate":53.17453407249054,"lower_bound":53.11841207220508,"upper_bound":53.23804876904904,"unit":"ns"},"change":{"mean":{"estimate":0.012774083397518288,"lower_bound":0.011393637259817692,"upper_bound":0.014236724140338974,"unit":"%"},"median":{"estimate":0.011724031953913139,"lower_bound":0.010304786006442322,"upper_bound":0.01294703362280103,"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":[3852,7704,11556,15408,19260,23112,26964,30816,34668,38520,42372,46224,50076,53928,57780,61632,65484,69336,73188,77040,80892,84744,88596,92448,96300,100152,104004,107856,111708,115560,119412,123264,127116,130968,134820,138672,142524,146376,150228,154080,157932,161784,165636,169488,173340,177192,181044,184896,188748,192600,196452,200304,204156,208008,211860,215712,219564,223416,227268,231120,234972,238824,242676,246528,250380,254232,258084,261936,265788,269640,273492,277344,281196,285048,288900,292752,296604,300456,304308,308160,312012,315864,319716,323568,327420,331272,335124,338976,342828,346680,350532,354384,358236,362088,365940,369792,373644,377496,381348,385200],"measured_values":[331202.0,632265.0,953158.0,1268322.0,1587840.0,1902930.0,2243682.0,2539898.0,2854632.0,3169690.0,3492239.0,3815794.0,4173537.0,4444222.0,4782289.0,5079842.0,5544142.0,5759408.0,6031789.0,6350360.0,6678560.0,6988564.0,7315779.0,7616398.0,7984047.0,8296752.0,8573267.0,8889264.0,9274749.0,9509524.0,10018456.0,10139533.0,10505588.0,10772688.0,11153107.0,11425244.0,11841413.0,12034484.0,12499517.0,12717599.0,13068003.0,13345055.0,13837644.0,13964356.0,14407972.0,14562411.0,14988630.0,15395695.0,15624370.0,15888383.0,16552868.0,16445622.0,17145207.0,17205334.0,17593178.0,17782057.0,18251427.0,18430884.0,18888154.0,19170031.0,19460734.0,19675698.0,20170885.0,20381113.0,20925899.0,21079412.0,21513132.0,21620216.0,22001999.0,22259654.0,22514789.0,22895845.0,23289873.0,23455805.0,23927943.0,24082675.0,24538505.0,24903853.0,25060166.0,25558739.0,25667695.0,26036853.0,26422644.0,26731255.0,27208148.0,27276458.0,27771378.0,27930801.0,28355802.0,28646174.0,29110307.0,29373006.0,29852002.0,29966185.0,30574849.0,30469016.0,30875162.0,31045800.0,31597819.0,31703237.0],"unit":"ns","throughput":[],"typical":{"estimate":82.7394164636857,"lower_bound":82.64515527173033,"upper_bound":82.83916747156049,"unit":"ns"},"mean":{"estimate":82.76210186819188,"lower_bound":82.65888392872395,"upper_bound":82.87860907876146,"unit":"ns"},"median":{"estimate":82.63129042023364,"lower_bound":82.49581050596197,"upper_bound":82.7593982678244,"unit":"ns"},"median_abs_dev":{"estimate":0.3640254405401421,"lower_bound":0.2873129318855783,"upper_bound":0.5005563221019476,"unit":"ns"},"slope":{"estimate":82.7394164636857,"lower_bound":82.64515527173033,"upper_bound":82.83916747156049,"unit":"ns"},"change":{"mean":{"estimate":0.018711806520584462,"lower_bound":0.016540621868881722,"upper_bound":0.020702551579634347,"unit":"%"},"median":{"estimate":0.01794179150865083,"lower_bound":0.01641711414564284,"upper_bound":0.019827691717664075,"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":[2557,5114,7671,10228,12785,15342,17899,20456,23013,25570,28127,30684,33241,35798,38355,40912,43469,46026,48583,51140,53697,56254,58811,61368,63925,66482,69039,71596,74153,76710,79267,81824,84381,86938,89495,92052,94609,97166,99723,102280,104837,107394,109951,112508,115065,117622,120179,122736,125293,127850,130407,132964,135521,138078,140635,143192,145749,148306,150863,153420,155977,158534,161091,163648,166205,168762,171319,173876,176433,178990,181547,184104,186661,189218,191775,194332,196889,199446,202003,204560,207117,209674,212231,214788,217345,219902,222459,225016,227573,230130,232687,235244,237801,240358,242915,245472,248029,250586,253143,255700],"measured_values":[568353.0,1052467.0,1573509.0,2094544.0,2620717.0,3166103.0,3680966.0,4212569.0,4731923.0,5267651.0,5777296.0,6313833.0,6833032.0,7361728.0,7879996.0,8400921.0,8942377.0,9451149.0,9977528.0,10481966.0,11055581.0,11565293.0,12135472.0,12645489.0,13217213.0,13695985.0,14217396.0,14706244.0,15238882.0,15744270.0,16341518.0,16774643.0,17354906.0,17948128.0,18411905.0,18964894.0,19544561.0,20025076.0,20503237.0,20984066.0,21529764.0,22115568.0,22617850.0,23118333.0,23682137.0,24170091.0,24750342.0,25204815.0,25792516.0,26390019.0,26964848.0,27362080.0,27869780.0,28366169.0,28937440.0,29437353.0,29969612.0,30570240.0,31066245.0,31492987.0,32103089.0,32643274.0,33170176.0,33653185.0,34384997.0,34858121.0,35286159.0,35853648.0,36322069.0,36796098.0,37415613.0,37984791.0,38353873.0,38946663.0,39475515.0,39932179.0,40661917.0,41024373.0,41627066.0,42089295.0,42620987.0,43496132.0,44669561.0,44135831.0,44723609.0,45321970.0,45896880.0,46285870.0,46943527.0,47389318.0,47851187.0,48371737.0,48943869.0,49422072.0,49889511.0,50507848.0,51054153.0,51506614.0,52106237.0,52615568.0],"unit":"ns","throughput":[],"typical":{"estimate":205.96128907459357,"lower_bound":205.79643827315093,"upper_bound":206.20086977099226,"unit":"ns"},"mean":{"estimate":206.0117981826703,"lower_bound":205.75835382584293,"upper_bound":206.4123141138238,"unit":"ns"},"median":{"estimate":205.77156548344797,"lower_bound":205.68674968298552,"upper_bound":205.84001295710328,"unit":"ns"},"median_abs_dev":{"estimate":0.3531011480392237,"lower_bound":0.247447024840406,"upper_bound":0.45810531962271733,"unit":"ns"},"slope":{"estimate":205.96128907459357,"lower_bound":205.79643827315093,"upper_bound":206.20086977099226,"unit":"ns"},"change":{"mean":{"estimate":-0.008717520746363783,"lower_bound":-0.012139641692561258,"upper_bound":-0.005758938200065794,"unit":"%"},"median":{"estimate":-0.0069680299628919196,"lower_bound":-0.0081623542289051,"upper_bound":-0.006420802776091504,"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":[3093,6186,9279,12372,15465,18558,21651,24744,27837,30930,34023,37116,40209,43302,46395,49488,52581,55674,58767,61860,64953,68046,71139,74232,77325,80418,83511,86604,89697,92790,95883,98976,102069,105162,108255,111348,114441,117534,120627,123720,126813,129906,132999,136092,139185,142278,145371,148464,151557,154650,157743,160836,163929,167022,170115,173208,176301,179394,182487,185580,188673,191766,194859,197952,201045,204138,207231,210324,213417,216510,219603,222696,225789,228882,231975,235068,238161,241254,244347,247440,250533,253626,256719,259812,262905,265998,269091,272184,275277,278370,281463,284556,287649,290742,293835,296928,300021,303114,306207,309300],"measured_values":[450795.0,847060.0,1281609.0,1705978.0,2131990.0,2560218.0,3016575.0,3386892.0,3873665.0,4299938.0,4730614.0,5087144.0,5582467.0,5971225.0,6435472.0,6769074.0,7306000.0,7670815.0,8193667.0,8521611.0,9092934.0,9411368.0,9877595.0,10222195.0,10695177.0,11053202.0,11556065.0,11877545.0,12376865.0,12845092.0,13335348.0,13570650.0,14097613.0,14436106.0,15031809.0,15236914.0,15985002.0,16199356.0,16724409.0,16975194.0,17513677.0,17943381.0,18331963.0,18655072.0,19386865.0,19566028.0,20125224.0,20358234.0,21077503.0,21315237.0,21903802.0,22096098.0,22692488.0,22997924.0,23838780.0,23771090.0,24461499.0,24790257.0,25357050.0,25439801.0,26226305.0,26428676.0,27039618.0,27263539.0,27949389.0,28099732.0,28800657.0,28971339.0,29640336.0,29760444.0,30468673.0,30503234.0,31372555.0,31524182.0,32083048.0,32248717.0,33009787.0,33263671.0,33833095.0,33959345.0,34811718.0,34968353.0,35709244.0,35632421.0,36367094.0,36623845.0,37321493.0,37332411.0,38137282.0,38532091.0,38996333.0,38984201.0,39944815.0,40092226.0,40731355.0,40717638.0,41774713.0,41664161.0,42521253.0,42454967.0],"unit":"ns","throughput":[],"typical":{"estimate":138.13356056624235,"lower_bound":137.94013572853976,"upper_bound":138.32623072100637,"unit":"ns"},"mean":{"estimate":138.2335631331108,"lower_bound":138.03639079229717,"upper_bound":138.4637238368657,"unit":"ns"},"median":{"estimate":138.1225924899543,"lower_bound":137.86862601241845,"upper_bound":138.43459525744345,"unit":"ns"},"median_abs_dev":{"estimate":1.0299551111632832,"lower_bound":0.7721096611732885,"upper_bound":1.181652425162176,"unit":"ns"},"slope":{"estimate":138.13356056624235,"lower_bound":137.94013572853976,"upper_bound":138.32623072100637,"unit":"ns"},"change":{"mean":{"estimate":0.014319196991884997,"lower_bound":0.011424272559649774,"upper_bound":0.01674087349095623,"unit":"%"},"median":{"estimate":0.015352789698719782,"lower_bound":0.01336544586282562,"upper_bound":0.017689257224425825,"unit":"%"},"change":"Regressed"}} +{"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":[3236,6472,9708,12944,16180,19416,22652,25888,29124,32360,35596,38832,42068,45304,48540,51776,55012,58248,61484,64720,67956,71192,74428,77664,80900,84136,87372,90608,93844,97080,100316,103552,106788,110024,113260,116496,119732,122968,126204,129440,132676,135912,139148,142384,145620,148856,152092,155328,158564,161800,165036,168272,171508,174744,177980,181216,184452,187688,190924,194160,197396,200632,203868,207104,210340,213576,216812,220048,223284,226520,229756,232992,236228,239464,242700,245936,249172,252408,255644,258880,262116,265352,268588,271824,275060,278296,281532,284768,288004,291240,294476,297712,300948,304184,307420,310656,313892,317128,320364,323600],"measured_values":[433068.0,858447.0,1294335.0,1724077.0,2171461.0,2588790.0,3006647.0,3440478.0,3895378.0,4296858.0,4736514.0,5167052.0,5588296.0,6043604.0,6446622.0,6909296.0,7417934.0,7731940.0,8180761.0,8586125.0,9051126.0,9467809.0,9878719.0,10329605.0,10765492.0,11237851.0,11610256.0,12033337.0,12466248.0,12894332.0,13389910.0,13765556.0,14218131.0,14895139.0,15071833.0,15506531.0,15960922.0,16337329.0,16772327.0,17223753.0,17640280.0,18072317.0,18526773.0,18899423.0,19315150.0,19795106.0,20262656.0,20699506.0,21160106.0,21515560.0,21953954.0,22395861.0,22814843.0,23237222.0,23826867.0,24179279.0,24548669.0,24952194.0,25367470.0,25827710.0,26317962.0,26685478.0,27115221.0,27581026.0,27965269.0,28451185.0,29082436.0,29266332.0,29735176.0,30122056.0,30574459.0,30943104.0,31480380.0,31825042.0,32231703.0,32706045.0,33102234.0,33541905.0,33949893.0,34442824.0,34858586.0,35233857.0,35693388.0,36201345.0,36571598.0,36980416.0,37500787.0,37937182.0,38386983.0,38723489.0,39150813.0,39690969.0,40047422.0,40418626.0,40955257.0,41265534.0,41772018.0,42142710.0,42616456.0,42977014.0],"unit":"ns","throughput":[],"typical":{"estimate":133.05149241766787,"lower_bound":132.99899355857937,"upper_bound":133.11126977661434,"unit":"ns"},"mean":{"estimate":133.11270362586805,"lower_bound":133.03925871838152,"upper_bound":133.19815404808924,"unit":"ns"},"median":{"estimate":133.01495191860388,"lower_bound":132.97746777326506,"upper_bound":133.07090261440516,"unit":"ns"},"median_abs_dev":{"estimate":0.23488446139296404,"lower_bound":0.16028415795011605,"upper_bound":0.2862846797769636,"unit":"ns"},"slope":{"estimate":133.05149241766787,"lower_bound":132.99899355857937,"upper_bound":133.11126977661434,"unit":"ns"},"change":{"mean":{"estimate":0.017667726460708133,"lower_bound":0.016341075210548756,"upper_bound":0.018892153107811227,"unit":"%"},"median":{"estimate":0.018320261773814517,"lower_bound":0.017420748495978966,"upper_bound":0.01897526363484814,"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":[29,58,87,116,145,174,203,232,261,290,319,348,377,406,435,464,493,522,551,580,609,638,667,696,725,754,783,812,841,870,899,928,957,986,1015,1044,1073,1102,1131,1160,1189,1218,1247,1276,1305,1334,1363,1392,1421,1450,1479,1508,1537,1566,1595,1624,1653,1682,1711,1740,1769,1798,1827,1856,1885,1914,1943,1972,2001,2030,2059,2088,2117,2146,2175,2204,2233,2262,2291,2320,2349,2378,2407,2436,2465,2494,2523,2552,2581,2610,2639,2668,2697,2726,2755,2784,2813,2842,2871,2900],"measured_values":[1036332.0,1980274.0,2971810.0,3961731.0,4981024.0,5945857.0,6932352.0,7952732.0,8917148.0,9906053.0,10895284.0,11953923.0,12902383.0,13898350.0,14855770.0,15848912.0,16871356.0,17832279.0,18847719.0,19812206.0,20856871.0,21822844.0,22782488.0,23802655.0,24826798.0,25793831.0,26862418.0,27794275.0,28812650.0,29757422.0,30709903.0,31742588.0,32753879.0,33749064.0,34703625.0,35720586.0,36682193.0,37683007.0,38691680.0,39824996.0,40674319.0,41675860.0,42652748.0,43620265.0,44706501.0,45679976.0,46617135.0,47581842.0,48568232.0,49601782.0,50641020.0,52283004.0,52648203.0,53595684.0,54510564.0,55529996.0,56523452.0,57583908.0,58600979.0,59764629.0,60597221.0,61553762.0,62496413.0,63528763.0,64450456.0,65481316.0,66429215.0,67637838.0,68884572.0,69476993.0,70450488.0,71468314.0,72360998.0,73441336.0,74555291.0,75409113.0,76395258.0,77501917.0,78431676.0,79567633.0,80388395.0,81719044.0,82355925.0,83294383.0,84268818.0,85349922.0,86442279.0,87292056.0,88275561.0,89329353.0,90226584.0,91249089.0,92298458.0,93340860.0,94222624.0,95216804.0,96196843.0,97239735.0,98124062.0,99236274.0],"unit":"ns","throughput":[],"typical":{"estimate":34228.805285589806,"lower_bound":34216.95457168166,"upper_bound":34243.02009375669,"unit":"ns"},"mean":{"estimate":34239.44496719613,"lower_bound":34214.87849912419,"upper_bound":34277.03901527376,"unit":"ns"},"median":{"estimate":34213.299635255855,"lower_bound":34205.35109717868,"upper_bound":34222.39037888463,"unit":"ns"},"median_abs_dev":{"estimate":33.07366493006576,"lower_bound":24.974974112004332,"upper_bound":45.9104870622201,"unit":"ns"},"slope":{"estimate":34228.805285589806,"lower_bound":34216.95457168166,"upper_bound":34243.02009375669,"unit":"ns"},"change":{"mean":{"estimate":-0.0022105932668320394,"lower_bound":-0.004162403834908415,"upper_bound":-0.0004967232917150411,"unit":"%"},"median":{"estimate":-0.0008990215503993371,"lower_bound":-0.0013405208664084567,"upper_bound":-0.0005474372102348313,"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":[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":[1432397.0,2801837.0,4247712.0,5653025.0,7067726.0,8481174.0,9923196.0,11426134.0,12729539.0,14188147.0,15548201.0,16960268.0,18432727.0,19817519.0,21200597.0,22644172.0,24082855.0,25469966.0,26885741.0,28298020.0,29713430.0,31125532.0,32577553.0,33661145.0,35307478.0,36776539.0,38249349.0,39659507.0,41044636.0,42431284.0,44020696.0,45290028.0,46728083.0,48113633.0,49500937.0,50967008.0,52380642.0,53747793.0,55153264.0,56561031.0,58023849.0,59391658.0,60835043.0,62317427.0,63751381.0,65077187.0,66594212.0,67823061.0,69415120.0,71364190.0,72173599.0,73557836.0,74855719.0,76324633.0,77991821.0,79294481.0,80649719.0,82125567.0,83505749.0,84919984.0,86421376.0,87749182.0,89143768.0,90545575.0,91989133.0,93439323.0,94813477.0,96201787.0,97620650.0,99109083.0,100523839.0,102198205.0,103265991.0,104706621.0,106040087.0,107742277.0,108779899.0,110358191.0,111779606.0,113200536.0,114769088.0,115852925.0,117435276.0,118893915.0,120342843.0,121333223.0,123113425.0,124333150.0,126070814.0,127393127.0,128626440.0,130237194.0,131624319.0,133043782.0,134464827.0,135931244.0,137581742.0,138696929.0,139924450.0,141526847.0],"unit":"ns","throughput":[],"typical":{"estimate":471746.74533175706,"lower_bound":471602.32547978393,"upper_bound":471894.5970439373,"unit":"ns"},"mean":{"estimate":471786.8276891043,"lower_bound":471564.7701704291,"upper_bound":472017.45916947344,"unit":"ns"},"median":{"estimate":471730.73951857165,"lower_bound":471643.9071729958,"upper_bound":471780.65897136176,"unit":"ns"},"median_abs_dev":{"estimate":381.13851374159447,"lower_bound":265.7810015605194,"upper_bound":573.3683092593359,"unit":"ns"},"slope":{"estimate":471746.74533175706,"lower_bound":471602.32547978393,"upper_bound":471894.5970439373,"unit":"ns"},"change":{"mean":{"estimate":-0.0026743576945944536,"lower_bound":-0.005198842322133752,"upper_bound":-0.001046520576625743,"unit":"%"},"median":{"estimate":-0.0008935448900663223,"lower_bound":-0.0012861002418119716,"upper_bound":-0.0006971564240799699,"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":[1530,3060,4590,6120,7650,9180,10710,12240,13770,15300,16830,18360,19890,21420,22950,24480,26010,27540,29070,30600,32130,33660,35190,36720,38250,39780,41310,42840,44370,45900,47430,48960,50490,52020,53550,55080,56610,58140,59670,61200,62730,64260,65790,67320,68850,70380,71910,73440,74970,76500,78030,79560,81090,82620,84150,85680,87210,88740,90270,91800,93330,94860,96390,97920,99450,100980,102510,104040,105570,107100,108630,110160,111690,113220,114750,116280,117810,119340,120870,122400,123930,125460,126990,128520,130050,131580,133110,134640,136170,137700,139230,140760,142290,143820,145350,146880,148410,149940,151470,153000],"measured_values":[769125.0,1457026.0,2177388.0,2917577.0,3624585.0,4352460.0,5103699.0,5802716.0,6474032.0,7250254.0,7957327.0,8715397.0,9364023.0,10140948.0,10803464.0,11633399.0,12219730.0,13014380.0,13720515.0,14487587.0,15215697.0,15954295.0,16655218.0,17382033.0,18066486.0,18865589.0,19559258.0,20315998.0,21146465.0,22218141.0,22437341.0,23205246.0,23870868.0,24644128.0,25400293.0,26129000.0,26769327.0,27557056.0,28264455.0,29066290.0,29745493.0,30625300.0,31087339.0,31917335.0,32490836.0,33368624.0,33966798.0,34781182.0,35432038.0,36296436.0,36828320.0,37657787.0,38335630.0,39377684.0,39744406.0,40632560.0,41201638.0,42124196.0,42549602.0,43540190.0,43967924.0,45136654.0,45510126.0,46345128.0,46917027.0,47865964.0,48407211.0,49321941.0,50013869.0,50795336.0,51541818.0,52166454.0,52703176.0,53658097.0,54290272.0,55091927.0,55714152.0,56568225.0,57087872.0,58040810.0,58413193.0,59489617.0,59899786.0,60913017.0,61300888.0,62367750.0,62873998.0,63718508.0,64250254.0,65252168.0,65856944.0,66721410.0,66983025.0,68162875.0,68908019.0,69604822.0,69958566.0,71110464.0,71704241.0,72519875.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":473.2869138736525,"lower_bound":472.9763455952825,"upper_bound":473.58954640827886,"unit":"ns"},"mean":{"estimate":473.82481581442187,"lower_bound":473.2813128157879,"upper_bound":474.5823603073063,"unit":"ns"},"median":{"estimate":473.74705074413964,"lower_bound":473.3669117647059,"upper_bound":473.96753218831395,"unit":"ns"},"median_abs_dev":{"estimate":0.9788851825650917,"lower_bound":0.6839346155468825,"upper_bound":1.4478204762568687,"unit":"ns"},"slope":{"estimate":473.2869138736525,"lower_bound":472.9763455952825,"upper_bound":473.58954640827886,"unit":"ns"},"change":{"mean":{"estimate":0.0012745582578481685,"lower_bound":-0.0007576602803478881,"upper_bound":0.0033065798159537634,"unit":"%"},"median":{"estimate":0.002236607234678445,"lower_bound":0.0013707216722582682,"upper_bound":0.0029685552548461835,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"k256/10","report_directory":"/root/fuel-core/target/criterion/reports/k256/10","iteration_count":[1532,3064,4596,6128,7660,9192,10724,12256,13788,15320,16852,18384,19916,21448,22980,24512,26044,27576,29108,30640,32172,33704,35236,36768,38300,39832,41364,42896,44428,45960,47492,49024,50556,52088,53620,55152,56684,58216,59748,61280,62812,64344,65876,67408,68940,70472,72004,73536,75068,76600,78132,79664,81196,82728,84260,85792,87324,88856,90388,91920,93452,94984,96516,98048,99580,101112,102644,104176,105708,107240,108772,110304,111836,113368,114900,116432,117964,119496,121028,122560,124092,125624,127156,128688,130220,131752,133284,134816,136348,137880,139412,140944,142476,144008,145540,147072,148604,150136,151668,153200],"measured_values":[750540.0,1449164.0,2165280.0,2916103.0,3634062.0,4393773.0,5131730.0,5789443.0,6509120.0,7256847.0,7931183.0,8689293.0,9374546.0,10203328.0,10804350.0,11601766.0,12266643.0,13061731.0,13682712.0,14503262.0,15133388.0,15920568.0,16623094.0,17408213.0,18055170.0,18881443.0,19487112.0,20311447.0,20934649.0,21782867.0,22343977.0,23226971.0,23892591.0,24646803.0,25241028.0,26136558.0,26673388.0,27588254.0,28099405.0,28979855.0,29651710.0,30550350.0,31207750.0,31892299.0,32417545.0,33489802.0,33914051.0,34856364.0,35321965.0,36275511.0,36922044.0,37700668.0,38225873.0,39212176.0,39659044.0,40729411.0,41118261.0,42280494.0,42513390.0,43561189.0,44087205.0,45028762.0,45443978.0,46403904.0,46847417.0,47867413.0,48290679.0,49327425.0,49777896.0,50725435.0,51227656.0,52271803.0,52688989.0,53719070.0,54142498.0,55308267.0,55612786.0,56596203.0,57085896.0,58040276.0,58655157.0,59488382.0,59937171.0,60949804.0,61318113.0,62324928.0,62716433.0,63843614.0,64214892.0,65273052.0,65610370.0,66724110.0,67056648.0,68110769.0,68700072.0,69747820.0,70030939.0,71113495.0,71464463.0,72620747.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":472.4606559304658,"lower_bound":472.1002353896352,"upper_bound":472.8205875175417,"unit":"ns"},"mean":{"estimate":472.76729980974136,"lower_bound":472.33311271883525,"upper_bound":473.2858630740888,"unit":"ns"},"median":{"estimate":472.936806462141,"lower_bound":471.9176424333207,"upper_bound":473.35721551349,"unit":"ns"},"median_abs_dev":{"estimate":1.8053610904610289,"lower_bound":1.1703586501560266,"upper_bound":2.4533447878269206,"unit":"ns"},"slope":{"estimate":472.4606559304658,"lower_bound":472.1002353896352,"upper_bound":472.8205875175417,"unit":"ns"},"change":{"mean":{"estimate":0.0011582771473617193,"lower_bound":-0.0017583368969418948,"upper_bound":0.0034366241870918564,"unit":"%"},"median":{"estimate":0.004477568372230456,"lower_bound":0.0021111872433079437,"upper_bound":0.0056674392767490644,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"k256/100","report_directory":"/root/fuel-core/target/criterion/reports/k256/100","iteration_count":[1532,3064,4596,6128,7660,9192,10724,12256,13788,15320,16852,18384,19916,21448,22980,24512,26044,27576,29108,30640,32172,33704,35236,36768,38300,39832,41364,42896,44428,45960,47492,49024,50556,52088,53620,55152,56684,58216,59748,61280,62812,64344,65876,67408,68940,70472,72004,73536,75068,76600,78132,79664,81196,82728,84260,85792,87324,88856,90388,91920,93452,94984,96516,98048,99580,101112,102644,104176,105708,107240,108772,110304,111836,113368,114900,116432,117964,119496,121028,122560,124092,125624,127156,128688,130220,131752,133284,134816,136348,137880,139412,140944,142476,144008,145540,147072,148604,150136,151668,153200],"measured_values":[757359.0,1455743.0,2327559.0,2983119.0,3605329.0,4534007.0,5106458.0,5833338.0,6471308.0,7244142.0,7951132.0,8688902.0,9352003.0,10202673.0,10914531.0,11602196.0,12288662.0,13057314.0,13781897.0,14545967.0,15186957.0,15972516.0,16586427.0,17449723.0,18104262.0,18870840.0,19439475.0,20334146.0,20936846.0,21783864.0,22341105.0,23275357.0,23901121.0,24665626.0,25238051.0,26157237.0,26682637.0,27630525.0,28151718.0,29099767.0,29596687.0,30554489.0,31023472.0,31956425.0,32469676.0,33424836.0,33929713.0,34840949.0,35448717.0,36444959.0,36929890.0,37784368.0,38295996.0,39243558.0,39829683.0,40886200.0,41152524.0,42062359.0,42571104.0,43591256.0,43991716.0,45019706.0,45402058.0,46529407.0,46916074.0,48136715.0,48423490.0,49334309.0,49754192.0,50803100.0,51198378.0,52268024.0,52674814.0,53689587.0,54052202.0,56034994.0,55541317.0,56629452.0,56949477.0,58403078.0,58524890.0,59538570.0,59988999.0,61032287.0,61368318.0,62458249.0,62833272.0,63967338.0,64246057.0,65341793.0,65550042.0,66942451.0,67138312.0,68126081.0,68537503.0,69674407.0,70102487.0,71178682.0,71475242.0,72657993.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":472.870679663364,"lower_bound":472.37409880381585,"upper_bound":473.4070178200362,"unit":"ns"},"mean":{"estimate":473.8146071379279,"lower_bound":472.9417729193942,"upper_bound":474.88524036695554,"unit":"ns"},"median":{"estimate":473.42561560277306,"lower_bound":472.2214125859221,"upper_bound":473.8542935886278,"unit":"ns"},"median_abs_dev":{"estimate":2.413038051614154,"lower_bound":1.6196280662967382,"upper_bound":3.0611522550081576,"unit":"ns"},"slope":{"estimate":472.870679663364,"lower_bound":472.37409880381585,"upper_bound":473.4070178200362,"unit":"ns"},"change":{"mean":{"estimate":0.010462578495987973,"lower_bound":0.007817887336516621,"upper_bound":0.013280091921310255,"unit":"%"},"median":{"estimate":0.010718771964232987,"lower_bound":0.007993418556471399,"upper_bound":0.012741780689241367,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"k256/1000","report_directory":"/root/fuel-core/target/criterion/reports/k256/1000","iteration_count":[279,558,837,1116,1395,1674,1953,2232,2511,2790,3069,3348,3627,3906,4185,4464,4743,5022,5301,5580,5859,6138,6417,6696,6975,7254,7533,7812,8091,8370,8649,8928,9207,9486,9765,10044,10323,10602,10881,11160,11439,11718,11997,12276,12555,12834,13113,13392,13671,13950,14229,14508,14787,15066,15345,15624,15903,16182,16461,16740,17019,17298,17577,17856,18135,18414,18693,18972,19251,19530,19809,20088,20367,20646,20925,21204,21483,21762,22041,22320,22599,22878,23157,23436,23715,23994,24273,24552,24831,25110,25389,25668,25947,26226,26505,26784,27063,27342,27621,27900],"measured_values":[966903.0,1872725.0,2801534.0,3738937.0,4688564.0,5661130.0,6597675.0,7502233.0,8409080.0,9376054.0,10306162.0,11253738.0,12176116.0,13089778.0,14018192.0,14977893.0,15890374.0,16853183.0,17775605.0,18716400.0,19632854.0,20592735.0,21538970.0,22426925.0,23418402.0,24336228.0,25265887.0,26232843.0,27136535.0,28073635.0,29024508.0,29955203.0,30863268.0,31776452.0,32754429.0,33952340.0,34762393.0,35626886.0,36457278.0,37444445.0,38345608.0,39289128.0,40248305.0,41130581.0,42174409.0,43188325.0,44011643.0,45021223.0,45842113.0,46903511.0,47755035.0,48680128.0,49740849.0,51001934.0,51986782.0,52728271.0,53330577.0,54337070.0,55194978.0,56132435.0,57067932.0,58271759.0,58951818.0,59973426.0,60871913.0,61786321.0,62666771.0,63609770.0,64567126.0,65527768.0,66395931.0,67342220.0,68275229.0,69298988.0,70303676.0,71064845.0,72075687.0,73154895.0,74236514.0,74846425.0,75738196.0,76885916.0,77697491.0,78579230.0,79510031.0,80480216.0,81414379.0,82275999.0,83299775.0,84340970.0,85206911.0,86041434.0,86983996.0,88081165.0,88864751.0,89803736.0,90776135.0,91733402.0,92564818.0,93580318.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":3356.0305289903085,"lower_bound":3354.8478797094717,"upper_bound":3357.4336434133593,"unit":"ns"},"mean":{"estimate":3358.003141039327,"lower_bound":3355.8357449763175,"upper_bound":3360.919936098896,"unit":"ns"},"median":{"estimate":3354.914298067524,"lower_bound":3354.07825567503,"upper_bound":3355.6106797584425,"unit":"ns"},"median_abs_dev":{"estimate":3.7927694213147194,"lower_bound":2.6744262283562015,"upper_bound":5.041395853458859,"unit":"ns"},"slope":{"estimate":3356.0305289903085,"lower_bound":3354.8478797094717,"upper_bound":3357.4336434133593,"unit":"ns"},"change":{"mean":{"estimate":0.0010185870728363078,"lower_bound":-0.00034115301976375115,"upper_bound":0.002256387608494825,"unit":"%"},"median":{"estimate":0.001146818655175963,"lower_bound":0.0006928569055602019,"upper_bound":0.0014577710393395282,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"k256/10000","report_directory":"/root/fuel-core/target/criterion/reports/k256/10000","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":[1051285.0,1985108.0,2975521.0,3966577.0,4957438.0,5948299.0,6941290.0,7959989.0,8980282.0,9999383.0,11058249.0,11983617.0,12917827.0,13966579.0,14957979.0,15931904.0,16901930.0,17849739.0,18870835.0,19832145.0,20853317.0,21814510.0,22834249.0,23826795.0,24789451.0,25858234.0,26801968.0,27821237.0,28825911.0,29772678.0,30771627.0,31757702.0,32767258.0,33740660.0,34762904.0,35755447.0,36713640.0,37734534.0,38942811.0,39846236.0,40684989.0,41674651.0,42696413.0,43701246.0,44650433.0,45640007.0,46763997.0,47704389.0,48711732.0,49634958.0,50607990.0,51670731.0,52633929.0,53609360.0,54576791.0,55621063.0,57413005.0,57605884.0,58756401.0,59649011.0,60506148.0,61998728.0,62541410.0,63543981.0,64575370.0,65758646.0,66520132.0,67512305.0,68520561.0,69510700.0,70464289.0,71506297.0,72531737.0,73573492.0,74468581.0,75445567.0,76437683.0,77440924.0,78431393.0,79545037.0,80382357.0,81389506.0,82454688.0,83349118.0,84470897.0,85456508.0,86384869.0,87358490.0,88338706.0,89403464.0,90352841.0,91295427.0,92500424.0,93389761.0,94272690.0,95363531.0,96461224.0,97408778.0,98296042.0,99261844.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":30104.411093049603,"lower_bound":30094.572720952794,"upper_bound":30116.97866251611,"unit":"ns"},"mean":{"estimate":30130.64762537125,"lower_bound":30102.403055707222,"upper_bound":30173.778051177313,"unit":"ns"},"median":{"estimate":30090.260789715336,"lower_bound":30085.375788065663,"upper_bound":30097.464995189996,"unit":"ns"},"median_abs_dev":{"estimate":28.618881507721905,"lower_bound":20.695074661666073,"upper_bound":38.028119240442,"unit":"ns"},"slope":{"estimate":30104.411093049603,"lower_bound":30094.572720952794,"upper_bound":30116.97866251611,"unit":"ns"},"change":{"mean":{"estimate":-0.0006125162359015279,"lower_bound":-0.0021779553943018694,"upper_bound":0.0010869438210617734,"unit":"%"},"median":{"estimate":-0.0004762877789351583,"lower_bound":-0.0009136129892642897,"upper_bound":-0.000027540677571824546,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"k256/19753","report_directory":"/root/fuel-core/target/criterion/reports/k256/19753","iteration_count":[17,34,51,68,85,102,119,136,153,170,187,204,221,238,255,272,289,306,323,340,357,374,391,408,425,442,459,476,493,510,527,544,561,578,595,612,629,646,663,680,697,714,731,748,765,782,799,816,833,850,867,884,901,918,935,952,969,986,1003,1020,1037,1054,1071,1088,1105,1122,1139,1156,1173,1190,1207,1224,1241,1258,1275,1292,1309,1326,1343,1360,1377,1394,1411,1428,1445,1462,1479,1496,1513,1530,1547,1564,1581,1598,1615,1632,1649,1666,1683,1700],"measured_values":[1138417.0,2013372.0,3015889.0,4022896.0,5030343.0,6061772.0,7055607.0,8046395.0,9051715.0,10115724.0,11064058.0,12069091.0,13102553.0,14082340.0,15114667.0,16120421.0,17100096.0,18131150.0,19109809.0,20142335.0,21173811.0,22158665.0,23160008.0,24164055.0,25174142.0,26178086.0,27291139.0,28218632.0,29184722.0,30172851.0,31193904.0,32268869.0,33216564.0,34227768.0,35375730.0,36278537.0,37361595.0,38253660.0,39252406.0,40288872.0,41308169.0,42303002.0,43303996.0,44436778.0,45317639.0,46306226.0,47536142.0,48331937.0,49440220.0,50332367.0,51446553.0,52394211.0,53388654.0,54364176.0,55704286.0,56894932.0,57508483.0,58421149.0,59431840.0,60407318.0,61622322.0,62483622.0,63511401.0,64475109.0,65437388.0,66471947.0,67531014.0,68484549.0,69553995.0,70506540.0,71526967.0,72684714.0,73501591.0,74496613.0,75523011.0,76570745.0,77557649.0,78634135.0,79709856.0,80524278.0,81623468.0,82793704.0,83604114.0,84926446.0,85615068.0,86629522.0,87568583.0,88747844.0,89606874.0,90610714.0,91661983.0,92634053.0,93671051.0,95297545.0,95840247.0,96818322.0,97708653.0,98660382.0,99827669.0,100733203.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":59292.24739349264,"lower_bound":59269.2425469572,"upper_bound":59320.1552697559,"unit":"ns"},"mean":{"estimate":59355.41044795514,"lower_bound":59263.6204628743,"upper_bound":59521.9552504083,"unit":"ns"},"median":{"estimate":59251.050826962084,"lower_bound":59242.689446366785,"upper_bound":59262.702148650416,"unit":"ns"},"median_abs_dev":{"estimate":52.47435866256332,"lower_bound":40.35029629882353,"upper_bound":71.75467610166196,"unit":"ns"},"slope":{"estimate":59292.24739349264,"lower_bound":59269.2425469572,"upper_bound":59320.1552697559,"unit":"ns"},"change":{"mean":{"estimate":0.0012151310427639395,"lower_bound":-0.0007991290750494649,"upper_bound":0.004684084763818222,"unit":"%"},"median":{"estimate":0.00032216215370040047,"lower_bound":0.00008927294944793829,"upper_bound":0.0005576033965412225,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"k256/29629","report_directory":"/root/fuel-core/target/criterion/reports/k256/29629","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":[1113529.0,2118442.0,3180017.0,4239340.0,5327653.0,6384130.0,7474558.0,8505247.0,9535727.0,10637703.0,11684506.0,12746439.0,13774251.0,14863239.0,15894325.0,16981932.0,18012296.0,19102366.0,20132448.0,21219992.0,22311209.0,23314410.0,24456791.0,25456760.0,26491267.0,27606600.0,28694686.0,29753532.0,30755153.0,31846916.0,32900673.0,34344650.0,34994700.0,36106960.0,37112416.0,38172933.0,39231477.0,40290833.0,41352099.0,42436319.0,43553864.0,44556904.0,45586300.0,46745820.0,47795005.0,48826091.0,49825927.0,50914334.0,52001850.0,53036025.0,54208483.0,55155255.0,56242158.0,57299585.0,58303155.0,59389241.0,60509315.0,61600228.0,62568208.0,63658594.0,64685045.0,65788597.0,66838658.0,67868325.0,68990563.0,70047435.0,71166857.0,72223291.0,73289677.0,74253654.0,75494058.0,76373689.0,77537907.0,78519974.0,79561017.0,80747663.0,81688721.0,82774272.0,83886133.0,84887580.0,85984500.0,87045779.0,88050905.0,89127492.0,90138273.0,91190815.0,92318259.0,93341153.0,94428949.0,95605274.0,96545868.0,97553717.0,98715298.0,99892717.0,100820365.0,101841070.0,102944676.0,104027937.0,105172610.0,106193039.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":88445.0013351559,"lower_bound":88429.11608124834,"upper_bound":88461.59487325522,"unit":"ns"},"mean":{"estimate":88497.24827781347,"lower_bound":88433.46516055232,"upper_bound":88601.20432823758,"unit":"ns"},"median":{"estimate":88426.4923757879,"lower_bound":88410.48247481685,"upper_bound":88447.5625,"unit":"ns"},"median_abs_dev":{"estimate":88.90726039501857,"lower_bound":61.579889789271064,"upper_bound":110.96436953620972,"unit":"ns"},"slope":{"estimate":88445.0013351559,"lower_bound":88429.11608124834,"upper_bound":88461.59487325522,"unit":"ns"},"change":{"mean":{"estimate":-0.00012482948691328044,"lower_bound":-0.0014514316411040644,"upper_bound":0.0011703617547992144,"unit":"%"},"median":{"estimate":-0.00006674999915412538,"lower_bound":-0.00037127134843362164,"upper_bound":0.0002531577804452123,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"k256/44444","report_directory":"/root/fuel-core/target/criterion/reports/k256/44444","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":[1088158.0,2145174.0,3177153.0,4263418.0,5293232.0,6353974.0,7413611.0,8471140.0,9557129.0,10589562.0,11647767.0,12842283.0,13768317.0,14823807.0,15911173.0,16944079.0,18028423.0,19088445.0,20146400.0,21208126.0,22333802.0,23372103.0,24354012.0,25455898.0,26504028.0,27587517.0,28622324.0,29737166.0,30765347.0,31988107.0,32854424.0,33915443.0,35001061.0,36031719.0,37089539.0,38149647.0,39206574.0,40340369.0,41381306.0,42382231.0,43447711.0,44533141.0,45645713.0,46649379.0,47782396.0,48766657.0,49857631.0,50884401.0,51944902.0,52971193.0,54173517.0,55822570.0,56296017.0,57286955.0,58434556.0,59406424.0,60617065.0,61726735.0,62534537.0,63622380.0,64702854.0,65866492.0,66764756.0,67971904.0,68995248.0,69971379.0,71170752.0,72173392.0,73232783.0,74373905.0,75230188.0,76357400.0,77444679.0,78442634.0,79541012.0,80655660.0,81616641.0,82827632.0,83708682.0,84991850.0,85840540.0,86947124.0,88024840.0,89065390.0,90171306.0,91182725.0,92370751.0,93266009.0,94468925.0,95398046.0,96609433.0,97725366.0,98542865.0,99650926.0,100734090.0,101766877.0,102943995.0,103876414.0,104943031.0,106110303.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":132613.16098344908,"lower_bound":132577.2361048042,"upper_bound":132656.00863712846,"unit":"ns"},"mean":{"estimate":132667.67560180312,"lower_bound":132591.20803611993,"upper_bound":132765.87750158823,"unit":"ns"},"median":{"estimate":132560.28982843139,"lower_bound":132526.64488636365,"upper_bound":132603.625,"unit":"ns"},"median_abs_dev":{"estimate":144.855083889952,"lower_bound":103.25209805516668,"upper_bound":190.1162580648787,"unit":"ns"},"slope":{"estimate":132613.16098344908,"lower_bound":132577.2361048042,"upper_bound":132656.00863712846,"unit":"ns"},"change":{"mean":{"estimate":0.0002664771166380753,"lower_bound":-0.0009539952853421517,"upper_bound":0.0012016004334910065,"unit":"%"},"median":{"estimate":0.00020716942030407637,"lower_bound":-0.00025918951293127276,"upper_bound":0.0005982693595196764,"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":[1010652.0,1986017.0,3008908.0,3973531.0,4966772.0,5961696.0,7020514.0,7950204.0,8968099.0,9933877.0,10928579.0,11950194.0,12914115.0,13909336.0,14930325.0,15909137.0,16902137.0,17880613.0,18902394.0,19872002.0,20891713.0,21905604.0,22906190.0,23900132.0,24947306.0,25843372.0,26948598.0,27870327.0,28836933.0,29828874.0,30853919.0,31787888.0,33040785.0,33804833.0,34797741.0,35789659.0,36812015.0,37824586.0,38816493.0,39792162.0,40788028.0,41750121.0,42741557.0,43759930.0,44804065.0,45723988.0,46751421.0,47753215.0,48719270.0,49725426.0,50816962.0,51793155.0,52741319.0,53819917.0,54723788.0,55712487.0,56654877.0,57889607.0,58642810.0,59706313.0,60665676.0,61706888.0,62749843.0,63633636.0,64658042.0,65951963.0,66765952.0,68127095.0,68727590.0,69589649.0,70648769.0,71618329.0,72829274.0,73577981.0,74590610.0,75606061.0,76571191.0,77595219.0,78567509.0,79572677.0,80748491.0,81707377.0,82554345.0,83586044.0,84593150.0,85784506.0,86537070.0,87565401.0,88634257.0,89490185.0,90510678.0,91487439.0,92666721.0,93484182.0,94436228.0,95437450.0,96500977.0,97439818.0,98493857.0,99455174.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":199043.03711600412,"lower_bound":198983.86067964145,"upper_bound":199112.57532642482,"unit":"ns"},"mean":{"estimate":199080.0163855573,"lower_bound":198994.25751334924,"upper_bound":199181.35700538504,"unit":"ns"},"median":{"estimate":198961.45500000002,"lower_bound":198908.77272727274,"upper_bound":198986.5408080808,"unit":"ns"},"median_abs_dev":{"estimate":172.3775514660097,"lower_bound":130.54615911367205,"upper_bound":255.69542107450945,"unit":"ns"},"slope":{"estimate":199043.03711600412,"lower_bound":198983.86067964145,"upper_bound":199112.57532642482,"unit":"ns"},"change":{"mean":{"estimate":-0.000938729322765397,"lower_bound":-0.002408933063446683,"upper_bound":0.00025223964074439355,"unit":"%"},"median":{"estimate":0.00002740016146840496,"lower_bound":-0.0003283034804371088,"upper_bound":0.0002607659471141055,"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":[1234901.0,2383646.0,3572845.0,4763474.0,5953095.0,7201880.0,8335914.0,9529630.0,10716103.0,11937503.0,13100482.0,14290665.0,15510149.0,17029527.0,18049481.0,19323534.0,20637621.0,21847467.0,22978307.0,24055908.0,25197582.0,26285050.0,27425426.0,28669913.0,29856997.0,31019622.0,32208503.0,33556610.0,34855004.0,35926261.0,36974046.0,38237252.0,39327581.0,40603375.0,41708512.0,43390253.0,44509472.0,45427309.0,46515241.0,47707336.0,48909523.0,50084377.0,51405526.0,52428950.0,53796412.0,54870380.0,56015726.0,57222108.0,58447140.0,59659714.0,60764298.0,62047182.0,63619229.0,64433025.0,65588052.0,66809679.0,68154099.0,69251614.0,70409530.0,71570019.0,72792256.0,73914349.0,75115228.0,76392366.0,77463999.0,78775853.0,79847025.0,81090074.0,82288539.0,83423463.0,84725378.0,85963896.0,87167910.0,88243519.0,89382662.0,90652455.0,91780891.0,93320974.0,94219036.0,95390899.0,96547462.0,97890169.0,99085037.0,100428391.0,101446933.0,102762199.0,104000533.0,104938241.0,106209463.0,107291213.0,108693438.0,109921622.0,110961264.0,112086302.0,113268849.0,114465137.0,115660845.0,116884828.0,118351554.0,119255165.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":298380.26361977245,"lower_bound":298291.8306262555,"upper_bound":298479.6687044883,"unit":"ns"},"mean":{"estimate":298798.1219229534,"lower_bound":298511.7105096329,"upper_bound":299132.03017882386,"unit":"ns"},"median":{"estimate":298268.8461538461,"lower_bound":298175.5816326531,"upper_bound":298373.33235294116,"unit":"ns"},"median_abs_dev":{"estimate":421.2319412416549,"lower_bound":278.0589931203241,"upper_bound":563.2985884092614,"unit":"ns"},"slope":{"estimate":298380.26361977245,"lower_bound":298291.8306262555,"upper_bound":298479.6687044883,"unit":"ns"},"change":{"mean":{"estimate":0.0008419309672877962,"lower_bound":-0.0007097087158925374,"upper_bound":0.0022773341135567614,"unit":"%"},"median":{"estimate":0.00028068857295782124,"lower_bound":-0.00018638903643442006,"upper_bound":0.0006689386570148947,"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":[2093,4186,6279,8372,10465,12558,14651,16744,18837,20930,23023,25116,27209,29302,31395,33488,35581,37674,39767,41860,43953,46046,48139,50232,52325,54418,56511,58604,60697,62790,64883,66976,69069,71162,73255,75348,77441,79534,81627,83720,85813,87906,89999,92092,94185,96278,98371,100464,102557,104650,106743,108836,110929,113022,115115,117208,119301,121394,123487,125580,127673,129766,131859,133952,136045,138138,140231,142324,144417,146510,148603,150696,152789,154882,156975,159068,161161,163254,165347,167440,169533,171626,173719,175812,177905,179998,182091,184184,186277,188370,190463,192556,194649,196742,198835,200928,203021,205114,207207,209300],"measured_values":[652100.0,1276744.0,1907394.0,2555808.0,3172463.0,3821135.0,4432527.0,5105622.0,5728004.0,6388727.0,6968608.0,7697537.0,8251393.0,8915580.0,9541946.0,10214762.0,10764841.0,11579250.0,12065301.0,12765845.0,13331322.0,14047017.0,14585657.0,15402530.0,15827637.0,16564780.0,17149640.0,17874592.0,18348104.0,19117531.0,19689372.0,20458742.0,21070746.0,21866187.0,22195730.0,23003815.0,23441539.0,24245017.0,24695841.0,25614719.0,26086505.0,26778609.0,27289054.0,28149797.0,28497242.0,29524658.0,29814277.0,30736780.0,31151187.0,31876053.0,32359986.0,33303889.0,33739960.0,34455591.0,34912036.0,35867900.0,36226744.0,36893610.0,37710729.0,38348303.0,38675218.0,39688102.0,40123598.0,40844330.0,41217621.0,42408579.0,42487452.0,43553913.0,43863072.0,44759132.0,45034946.0,46215933.0,46317932.0,47136100.0,47610917.0,48582717.0,48869523.0,49680938.0,50152194.0,51232200.0,51399625.0,52355355.0,52678867.0,53778124.0,53969135.0,54665715.0,55244616.0,56391305.0,56596815.0,57642816.0,57748405.0,58821968.0,59108472.0,59909160.0,60326917.0,61398277.0,61511666.0,63146268.0,62986372.0,64059461.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":304.51489201233807,"lower_bound":304.1685147442099,"upper_bound":304.88228945528357,"unit":"ns"},"mean":{"estimate":304.4886561943009,"lower_bound":304.2060951188061,"upper_bound":304.7884418085752,"unit":"ns"},"median":{"estimate":304.28531802910686,"lower_bound":303.7735308170091,"upper_bound":304.8780266144039,"unit":"ns"},"median_abs_dev":{"estimate":1.572579061360603,"lower_bound":1.1419944329062162,"upper_bound":1.8727483152355968,"unit":"ns"},"slope":{"estimate":304.51489201233807,"lower_bound":304.1685147442099,"upper_bound":304.88228945528357,"unit":"ns"},"change":{"mean":{"estimate":0.010293753396922067,"lower_bound":0.008666637671035343,"upper_bound":0.01181622417781174,"unit":"%"},"median":{"estimate":0.010607947722838462,"lower_bound":0.008223923061732252,"upper_bound":0.0126744108802479,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"s256/10","report_directory":"/root/fuel-core/target/criterion/reports/s256/10","iteration_count":[2092,4184,6276,8368,10460,12552,14644,16736,18828,20920,23012,25104,27196,29288,31380,33472,35564,37656,39748,41840,43932,46024,48116,50208,52300,54392,56484,58576,60668,62760,64852,66944,69036,71128,73220,75312,77404,79496,81588,83680,85772,87864,89956,92048,94140,96232,98324,100416,102508,104600,106692,108784,110876,112968,115060,117152,119244,121336,123428,125520,127612,129704,131796,133888,135980,138072,140164,142256,144348,146440,148532,150624,152716,154808,156900,158992,161084,163176,165268,167360,169452,171544,173636,175728,177820,179912,182004,184096,186188,188280,190372,192464,194556,196648,198740,200832,202924,205016,207108,209200],"measured_values":[690064.0,1303253.0,1943075.0,2563457.0,3161211.0,3800181.0,4447714.0,5088565.0,5682907.0,6435470.0,6938948.0,7596182.0,8216203.0,8868022.0,9473385.0,10139740.0,10749009.0,11395479.0,12002463.0,12646046.0,13261253.0,14000193.0,14552169.0,15264041.0,15777926.0,16530567.0,17124340.0,17763871.0,18328841.0,19026368.0,19576311.0,20277382.0,20864510.0,21578468.0,22097936.0,22838639.0,23535979.0,24137965.0,24624611.0,25330331.0,25973350.0,26606904.0,27203532.0,27922062.0,28555475.0,29281118.0,30097974.0,30423696.0,31164800.0,31687220.0,32262601.0,33042455.0,33692846.0,34211016.0,34751654.0,35469220.0,35987083.0,36855236.0,37355826.0,38045991.0,38592882.0,39310538.0,39773638.0,40539078.0,41209868.0,41893205.0,42361958.0,43073115.0,43710652.0,44401750.0,44852989.0,45758717.0,46272665.0,47099371.0,47483598.0,48245169.0,48620516.0,49696176.0,49996636.0,50747977.0,51199368.0,52089560.0,52474369.0,53247926.0,53686270.0,54604150.0,55010592.0,55812724.0,56272816.0,57072978.0,57632397.0,58351910.0,58803032.0,59639846.0,60216330.0,60861320.0,61431841.0,62213348.0,62714398.0,63411604.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":302.9358528340634,"lower_bound":302.78176451596363,"upper_bound":303.09318684374466,"unit":"ns"},"mean":{"estimate":303.394826753554,"lower_bound":302.9248176404413,"upper_bound":304.08136266685733,"unit":"ns"},"median":{"estimate":302.9163330544933,"lower_bound":302.7623941546026,"upper_bound":303.10700286806883,"unit":"ns"},"median_abs_dev":{"estimate":0.8363085922275312,"lower_bound":0.5897280540284126,"upper_bound":1.1058699526566889,"unit":"ns"},"slope":{"estimate":302.9358528340634,"lower_bound":302.78176451596363,"upper_bound":303.09318684374466,"unit":"ns"},"change":{"mean":{"estimate":0.010382328692060572,"lower_bound":0.008006408389994186,"upper_bound":0.01308077271715923,"unit":"%"},"median":{"estimate":0.010530286417650636,"lower_bound":0.009736897220049112,"upper_bound":0.011775372101680448,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"s256/100","report_directory":"/root/fuel-core/target/criterion/reports/s256/100","iteration_count":[1361,2722,4083,5444,6805,8166,9527,10888,12249,13610,14971,16332,17693,19054,20415,21776,23137,24498,25859,27220,28581,29942,31303,32664,34025,35386,36747,38108,39469,40830,42191,43552,44913,46274,47635,48996,50357,51718,53079,54440,55801,57162,58523,59884,61245,62606,63967,65328,66689,68050,69411,70772,72133,73494,74855,76216,77577,78938,80299,81660,83021,84382,85743,87104,88465,89826,91187,92548,93909,95270,96631,97992,99353,100714,102075,103436,104797,106158,107519,108880,110241,111602,112963,114324,115685,117046,118407,119768,121129,122490,123851,125212,126573,127934,129295,130656,132017,133378,134739,136100],"measured_values":[776698.0,1514621.0,2274576.0,3019076.0,3787515.0,4550896.0,5300977.0,6066963.0,6861571.0,7599574.0,8335716.0,9082162.0,9847708.0,10603976.0,11351007.0,12073934.0,12899124.0,13686685.0,14437084.0,15110075.0,15910608.0,16696250.0,17451384.0,18150144.0,18957710.0,19669840.0,20479776.0,21143060.0,22010511.0,22739996.0,23485558.0,24231986.0,25158984.0,25889798.0,26534643.0,27194637.0,28054968.0,28844644.0,29596793.0,30227823.0,31087090.0,31902986.0,32627034.0,33244093.0,34126555.0,34961126.0,35614016.0,36307039.0,37201414.0,37896581.0,38665768.0,39305119.0,40196395.0,41003460.0,41690107.0,42511397.0,43277411.0,44005431.0,44844898.0,45317753.0,46327489.0,47070300.0,47789836.0,48342929.0,49292428.0,50168269.0,50781887.0,51789368.0,52249589.0,53092653.0,53868557.0,54755618.0,55436733.0,56040098.0,56871866.0,57484081.0,58373362.0,59178617.0,59998124.0,60482114.0,61452443.0,62213347.0,62977534.0,63474139.0,64612119.0,65333634.0,65976527.0,66535132.0,67503453.0,68293858.0,69154186.0,69557143.0,70544038.0,71233986.0,72225035.0,72619023.0,73697235.0,74386224.0,75128180.0,75548418.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":557.1511730252499,"lower_bound":556.8534537558129,"upper_bound":557.4367998976047,"unit":"ns"},"mean":{"estimate":557.210502622777,"lower_bound":556.8928713868479,"upper_bound":557.5986378990792,"unit":"ns"},"median":{"estimate":557.2146450730672,"lower_bound":557.0345055529392,"upper_bound":557.4572767513127,"unit":"ns"},"median_abs_dev":{"estimate":0.99455519716194,"lower_bound":0.7100270088678104,"upper_bound":1.3469062050471372,"unit":"ns"},"slope":{"estimate":557.1511730252499,"lower_bound":556.8534537558129,"upper_bound":557.4367998976047,"unit":"ns"},"change":{"mean":{"estimate":0.004648508817486352,"lower_bound":0.00301065108459604,"upper_bound":0.005846460211886134,"unit":"%"},"median":{"estimate":0.005975439522291515,"lower_bound":0.00551639395355424,"upper_bound":0.006413379567388855,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"s256/1000","report_directory":"/root/fuel-core/target/criterion/reports/s256/1000","iteration_count":[235,470,705,940,1175,1410,1645,1880,2115,2350,2585,2820,3055,3290,3525,3760,3995,4230,4465,4700,4935,5170,5405,5640,5875,6110,6345,6580,6815,7050,7285,7520,7755,7990,8225,8460,8695,8930,9165,9400,9635,9870,10105,10340,10575,10810,11045,11280,11515,11750,11985,12220,12455,12690,12925,13160,13395,13630,13865,14100,14335,14570,14805,15040,15275,15510,15745,15980,16215,16450,16685,16920,17155,17390,17625,17860,18095,18330,18565,18800,19035,19270,19505,19740,19975,20210,20445,20680,20915,21150,21385,21620,21855,22090,22325,22560,22795,23030,23265,23500],"measured_values":[1018879.0,1924225.0,2842452.0,3865265.0,4767440.0,5713430.0,6665705.0,7575787.0,8553631.0,9488896.0,10427662.0,11362528.0,12347574.0,13293032.0,14217172.0,15186773.0,16106405.0,17085558.0,18000258.0,19007840.0,19896548.0,20874947.0,21821951.0,22731047.0,23720457.0,24692792.0,25670665.0,26540800.0,27522202.0,28444122.0,29404340.0,30346115.0,31300316.0,32268189.0,33333490.0,34182230.0,35093176.0,36026224.0,37934164.0,38191037.0,39082342.0,39933502.0,40777564.0,41951885.0,43011429.0,43786577.0,44790030.0,45605160.0,46533590.0,47464939.0,48443837.0,49404738.0,50323995.0,51272385.0,52171162.0,53124558.0,54083306.0,55099674.0,55992360.0,56917619.0,57867340.0,58851092.0,59842501.0,60704100.0,61676678.0,62607389.0,63500649.0,64503020.0,65459832.0,66450007.0,67341076.0,68283997.0,69372876.0,70202648.0,71165391.0,72094747.0,73064205.0,74114595.0,74948365.0,75882925.0,76803788.0,77838914.0,78746457.0,79681183.0,80654944.0,81636128.0,82507455.0,83478662.0,84479999.0,85546198.0,86296978.0,87238871.0,88209771.0,89149248.0,90172504.0,91043416.0,92111697.0,92974401.0,93921161.0,94934589.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":4039.1627654732447,"lower_bound":4038.059576252615,"upper_bound":4040.614660043213,"unit":"ns"},"mean":{"estimate":4044.865698155841,"lower_bound":4039.837929653005,"upper_bound":4052.3665883204244,"unit":"ns"},"median":{"estimate":4037.773751805141,"lower_bound":4037.0153019557274,"upper_bound":4039.1964310226494,"unit":"ns"},"median_abs_dev":{"estimate":3.5397160739366624,"lower_bound":2.5722062207477925,"upper_bound":5.143546350703673,"unit":"ns"},"slope":{"estimate":4039.1627654732447,"lower_bound":4038.059576252615,"upper_bound":4040.614660043213,"unit":"ns"},"change":{"mean":{"estimate":-0.00009419553178668938,"lower_bound":-0.0017034745364328697,"upper_bound":0.0018544670256766787,"unit":"%"},"median":{"estimate":-0.00047864766979854867,"lower_bound":-0.0010848127659643235,"upper_bound":-0.000018277065140348547,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"s256/10000","report_directory":"/root/fuel-core/target/criterion/reports/s256/10000","iteration_count":[26,52,78,104,130,156,182,208,234,260,286,312,338,364,390,416,442,468,494,520,546,572,598,624,650,676,702,728,754,780,806,832,858,884,910,936,962,988,1014,1040,1066,1092,1118,1144,1170,1196,1222,1248,1274,1300,1326,1352,1378,1404,1430,1456,1482,1508,1534,1560,1586,1612,1638,1664,1690,1716,1742,1768,1794,1820,1846,1872,1898,1924,1950,1976,2002,2028,2054,2080,2106,2132,2158,2184,2210,2236,2262,2288,2314,2340,2366,2392,2418,2444,2470,2496,2522,2548,2574,2600],"measured_values":[1072730.0,1989470.0,3013707.0,3980940.0,5002287.0,5971543.0,6964457.0,7988590.0,8984558.0,10010855.0,10975028.0,11981753.0,12942934.0,13959311.0,14927109.0,15921889.0,16947949.0,17911294.0,18933712.0,19953948.0,20927750.0,21947527.0,22888205.0,23910193.0,24902598.0,25872195.0,26936009.0,27890683.0,28897327.0,29911495.0,30874955.0,31897878.0,33041961.0,34057225.0,34999197.0,35942843.0,36847949.0,37983202.0,38919065.0,39832525.0,40869512.0,41835899.0,42815564.0,44042262.0,44850271.0,45896430.0,46800486.0,47843854.0,48787484.0,49822001.0,50806084.0,51839161.0,52820450.0,53916347.0,54934545.0,55837131.0,56816670.0,57825787.0,59185745.0,59761653.0,60814436.0,61811492.0,62747171.0,63848301.0,64744646.0,65786743.0,66765822.0,67766235.0,68714927.0,69817681.0,70739172.0,71715448.0,72734096.0,73826688.0,74675906.0,75715836.0,76697318.0,77757946.0,78664518.0,79654075.0,80717568.0,81770417.0,82813912.0,83721675.0,84661017.0,85930005.0,86674454.0,87909996.0,88675436.0,89795180.0,90653189.0,91654761.0,92745727.0,93653400.0,94671151.0,95609143.0,96809351.0,97594619.0,98635573.0,99609853.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":38340.223573223,"lower_bound":38330.33498654808,"upper_bound":38351.54719402147,"unit":"ns"},"mean":{"estimate":38377.33439080974,"lower_bound":38338.68057946114,"upper_bound":38443.38148814967,"unit":"ns"},"median":{"estimate":38329.26544656324,"lower_bound":38320.244853737815,"upper_bound":38342.18244575937,"unit":"ns"},"median_abs_dev":{"estimate":38.855023873042626,"lower_bound":28.02807442421781,"upper_bound":53.21276541392641,"unit":"ns"},"slope":{"estimate":38340.223573223,"lower_bound":38330.33498654808,"upper_bound":38351.54719402147,"unit":"ns"},"change":{"mean":{"estimate":0.0018106155148995828,"lower_bound":0.0001281484267002035,"upper_bound":0.0038051412173498327,"unit":"%"},"median":{"estimate":0.0020503897373642666,"lower_bound":0.0016169150616158756,"upper_bound":0.002516048451941499,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"s256/19753","report_directory":"/root/fuel-core/target/criterion/reports/s256/19753","iteration_count":[14,28,42,56,70,84,98,112,126,140,154,168,182,196,210,224,238,252,266,280,294,308,322,336,350,364,378,392,406,420,434,448,462,476,490,504,518,532,546,560,574,588,602,616,630,644,658,672,686,700,714,728,742,756,770,784,798,812,826,840,854,868,882,896,910,924,938,952,966,980,994,1008,1022,1036,1050,1064,1078,1092,1106,1120,1134,1148,1162,1176,1190,1204,1218,1232,1246,1260,1274,1288,1302,1316,1330,1344,1358,1372,1386,1400],"measured_values":[1126799.0,2107014.0,3156682.0,4210616.0,5264975.0,6315326.0,7369367.0,8449553.0,9476945.0,10525956.0,11578996.0,12660499.0,13687440.0,14863735.0,15819956.0,16870527.0,17922342.0,18976815.0,20045545.0,21085098.0,22107933.0,23185683.0,24240091.0,25294758.0,26436582.0,27446626.0,28821883.0,29534746.0,30587024.0,31697381.0,32719280.0,33712291.0,34797537.0,36039226.0,36908152.0,37952927.0,39032795.0,40056661.0,41140723.0,42161667.0,43299365.0,44272205.0,45352701.0,46374981.0,47440612.0,48563578.0,49505696.0,50615709.0,51635743.0,52746780.0,53743838.0,54880303.0,55937543.0,56927404.0,57925302.0,59362343.0,60695269.0,61500859.0,62222262.0,63220467.0,64326631.0,65537801.0,66472163.0,67544996.0,68513838.0,69589554.0,70739056.0,71805749.0,72755516.0,73741678.0,74967541.0,75998766.0,76964498.0,78021186.0,79014152.0,80164377.0,81142068.0,82202200.0,83424463.0,84341161.0,85511044.0,86410173.0,87443640.0,88553191.0,89566475.0,90661832.0,91703660.0,92828335.0,93837008.0,94862960.0,96005479.0,97083305.0,97993685.0,99073729.0,100211818.0,101182849.0,102369090.0,103295809.0,104398854.0,105625060.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":75345.3110715869,"lower_bound":75323.70185341146,"upper_bound":75370.99466476876,"unit":"ns"},"mean":{"estimate":75401.89822903174,"lower_bound":75327.7528320424,"upper_bound":75523.16982091298,"unit":"ns"},"median":{"estimate":75311.9852254487,"lower_bound":75300.79894179894,"upper_bound":75333.16381834564,"unit":"ns"},"median_abs_dev":{"estimate":67.88340480646215,"lower_bound":50.367925265351516,"upper_bound":93.99328754267569,"unit":"ns"},"slope":{"estimate":75345.3110715869,"lower_bound":75323.70185341146,"upper_bound":75370.99466476876,"unit":"ns"},"change":{"mean":{"estimate":0.0017537782593715079,"lower_bound":-0.0003520371081880691,"upper_bound":0.0038753671883645143,"unit":"%"},"median":{"estimate":0.0025514617242072823,"lower_bound":0.0019928110998737036,"upper_bound":0.00291937852316293,"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":[1060022.0,2061617.0,3077241.0,4092267.0,5081087.0,6096682.0,7114983.0,8128030.0,9175375.0,10159315.0,11210779.0,12219991.0,13212925.0,14254676.0,15243786.0,16255109.0,17317336.0,18318485.0,19338156.0,20460124.0,21346436.0,22382950.0,23401823.0,24382678.0,25474140.0,26445202.0,27491819.0,28476870.0,29528779.0,30538381.0,31529236.0,32567373.0,33605894.0,34577508.0,35722470.0,36606230.0,37633976.0,38646356.0,39725212.0,40692426.0,41726875.0,42700865.0,43759743.0,44901541.0,45816318.0,46810149.0,47790386.0,48854787.0,49856068.0,50867516.0,52502924.0,52893017.0,53906702.0,54897727.0,55983959.0,57137954.0,58081713.0,59196650.0,60226224.0,61044314.0,62039647.0,63332529.0,64145155.0,65141493.0,66156174.0,67203532.0,68332300.0,69173689.0,70261934.0,71200973.0,72439100.0,73273933.0,74238439.0,75518779.0,76283376.0,77471025.0,78446482.0,79589506.0,80375201.0,81460563.0,82430197.0,83482945.0,84442289.0,85634739.0,86509223.0,87533028.0,88504165.0,89723073.0,90600994.0,91585205.0,92610477.0,93626367.0,94694944.0,95675032.0,96791477.0,97665290.0,98782551.0,99796070.0,100760983.0,101784300.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":113141.56163308868,"lower_bound":113110.55056167582,"upper_bound":113176.99203544695,"unit":"ns"},"mean":{"estimate":113198.2438753832,"lower_bound":113115.71645340233,"upper_bound":113317.09358792505,"unit":"ns"},"median":{"estimate":113088.07729340186,"lower_bound":113074.27131782945,"upper_bound":113120.5216802168,"unit":"ns"},"median_abs_dev":{"estimate":109.36241785754794,"lower_bound":81.24050606298819,"upper_bound":149.95367932201964,"unit":"ns"},"slope":{"estimate":113141.56163308868,"lower_bound":113110.55056167582,"upper_bound":113176.99203544695,"unit":"ns"},"change":{"mean":{"estimate":0.001909980272593259,"lower_bound":0.0002280908100640414,"upper_bound":0.003412060148672624,"unit":"%"},"median":{"estimate":0.00216649691255677,"lower_bound":0.001839302290409961,"upper_bound":0.0024965136322134818,"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":[1088787.0,2057737.0,3068554.0,4085656.0,5130285.0,6112214.0,7099931.0,8113762.0,9126207.0,10246034.0,11182774.0,12170608.0,13210687.0,14310407.0,15325964.0,16336988.0,17358073.0,18313882.0,19404615.0,20423620.0,21584393.0,22453455.0,23362395.0,24393627.0,25439395.0,26493672.0,27407088.0,28424206.0,29434463.0,30459317.0,31528299.0,32480110.0,33518488.0,34535849.0,35558220.0,36548826.0,37571072.0,38578651.0,39570874.0,40593054.0,41630709.0,42665606.0,43631753.0,44858930.0,45740958.0,46689186.0,47686252.0,48734257.0,49713868.0,50785037.0,51780289.0,52820801.0,53774068.0,54833072.0,55853638.0,56911535.0,57826802.0,58915097.0,59881656.0,60908581.0,61918072.0,62967184.0,64113276.0,64967634.0,66117141.0,66962907.0,68023972.0,69103794.0,70025191.0,71024780.0,72122954.0,73117816.0,74089472.0,75136447.0,76131580.0,77172725.0,78380708.0,79248774.0,80200439.0,81193364.0,82275300.0,83204569.0,84216847.0,85657030.0,86271192.0,87345967.0,88285520.0,89426840.0,90615135.0,91422764.0,92500848.0,93539350.0,94414204.0,95414900.0,96456033.0,97407241.0,98516703.0,99489021.0,100675848.0,101548222.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":169292.80002758486,"lower_bound":169248.25249806698,"upper_bound":169343.3350661559,"unit":"ns"},"mean":{"estimate":169565.25675117274,"lower_bound":169375.06776303946,"upper_bound":169857.69558761275,"unit":"ns"},"median":{"estimate":169260.41367980884,"lower_bound":169218.42777777778,"upper_bound":169298.8352809706,"unit":"ns"},"median_abs_dev":{"estimate":169.8100977738297,"lower_bound":113.38736033243623,"upper_bound":246.20024074118209,"unit":"ns"},"slope":{"estimate":169292.80002758486,"lower_bound":169248.25249806698,"upper_bound":169343.3350661559,"unit":"ns"},"change":{"mean":{"estimate":0.001742915112695087,"lower_bound":-0.0012224243859856009,"upper_bound":0.004306973818883763,"unit":"%"},"median":{"estimate":0.0020813955326188793,"lower_bound":0.001705058013542704,"upper_bound":0.0025257126045108436,"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":[1058909.0,2026712.0,3041128.0,4054675.0,5107201.0,6082300.0,7094367.0,8135740.0,9148559.0,10135572.0,11162135.0,12202540.0,13174588.0,14217051.0,15204192.0,16217007.0,17257361.0,18244843.0,19281758.0,20295985.0,21284188.0,22351598.0,23340442.0,24406705.0,25361931.0,26377199.0,27363702.0,28523932.0,29444003.0,30464553.0,31444687.0,32457498.0,33468761.0,34487377.0,35500118.0,36542465.0,37556079.0,38568560.0,39550649.0,40556306.0,41748610.0,42714325.0,43604227.0,44661638.0,45660157.0,46681101.0,47690265.0,48738020.0,49744883.0,51232295.0,51778574.0,52905046.0,53786693.0,54947177.0,56062177.0,56782290.0,58014564.0,58901244.0,59909762.0,60870248.0,61933483.0,62925962.0,63930043.0,64925602.0,66022569.0,67003428.0,68143303.0,69126208.0,70047973.0,71206029.0,72044490.0,73058357.0,74123315.0,75303691.0,76131639.0,77139460.0,78188281.0,79171253.0,80203728.0,81253569.0,82292368.0,83253685.0,84234001.0,85371681.0,86461927.0,87276229.0,88341652.0,89275937.0,90353326.0,91333742.0,92366961.0,93371327.0,94506307.0,95355184.0,96385501.0,97436721.0,98388720.0,99437776.0,100484044.0,101520351.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":253850.7805608098,"lower_bound":253790.66427668763,"upper_bound":253921.57714156155,"unit":"ns"},"mean":{"estimate":253946.30788588588,"lower_bound":253779.26077595993,"upper_bound":254212.841546433,"unit":"ns"},"median":{"estimate":253751.11985492578,"lower_bound":253707.34210526315,"upper_bound":253800.86363636365,"unit":"ns"},"median_abs_dev":{"estimate":196.71315385247124,"lower_bound":144.75096236375114,"upper_bound":300.3270977454812,"unit":"ns"},"slope":{"estimate":253850.7805608098,"lower_bound":253790.66427668763,"upper_bound":253921.57714156155,"unit":"ns"},"change":{"mean":{"estimate":0.001391596346338897,"lower_bound":-0.00183129126822375,"upper_bound":0.003618401559809246,"unit":"%"},"median":{"estimate":0.0027539775856197934,"lower_bound":0.0023792779182780777,"upper_bound":0.0030121527593685027,"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":[1202575.0,2281446.0,3419596.0,4587519.0,5698360.0,6839628.0,8012009.0,9117304.0,10258738.0,11397275.0,12564967.0,13675828.0,14881634.0,16072564.0,17125243.0,18291335.0,19497024.0,20573984.0,21714094.0,22794091.0,24085635.0,25111315.0,26243424.0,27410148.0,28553337.0,29662975.0,30861869.0,31915327.0,33148501.0,34221090.0,35391178.0,36531251.0,37675546.0,38781612.0,39980603.0,41119008.0,42200496.0,43340816.0,44600007.0,45648242.0,46791334.0,47956795.0,49039823.0,50208083.0,51351979.0,52517067.0,53628060.0,54766610.0,55936843.0,57138761.0,58503735.0,59352527.0,60530211.0,61648480.0,62778220.0,63911258.0,65143395.0,66195780.0,67337387.0,68553309.0,69653506.0,70849142.0,71994800.0,73026859.0,74179497.0,75322982.0,76626206.0,77825941.0,78788844.0,79985777.0,81132649.0,82355981.0,83320115.0,84472031.0,85634600.0,86701550.0,87858125.0,89050131.0,90136111.0,91590138.0,92413808.0,93843982.0,94907067.0,95939650.0,97224165.0,98311442.0,99317172.0,100464483.0,101535646.0,102758386.0,103871223.0,105148850.0,106085144.0,107260976.0,108422655.0,109590532.0,110689637.0,111872348.0,112959601.0,114124537.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":380646.78706467664,"lower_bound":380556.97687400103,"upper_bound":380747.67495090864,"unit":"ns"},"mean":{"estimate":380870.5992109247,"lower_bound":380587.19650706154,"upper_bound":381340.0047782284,"unit":"ns"},"median":{"estimate":380529.713900862,"lower_bound":380451.0656779661,"upper_bound":380598.22222222225,"unit":"ns"},"median_abs_dev":{"estimate":342.49873762569547,"lower_bound":241.64406358651738,"upper_bound":498.72441291055566,"unit":"ns"},"slope":{"estimate":380646.78706467664,"lower_bound":380556.97687400103,"upper_bound":380747.67495090864,"unit":"ns"},"change":{"mean":{"estimate":0.0028747606983734464,"lower_bound":0.001534767881414889,"upper_bound":0.004316534039790747,"unit":"%"},"median":{"estimate":0.002826229460497709,"lower_bound":0.0023792136358653515,"upper_bound":0.0031662928499684995,"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/1","report_directory":"/root/fuel-core/target/criterion/reports/ed19/1","iteration_count":[29,58,87,116,145,174,203,232,261,290,319,348,377,406,435,464,493,522,551,580,609,638,667,696,725,754,783,812,841,870,899,928,957,986,1015,1044,1073,1102,1131,1160,1189,1218,1247,1276,1305,1334,1363,1392,1421,1450,1479,1508,1537,1566,1595,1624,1653,1682,1711,1740,1769,1798,1827,1856,1885,1914,1943,1972,2001,2030,2059,2088,2117,2146,2175,2204,2233,2262,2291,2320,2349,2378,2407,2436,2465,2494,2523,2552,2581,2610,2639,2668,2697,2726,2755,2784,2813,2842,2871,2900],"measured_values":[1063033.0,1998012.0,2990872.0,3990435.0,4988173.0,5984914.0,7043718.0,7981375.0,8979333.0,9975792.0,11002354.0,11996653.0,12966128.0,13988814.0,14961448.0,15987378.0,16953395.0,18009295.0,19009025.0,19975913.0,20974410.0,22284644.0,23142760.0,23934504.0,25140849.0,26183748.0,27022723.0,27993000.0,28964052.0,30010145.0,30955905.0,31955125.0,33013539.0,34118804.0,35081593.0,36066928.0,37002376.0,37941077.0,38969394.0,39968339.0,40932364.0,42086065.0,42998769.0,43926691.0,44983056.0,45948764.0,46852931.0,47913351.0,49002150.0,50601770.0,50979283.0,51999473.0,52972603.0,53925412.0,54922204.0,56103894.0,56856525.0,57965527.0,58973324.0,59967541.0,60909436.0,61964384.0,62907912.0,63891644.0,64949837.0,65865874.0,67026497.0,68207906.0,68860283.0,69847191.0,70742907.0,72049663.0,72858167.0,73855143.0,74805511.0,76068325.0,76978278.0,77824487.0,78750694.0,79870502.0,81048877.0,81868659.0,82884591.0,83881765.0,84899527.0,85914610.0,87074823.0,87849956.0,88917065.0,89857365.0,91031198.0,92148952.0,93022104.0,93854482.0,94913239.0,95995144.0,96905594.0,97884055.0,99045407.0,99876342.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":34460.43673017636,"lower_bound":34448.382847056884,"upper_bound":34473.850804311616,"unit":"ns"},"mean":{"estimate":34493.83969018057,"lower_bound":34458.72608645621,"upper_bound":34547.28570399174,"unit":"ns"},"median":{"estimate":34449.9118678527,"lower_bound":34437.62346104725,"upper_bound":34464.104022988504,"unit":"ns"},"median_abs_dev":{"estimate":51.16004094367591,"lower_bound":36.373329605029035,"upper_bound":64.6464156963811,"unit":"ns"},"slope":{"estimate":34460.43673017636,"lower_bound":34448.382847056884,"upper_bound":34473.850804311616,"unit":"ns"},"change":{"mean":{"estimate":-0.01865648355362004,"lower_bound":-0.020194125450233746,"upper_bound":-0.017027988542578934,"unit":"%"},"median":{"estimate":-0.0188947469468983,"lower_bound":-0.019369983386798406,"upper_bound":-0.018431976302284214,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ed19/10","report_directory":"/root/fuel-core/target/criterion/reports/ed19/10","iteration_count":[29,58,87,116,145,174,203,232,261,290,319,348,377,406,435,464,493,522,551,580,609,638,667,696,725,754,783,812,841,870,899,928,957,986,1015,1044,1073,1102,1131,1160,1189,1218,1247,1276,1305,1334,1363,1392,1421,1450,1479,1508,1537,1566,1595,1624,1653,1682,1711,1740,1769,1798,1827,1856,1885,1914,1943,1972,2001,2030,2059,2088,2117,2146,2175,2204,2233,2262,2291,2320,2349,2378,2407,2436,2465,2494,2523,2552,2581,2610,2639,2668,2697,2726,2755,2784,2813,2842,2871,2900],"measured_values":[1031778.0,2002081.0,3000202.0,4000655.0,5002843.0,6002454.0,7001503.0,8028447.0,9002086.0,10003947.0,11001453.0,12029923.0,13003199.0,14061149.0,15090468.0,16002116.0,16989393.0,17941474.0,19012891.0,20001832.0,21057371.0,22109929.0,23005611.0,23970508.0,25049971.0,26039448.0,27000521.0,28033504.0,29034558.0,30407657.0,31089470.0,32180351.0,33067984.0,34043051.0,35071508.0,36227992.0,36970881.0,38056027.0,38956875.0,40184925.0,41064612.0,42045950.0,43132145.0,44094703.0,45037155.0,46079637.0,46968172.0,48040023.0,48970037.0,50133322.0,51028882.0,52115471.0,53028842.0,54138639.0,55000488.0,55966486.0,57165453.0,58135484.0,59066372.0,60022391.0,61051390.0,61987084.0,63134379.0,64046245.0,65144077.0,66111316.0,67270469.0,68177394.0,68966605.0,70283305.0,71106613.0,72176614.0,73152728.0,74125970.0,75192461.0,76092697.0,77234985.0,78088157.0,79067582.0,80027334.0,81121555.0,82111628.0,83040759.0,84111537.0,85212251.0,86108131.0,87555189.0,88321327.0,89075504.0,90088116.0,91141301.0,92207584.0,93087187.0,94053162.0,95447025.0,96297250.0,97151391.0,98211749.0,99206525.0,100122785.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":34546.0829031354,"lower_bound":34534.17439184982,"upper_bound":34559.193676342366,"unit":"ns"},"mean":{"estimate":34551.406078377746,"lower_bound":34530.84768129336,"upper_bound":34579.05591312123,"unit":"ns"},"median":{"estimate":34529.12307761624,"lower_bound":34520.0939509059,"upper_bound":34541.68698605243,"unit":"ns"},"median_abs_dev":{"estimate":50.17189120796108,"lower_bound":40.23525666861368,"upper_bound":60.72235873301127,"unit":"ns"},"slope":{"estimate":34546.0829031354,"lower_bound":34534.17439184982,"upper_bound":34559.193676342366,"unit":"ns"},"change":{"mean":{"estimate":-0.017127082699585183,"lower_bound":-0.01835819572436845,"upper_bound":-0.01607402368699849,"unit":"%"},"median":{"estimate":-0.01686874602482491,"lower_bound":-0.017323762527583497,"upper_bound":-0.016474594026622547,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ed19/100","report_directory":"/root/fuel-core/target/criterion/reports/ed19/100","iteration_count":[29,58,87,116,145,174,203,232,261,290,319,348,377,406,435,464,493,522,551,580,609,638,667,696,725,754,783,812,841,870,899,928,957,986,1015,1044,1073,1102,1131,1160,1189,1218,1247,1276,1305,1334,1363,1392,1421,1450,1479,1508,1537,1566,1595,1624,1653,1682,1711,1740,1769,1798,1827,1856,1885,1914,1943,1972,2001,2030,2059,2088,2117,2146,2175,2204,2233,2262,2291,2320,2349,2378,2407,2436,2465,2494,2523,2552,2581,2610,2639,2668,2697,2726,2755,2784,2813,2842,2871,2900],"measured_values":[1085913.0,2013025.0,3015378.0,4050564.0,5029808.0,6033429.0,7042231.0,8046121.0,9106150.0,10058247.0,11063645.0,12096929.0,13073206.0,14079550.0,15112943.0,16118470.0,17109729.0,18039528.0,19090625.0,20110207.0,21145485.0,22117114.0,23180679.0,24160692.0,25136697.0,26191390.0,27178286.0,28215818.0,29187183.0,30198440.0,31199503.0,32206776.0,33280338.0,34220026.0,35226818.0,36212747.0,37181985.0,38271238.0,39272444.0,40279862.0,41284885.0,42985004.0,43297718.0,44375975.0,45435162.0,46340464.0,47530653.0,48384733.0,49233714.0,50381117.0,51369704.0,52428867.0,53793030.0,54858162.0,55309378.0,56429636.0,57404443.0,58343463.0,59491161.0,60328555.0,61327920.0,62633232.0,63408677.0,64413689.0,65710334.0,67080549.0,67594145.0,68466745.0,69497075.0,70439332.0,71543299.0,72449821.0,73476293.0,74497589.0,75520758.0,76648710.0,77547710.0,78508305.0,79604371.0,80816380.0,81439391.0,82641743.0,83586790.0,84650499.0,85574244.0,86679612.0,87537511.0,88681008.0,89670925.0,90615301.0,91648380.0,92635835.0,93685205.0,94665984.0,95660631.0,96679238.0,97713455.0,98605246.0,99775409.0,100681363.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":34743.27193968702,"lower_bound":34729.917702739476,"upper_bound":34759.39222376682,"unit":"ns"},"mean":{"estimate":34767.402958594175,"lower_bound":34727.45143899756,"upper_bound":34832.61854454317,"unit":"ns"},"median":{"estimate":34722.45560621486,"lower_bound":34714.62674743709,"upper_bound":34729.60521362696,"unit":"ns"},"median_abs_dev":{"estimate":39.097141814804665,"lower_bound":27.91503158105865,"upper_bound":50.465927212951186,"unit":"ns"},"slope":{"estimate":34743.27193968702,"lower_bound":34729.917702739476,"upper_bound":34759.39222376682,"unit":"ns"},"change":{"mean":{"estimate":-0.019005830037318594,"lower_bound":-0.02036440890911035,"upper_bound":-0.017323202744061027,"unit":"%"},"median":{"estimate":-0.01981548348882045,"lower_bound":-0.020128478960630525,"upper_bound":-0.019461199672876073,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ed19/1000","report_directory":"/root/fuel-core/target/criterion/reports/ed19/1000","iteration_count":[27,54,81,108,135,162,189,216,243,270,297,324,351,378,405,432,459,486,513,540,567,594,621,648,675,702,729,756,783,810,837,864,891,918,945,972,999,1026,1053,1080,1107,1134,1161,1188,1215,1242,1269,1296,1323,1350,1377,1404,1431,1458,1485,1512,1539,1566,1593,1620,1647,1674,1701,1728,1755,1782,1809,1836,1863,1890,1917,1944,1971,1998,2025,2052,2079,2106,2133,2160,2187,2214,2241,2268,2295,2322,2349,2376,2403,2430,2457,2484,2511,2538,2565,2592,2619,2646,2673,2700],"measured_values":[1057336.0,1985212.0,2981129.0,3973702.0,4967694.0,5989014.0,6953327.0,7948843.0,8942938.0,9987081.0,10893432.0,11880511.0,12966290.0,13908089.0,14917336.0,15843233.0,16862140.0,17908710.0,18904471.0,19872809.0,20893165.0,21839186.0,22873710.0,23903798.0,24883775.0,25844688.0,26846653.0,27840046.0,28834874.0,29854069.0,30818808.0,31771197.0,33105222.0,34045591.0,34738713.0,35907780.0,36779532.0,37880150.0,38816593.0,39667072.0,40751979.0,41796385.0,42827337.0,43907227.0,44754574.0,45800402.0,46743591.0,47611094.0,48725250.0,49714010.0,50740671.0,51707392.0,52701129.0,53621842.0,54717362.0,55647960.0,56706644.0,57671436.0,58816726.0,59653538.0,60618293.0,61512407.0,62615665.0,63749388.0,64632073.0,65688666.0,66630186.0,67618305.0,68636705.0,69526486.0,70653930.0,71458360.0,72711294.0,73530531.0,74600088.0,75564107.0,76543165.0,77555263.0,78515697.0,79509070.0,80600730.0,81540872.0,82549784.0,83574726.0,84530462.0,85571537.0,86410734.0,87525793.0,88503817.0,89528049.0,90577955.0,91521178.0,92402208.0,93589723.0,94449819.0,95588905.0,96736509.0,97654592.0,98494032.0,99431612.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":36840.553019610416,"lower_bound":36830.54875597888,"upper_bound":36851.025348649084,"unit":"ns"},"mean":{"estimate":36859.462467546786,"lower_bound":36826.289947430465,"upper_bound":36914.001029125895,"unit":"ns"},"median":{"estimate":36829.513614659954,"lower_bound":36825.857777777775,"upper_bound":36837.84353413654,"unit":"ns"},"median_abs_dev":{"estimate":38.88003066080711,"lower_bound":28.248715547867207,"upper_bound":49.03400107539338,"unit":"ns"},"slope":{"estimate":36840.553019610416,"lower_bound":36830.54875597888,"upper_bound":36851.025348649084,"unit":"ns"},"change":{"mean":{"estimate":-0.01272775536394044,"lower_bound":-0.01468903240037199,"upper_bound":-0.010965807021285407,"unit":"%"},"median":{"estimate":-0.01208453631145101,"lower_bound":-0.012435873103056392,"upper_bound":-0.011726838256127858,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ed19/10000","report_directory":"/root/fuel-core/target/criterion/reports/ed19/10000","iteration_count":[18,36,54,72,90,108,126,144,162,180,198,216,234,252,270,288,306,324,342,360,378,396,414,432,450,468,486,504,522,540,558,576,594,612,630,648,666,684,702,720,738,756,774,792,810,828,846,864,882,900,918,936,954,972,990,1008,1026,1044,1062,1080,1098,1116,1134,1152,1170,1188,1206,1224,1242,1260,1278,1296,1314,1332,1350,1368,1386,1404,1422,1440,1458,1476,1494,1512,1530,1548,1566,1584,1602,1620,1638,1656,1674,1692,1710,1728,1746,1764,1782,1800],"measured_values":[1026195.0,1965936.0,2945127.0,3929109.0,4910980.0,5919482.0,6972280.0,7911782.0,8893430.0,9935135.0,10860882.0,11785706.0,12823202.0,13777288.0,14759504.0,15715056.0,16693180.0,17705909.0,18660677.0,19670585.0,20650639.0,21606239.0,22617367.0,23629362.0,24551278.0,25562317.0,26571854.0,27504001.0,28481896.0,29532086.0,30471021.0,31489207.0,32436143.0,33420634.0,34429464.0,35480588.0,36364922.0,37378093.0,38322341.0,39325434.0,40337468.0,41333009.0,42445288.0,43239018.0,44216018.0,45367502.0,46387209.0,47197576.0,48148800.0,49162087.0,50194727.0,51011416.0,52133630.0,53059384.0,54167384.0,55024087.0,56040010.0,57079453.0,57979189.0,59609357.0,59973743.0,61014708.0,61932969.0,63052002.0,63947679.0,64785908.0,66059180.0,66923462.0,68038343.0,68839361.0,69832572.0,70762383.0,71813803.0,72779109.0,73706587.0,74730081.0,75711134.0,76720262.0,77791300.0,78641427.0,79615556.0,80688209.0,81548309.0,82557342.0,83544480.0,84542726.0,85510229.0,86519765.0,87522416.0,88546452.0,89716653.0,90447066.0,91457031.0,92418515.0,93621022.0,94438018.0,95421480.0,96361539.0,97371187.0,98324163.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":54650.34813982891,"lower_bound":54634.50379734248,"upper_bound":54669.64821492422,"unit":"ns"},"mean":{"estimate":54689.941770218174,"lower_bound":54648.09764991078,"upper_bound":54749.94174313721,"unit":"ns"},"median":{"estimate":54632.26986647126,"lower_bound":54620.895264116574,"upper_bound":54647.410901467505,"unit":"ns"},"median_abs_dev":{"estimate":54.88767151608239,"lower_bound":38.543796929445726,"upper_bound":69.33333158762916,"unit":"ns"},"slope":{"estimate":54650.34813982891,"lower_bound":54634.50379734248,"upper_bound":54669.64821492422,"unit":"ns"},"change":{"mean":{"estimate":-0.016882763347102592,"lower_bound":-0.018178992698878585,"upper_bound":-0.01563512287004954,"unit":"%"},"median":{"estimate":-0.017137031730802388,"lower_bound":-0.017405194627611476,"upper_bound":-0.016617111779967386,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ed19/19753","report_directory":"/root/fuel-core/target/criterion/reports/ed19/19753","iteration_count":[14,28,42,56,70,84,98,112,126,140,154,168,182,196,210,224,238,252,266,280,294,308,322,336,350,364,378,392,406,420,434,448,462,476,490,504,518,532,546,560,574,588,602,616,630,644,658,672,686,700,714,728,742,756,770,784,798,812,826,840,854,868,882,896,910,924,938,952,966,980,994,1008,1022,1036,1050,1064,1078,1092,1106,1120,1134,1148,1162,1176,1190,1204,1218,1232,1246,1260,1274,1288,1302,1316,1330,1344,1358,1372,1386,1400],"measured_values":[1069438.0,2075166.0,3116303.0,4153464.0,5221070.0,6229142.0,7268796.0,8336085.0,9344155.0,10467362.0,11508524.0,12461458.0,13539317.0,14563633.0,15603449.0,16613785.0,17707093.0,18696923.0,19725139.0,20768884.0,21926694.0,22891361.0,23911026.0,24962663.0,25987336.0,27001242.0,28086166.0,29101585.0,30169122.0,31179069.0,32229698.0,33227698.0,34291736.0,35336362.0,36436437.0,37440570.0,38488442.0,39485339.0,40520151.0,41591315.0,42626081.0,43863617.0,44669979.0,45765845.0,46919864.0,47889243.0,48828358.0,49957800.0,50935368.0,52130843.0,53347453.0,54121681.0,55108351.0,56190728.0,57176070.0,58349279.0,59279095.0,60280861.0,61338280.0,62424970.0,63449579.0,64455527.0,65651882.0,66572341.0,67565026.0,68700516.0,69688001.0,70709906.0,71747293.0,72779347.0,73796153.0,74861279.0,75879958.0,77161338.0,77963592.0,79142260.0,80161724.0,81086107.0,82165590.0,83178500.0,84131564.0,85256297.0,86398526.0,87333720.0,88309464.0,89850999.0,90457673.0,91654944.0,92467208.0,93643696.0,94621677.0,95617273.0,96754771.0,97760708.0,98790155.0,99799980.0,100802950.0,102050338.0,102891872.0,103991658.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":74300.82625197915,"lower_bound":74280.41788735187,"upper_bound":74324.87389978851,"unit":"ns"},"mean":{"estimate":74324.52417529938,"lower_bound":74285.67238975418,"upper_bound":74378.4085385105,"unit":"ns"},"median":{"estimate":74270.7686911303,"lower_bound":74260.69792236196,"upper_bound":74293.63988095238,"unit":"ns"},"median_abs_dev":{"estimate":67.38689653091794,"lower_bound":47.59784586834396,"upper_bound":100.62213546810311,"unit":"ns"},"slope":{"estimate":74300.82625197915,"lower_bound":74280.41788735187,"upper_bound":74324.87389978851,"unit":"ns"},"change":{"mean":{"estimate":-0.008921875816155,"lower_bound":-0.011159164536015516,"upper_bound":-0.007390532514321772,"unit":"%"},"median":{"estimate":-0.007576397039469884,"lower_bound":-0.00811900605553317,"upper_bound":-0.007234175602475071,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"ed19/29629","report_directory":"/root/fuel-core/target/criterion/reports/ed19/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":[1054554.0,2078270.0,3118239.0,4197468.0,5222678.0,6263697.0,7300988.0,8315729.0,9362921.0,10420610.0,11427528.0,12473982.0,13535483.0,14578198.0,15602377.0,16661373.0,17660945.0,18736629.0,19771626.0,20787334.0,21846836.0,22939076.0,23925696.0,25001476.0,26005621.0,27024053.0,28045814.0,29228682.0,30194689.0,31250377.0,32232175.0,33314890.0,34341999.0,35372595.0,36416336.0,37459019.0,38583006.0,39569435.0,40545089.0,41605334.0,42641021.0,43747590.0,44699952.0,45800345.0,46820601.0,47849101.0,48852895.0,49955457.0,50967772.0,52067661.0,53017647.0,54288015.0,55145387.0,56213719.0,57160335.0,58289127.0,59410249.0,60405774.0,61326642.0,62431751.0,63450085.0,65096109.0,66266096.0,67056590.0,67690238.0,68759949.0,69902845.0,70941579.0,71787224.0,72893864.0,73859081.0,75030059.0,75962159.0,76976346.0,78044085.0,79235165.0,80121425.0,81076523.0,82036869.0,83263494.0,84323681.0,85255344.0,86306109.0,87366261.0,88444024.0,89408145.0,90675875.0,91504342.0,92622660.0,93636753.0,94737875.0,95752988.0,96720321.0,97738140.0,98947417.0,99802986.0,100966448.0,101936200.0,102973289.0,104009087.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":94631.03349758856,"lower_bound":94594.81604258099,"upper_bound":94675.75393817261,"unit":"ns"},"mean":{"estimate":94657.161644901,"lower_bound":94615.68990343944,"upper_bound":94706.01955017656,"unit":"ns"},"median":{"estimate":94593.9622884691,"lower_bound":94575.04761904762,"upper_bound":94625.20616883117,"unit":"ns"},"median_abs_dev":{"estimate":104.68102032860702,"lower_bound":71.79895128906716,"upper_bound":130.77264241850855,"unit":"ns"},"slope":{"estimate":94631.03349758856,"lower_bound":94594.81604258099,"upper_bound":94675.75393817261,"unit":"ns"},"change":{"mean":{"estimate":-0.005622792948991595,"lower_bound":-0.0070869481967208575,"upper_bound":-0.004570684012403112,"unit":"%"},"median":{"estimate":-0.00508106449036827,"lower_bound":-0.005400366900793707,"upper_bound":-0.0046906956458870885,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"ed19/44444","report_directory":"/root/fuel-core/target/criterion/reports/ed19/44444","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":[1032415.0,1992177.0,2973767.0,3995568.0,4959767.0,5951209.0,6943103.0,7963292.0,8953978.0,9921287.0,10908645.0,11903165.0,12921805.0,13889736.0,14907402.0,15875182.0,16887395.0,17871065.0,18876255.0,19840601.0,20855320.0,21853059.0,22839882.0,23833318.0,24852141.0,25818997.0,26836226.0,27832818.0,29067969.0,30001595.0,30778419.0,31777340.0,32756202.0,33950452.0,34728806.0,35773451.0,36724332.0,37717791.0,38706648.0,39760075.0,40722487.0,41715114.0,42675327.0,43790552.0,44805150.0,45712061.0,46675691.0,47650442.0,48683582.0,49753612.0,50638224.0,51815263.0,52702879.0,53562631.0,54640021.0,56004287.0,56621595.0,57624157.0,59278251.0,60059647.0,60567978.0,61612166.0,62691762.0,63696413.0,64650464.0,65578228.0,66526535.0,67558619.0,68593731.0,69531788.0,70641149.0,71514894.0,72459294.0,73499611.0,74476464.0,75474449.0,76623186.0,77521395.0,78431539.0,79435103.0,80478491.0,81530557.0,82412276.0,83600247.0,84418487.0,85371958.0,86448222.0,87439174.0,88535067.0,89376290.0,90320054.0,91391006.0,92299998.0,93490046.0,94468662.0,95355099.0,96316343.0,97358843.0,98501247.0,99432751.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":124243.8487324516,"lower_bound":124201.20629384165,"upper_bound":124295.1464679903,"unit":"ns"},"mean":{"estimate":124294.92720298735,"lower_bound":124207.62881559465,"upper_bound":124418.07553729742,"unit":"ns"},"median":{"estimate":124172.29227941176,"lower_bound":124144.8338235294,"upper_bound":124204.20245559039,"unit":"ns"},"median_abs_dev":{"estimate":128.65761218098785,"lower_bound":90.30647960641915,"upper_bound":177.7239006399799,"unit":"ns"},"slope":{"estimate":124243.8487324516,"lower_bound":124201.20629384165,"upper_bound":124295.1464679903,"unit":"ns"},"change":{"mean":{"estimate":-0.0014441164786462846,"lower_bound":-0.00254387069744689,"upper_bound":-0.0002052641335441316,"unit":"%"},"median":{"estimate":-0.0017422838125861206,"lower_bound":-0.0020390843148089585,"upper_bound":-0.0014278103991428343,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"ed19/66666","report_directory":"/root/fuel-core/target/criterion/reports/ed19/66666","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":[1053109.0,2018800.0,3031109.0,4039875.0,5048911.0,6101597.0,7062074.0,8066594.0,9112372.0,10114535.0,11144942.0,12120880.0,13159370.0,14167807.0,15146793.0,16187588.0,17169949.0,18208041.0,19218991.0,20228364.0,21267682.0,22249113.0,23258552.0,24417247.0,25246630.0,26315721.0,27296065.0,28312869.0,29314453.0,30362807.0,31366686.0,32345115.0,33384152.0,34397388.0,35406772.0,36416356.0,37396979.0,38407714.0,39450344.0,40427309.0,41666889.0,42480330.0,43452511.0,44461815.0,45574585.0,46588407.0,47527753.0,48538123.0,49513012.0,50755136.0,51649460.0,52612239.0,53630918.0,54607483.0,55653490.0,56660790.0,57711350.0,58663927.0,59642597.0,60711402.0,61690508.0,62694253.0,63679048.0,64783247.0,65709610.0,66700374.0,67981270.0,68727468.0,69755003.0,70787432.0,71816561.0,72805157.0,73812569.0,74780311.0,76019361.0,76834659.0,77832839.0,78887456.0,79863034.0,81016042.0,81917740.0,82866211.0,84116961.0,85027692.0,86028725.0,86926400.0,88193979.0,88978925.0,90052038.0,91422960.0,92043123.0,93128265.0,94006399.0,95059204.0,96059615.0,97023606.0,98104409.0,99185820.0,100088862.0,101347849.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":168626.80591399438,"lower_bound":168577.17694341845,"upper_bound":168683.00524595252,"unit":"ns"},"mean":{"estimate":168674.99145808967,"lower_bound":168570.09922627368,"upper_bound":168841.4450355354,"unit":"ns"},"median":{"estimate":168563.60840162128,"lower_bound":168535.14930555556,"upper_bound":168592.97222222222,"unit":"ns"},"median_abs_dev":{"estimate":149.20819457324154,"lower_bound":113.14576967388344,"upper_bound":186.4458685860501,"unit":"ns"},"slope":{"estimate":168626.80591399438,"lower_bound":168577.17694341845,"upper_bound":168683.00524595252,"unit":"ns"},"change":{"mean":{"estimate":-0.004646823506988529,"lower_bound":-0.006252221828474227,"upper_bound":-0.0031890447325983408,"unit":"%"},"median":{"estimate":-0.004270781538924462,"lower_bound":-0.004487906157911059,"upper_bound":-0.004027649684399837,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"ed19/100000","report_directory":"/root/fuel-core/target/criterion/reports/ed19/100000","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":[1220125.0,2348997.0,3525556.0,4698470.0,5877003.0,7049869.0,8254466.0,9397526.0,10573715.0,11779660.0,12922336.0,14098420.0,15327432.0,16448571.0,17653270.0,18825575.0,20004512.0,21173168.0,22353897.0,23552131.0,24701781.0,25908153.0,27053601.0,28225044.0,29400924.0,30543735.0,31783247.0,32920528.0,34145094.0,35299515.0,36452091.0,37653871.0,38915117.0,40003554.0,41175174.0,42346144.0,43502145.0,44704467.0,45881542.0,47189697.0,48261098.0,49427118.0,50642757.0,51768263.0,52893505.0,54153763.0,55315115.0,56549052.0,57652508.0,58836293.0,60006356.0,61586508.0,62482109.0,63583922.0,64739987.0,66074406.0,67192181.0,68314350.0,69358500.0,70600157.0,71729711.0,72954218.0,74093963.0,75278367.0,76499583.0,77622346.0,78944476.0,79953328.0,81295135.0,82442236.0,83582242.0,84897458.0,86060246.0,87067630.0,88356897.0,89356816.0,90597705.0,91758167.0,92931739.0,94095653.0,95428801.0,96433972.0,97642519.0,98805863.0,99996361.0,101087751.0,102345272.0,103518097.0,104755718.0,105847317.0,107171899.0,108224793.0,109369403.0,110553854.0,111728015.0,112933390.0,114061918.0,115368993.0,116438766.0,117749866.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":235367.41996453376,"lower_bound":235319.27834586133,"upper_bound":235422.58452857498,"unit":"ns"},"mean":{"estimate":235441.3209647459,"lower_bound":235314.5437843047,"upper_bound":235646.87311456658,"unit":"ns"},"median":{"estimate":235307.2326555024,"lower_bound":235271.28913043477,"upper_bound":235336.1870967742,"unit":"ns"},"median_abs_dev":{"estimate":186.86610852216333,"lower_bound":119.71333254326234,"upper_bound":251.73372382973162,"unit":"ns"},"slope":{"estimate":235367.41996453376,"lower_bound":235319.27834586133,"upper_bound":235422.58452857498,"unit":"ns"},"change":{"mean":{"estimate":-0.003231779614664587,"lower_bound":-0.00436336973884937,"upper_bound":-0.0020502644744446828,"unit":"%"},"median":{"estimate":-0.003064426263187925,"lower_bound":-0.0033173824552790165,"upper_bound":-0.0027665519560293728,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"ed19","benchmarks":["ed19/ed19","ed19/1","ed19/10","ed19/100","ed19/1000","ed19/10000","ed19/19753","ed19/29629","ed19/44444","ed19/66666","ed19/100000"],"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":[5713,11426,17139,22852,28565,34278,39991,45704,51417,57130,62843,68556,74269,79982,85695,91408,97121,102834,108547,114260,119973,125686,131399,137112,142825,148538,154251,159964,165677,171390,177103,182816,188529,194242,199955,205668,211381,217094,222807,228520,234233,239946,245659,251372,257085,262798,268511,274224,279937,285650,291363,297076,302789,308502,314215,319928,325641,331354,337067,342780,348493,354206,359919,365632,371345,377058,382771,388484,394197,399910,405623,411336,417049,422762,428475,434188,439901,445614,451327,457040,462753,468466,474179,479892,485605,491318,497031,502744,508457,514170,519883,525596,531309,537022,542735,548448,554161,559874,565587,571300],"measured_values":[143130.0,287697.0,419126.0,540373.0,716797.0,845677.0,991205.0,1099056.0,1232339.0,1409864.0,1611252.0,1679440.0,1852805.0,1906868.0,2109769.0,2220690.0,2547368.0,2634040.0,2596352.0,2768726.0,2849852.0,3150865.0,3308296.0,3315708.0,3646484.0,3733763.0,3964287.0,3918217.0,4217867.0,4607809.0,4352403.0,4418699.0,4569625.0,4942236.0,4990001.0,4949469.0,5155600.0,5311660.0,5721242.0,5717614.0,6086172.0,5975846.0,6282049.0,6131252.0,6258848.0,6546597.0,6887311.0,6575067.0,7447214.0,7132373.0,7193089.0,7148597.0,7614885.0,7567608.0,7898521.0,7648403.0,8601259.0,7987063.0,8333150.0,8270749.0,8689493.0,8587570.0,9630561.0,9173811.0,9250788.0,9231236.0,9571874.0,9359909.0,10193166.0,10027909.0,10590725.0,10021565.0,10269758.0,10483662.0,11317682.0,10402736.0,11718555.0,11549398.0,11534610.0,11063972.0,11414134.0,11625606.0,11759882.0,11515262.0,12276767.0,12071043.0,12841012.0,12086432.0,12679778.0,12489147.0,12828019.0,12694407.0,13659558.0,13403917.0,14141036.0,13378324.0,13470029.0,13987071.0,14696729.0,13716175.0],"unit":"ns","throughput":[],"typical":{"estimate":24.939562155290172,"lower_bound":24.747596309396506,"upper_bound":25.140000658488926,"unit":"ns"},"mean":{"estimate":24.894589827422607,"lower_bound":24.749441516528105,"upper_bound":25.04338645940667,"unit":"ns"},"median":{"estimate":24.79926775856056,"lower_bound":24.61720634379313,"upper_bound":24.95972746976634,"unit":"ns"},"median_abs_dev":{"estimate":0.7519411268260644,"lower_bound":0.5614777670989249,"upper_bound":1.0026017751178258,"unit":"ns"},"slope":{"estimate":24.939562155290172,"lower_bound":24.747596309396506,"upper_bound":25.140000658488926,"unit":"ns"},"change":{"mean":{"estimate":0.01104109614044435,"lower_bound":0.0009408314878262392,"upper_bound":0.02022638991536166,"unit":"%"},"median":{"estimate":0.013425704702374919,"lower_bound":0.004042886523253131,"upper_bound":0.0247878707567164,"unit":"%"},"change":"NoChange"}} +{"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":[5728,11456,17184,22912,28640,34368,40096,45824,51552,57280,63008,68736,74464,80192,85920,91648,97376,103104,108832,114560,120288,126016,131744,137472,143200,148928,154656,160384,166112,171840,177568,183296,189024,194752,200480,206208,211936,217664,223392,229120,234848,240576,246304,252032,257760,263488,269216,274944,280672,286400,292128,297856,303584,309312,315040,320768,326496,332224,337952,343680,349408,355136,360864,366592,372320,378048,383776,389504,395232,400960,406688,412416,418144,423872,429600,435328,441056,446784,452512,458240,463968,469696,475424,481152,486880,492608,498336,504064,509792,515520,521248,526976,532704,538432,544160,549888,555616,561344,567072,572800],"measured_values":[167599.0,286644.0,419986.0,634690.0,721804.0,833582.0,944386.0,1141209.0,1241399.0,1384763.0,1528277.0,1626851.0,1796742.0,1948479.0,2085211.0,2228584.0,2339349.0,2426630.0,2628068.0,2738465.0,2935178.0,3025009.0,3100363.0,3308872.0,3420885.0,3623831.0,3724315.0,3885376.0,3951346.0,4104729.0,4256341.0,4421228.0,4514315.0,4670225.0,4798124.0,4987552.0,4971744.0,5242413.0,5310322.0,5454487.0,5708690.0,5732703.0,6019707.0,6102393.0,6226542.0,6312972.0,6518479.0,6644680.0,6806367.0,6930947.0,7149330.0,7102835.0,7264052.0,7328723.0,7563534.0,7794190.0,7928392.0,7967687.0,8202908.0,8208982.0,8507983.0,8579193.0,8724328.0,8904488.0,8950549.0,9113134.0,9196334.0,9171747.0,9529505.0,9634620.0,9658262.0,9932987.0,9998882.0,10126127.0,10233220.0,10400109.0,10609881.0,10722658.0,10720083.0,11195200.0,11068341.0,11158422.0,11324006.0,11522191.0,11849205.0,11965695.0,11997426.0,11991120.0,12185269.0,12322660.0,12514527.0,12623588.0,12714746.0,12759522.0,13281635.0,13315884.0,13347494.0,13669675.0,13637758.0,13915275.0],"unit":"ns","throughput":[],"typical":{"estimate":24.034352519889904,"lower_bound":23.97775869663326,"upper_bound":24.091625813276515,"unit":"ns"},"mean":{"estimate":24.157924799689532,"lower_bound":24.042589689991612,"upper_bound":24.309844358855617,"unit":"ns"},"median":{"estimate":24.0625287189533,"lower_bound":23.99391784951227,"upper_bound":24.13431768689356,"unit":"ns"},"median_abs_dev":{"estimate":0.2648566101721554,"lower_bound":0.20994292572079343,"upper_bound":0.321787325767969,"unit":"ns"},"slope":{"estimate":24.034352519889904,"lower_bound":23.97775869663326,"upper_bound":24.091625813276515,"unit":"ns"},"change":{"mean":{"estimate":-0.004767430721131838,"lower_bound":-0.014084820333294836,"upper_bound":0.004754315952498263,"unit":"%"},"median":{"estimate":0.003025549615448986,"lower_bound":-0.0031829481877385687,"upper_bound":0.007106443057607326,"unit":"%"},"change":"NoChange"}} +{"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":[5702,11404,17106,22808,28510,34212,39914,45616,51318,57020,62722,68424,74126,79828,85530,91232,96934,102636,108338,114040,119742,125444,131146,136848,142550,148252,153954,159656,165358,171060,176762,182464,188166,193868,199570,205272,210974,216676,222378,228080,233782,239484,245186,250888,256590,262292,267994,273696,279398,285100,290802,296504,302206,307908,313610,319312,325014,330716,336418,342120,347822,353524,359226,364928,370630,376332,382034,387736,393438,399140,404842,410544,416246,421948,427650,433352,439054,444756,450458,456160,461862,467564,473266,478968,484670,490372,496074,501776,507478,513180,518882,524584,530286,535988,541690,547392,553094,558796,564498,570200],"measured_values":[155929.0,288275.0,426010.0,595755.0,739825.0,842948.0,1007494.0,1128303.0,1291328.0,1460534.0,1612950.0,1772893.0,1848500.0,2019788.0,2171126.0,2263571.0,2462709.0,2568091.0,2725661.0,2881545.0,3000054.0,3194120.0,3335668.0,3508610.0,3602630.0,3720440.0,3881000.0,3977109.0,4148199.0,4252953.0,4430807.0,4608879.0,4717451.0,4905523.0,4980066.0,5470744.0,5280674.0,5449904.0,5597588.0,5732874.0,6061137.0,5931561.0,6205822.0,6285458.0,6492317.0,6579794.0,6821641.0,6807767.0,7093038.0,7138194.0,7329752.0,7513512.0,7514933.0,7697838.0,7958263.0,8111944.0,8282167.0,8287425.0,8394223.0,8678975.0,9029088.0,8844921.0,9018634.0,9169392.0,9535129.0,9663130.0,9950348.0,9825782.0,9876612.0,10118213.0,10507055.0,10325027.0,10932318.0,10506689.0,10966463.0,10888429.0,11040959.0,11130584.0,11420593.0,11458093.0,11543896.0,11635918.0,11999788.0,12131307.0,12274283.0,12318000.0,12544333.0,12710559.0,13004189.0,12936472.0,13208300.0,13394273.0,13310186.0,13550736.0,13583925.0,13877908.0,14405589.0,14014469.0,14251009.0,14675611.0],"unit":"ns","throughput":[],"typical":{"estimate":25.32477743026034,"lower_bound":25.246216455302854,"upper_bound":25.4085135324393,"unit":"ns"},"mean":{"estimate":25.31487309297271,"lower_bound":25.239023971629226,"upper_bound":25.39851427123556,"unit":"ns"},"median":{"estimate":25.252284690335483,"lower_bound":25.14962342647804,"upper_bound":25.31422462706584,"unit":"ns"},"median_abs_dev":{"estimate":0.2698923317854555,"lower_bound":0.20911381779349963,"upper_bound":0.3524439578387924,"unit":"ns"},"slope":{"estimate":25.32477743026034,"lower_bound":25.246216455302854,"upper_bound":25.4085135324393,"unit":"ns"},"change":{"mean":{"estimate":-0.012433731421345517,"lower_bound":-0.016968516060320533,"upper_bound":-0.007611493212274237,"unit":"%"},"median":{"estimate":-0.008320766656433332,"lower_bound":-0.016243374625902196,"upper_bound":-0.0032677027889704835,"unit":"%"},"change":"NoChange"}} +{"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":[5721,11442,17163,22884,28605,34326,40047,45768,51489,57210,62931,68652,74373,80094,85815,91536,97257,102978,108699,114420,120141,125862,131583,137304,143025,148746,154467,160188,165909,171630,177351,183072,188793,194514,200235,205956,211677,217398,223119,228840,234561,240282,246003,251724,257445,263166,268887,274608,280329,286050,291771,297492,303213,308934,314655,320376,326097,331818,337539,343260,348981,354702,360423,366144,371865,377586,383307,389028,394749,400470,406191,411912,417633,423354,429075,434796,440517,446238,451959,457680,463401,469122,474843,480564,486285,492006,497727,503448,509169,514890,520611,526332,532053,537774,543495,549216,554937,560658,566379,572100],"measured_values":[170651.0,283271.0,431549.0,562107.0,711748.0,843045.0,984859.0,1127799.0,1271234.0,1406429.0,1562931.0,1711573.0,1843590.0,1985343.0,2119524.0,2274337.0,2416267.0,2548207.0,2729957.0,2831588.0,2989556.0,3147919.0,3298117.0,3393866.0,3613459.0,3675567.0,3882210.0,3983020.0,4103190.0,4384802.0,4627279.0,4562674.0,4689945.0,4875170.0,5475167.0,5114188.0,5351260.0,5444844.0,5518464.0,5645003.0,5810202.0,5915239.0,6134637.0,6219666.0,6412589.0,6645628.0,6817265.0,6785843.0,6983813.0,7121796.0,7427163.0,7393515.0,7532986.0,7753586.0,7807851.0,8059208.0,8192689.0,8208792.0,8450552.0,8671116.0,8749219.0,8913517.0,9024703.0,9189366.0,9639278.0,9481389.0,9709755.0,9655220.0,9849092.0,9980901.0,11038634.0,10207609.0,10678082.0,10758243.0,10708573.0,10742614.0,10968674.0,11078420.0,11312866.0,11389744.0,11432418.0,11671655.0,11769349.0,11950514.0,12204484.0,12414867.0,12578814.0,12644622.0,12678237.0,12849065.0,12855916.0,13162337.0,13304576.0,13302836.0,13581087.0,13529304.0,14784163.0,14108249.0,14069722.0,14205593.0],"unit":"ns","throughput":[],"typical":{"estimate":25.068219945303,"lower_bound":24.960113940974182,"upper_bound":25.206025602900485,"unit":"ns"},"mean":{"estimate":25.06739656160698,"lower_bound":24.955339249489995,"upper_bound":25.209130253669993,"unit":"ns"},"median":{"estimate":24.904219446021088,"lower_bound":24.85281957161873,"upper_bound":24.98843043634256,"unit":"ns"},"median_abs_dev":{"estimate":0.24752600756851031,"lower_bound":0.19131156189177567,"upper_bound":0.29670037834091384,"unit":"ns"},"slope":{"estimate":25.068219945303,"lower_bound":24.960113940974182,"upper_bound":25.206025602900485,"unit":"ns"},"change":{"mean":{"estimate":-0.03461913194201627,"lower_bound":-0.0432435962079303,"upper_bound":-0.02652130370336546,"unit":"%"},"median":{"estimate":-0.032838653761246395,"lower_bound":-0.03599546287167377,"upper_bound":-0.029285211162954128,"unit":"%"},"change":"Improved"}} +{"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":[5723,11446,17169,22892,28615,34338,40061,45784,51507,57230,62953,68676,74399,80122,85845,91568,97291,103014,108737,114460,120183,125906,131629,137352,143075,148798,154521,160244,165967,171690,177413,183136,188859,194582,200305,206028,211751,217474,223197,228920,234643,240366,246089,251812,257535,263258,268981,274704,280427,286150,291873,297596,303319,309042,314765,320488,326211,331934,337657,343380,349103,354826,360549,366272,371995,377718,383441,389164,394887,400610,406333,412056,417779,423502,429225,434948,440671,446394,452117,457840,463563,469286,475009,480732,486455,492178,497901,503624,509347,515070,520793,526516,532239,537962,543685,549408,555131,560854,566577,572300],"measured_values":[157571.0,272052.0,425417.0,580200.0,687495.0,864074.0,958427.0,1156873.0,1302190.0,1404043.0,1590618.0,1680227.0,1901045.0,1963260.0,2093174.0,2204209.0,2369044.0,2486405.0,2627039.0,2785515.0,2954640.0,3089731.0,3216820.0,3283171.0,3527507.0,3606834.0,3820622.0,3904718.0,4050460.0,4155730.0,4305989.0,4580625.0,4608409.0,4743955.0,4806039.0,4958108.0,5158617.0,5221109.0,5455973.0,5725253.0,5759759.0,5821990.0,6054302.0,6173690.0,6494477.0,6537795.0,6524729.0,6787100.0,6800777.0,7198958.0,7210002.0,7515808.0,7587491.0,7580614.0,7678997.0,8038241.0,8036121.0,8235138.0,8210481.0,8533256.0,8683322.0,8843762.0,8875662.0,9067691.0,9283346.0,9320147.0,9597075.0,9520639.0,9603278.0,9707627.0,9922402.0,10009915.0,10167922.0,10300711.0,10404272.0,10588644.0,10709990.0,10882646.0,10962983.0,11143757.0,11476059.0,11647238.0,11574482.0,11727500.0,11787168.0,11888627.0,12205662.0,12194452.0,12406209.0,12459639.0,12952817.0,13201269.0,13347809.0,13204218.0,13237038.0,13375823.0,13615757.0,13829232.0,14233724.0,14343060.0],"unit":"ns","throughput":[],"typical":{"estimate":24.563845748430037,"lower_bound":24.48286591099385,"upper_bound":24.64891496808124,"unit":"ns"},"mean":{"estimate":24.584633467819,"lower_bound":24.49760174664937,"upper_bound":24.683024508360113,"unit":"ns"},"median":{"estimate":24.46516806967414,"lower_bound":24.38023558191405,"upper_bound":24.564699206051195,"unit":"ns"},"median_abs_dev":{"estimate":0.33992565999794133,"lower_bound":0.23088111009001222,"upper_bound":0.44347345008870304,"unit":"ns"},"slope":{"estimate":24.563845748430037,"lower_bound":24.48286591099385,"upper_bound":24.64891496808124,"unit":"ns"},"change":{"mean":{"estimate":-0.04507302593779239,"lower_bound":-0.05448825094949521,"upper_bound":-0.036392647617285175,"unit":"%"},"median":{"estimate":-0.04142330471443212,"lower_bound":-0.04857037641988082,"upper_bound":-0.031509877439554024,"unit":"%"},"change":"Improved"}} +{"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":[2372.0,1939.0,2062.0,1944.0,2004.0,2012.0,1925.0,1996.0,1983.0,1928.0,1903.0,1935.0,1941.0,1920.0,2038.0,1978.0,1923.0,1971.0,2095.0,1918.0,1923.0,1918.0,1953.0,1949.0,2149.0,2411.0,1971.0,1978.0,2231.0,1986.0,1952.0,1921.0,2009.0,2000.0,1894.0,1880.0,1887.0,1949.0,1881.0,1903.0,1891.0,1896.0,1866.0,2006.0,1872.0,1892.0,1962.0,2015.0,1891.0,1954.0,1919.0,1909.0,1958.0,1884.0,1872.0,2072.0,1839.0,1883.0,1998.0,1947.0,1869.0,2028.0,1868.0,2025.0,1882.0,1879.0,1903.0,1974.0,1970.0,1919.0,1897.0,1930.0,1918.0,1856.0,1808.0,1898.0,1986.0,1817.0,1987.0,1879.0,1837.0,1841.0,1900.0,1904.0,1911.0,1840.0,1963.0,2163.0,2059.0,2064.0,1960.0,1853.0,1877.0,1902.0,1907.0,1854.0,1902.0,1889.0,1937.0,1847.0],"unit":"ns","throughput":[],"typical":{"estimate":1947.61,"lower_bound":1929.79,"upper_bound":1967.49,"unit":"ns"},"mean":{"estimate":1947.61,"lower_bound":1929.79,"upper_bound":1967.49,"unit":"ns"},"median":{"estimate":1923.0,"lower_bound":1909.0,"upper_bound":1947.0,"unit":"ns"},"median_abs_dev":{"estimate":63.01049888134003,"lower_bound":48.92579913139343,"upper_bound":80.0603985786438,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.020829143707517206,"lower_bound":-0.03584710557540078,"upper_bound":-0.0061764921779734,"unit":"%"},"median":{"estimate":-0.015613002303557666,"lower_bound":-0.024047070862113107,"upper_bound":-0.0025601638504864077,"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":[1295.0,978.0,906.0,1250.0,934.0,915.0,925.0,910.0,999.0,975.0,1386.0,1300.0,971.0,935.0,1103.0,942.0,1287.0,929.0,848.0,945.0,877.0,836.0,843.0,844.0,920.0,921.0,958.0,889.0,1003.0,1385.0,1004.0,1218.0,967.0,851.0,878.0,862.0,867.0,917.0,871.0,898.0,941.0,841.0,943.0,873.0,973.0,848.0,867.0,834.0,837.0,926.0,897.0,1341.0,952.0,886.0,958.0,892.0,905.0,944.0,921.0,837.0,906.0,854.0,1349.0,1225.0,983.0,926.0,960.0,942.0,956.0,3087.0,944.0,900.0,930.0,919.0,949.0,835.0,906.0,902.0,918.0,962.0,909.0,880.0,907.0,861.0,936.0,944.0,1131.0,938.0,895.0,1051.0,986.0,988.0,919.0,923.0,940.0,917.0,886.0,951.0,851.0,965.0],"unit":"ns","throughput":[],"typical":{"estimate":980.89,"lower_bound":941.08,"upper_bound":1036.29,"unit":"ns"},"mean":{"estimate":980.89,"lower_bound":941.08,"upper_bound":1036.29,"unit":"ns"},"median":{"estimate":926.0,"lower_bound":917.0,"upper_bound":942.0,"unit":"ns"},"median_abs_dev":{"estimate":56.33879899978638,"lower_bound":40.771499276161194,"upper_bound":74.87129867076874,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.1109006199920235,"lower_bound":-0.15963209016761376,"upper_bound":-0.05611325551730562,"unit":"%"},"median":{"estimate":-0.11429937828790049,"lower_bound":-0.14239028944911303,"upper_bound":-0.0818226359627634,"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":[1550.0,1485.0,1418.0,1389.0,1391.0,1415.0,1381.0,1371.0,1409.0,1406.0,1778.0,1441.0,1436.0,1400.0,1467.0,1743.0,1373.0,1360.0,1453.0,1398.0,1474.0,1481.0,1444.0,1401.0,1420.0,1373.0,1388.0,1424.0,1391.0,1386.0,1415.0,1394.0,1502.0,1385.0,1396.0,1400.0,1450.0,1385.0,1434.0,1494.0,1380.0,1534.0,1501.0,1485.0,1420.0,1516.0,1490.0,1460.0,1471.0,1438.0,1377.0,1375.0,1402.0,1389.0,1488.0,1474.0,1467.0,1443.0,1779.0,1367.0,1449.0,1446.0,1463.0,1368.0,1395.0,1397.0,1378.0,1364.0,1420.0,1430.0,1479.0,1473.0,1412.0,1416.0,1440.0,1408.0,1447.0,1396.0,1368.0,1410.0,1377.0,1382.0,1392.0,1404.0,1365.0,1388.0,1446.0,1376.0,1417.0,1392.0,1347.0,1371.0,1444.0,1393.0,1350.0,1407.0,1407.0,1384.0,1423.0,1388.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":1429.69,"lower_bound":1416.38,"upper_bound":1445.0,"unit":"ns"},"mean":{"estimate":1429.69,"lower_bound":1416.38,"upper_bound":1445.0,"unit":"ns"},"median":{"estimate":1409.5,"lower_bound":1399.0,"upper_bound":1421.5,"unit":"ns"},"median_abs_dev":{"estimate":45.960599184036255,"lower_bound":30.393299460411072,"upper_bound":54.85619902610779,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0052806255185700035,"lower_bound":-0.015778948982591905,"upper_bound":0.02479937336138205,"unit":"%"},"median":{"estimate":0.021747009786154514,"lower_bound":-0.0021193924408335896,"upper_bound":0.0347730600292826,"unit":"%"},"change":"NoChange"}} +{"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":[1834.0,1453.0,1448.0,1385.0,1458.0,1460.0,1419.0,1487.0,1459.0,1414.0,1454.0,1444.0,1406.0,1501.0,1725.0,1519.0,1513.0,1450.0,1394.0,1679.0,1448.0,1371.0,1735.0,1421.0,1440.0,1368.0,1375.0,1406.0,1706.0,1527.0,1383.0,1370.0,1348.0,1360.0,1502.0,1324.0,1347.0,1361.0,1354.0,1352.0,1332.0,1390.0,1370.0,1350.0,1336.0,1448.0,1476.0,1397.0,1555.0,1369.0,1456.0,1360.0,1356.0,1486.0,1358.0,1423.0,1390.0,1398.0,1428.0,1373.0,1384.0,1401.0,1420.0,1454.0,1486.0,1445.0,1372.0,1349.0,1417.0,1405.0,1290.0,1825.0,1560.0,1657.0,1487.0,1343.0,1334.0,1363.0,1428.0,1374.0,1422.0,1457.0,1418.0,1360.0,1410.0,1355.0,1464.0,1486.0,1466.0,1462.0,1686.0,1384.0,1387.0,1516.0,1384.0,1371.0,1375.0,1365.0,1713.0,1346.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":1440.72,"lower_bound":1420.68975,"upper_bound":1462.54,"unit":"ns"},"mean":{"estimate":1440.72,"lower_bound":1420.68975,"upper_bound":1462.54,"unit":"ns"},"median":{"estimate":1415.5,"lower_bound":1390.0,"upper_bound":1440.0,"unit":"ns"},"median_abs_dev":{"estimate":68.19959878921509,"lower_bound":53.3735990524292,"upper_bound":88.95599842071533,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.03981812276713215,"lower_bound":0.01533164733917668,"upper_bound":0.0645142596738791,"unit":"%"},"median":{"estimate":0.05476900149031305,"lower_bound":0.03556872915894771,"upper_bound":0.072072072072072,"unit":"%"},"change":"Regressed"}} +{"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":[1909.0,1749.0,1617.0,1611.0,1697.0,1995.0,1554.0,1663.0,1654.0,1603.0,1678.0,1629.0,1641.0,1626.0,1599.0,1797.0,1659.0,1625.0,1641.0,1690.0,1609.0,1623.0,1855.0,1700.0,1640.0,1728.0,1829.0,2063.0,1707.0,1697.0,1561.0,1753.0,1686.0,1603.0,1702.0,1647.0,1628.0,1759.0,1650.0,1618.0,1667.0,1635.0,1637.0,1772.0,1688.0,1668.0,1681.0,1600.0,1582.0,1743.0,1627.0,1660.0,1665.0,1718.0,1765.0,1827.0,1610.0,1610.0,1701.0,1551.0,2028.0,1688.0,1645.0,2265.0,1693.0,1598.0,1855.0,1673.0,1610.0,1846.0,1713.0,2028.0,2404.0,1667.0,1652.0,1825.0,1923.0,1969.0,1853.0,1704.0,1847.0,1911.0,1717.0,1624.0,1906.0,1681.0,1620.0,1895.0,1676.0,1601.0,1858.0,1678.0,1719.0,1823.0,1689.0,1703.0,2076.0,1674.0,1630.0,1645.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":1727.14,"lower_bound":1700.05,"upper_bound":1757.20025,"unit":"ns"},"mean":{"estimate":1727.14,"lower_bound":1700.05,"upper_bound":1757.20025,"unit":"ns"},"median":{"estimate":1681.0,"lower_bound":1665.0,"upper_bound":1700.0,"unit":"ns"},"median_abs_dev":{"estimate":83.76689851284027,"lower_bound":59.303998947143555,"upper_bound":112.67759799957275,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.7503115431433041,"lower_bound":-0.9006161973794948,"upper_bound":-0.006796663306997548,"unit":"%"},"median":{"estimate":-0.02578962619530567,"lower_bound":-0.053032440056417496,"upper_bound":-0.00912301353737488,"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":[5542.0,5122.0,5157.0,5190.0,5266.0,5194.0,5200.0,5181.0,5118.0,5164.0,5227.0,5070.0,5000.0,5187.0,5385.0,5167.0,5098.0,5211.0,5414.0,5341.0,5646.0,5193.0,5230.0,5231.0,5377.0,5125.0,5256.0,5422.0,5119.0,5191.0,5194.0,5183.0,5115.0,5386.0,5319.0,5387.0,5157.0,5127.0,5141.0,5093.0,5322.0,5290.0,5266.0,5436.0,5292.0,5149.0,5197.0,5162.0,5184.0,5166.0,5105.0,5145.0,5232.0,5170.0,5096.0,5179.0,5245.0,5456.0,5414.0,5118.0,5302.0,5221.0,5211.0,5201.0,5181.0,5317.0,5286.0,5232.0,5148.0,5211.0,5117.0,5101.0,5185.0,5097.0,5128.0,5149.0,5297.0,5382.0,5059.0,5110.0,5278.0,5163.0,5125.0,5067.0,5182.0,5161.0,5149.0,5315.0,5129.0,5171.0,5102.0,5261.0,5186.0,5120.0,5162.0,5144.0,5135.0,5173.0,5137.0,5085.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":5209.3,"lower_bound":5188.46,"upper_bound":5231.58025,"unit":"ns"},"mean":{"estimate":5209.3,"lower_bound":5188.46,"upper_bound":5231.58025,"unit":"ns"},"median":{"estimate":5182.5,"lower_bound":5164.0,"upper_bound":5195.5,"unit":"ns"},"median_abs_dev":{"estimate":83.76689851284027,"lower_bound":60.786598920822144,"upper_bound":107.48849809169769,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0014414911766170713,"lower_bound":-0.013755296404539567,"upper_bound":0.007764369624651129,"unit":"%"},"median":{"estimate":0.0006758061401814786,"lower_bound":-0.004608748461785818,"upper_bound":0.005628881987577605,"unit":"%"},"change":"NoChange"}} +{"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":[83401.0,39940.0,39815.0,39836.0,39821.0,39816.0,39871.0,41725.0,40156.0,40385.0,39986.0,39909.0,39824.0,39928.0,39886.0,39983.0,39974.0,40169.0,39810.0,39842.0,40246.0,39908.0,39789.0,39939.0,39895.0,39890.0,39816.0,40038.0,39768.0,39880.0,39886.0,39960.0,39895.0,40021.0,39834.0,39814.0,39987.0,39866.0,40490.0,40045.0,39782.0,39835.0,39969.0,39870.0,40008.0,39941.0,39862.0,39936.0,39886.0,40523.0,39794.0,39985.0,39850.0,39973.0,39799.0,39809.0,39758.0,39867.0,39866.0,39857.0,39919.0,39965.0,39821.0,39862.0,39781.0,39869.0,39941.0,39853.0,39900.0,39857.0,39837.0,39895.0,39910.0,39879.0,39824.0,39891.0,39845.0,39885.0,39907.0,39676.0,39861.0,39848.0,39762.0,39833.0,39947.0,39762.0,39959.0,40095.0,40238.0,39934.0,39885.0,39689.0,40201.0,39853.0,39720.0,39896.0,39808.0,39811.0,39813.0,39804.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":40362.5,"lower_bound":39896.55975,"upper_bound":41259.57,"unit":"ns"},"mean":{"estimate":40362.5,"lower_bound":39896.55975,"upper_bound":41259.57,"unit":"ns"},"median":{"estimate":39882.5,"lower_bound":39861.5,"upper_bound":39895.5,"unit":"ns"},"median_abs_dev":{"estimate":88.95599842071533,"lower_bound":65.9756988286972,"upper_bound":110.45369803905487,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.004071261757802036,"lower_bound":-0.01886397344166407,"upper_bound":0.03205735158860685,"unit":"%"},"median":{"estimate":0.00013792411665880522,"lower_bound":-0.0006515313021660917,"upper_bound":0.000991179754839866,"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":[96418.0,77395.0,77318.0,77192.0,77253.0,77176.0,77093.0,77154.0,77396.0,77111.0,77316.0,77115.0,77198.0,77334.0,77113.0,77274.0,77302.0,77244.0,77188.0,77399.0,77231.0,77185.0,92220.0,77434.0,77210.0,77323.0,77407.0,77285.0,77282.0,77144.0,77287.0,77268.0,77154.0,77342.0,77166.0,77167.0,77183.0,77645.0,77173.0,77261.0,77229.0,77100.0,77175.0,77534.0,77307.0,77267.0,77197.0,77205.0,77199.0,77144.0,77001.0,77333.0,77079.0,77210.0,77219.0,77202.0,77048.0,77098.0,77169.0,77177.0,77199.0,77292.0,77167.0,77178.0,77310.0,77166.0,77129.0,77219.0,77110.0,77129.0,77190.0,77052.0,77144.0,77327.0,77272.0,77344.0,77219.0,77022.0,77142.0,77162.0,77129.0,77099.0,77136.0,77515.0,77107.0,77132.0,77114.0,77098.0,77243.0,77173.0,77229.0,77277.0,77093.0,77197.0,77122.0,77120.0,77202.0,77108.0,76941.0,76980.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":77550.37,"lower_bound":77198.12,"upper_bound":78092.6105,"unit":"ns"},"mean":{"estimate":77550.37,"lower_bound":77198.12,"upper_bound":78092.6105,"unit":"ns"},"median":{"estimate":77194.5,"lower_bound":77173.0,"upper_bound":77214.5,"unit":"ns"},"median_abs_dev":{"estimate":108.22979807853699,"lower_bound":75.61259865760803,"upper_bound":127.50359773635864,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.028842914744711567,"lower_bound":-0.08410613113462408,"upper_bound":0.006090545872098147,"unit":"%"},"median":{"estimate":0.0026561891154694983,"lower_bound":0.0019796697651528364,"upper_bound":0.0030537327009290127,"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":[183420.0,115403.0,115121.0,114962.0,115001.0,115011.0,115005.0,114913.0,115267.0,115316.0,115266.0,115010.0,114936.0,114965.0,114891.0,114946.0,114898.0,114909.0,114939.0,115142.0,114941.0,114901.0,114907.0,114953.0,114836.0,114908.0,115000.0,114943.0,114910.0,115272.0,114897.0,114916.0,115129.0,114958.0,114973.0,114978.0,115021.0,114859.0,115004.0,114948.0,114870.0,114962.0,114872.0,114979.0,114995.0,115270.0,114959.0,117314.0,115084.0,114910.0,115112.0,114964.0,114811.0,114966.0,114842.0,114908.0,114929.0,115179.0,115070.0,114950.0,114897.0,115007.0,114970.0,114933.0,114920.0,115245.0,114906.0,114939.0,115049.0,115009.0,114921.0,114881.0,115035.0,114928.0,114930.0,114941.0,115611.0,115315.0,114959.0,114982.0,115024.0,114964.0,114969.0,114981.0,115086.0,114971.0,115064.0,114952.0,114988.0,114936.0,114870.0,114953.0,116984.0,114949.0,114924.0,115035.0,114871.0,114955.0,114983.0,114961.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":115723.19,"lower_bound":114994.37,"upper_bound":117136.80125,"unit":"ns"},"mean":{"estimate":115723.19,"lower_bound":114994.37,"upper_bound":117136.80125,"unit":"ns"},"median":{"estimate":114962.0,"lower_bound":114950.0,"upper_bound":114978.0,"unit":"ns"},"median_abs_dev":{"estimate":70.42349874973297,"lower_bound":51.89099907875061,"upper_bound":90.43859839439392,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.016182217210130467,"lower_bound":-0.05361449569799315,"upper_bound":0.011535875393109615,"unit":"%"},"median":{"estimate":0.0003524144742279578,"lower_bound":-0.00012176666028840266,"upper_bound":0.000739908947675394,"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":[227234.0,171650.0,171610.0,171612.0,171539.0,171395.0,171378.0,171347.0,171692.0,171395.0,171277.0,171616.0,171553.0,171641.0,171462.0,171589.0,171637.0,171752.0,171866.0,171643.0,171612.0,171518.0,171547.0,174278.0,171546.0,173669.0,171545.0,171495.0,171442.0,171578.0,171414.0,171903.0,171495.0,171486.0,171509.0,171742.0,171437.0,171385.0,171460.0,171405.0,171432.0,171494.0,171367.0,171356.0,173842.0,171869.0,173816.0,171484.0,171503.0,171486.0,171334.0,171497.0,171509.0,171299.0,171365.0,171406.0,171498.0,171423.0,171364.0,171515.0,171565.0,171392.0,171429.0,171406.0,171525.0,171397.0,171346.0,171379.0,171659.0,171418.0,171453.0,171566.0,171551.0,171391.0,171391.0,171543.0,171361.0,171327.0,171317.0,171432.0,171745.0,171377.0,171579.0,171353.0,171500.0,171663.0,171499.0,171661.0,171634.0,171473.0,171470.0,171658.0,171444.0,171323.0,171605.0,171485.0,171364.0,171436.0,171254.0,171534.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":172151.18,"lower_bound":171526.54974999998,"upper_bound":173327.2305,"unit":"ns"},"mean":{"estimate":172151.18,"lower_bound":171526.54974999998,"upper_bound":173327.2305,"unit":"ns"},"median":{"estimate":171495.0,"lower_bound":171457.5,"upper_bound":171520.0,"unit":"ns"},"median_abs_dev":{"estimate":148.2599973678589,"lower_bound":108.97109806537628,"upper_bound":175.68809688091278,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.03289684313065122,"lower_bound":-0.08842661283026025,"upper_bound":0.002578222605088062,"unit":"%"},"median":{"estimate":0.001252331701507181,"lower_bound":0.0009191632404734751,"upper_bound":0.0015826758317807332,"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":[323986.0,256334.0,256534.0,256441.0,256164.0,256503.0,256268.0,256135.0,256189.0,256297.0,256203.0,256202.0,256108.0,256179.0,256437.0,256114.0,256227.0,285463.0,256120.0,256162.0,256149.0,256550.0,256226.0,256295.0,256183.0,256018.0,256249.0,256170.0,256400.0,256180.0,258571.0,256376.0,256230.0,256277.0,256171.0,256332.0,256158.0,256237.0,256233.0,256284.0,256204.0,256410.0,256217.0,256695.0,256141.0,256081.0,256127.0,286418.0,256279.0,256045.0,256148.0,256154.0,256204.0,256235.0,256146.0,256301.0,256158.0,256156.0,256243.0,256365.0,258902.0,256284.0,256245.0,256204.0,256103.0,256247.0,256158.0,256270.0,256739.0,256131.0,256239.0,256609.0,256052.0,259613.0,256125.0,255941.0,256173.0,256007.0,256507.0,256084.0,256150.0,256137.0,256093.0,256557.0,270468.0,256269.0,255957.0,257351.0,256455.0,256923.0,256338.0,256537.0,258722.0,256494.0,256099.0,256148.0,256258.0,256254.0,256151.0,256250.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":257783.26,"lower_bound":256505.88925,"upper_bound":259575.81275,"unit":"ns"},"mean":{"estimate":257783.26,"lower_bound":256505.88925,"upper_bound":259575.81275,"unit":"ns"},"median":{"estimate":256234.0,"lower_bound":256196.0,"upper_bound":256261.0,"unit":"ns"},"median_abs_dev":{"estimate":134.1752976179123,"lower_bound":95.62769830226898,"upper_bound":183.10109674930573,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.004344285396922221,"lower_bound":-0.002800181690025824,"upper_bound":0.01234924616043202,"unit":"%"},"median":{"estimate":0.002776641770162902,"lower_bound":0.0025238790259782817,"upper_bound":0.0029551290080160886,"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":[452902.0,383791.0,383646.0,383613.0,383790.0,383796.0,383672.0,383648.0,383641.0,383703.0,384229.0,387017.0,383424.0,385855.0,383396.0,383600.0,383397.0,386448.0,383597.0,383998.0,383440.0,413439.0,383400.0,383557.0,383396.0,385963.0,383377.0,385937.0,383485.0,414008.0,383464.0,385907.0,383554.0,386268.0,383350.0,383552.0,383549.0,383585.0,383910.0,383919.0,383398.0,383547.0,383452.0,383474.0,383524.0,383547.0,383414.0,383518.0,383477.0,383755.0,383529.0,383559.0,383464.0,383824.0,383347.0,383571.0,383335.0,383647.0,383655.0,383734.0,383480.0,383476.0,383688.0,383582.0,383374.0,383535.0,383474.0,383629.0,383642.0,383519.0,383463.0,383553.0,383533.0,383548.0,383424.0,385976.0,384651.0,383530.0,383377.0,383610.0,383494.0,383433.0,383782.0,383749.0,383492.0,385519.0,383445.0,453690.0,383482.0,383528.0,383500.0,385789.0,383652.0,413244.0,383514.0,414407.0,383711.0,386049.0,383449.0,386203.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":386481.9,"lower_bound":384540.55875,"upper_bound":388903.6005,"unit":"ns"},"mean":{"estimate":386481.9,"lower_bound":384540.55875,"upper_bound":388903.6005,"unit":"ns"},"median":{"estimate":383565.0,"lower_bound":383535.0,"upper_bound":383643.5,"unit":"ns"},"median_abs_dev":{"estimate":180.13589680194855,"lower_bound":134.1752976179123,"upper_bound":263.9027953147888,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0003340210897888607,"lower_bound":-0.012129574694046026,"upper_bound":0.010541070619209425,"unit":"%"},"median":{"estimate":0.0023558557322556073,"lower_bound":0.002245957863792336,"upper_bound":0.00259396423073599,"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":[1727.0,1454.0,1509.0,1467.0,1495.0,1440.0,1482.0,1430.0,1369.0,1795.0,1406.0,1398.0,1418.0,1780.0,1517.0,1455.0,1448.0,1881.0,1822.0,1419.0,1469.0,1538.0,1459.0,1573.0,1541.0,1495.0,1632.0,1516.0,1512.0,1501.0,1463.0,1712.0,1908.0,1465.0,1440.0,1506.0,1487.0,1724.0,1617.0,1618.0,1598.0,1780.0,2323.0,1684.0,1543.0,1863.0,1632.0,1682.0,1556.0,1427.0,1520.0,1525.0,1551.0,1515.0,1420.0,1607.0,1781.0,1569.0,1409.0,1374.0,1454.0,1423.0,1431.0,1455.0,1485.0,1394.0,1438.0,1434.0,1422.0,1433.0,1436.0,1620.0,1944.0,1527.0,1555.0,1495.0,1464.0,1577.0,1487.0,1536.0,1472.0,1500.0,1426.0,1427.0,1540.0,1515.0,1612.0,1528.0,1830.0,1581.0,1497.0,1860.0,1323.0,1420.0,1435.0,1471.0,1440.0,1357.0,1435.0,1437.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":1543.63,"lower_bound":1514.61,"upper_bound":1575.52025,"unit":"ns"},"mean":{"estimate":1543.63,"lower_bound":1514.61,"upper_bound":1575.52025,"unit":"ns"},"median":{"estimate":1498.5,"lower_bound":1470.5,"upper_bound":1521.0,"unit":"ns"},"median_abs_dev":{"estimate":94.88639831542969,"lower_bound":68.94089877605438,"upper_bound":127.50359773635864,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.05958869318103832,"lower_bound":0.0249236690617335,"upper_bound":0.08921828857442426,"unit":"%"},"median":{"estimate":0.06616862326574169,"lower_bound":0.031586254772648426,"upper_bound":0.08522114347357057,"unit":"%"},"change":"Regressed"}} +{"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":[1563.0,1313.0,1376.0,1372.0,1405.0,1411.0,1453.0,1445.0,1541.0,1324.0,1389.0,1316.0,1360.0,1435.0,1401.0,1638.0,1434.0,1389.0,1360.0,1422.0,1410.0,1343.0,1469.0,1337.0,1410.0,1394.0,1371.0,1396.0,1452.0,1427.0,1373.0,1391.0,1346.0,1405.0,1377.0,1354.0,1460.0,1351.0,1432.0,1312.0,1305.0,1394.0,1409.0,1304.0,1301.0,1366.0,1440.0,1436.0,1396.0,1421.0,1383.0,1392.0,1554.0,1415.0,2144.0,1501.0,1466.0,1702.0,1415.0,1360.0,1402.0,1418.0,1430.0,1492.0,1448.0,1525.0,1411.0,1483.0,1305.0,1408.0,1458.0,1607.0,1357.0,1411.0,1371.0,1314.0,1423.0,1356.0,1352.0,1392.0,1361.0,1388.0,1482.0,1378.0,1479.0,1431.0,1423.0,1378.0,1458.0,1350.0,1340.0,1346.0,1321.0,1363.0,1442.0,1367.0,1327.0,1401.0,1427.0,1375.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":1414.61,"lower_bound":1396.91,"upper_bound":1436.39,"unit":"ns"},"mean":{"estimate":1414.61,"lower_bound":1396.91,"upper_bound":1436.39,"unit":"ns"},"median":{"estimate":1401.0,"lower_bound":1389.0,"upper_bound":1411.0,"unit":"ns"},"median_abs_dev":{"estimate":57.08009898662567,"lower_bound":42.99539923667908,"upper_bound":69.68219876289368,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.041299854291620086,"lower_bound":-0.07483227679895436,"upper_bound":-0.008404119076145817,"unit":"%"},"median":{"estimate":0.006465517241379226,"lower_bound":-0.01898734177215189,"upper_bound":0.026749725174056493,"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":[2539.0,1688.0,1558.0,1880.0,1627.0,1578.0,1863.0,1671.0,1881.0,1895.0,1770.0,1603.0,1906.0,1916.0,1623.0,1647.0,1716.0,1656.0,1630.0,1683.0,1582.0,1881.0,1705.0,2121.0,2292.0,1646.0,1612.0,1856.0,1722.0,1605.0,1553.0,1997.0,1626.0,1736.0,1638.0,1570.0,1810.0,1726.0,1657.0,1855.0,1657.0,1673.0,1860.0,1622.0,1592.0,1736.0,1733.0,1658.0,1673.0,1715.0,1626.0,1637.0,1781.0,1604.0,1666.0,1722.0,1659.0,1722.0,1855.0,1896.0,1609.0,1596.0,1489.0,1589.0,1667.0,1620.0,1555.0,1718.0,1628.0,1924.0,1683.0,1831.0,1944.0,1790.0,1649.0,1568.0,1646.0,1599.0,1590.0,1702.0,1604.0,1655.0,1665.0,1657.0,2010.0,1759.0,1647.0,1625.0,1657.0,1573.0,1658.0,1666.0,1616.0,1834.0,1755.0,1605.0,1951.0,1703.0,1688.0,1712.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":1720.44,"lower_bound":1691.47975,"upper_bound":1752.88,"unit":"ns"},"mean":{"estimate":1720.44,"lower_bound":1691.47975,"upper_bound":1752.88,"unit":"ns"},"median":{"estimate":1666.5,"lower_bound":1656.5,"upper_bound":1703.5,"unit":"ns"},"median_abs_dev":{"estimate":89.69729840755463,"lower_bound":69.68219876289368,"upper_bound":127.50359773635864,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.036066363554244196,"lower_bound":-0.001808913574340282,"upper_bound":0.06889445169405965,"unit":"%"},"median":{"estimate":0.020514390691978024,"lower_bound":0.007294832826747699,"upper_bound":0.046711739397664376,"unit":"%"},"change":"NoChange"}} +{"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":[5694.0,5394.0,5379.0,5191.0,5156.0,5277.0,5158.0,5194.0,5404.0,5356.0,5173.0,5284.0,5138.0,5221.0,5324.0,5622.0,5324.0,5922.0,5779.0,5635.0,5372.0,5659.0,5283.0,5596.0,5180.0,5752.0,5591.0,5442.0,5260.0,9583.0,5803.0,5339.0,5213.0,5587.0,5147.0,5181.0,5246.0,5339.0,5219.0,5389.0,5160.0,5071.0,5173.0,5197.0,5694.0,5262.0,5324.0,5251.0,5333.0,5142.0,5240.0,5647.0,5194.0,5325.0,5416.0,5263.0,5177.0,5275.0,5598.0,5619.0,5175.0,5669.0,5760.0,5287.0,5163.0,5267.0,5230.0,5192.0,5278.0,5329.0,5223.0,5451.0,5217.0,5517.0,5262.0,5327.0,5690.0,5761.0,5230.0,5226.0,5859.0,5339.0,5562.0,5581.0,5153.0,5203.0,5207.0,5319.0,5317.0,5864.0,5404.0,5370.0,5422.0,5214.0,5315.0,5452.0,5243.0,5249.0,5658.0,5517.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":5416.69,"lower_bound":5344.78975,"upper_bound":5521.941,"unit":"ns"},"mean":{"estimate":5416.69,"lower_bound":5344.78975,"upper_bound":5521.941,"unit":"ns"},"median":{"estimate":5321.5,"lower_bound":5267.0,"upper_bound":5347.5,"unit":"ns"},"median_abs_dev":{"estimate":177.17069685459137,"lower_bound":117.12539792060852,"upper_bound":226.85632847249076,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.03575737758834663,"lower_bound":0.010797332941333414,"upper_bound":0.06168244479473985,"unit":"%"},"median":{"estimate":0.03269939840869407,"lower_bound":0.02124151309408351,"upper_bound":0.037504858142246356,"unit":"%"},"change":"Regressed"}} +{"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":[41205.0,39896.0,39901.0,39888.0,39792.0,39831.0,39918.0,39931.0,39761.0,39963.0,39849.0,39980.0,39914.0,39828.0,39827.0,39895.0,39849.0,39883.0,39927.0,39897.0,40076.0,39838.0,39864.0,39833.0,39931.0,39745.0,39819.0,39912.0,39895.0,39800.0,39804.0,39880.0,39829.0,39893.0,39883.0,39835.0,39909.0,39819.0,39765.0,39986.0,39918.0,39998.0,39920.0,39857.0,39853.0,40042.0,40186.0,39789.0,39883.0,40041.0,39864.0,40253.0,39810.0,39942.0,40726.0,40081.0,40251.0,40160.0,40191.0,40149.0,39905.0,40065.0,39899.0,40000.0,40064.0,39957.0,39956.0,39964.0,39975.0,39927.0,40035.0,40034.0,40057.0,39870.0,39917.0,39933.0,40036.0,39976.0,40568.0,40089.0,40016.0,40002.0,39902.0,39890.0,40659.0,40143.0,40109.0,40049.0,39944.0,40143.0,44803.0,40239.0,40181.0,40018.0,39961.0,60550.0,40024.0,39703.0,39989.0,39902.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":40236.19,"lower_bound":39963.579750000004,"upper_bound":40713.59125,"unit":"ns"},"mean":{"estimate":40236.19,"lower_bound":39963.579750000004,"upper_bound":40713.59125,"unit":"ns"},"median":{"estimate":39929.0,"lower_bound":39905.0,"upper_bound":39968.5,"unit":"ns"},"median_abs_dev":{"estimate":123.79709780216217,"lower_bound":88.21469843387604,"upper_bound":153.44909727573395,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0020981731756744004,"lower_bound":-0.014385687982440902,"upper_bound":0.01277047392320767,"unit":"%"},"median":{"estimate":-0.0030212234706616936,"lower_bound":-0.004091152881892879,"upper_bound":-0.0017735368321134537,"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":[96137.0,77039.0,77167.0,77255.0,77158.0,77243.0,77206.0,79523.0,77314.0,77561.0,77431.0,77259.0,77378.0,77277.0,77484.0,77191.0,77803.0,77326.0,78040.0,77448.0,76992.0,78896.0,77409.0,77057.0,77266.0,77126.0,77109.0,77111.0,77067.0,76996.0,76978.0,76960.0,77247.0,76952.0,76893.0,77153.0,77320.0,76968.0,77015.0,77123.0,77136.0,77022.0,77052.0,77195.0,77094.0,76944.0,77054.0,77047.0,76887.0,77124.0,76989.0,76955.0,76949.0,77053.0,76916.0,76995.0,76941.0,77262.0,77001.0,77043.0,77009.0,78838.0,76889.0,76864.0,76976.0,76978.0,76951.0,76963.0,77014.0,77029.0,76931.0,76885.0,77118.0,77029.0,76979.0,76968.0,77040.0,76906.0,76954.0,77102.0,76998.0,76990.0,77115.0,77068.0,76926.0,77077.0,77035.0,76972.0,86292.0,77458.0,77159.0,77421.0,77042.0,77194.0,76994.0,76933.0,79410.0,77335.0,77057.0,76948.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":77473.84,"lower_bound":77152.63,"upper_bound":77961.11125,"unit":"ns"},"mean":{"estimate":77473.84,"lower_bound":77152.63,"upper_bound":77961.11125,"unit":"ns"},"median":{"estimate":77055.5,"lower_bound":77029.0,"upper_bound":77115.0,"unit":"ns"},"median_abs_dev":{"estimate":151.22519731521606,"lower_bound":111.93629801273346,"upper_bound":214.97699618339539,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.003336925533648838,"lower_bound":-0.014312104538549508,"upper_bound":0.006685449106764778,"unit":"%"},"median":{"estimate":0.0006233159107880137,"lower_bound":0.00020772881003838783,"upper_bound":0.0014414274027036988,"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":[146946.0,115388.0,115195.0,115212.0,115147.0,115366.0,115243.0,115244.0,115335.0,115337.0,115571.0,115416.0,115305.0,115363.0,115220.0,115102.0,115334.0,115328.0,115283.0,115153.0,115115.0,115228.0,115189.0,115377.0,115169.0,115259.0,115234.0,115310.0,115162.0,115133.0,115196.0,115125.0,115169.0,115208.0,115169.0,115154.0,115258.0,115225.0,115320.0,115435.0,115263.0,115397.0,115258.0,115298.0,115262.0,115622.0,115125.0,115314.0,115103.0,115176.0,115210.0,115172.0,115034.0,115283.0,115449.0,117521.0,115158.0,115312.0,115239.0,115513.0,115446.0,115637.0,115181.0,115381.0,115351.0,115330.0,115169.0,115259.0,115318.0,115226.0,115170.0,115383.0,115087.0,115246.0,115225.0,115326.0,116541.0,115129.0,115375.0,115072.0,115841.0,114937.0,115291.0,114998.0,115394.0,115043.0,115507.0,114964.0,115292.0,114922.0,115198.0,114903.0,115227.0,114944.0,115485.0,114969.0,115275.0,114952.0,115435.0,114955.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":115600.16,"lower_bound":115241.44,"upper_bound":116269.55025,"unit":"ns"},"mean":{"estimate":115600.16,"lower_bound":115241.44,"upper_bound":116269.55025,"unit":"ns"},"median":{"estimate":115245.0,"lower_bound":115218.5,"upper_bound":115287.0,"unit":"ns"},"median_abs_dev":{"estimate":132.6926976442337,"lower_bound":107.48849809169769,"upper_bound":174.2054969072342,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0019597126078427785,"lower_bound":-0.009127992839792511,"upper_bound":0.01111572474047185,"unit":"%"},"median":{"estimate":0.0048741781908863135,"lower_bound":0.0045556596987597064,"upper_bound":0.005345774832127059,"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":[216811.0,171439.0,171989.0,171482.0,171577.0,171613.0,173958.0,171345.0,171687.0,171544.0,172152.0,171304.0,171661.0,171303.0,171748.0,171260.0,171770.0,174271.0,171721.0,171616.0,171868.0,171630.0,171682.0,171342.0,172468.0,171496.0,171575.0,171430.0,171696.0,171288.0,171948.0,171822.0,171782.0,171349.0,171601.0,171362.0,171702.0,171617.0,171603.0,171397.0,171978.0,171562.0,171636.0,171552.0,174901.0,171373.0,171716.0,171366.0,171799.0,171429.0,171798.0,174005.0,171775.0,171478.0,171614.0,173478.0,171740.0,172275.0,171430.0,172070.0,171892.0,172027.0,171623.0,171789.0,171446.0,171863.0,171347.0,174273.0,171423.0,171715.0,171404.0,171757.0,171338.0,171689.0,171449.0,171597.0,171501.0,171602.0,171290.0,171586.0,171663.0,171870.0,171399.0,171733.0,171783.0,171365.0,171266.0,171264.0,171699.0,171303.0,183996.0,171286.0,171255.0,171293.0,171528.0,171251.0,171341.0,171218.0,171440.0,171320.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":172317.68,"lower_bound":171686.00925,"upper_bound":173401.7205,"unit":"ns"},"mean":{"estimate":172317.68,"lower_bound":171686.00925,"upper_bound":173401.7205,"unit":"ns"},"median":{"estimate":171608.0,"lower_bound":171540.0,"upper_bound":171682.0,"unit":"ns"},"median_abs_dev":{"estimate":277.9874950647354,"lower_bound":231.28559589385986,"upper_bound":369.1673934459686,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0014536150800301684,"lower_bound":-0.007338112586159298,"upper_bound":0.010282183481259616,"unit":"%"},"median":{"estimate":0.0025705739390540217,"lower_bound":0.002058881078444763,"upper_bound":0.0029423321169083573,"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":[334668.0,256209.0,256142.0,256256.0,256033.0,256125.0,256122.0,256067.0,256065.0,255998.0,256089.0,256064.0,256066.0,286744.0,256248.0,256257.0,255993.0,256132.0,256261.0,256123.0,256085.0,256032.0,256094.0,256010.0,256063.0,255945.0,258364.0,256091.0,256013.0,256056.0,256120.0,256057.0,256280.0,256034.0,256333.0,256099.0,256033.0,286075.0,256153.0,258330.0,255988.0,256085.0,256207.0,255976.0,256104.0,255996.0,256377.0,256050.0,256202.0,256042.0,256082.0,256047.0,256732.0,256274.0,256066.0,256155.0,256273.0,256221.0,256230.0,256001.0,258370.0,256193.0,256123.0,256352.0,256111.0,256174.0,255985.0,256092.0,256114.0,256093.0,256255.0,258376.0,255988.0,256063.0,256035.0,256098.0,256135.0,255936.0,255952.0,256035.0,256010.0,256061.0,256066.0,256368.0,255930.0,256037.0,256045.0,255980.0,258483.0,256305.0,256296.0,256829.0,256339.0,256123.0,256035.0,256296.0,256243.0,256045.0,256159.0,256113.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":257632.8,"lower_bound":256246.35924999998,"upper_bound":259643.10175,"unit":"ns"},"mean":{"estimate":257632.8,"lower_bound":256246.35924999998,"upper_bound":259643.10175,"unit":"ns"},"median":{"estimate":256101.5,"lower_bound":256076.0,"upper_bound":256127.5,"unit":"ns"},"median_abs_dev":{"estimate":105.26459813117981,"lower_bound":77.83649861812592,"upper_bound":165.30989706516266,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.002069889910421452,"lower_bound":-0.009596132625547801,"upper_bound":0.012689406200191631,"unit":"%"},"median":{"estimate":0.002442485150355722,"lower_bound":0.002158166399912398,"upper_bound":0.0025992429313510534,"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":[424549.0,384193.0,386238.0,383872.0,420716.0,384960.0,384072.0,383901.0,383858.0,383956.0,383680.0,383881.0,383633.0,383747.0,384081.0,383748.0,383717.0,384029.0,383828.0,383800.0,383813.0,383880.0,383713.0,383732.0,383683.0,383746.0,383925.0,383798.0,383866.0,383859.0,384011.0,383765.0,383706.0,383747.0,383799.0,383838.0,383778.0,383784.0,383733.0,383796.0,383727.0,383933.0,383881.0,383826.0,384186.0,383801.0,383761.0,383932.0,383953.0,383721.0,383486.0,383721.0,383522.0,383799.0,383628.0,383860.0,383495.0,383676.0,383718.0,383792.0,383684.0,383701.0,384415.0,384327.0,383819.0,383763.0,383650.0,383821.0,383665.0,383820.0,383560.0,383912.0,383771.0,383704.0,383657.0,383786.0,383822.0,383969.0,383622.0,383786.0,383562.0,383713.0,386060.0,383782.0,383655.0,394014.0,383597.0,383848.0,383581.0,384162.0,383823.0,384009.0,383943.0,383926.0,384024.0,383740.0,383566.0,384273.0,383541.0,383761.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":384746.83,"lower_bound":383871.48975,"upper_bound":385970.551,"unit":"ns"},"mean":{"estimate":384746.83,"lower_bound":383871.48975,"upper_bound":385970.551,"unit":"ns"},"median":{"estimate":383798.5,"lower_bound":383765.0,"upper_bound":383824.0,"unit":"ns"},"median_abs_dev":{"estimate":138.62309753894806,"lower_bound":106.7471981048584,"upper_bound":189.77279663085938,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.00024801675636565435,"lower_bound":-0.006126382488993443,"upper_bound":0.005108047890497845,"unit":"%"},"median":{"estimate":0.003098431051741679,"lower_bound":0.002946476053838909,"upper_bound":0.0032516330045977426,"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":[2446.0,1856.0,1887.0,1865.0,1846.0,1855.0,1912.0,1846.0,1863.0,1877.0,1955.0,1981.0,1963.0,369433.0,1971.0,1866.0,1995.0,1990.0,1965.0,1918.0,1933.0,1953.0,1978.0,1942.0,1875.0,1930.0,1886.0,1964.0,1853.0,1892.0,1849.0,1922.0,1812.0,1925.0,1939.0,1872.0,1921.0,1887.0,1848.0,1873.0,1891.0,1852.0,1939.0,1811.0,1920.0,1833.0,1803.0,1939.0,1891.0,1820.0,1830.0,1886.0,1850.0,1855.0,1888.0,1906.0,1896.0,1966.0,1835.0,1945.0,1830.0,1843.0,1839.0,1878.0,1842.0,1880.0,1877.0,1897.0,1879.0,1892.0,1883.0,1918.0,1882.0,1862.0,1836.0,1812.0,1871.0,1821.0,1807.0,1881.0,1892.0,1858.0,1829.0,1846.0,1823.0,1827.0,1831.0,2423.0,1828.0,1875.0,1888.0,1839.0,2243.0,1856.0,1854.0,1836.0,1824.0,1912.0,1876.0,1932.0],"unit":"ns","throughput":[],"typical":{"estimate":5572.22,"lower_bound":1883.22,"upper_bound":12935.13,"unit":"ns"},"mean":{"estimate":5572.22,"lower_bound":1883.22,"upper_bound":12935.13,"unit":"ns"},"median":{"estimate":1878.5,"lower_bound":1866.0,"upper_bound":1888.0,"unit":"ns"},"median_abs_dev":{"estimate":56.33879899978638,"lower_bound":38.54759931564331,"upper_bound":67.4582988023758,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":1.8502987273396898,"lower_bound":-0.03923125719851614,"upper_bound":5.654768780368468,"unit":"%"},"median":{"estimate":-0.03170103092783505,"lower_bound":-0.037342261138295085,"upper_bound":-0.023809523809523836,"unit":"%"},"change":"NoChange"}} +{"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":[1162.0,853.0,889.0,810.0,787.0,829.0,802.0,844.0,793.0,810.0,816.0,808.0,862.0,818.0,828.0,798.0,798.0,807.0,770.0,825.0,822.0,800.0,1013.0,833.0,811.0,821.0,754.0,844.0,875.0,837.0,833.0,844.0,1136.0,1147.0,857.0,838.0,823.0,968.0,886.0,1140.0,934.0,999.0,1216.0,946.0,920.0,901.0,943.0,926.0,922.0,1312.0,912.0,1043.0,869.0,864.0,858.0,883.0,874.0,979.0,854.0,882.0,862.0,847.0,958.0,799.0,948.0,965.0,849.0,879.0,894.0,869.0,967.0,881.0,873.0,800.0,953.0,861.0,879.0,873.0,909.0,877.0,1074.0,889.0,811.0,933.0,850.0,858.0,953.0,889.0,853.0,870.0,841.0,906.0,940.0,870.0,813.0,920.0,841.0,802.0,866.0,956.0],"unit":"ns","throughput":[],"typical":{"estimate":891.06,"lower_bound":873.14,"upper_bound":910.7702499999999,"unit":"ns"},"mean":{"estimate":891.06,"lower_bound":873.14,"upper_bound":910.7702499999999,"unit":"ns"},"median":{"estimate":869.0,"lower_bound":854.0,"upper_bound":880.0,"unit":"ns"},"median_abs_dev":{"estimate":68.94089877605438,"lower_bound":45.960599184036255,"upper_bound":86.73209846019745,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.06703103404950383,"lower_bound":-0.09336130544896733,"upper_bound":-0.03926804547592219,"unit":"%"},"median":{"estimate":-0.07058823529411762,"lower_bound":-0.08461947844598194,"upper_bound":-0.05561497326203213,"unit":"%"},"change":"Improved"}} +{"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":[2904.0,1903.0,1830.0,1889.0,1784.0,1785.0,1849.0,1831.0,1888.0,1895.0,1837.0,1872.0,1864.0,1773.0,1811.0,1773.0,2051.0,1858.0,1813.0,1791.0,1803.0,1782.0,1792.0,1889.0,1814.0,1804.0,1881.0,1803.0,1793.0,1811.0,1774.0,1846.0,1914.0,1798.0,1792.0,1815.0,1832.0,1791.0,1889.0,1801.0,1778.0,1834.0,1805.0,1768.0,1825.0,1819.0,1773.0,1834.0,1792.0,1799.0,1827.0,1798.0,1829.0,1838.0,1973.0,1787.0,1829.0,1819.0,1799.0,1864.0,1861.0,1829.0,1822.0,1778.0,1807.0,1808.0,1819.0,1807.0,1823.0,1807.0,1791.0,1811.0,1812.0,1775.0,1824.0,1823.0,1767.0,1831.0,1815.0,1775.0,1811.0,2011.0,1756.0,1865.0,1791.0,1772.0,1795.0,1829.0,1827.0,1823.0,1804.0,1752.0,1834.0,1779.0,1865.0,1876.0,1778.0,1800.0,1820.0,1829.0],"unit":"ns","throughput":[],"typical":{"estimate":1834.17,"lower_bound":1816.40975,"upper_bound":1860.96,"unit":"ns"},"mean":{"estimate":1834.17,"lower_bound":1816.40975,"upper_bound":1860.96,"unit":"ns"},"median":{"estimate":1814.5,"lower_bound":1807.0,"upper_bound":1823.5,"unit":"ns"},"median_abs_dev":{"estimate":32.617199420928955,"lower_bound":23.721599578857422,"upper_bound":45.21929919719696,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.027898940539852868,"lower_bound":-0.05048994622451758,"upper_bound":-0.005335606788200044,"unit":"%"},"median":{"estimate":-0.013858695652173902,"lower_bound":-0.018478260869565166,"upper_bound":-0.007629427792915533,"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":[4032.0,2666.0,2484.0,2497.0,2700.0,2577.0,2504.0,2564.0,2545.0,2540.0,2540.0,2603.0,2510.0,2561.0,2785.0,2545.0,2604.0,2618.0,2597.0,2642.0,2539.0,2707.0,2539.0,2547.0,2511.0,2564.0,2528.0,2567.0,2571.0,2553.0,2548.0,2564.0,2674.0,2551.0,2564.0,2539.0,2899.0,2555.0,2598.0,2593.0,2645.0,2534.0,2798.0,2762.0,2477.0,2834.0,2615.0,3536.0,2942.0,2607.0,2511.0,2531.0,2597.0,2627.0,2558.0,2560.0,2499.0,2868.0,2580.0,2528.0,2564.0,2576.0,2613.0,2522.0,2819.0,2602.0,2581.0,2543.0,2541.0,2534.0,2526.0,2570.0,2689.0,2547.0,2600.0,2606.0,2704.0,2555.0,2568.0,2564.0,2611.0,2604.0,2642.0,2627.0,2818.0,2513.0,2660.0,2827.0,2531.0,2584.0,2757.0,2603.0,2572.0,2592.0,2534.0,2585.0,2619.0,2534.0,2586.0,2619.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":2626.76,"lower_bound":2593.86975,"upper_bound":2668.78,"unit":"ns"},"mean":{"estimate":2626.76,"lower_bound":2593.86975,"upper_bound":2668.78,"unit":"ns"},"median":{"estimate":2576.5,"lower_bound":2564.0,"upper_bound":2597.5,"unit":"ns"},"median_abs_dev":{"estimate":55.59749901294708,"lower_bound":44.477999210357666,"upper_bound":77.83649861812592,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.01386792806997772,"lower_bound":-0.030272786622383644,"upper_bound":0.0038120210967838995,"unit":"%"},"median":{"estimate":-0.022201138519924113,"lower_bound":-0.03717611716109648,"upper_bound":-0.01026811180832854,"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":[2725.0,2551.0,2551.0,2886.0,2557.0,2707.0,2488.0,2528.0,2686.0,2456.0,2491.0,2488.0,2489.0,2512.0,2477.0,2491.0,2495.0,2549.0,2511.0,2555.0,2502.0,2547.0,2519.0,2491.0,2468.0,2504.0,2699.0,2508.0,2527.0,2482.0,2532.0,2480.0,2497.0,2506.0,2473.0,2698.0,2537.0,2503.0,2491.0,2726.0,2509.0,2772.0,2471.0,2496.0,2492.0,2497.0,2511.0,2480.0,2501.0,2539.0,2512.0,2495.0,2470.0,2453.0,2483.0,2496.0,2487.0,2477.0,2513.0,2506.0,2475.0,2494.0,2695.0,2506.0,2510.0,2588.0,2588.0,2497.0,2521.0,2478.0,2476.0,2498.0,2465.0,2476.0,2520.0,2458.0,2483.0,2547.0,2499.0,2531.0,2487.0,2501.0,2488.0,2479.0,2481.0,2528.0,2498.0,2709.0,2493.0,2531.0,2535.0,2492.0,2461.0,2557.0,2510.0,2645.0,2474.0,2551.0,2483.0,2484.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":2527.35,"lower_bound":2513.29,"upper_bound":2543.13,"unit":"ns"},"mean":{"estimate":2527.35,"lower_bound":2513.29,"upper_bound":2543.13,"unit":"ns"},"median":{"estimate":2501.0,"lower_bound":2495.0,"upper_bound":2510.0,"unit":"ns"},"median_abs_dev":{"estimate":30.393299460411072,"lower_bound":20.756399631500244,"upper_bound":40.771499276161194,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.6531005251498173,"lower_bound":-0.8486923423122142,"upper_bound":-0.02339827033027203,"unit":"%"},"median":{"estimate":-0.02552113773621667,"lower_bound":-0.03545279383429667,"upper_bound":-0.019151846785225746,"unit":"%"},"change":"NoChange"}} +{"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":[3071.0,2693.0,2763.0,2754.0,2748.0,2769.0,2845.0,2784.0,2812.0,2772.0,2853.0,2884.0,2798.0,2843.0,3022.0,2991.0,2793.0,2803.0,2780.0,2746.0,3074.0,2815.0,2720.0,2758.0,2820.0,2814.0,3177.0,2899.0,2784.0,2800.0,2810.0,2808.0,2807.0,2837.0,2784.0,2793.0,2803.0,2772.0,2726.0,2779.0,2849.0,2799.0,2716.0,3127.0,2792.0,2783.0,2772.0,2742.0,2762.0,2726.0,2727.0,2756.0,2804.0,2735.0,2755.0,2969.0,2859.0,2727.0,2732.0,2791.0,2776.0,2783.0,2808.0,2856.0,2773.0,2807.0,2789.0,2764.0,2789.0,2871.0,2775.0,2806.0,2829.0,2813.0,2868.0,2747.0,2767.0,2779.0,2819.0,2755.0,2787.0,2789.0,2890.0,2847.0,2838.0,2812.0,2783.0,2759.0,2762.0,2778.0,2708.0,2744.0,2721.0,2766.0,2762.0,2810.0,2745.0,2721.0,2847.0,2739.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":2806.09,"lower_bound":2790.72,"upper_bound":2823.34,"unit":"ns"},"mean":{"estimate":2806.09,"lower_bound":2790.72,"upper_bound":2823.34,"unit":"ns"},"median":{"estimate":2788.0,"lower_bound":2778.5,"upper_bound":2801.0,"unit":"ns"},"median_abs_dev":{"estimate":41.51279926300049,"lower_bound":33.35849940776825,"upper_bound":60.786598920822144,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.021357848590849215,"lower_bound":-0.032158962925738055,"upper_bound":-0.011786927242115526,"unit":"%"},"median":{"estimate":-0.017444933920704897,"lower_bound":-0.023876404494381998,"upper_bound":-0.012001411930815387,"unit":"%"},"change":"Improved"}} +{"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":[7034.0,6597.0,6356.0,6360.0,6728.0,6904.0,6319.0,6355.0,6312.0,6358.0,6293.0,6321.0,6418.0,6393.0,6310.0,6379.0,6367.0,6369.0,6319.0,6369.0,6351.0,6337.0,6367.0,6353.0,6364.0,6357.0,6422.0,6397.0,6353.0,6382.0,6330.0,6361.0,6312.0,6369.0,6534.0,6546.0,6324.0,6378.0,6351.0,6344.0,6402.0,6412.0,6336.0,6366.0,6366.0,6306.0,6405.0,6367.0,6330.0,6294.0,6283.0,6317.0,6328.0,6341.0,6269.0,6398.0,6370.0,6358.0,6348.0,6272.0,6287.0,6397.0,6298.0,6271.0,6318.0,6298.0,6323.0,6339.0,6393.0,6290.0,6444.0,6345.0,6364.0,6338.0,6322.0,6351.0,6356.0,6325.0,6360.0,6347.0,6332.0,6285.0,6646.0,7039.0,6501.0,6476.0,6390.0,6321.0,6356.0,6299.0,6365.0,6363.0,6321.0,6321.0,6306.0,6286.0,6298.0,6310.0,6392.0,6317.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":6379.51,"lower_bound":6356.38,"upper_bound":6407.38,"unit":"ns"},"mean":{"estimate":6379.51,"lower_bound":6356.38,"upper_bound":6407.38,"unit":"ns"},"median":{"estimate":6353.0,"lower_bound":6339.0,"upper_bound":6360.5,"unit":"ns"},"median_abs_dev":{"estimate":47.443199157714844,"lower_bound":34.099799394607544,"upper_bound":57.821398973464966,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.01755296458452993,"lower_bound":-0.025677280899455375,"upper_bound":-0.010573754227981852,"unit":"%"},"median":{"estimate":-0.014045161790952165,"lower_bound":-0.018039640755651898,"upper_bound":-0.011738184079602032,"unit":"%"},"change":"Improved"}} +{"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":[57296.0,41215.0,41254.0,41208.0,41301.0,41102.0,41130.0,41238.0,41261.0,41121.0,41043.0,41247.0,41183.0,41128.0,41186.0,41154.0,41012.0,41215.0,41156.0,41050.0,41192.0,41223.0,41179.0,41193.0,41133.0,41074.0,41277.0,41111.0,41108.0,41280.0,41135.0,41419.0,41277.0,41308.0,41246.0,41135.0,41116.0,41263.0,41260.0,41440.0,41030.0,41420.0,41269.0,41092.0,41165.0,41185.0,41195.0,41244.0,41085.0,41157.0,41091.0,41169.0,41378.0,41270.0,40988.0,42514.0,41256.0,41418.0,41200.0,41262.0,41267.0,41040.0,41388.0,42086.0,41063.0,41373.0,41180.0,41230.0,41190.0,41096.0,41066.0,41257.0,41156.0,41131.0,41266.0,41314.0,41152.0,41261.0,41192.0,41205.0,41257.0,41200.0,41183.0,42292.0,41719.0,41448.0,41886.0,41237.0,41481.0,41255.0,41368.0,41306.0,41523.0,41305.0,41452.0,41867.0,41288.0,41292.0,41404.0,41217.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":41431.5,"lower_bound":41237.42,"upper_bound":41780.97025,"unit":"ns"},"mean":{"estimate":41431.5,"lower_bound":41237.42,"upper_bound":41780.97025,"unit":"ns"},"median":{"estimate":41226.5,"lower_bound":41193.0,"upper_bound":41257.0,"unit":"ns"},"median_abs_dev":{"estimate":108.97109806537628,"lower_bound":80.8016985654831,"upper_bound":161.6033971309662,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.01383133008462456,"lower_bound":-0.051601415162403005,"upper_bound":0.010849828571228275,"unit":"%"},"median":{"estimate":0.002212201140134429,"lower_bound":0.0012632397240306403,"upper_bound":0.003088558956213072,"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":[102386.0,78693.0,78291.0,78459.0,78442.0,80881.0,78288.0,78413.0,78310.0,78469.0,78554.0,78398.0,78342.0,78783.0,78370.0,78351.0,78324.0,78309.0,78315.0,78501.0,78309.0,78243.0,78421.0,78352.0,78731.0,78612.0,78416.0,78463.0,78214.0,78262.0,78285.0,78655.0,78360.0,78254.0,78300.0,78285.0,78381.0,78411.0,78260.0,78237.0,78448.0,78283.0,78364.0,78420.0,78273.0,78297.0,78316.0,78277.0,78537.0,78290.0,78507.0,78237.0,78274.0,78357.0,78264.0,78322.0,78328.0,80621.0,78303.0,78243.0,78373.0,78399.0,78285.0,78347.0,78428.0,78353.0,78313.0,78202.0,78317.0,78442.0,78371.0,78310.0,78366.0,80359.0,78334.0,78272.0,78255.0,78409.0,78301.0,78295.0,78283.0,78302.0,78288.0,78406.0,78329.0,78363.0,78316.0,80522.0,78249.0,78333.0,78235.0,78283.0,78307.0,78401.0,78457.0,78243.0,78382.0,78446.0,78382.0,78418.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":78689.67,"lower_bound":78386.23975000001,"upper_bound":79222.32125000001,"unit":"ns"},"mean":{"estimate":78689.67,"lower_bound":78386.23975000001,"upper_bound":79222.32125000001,"unit":"ns"},"median":{"estimate":78338.0,"lower_bound":78314.5,"upper_bound":78367.0,"unit":"ns"},"median_abs_dev":{"estimate":90.43859839439392,"lower_bound":63.75179886817932,"upper_bound":114.16019797325134,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0012519623786828582,"lower_bound":-0.011654301353283929,"upper_bound":0.00865321853907614,"unit":"%"},"median":{"estimate":0.0008048546790162536,"lower_bound":0.00018514025970706172,"upper_bound":0.0013033561420658923,"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":[119637.0,116392.0,116368.0,116330.0,116419.0,116435.0,116309.0,116542.0,116468.0,116515.0,119036.0,116406.0,116478.0,116388.0,116625.0,116380.0,116416.0,116566.0,116566.0,116335.0,116538.0,116411.0,116816.0,116661.0,116345.0,116377.0,116591.0,116407.0,116409.0,125823.0,116587.0,116343.0,116646.0,116486.0,116679.0,116425.0,116427.0,116505.0,116560.0,116614.0,116398.0,116408.0,116375.0,116440.0,116502.0,116463.0,116537.0,116572.0,116478.0,116475.0,116385.0,116335.0,116426.0,116657.0,116518.0,116578.0,116433.0,116396.0,116637.0,116547.0,116995.0,116400.0,116566.0,116722.0,116960.0,116515.0,116428.0,116611.0,116469.0,116380.0,116355.0,116614.0,116438.0,116362.0,118791.0,116429.0,116474.0,116359.0,116422.0,116518.0,116363.0,116481.0,117005.0,116472.0,116514.0,116391.0,116623.0,116498.0,116554.0,116557.0,116323.0,116479.0,116454.0,116601.0,116897.0,116521.0,117005.0,116482.0,116345.0,116291.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":116674.85,"lower_bound":116515.91,"upper_bound":116908.541,"unit":"ns"},"mean":{"estimate":116674.85,"lower_bound":116515.91,"upper_bound":116908.541,"unit":"ns"},"median":{"estimate":116478.0,"lower_bound":116438.0,"upper_bound":116515.0,"unit":"ns"},"median_abs_dev":{"estimate":128.24489772319794,"lower_bound":97.11029827594757,"upper_bound":156.41429722309113,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.02783134745706428,"lower_bound":-0.07670011064465974,"upper_bound":0.0029683751676203873,"unit":"%"},"median":{"estimate":0.0022242394778844155,"lower_bound":0.0013152574267234318,"upper_bound":0.0026852222408695336,"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":[244521.0,173021.0,172758.0,172846.0,172745.0,172864.0,173080.0,173126.0,172756.0,172912.0,173004.0,173023.0,173236.0,172929.0,172972.0,172988.0,173175.0,172905.0,172819.0,172872.0,173131.0,172962.0,172914.0,174135.0,172734.0,172640.0,172796.0,172621.0,172609.0,172648.0,172667.0,172629.0,172620.0,174991.0,172580.0,172538.0,172598.0,172694.0,172836.0,172575.0,172890.0,172773.0,172987.0,172518.0,172713.0,172589.0,172683.0,172634.0,172685.0,172566.0,172733.0,172627.0,172548.0,172612.0,172598.0,172540.0,172459.0,172525.0,172566.0,172611.0,172518.0,172571.0,172589.0,172583.0,172555.0,172614.0,172603.0,172688.0,172595.0,172674.0,172637.0,172649.0,172813.0,172506.0,172580.0,172557.0,172577.0,172577.0,172563.0,172575.0,172619.0,172656.0,172669.0,172627.0,172662.0,172771.0,172603.0,172560.0,172574.0,172603.0,172605.0,172537.0,172558.0,172586.0,172527.0,172610.0,172624.0,172577.0,172685.0,172591.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":173455.95,"lower_bound":172694.04,"upper_bound":174928.9705,"unit":"ns"},"mean":{"estimate":173455.95,"lower_bound":172694.04,"upper_bound":174928.9705,"unit":"ns"},"median":{"estimate":172631.5,"lower_bound":172611.0,"upper_bound":172676.0,"unit":"ns"},"median_abs_dev":{"estimate":99.33419823646545,"lower_bound":71.90609872341156,"upper_bound":158.638197183609,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.008921967495241212,"lower_bound":-0.02741878431493568,"upper_bound":0.007404630525536572,"unit":"%"},"median":{"estimate":0.0012702095265715307,"lower_bound":0.0009509920180457154,"upper_bound":0.001580667708843908,"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":[303940.0,257845.0,257438.0,257385.0,257560.0,257292.0,257806.0,257341.0,258893.0,259583.0,257497.0,257362.0,257572.0,257485.0,257512.0,257421.0,257526.0,257474.0,257631.0,257535.0,257697.0,257613.0,270612.0,257374.0,257699.0,257399.0,257672.0,257460.0,257735.0,259623.0,257700.0,257428.0,257474.0,257450.0,257545.0,257345.0,257614.0,257432.0,257578.0,257486.0,260037.0,257417.0,257389.0,257500.0,257546.0,257522.0,257646.0,257327.0,257661.0,257303.0,257520.0,257312.0,257798.0,257442.0,257573.0,257297.0,257542.0,257345.0,257457.0,257403.0,257783.0,257205.0,257459.0,257393.0,257582.0,257278.0,260118.0,257371.0,257527.0,257398.0,257478.0,257503.0,257583.0,257433.0,257516.0,257269.0,257466.0,257291.0,257853.0,257359.0,257754.0,259714.0,257429.0,257291.0,257414.0,257335.0,257474.0,257529.0,257552.0,257580.0,257806.0,257480.0,259859.0,257483.0,257589.0,257310.0,257730.0,257347.0,257898.0,257494.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":258250.04,"lower_bound":257605.02975,"upper_bound":259347.46275,"unit":"ns"},"mean":{"estimate":258250.04,"lower_bound":257605.02975,"upper_bound":259347.46275,"unit":"ns"},"median":{"estimate":257498.5,"lower_bound":257470.0,"upper_bound":257535.5,"unit":"ns"},"median_abs_dev":{"estimate":159.3794971704483,"lower_bound":117.86669790744781,"upper_bound":221.64869606494904,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.00336243893379784,"lower_bound":-0.0019962521979801583,"upper_bound":0.008425682643697504,"unit":"%"},"median":{"estimate":0.002720015576324064,"lower_bound":0.002523089382777677,"upper_bound":0.0030141878584906846,"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":[432165.0,385023.0,384908.0,385216.0,384963.0,385031.0,384847.0,385184.0,384915.0,385076.0,384832.0,385080.0,384858.0,385088.0,384986.0,385021.0,385030.0,385057.0,384943.0,385226.0,384840.0,385059.0,384891.0,385065.0,384947.0,385296.0,384908.0,387366.0,384937.0,387272.0,384841.0,398178.0,384893.0,384964.0,385010.0,384813.0,384980.0,385147.0,385023.0,385012.0,385259.0,384955.0,384882.0,384951.0,384864.0,385105.0,384922.0,384980.0,384940.0,385076.0,384815.0,385072.0,384997.0,384989.0,384948.0,384948.0,384815.0,384928.0,387178.0,385065.0,387232.0,384987.0,387173.0,385138.0,387074.0,385169.0,387155.0,384980.0,387144.0,384900.0,384889.0,384981.0,384886.0,384867.0,384921.0,384985.0,384865.0,385012.0,384879.0,384830.0,384915.0,384935.0,384906.0,384990.0,384842.0,384811.0,385078.0,385070.0,384839.0,385322.0,384828.0,384725.0,384854.0,384762.0,384932.0,384767.0,384913.0,384741.0,384895.0,384823.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":385745.95,"lower_bound":385089.40949999995,"upper_bound":386877.8495,"unit":"ns"},"mean":{"estimate":385745.95,"lower_bound":385089.40949999995,"upper_bound":386877.8495,"unit":"ns"},"median":{"estimate":384963.5,"lower_bound":384934.5,"upper_bound":384993.0,"unit":"ns"},"median_abs_dev":{"estimate":144.55349743366241,"lower_bound":100.07549822330475,"upper_bound":169.0349294990258,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0017636419111974888,"lower_bound":-0.0032831278348710493,"upper_bound":0.006316938404096956,"unit":"%"},"median":{"estimate":0.0033360829954898197,"lower_bound":0.003217042795627184,"upper_bound":0.003495409830937879,"unit":"%"},"change":"NoChange"}} +{"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":[5667,11334,17001,22668,28335,34002,39669,45336,51003,56670,62337,68004,73671,79338,85005,90672,96339,102006,107673,113340,119007,124674,130341,136008,141675,147342,153009,158676,164343,170010,175677,181344,187011,192678,198345,204012,209679,215346,221013,226680,232347,238014,243681,249348,255015,260682,266349,272016,277683,283350,289017,294684,300351,306018,311685,317352,323019,328686,334353,340020,345687,351354,357021,362688,368355,374022,379689,385356,391023,396690,402357,408024,413691,419358,425025,430692,436359,442026,447693,453360,459027,464694,470361,476028,481695,487362,493029,498696,504363,510030,515697,521364,527031,532698,538365,544032,549699,555366,561033,566700],"measured_values":[159846.0,281046.0,464624.0,582573.0,724061.0,842868.0,993730.0,1104126.0,1248378.0,1404872.0,1658055.0,1645385.0,1782230.0,1935045.0,2051859.0,2177937.0,2325913.0,2480276.0,2638123.0,2733701.0,2948650.0,3110540.0,3201459.0,3253066.0,3430981.0,3646703.0,3785997.0,3868572.0,3992434.0,4197720.0,4308191.0,4469890.0,4601244.0,4814794.0,4822062.0,4958383.0,5166175.0,5508983.0,5543565.0,5563069.0,5730632.0,5924775.0,6020462.0,5957422.0,6233809.0,6526391.0,6536399.0,6572996.0,6749544.0,7166703.0,7043677.0,7184792.0,8072737.0,7688221.0,7836079.0,7732598.0,9581705.0,10375253.0,8382009.0,8308245.0,8426754.0,8750792.0,8815985.0,8808500.0,9580263.0,9623057.0,9811205.0,9421714.0,9725927.0,10034494.0,9902141.0,10939398.0,10120739.0,10328917.0,10519407.0,10675031.0,10706422.0,10891227.0,11742398.0,10990317.0,11224850.0,11661551.0,11549393.0,11499062.0,11809061.0,12200878.0,12157065.0,12209019.0,12649381.0,13207111.0,13404957.0,12518778.0,12933295.0,13235262.0,13151403.0,13157411.0,13443309.0,13749814.0,13936378.0,13734758.0],"unit":"ns","throughput":[],"typical":{"estimate":24.915576288347925,"lower_bound":24.712218960429308,"upper_bound":25.161230610285003,"unit":"ns"},"mean":{"estimate":24.934739637615785,"lower_bound":24.738765490737602,"upper_bound":25.16976357544915,"unit":"ns"},"median":{"estimate":24.638915364034474,"lower_bound":24.531638556365756,"upper_bound":24.754101331374265,"unit":"ns"},"median_abs_dev":{"estimate":0.4411476376274223,"lower_bound":0.32289673002349506,"upper_bound":0.5707041788445932,"unit":"ns"},"slope":{"estimate":24.915576288347925,"lower_bound":24.712218960429308,"upper_bound":25.161230610285003,"unit":"ns"},"change":{"mean":{"estimate":-0.0004964383536577577,"lower_bound":-0.00935223567866283,"upper_bound":0.009134463572368355,"unit":"%"},"median":{"estimate":-0.008093681886557347,"lower_bound":-0.013251289161504531,"upper_bound":-0.0030615883761281326,"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":[5691,11382,17073,22764,28455,34146,39837,45528,51219,56910,62601,68292,73983,79674,85365,91056,96747,102438,108129,113820,119511,125202,130893,136584,142275,147966,153657,159348,165039,170730,176421,182112,187803,193494,199185,204876,210567,216258,221949,227640,233331,239022,244713,250404,256095,261786,267477,273168,278859,284550,290241,295932,301623,307314,313005,318696,324387,330078,335769,341460,347151,352842,358533,364224,369915,375606,381297,386988,392679,398370,404061,409752,415443,421134,426825,432516,438207,443898,449589,455280,460971,466662,472353,478044,483735,489426,495117,500808,506499,512190,517881,523572,529263,534954,540645,546336,552027,557718,563409,569100],"measured_values":[155937.0,283709.0,433091.0,577527.0,689025.0,844849.0,1003539.0,1066528.0,1203264.0,1480829.0,1577466.0,1621764.0,1765803.0,2099784.0,2155572.0,2248015.0,2352189.0,2650482.0,2681676.0,2824976.0,2994013.0,3291152.0,3323531.0,3433597.0,3399446.0,4016539.0,4030949.0,3906282.0,3983747.0,4601197.0,4431640.0,4530450.0,4624532.0,4975668.0,4898944.0,5092861.0,4930032.0,5678266.0,5632968.0,5592360.0,5738021.0,6129477.0,6095081.0,6067348.0,6507570.0,6925185.0,6826218.0,6612121.0,6973886.0,7390210.0,7326431.0,7342110.0,7397669.0,8201375.0,7774801.0,7836765.0,8334270.0,8270276.0,8496020.0,8228674.0,8629033.0,9215149.0,8977873.0,9031738.0,9538042.0,9745716.0,9560133.0,9503958.0,9980122.0,9800850.0,10444696.0,9725232.0,10220192.0,10890186.0,10691522.0,10336333.0,11217411.0,11604147.0,11782980.0,11458234.0,11297633.0,11816323.0,11855129.0,11827976.0,12478806.0,13129250.0,12424296.0,12442690.0,12409524.0,13278166.0,13173740.0,12743966.0,13058486.0,14022558.0,14225744.0,13354249.0,14225844.0,14590915.0,14434322.0,14214676.0],"unit":"ns","throughput":[],"typical":{"estimate":25.26006219106714,"lower_bound":25.069273795293025,"upper_bound":25.44747475569312,"unit":"ns"},"mean":{"estimate":25.16907225161851,"lower_bound":25.008561543023816,"upper_bound":25.331639016903843,"unit":"ns"},"median":{"estimate":25.083162206888595,"lower_bound":24.877273326304692,"upper_bound":25.30316973871918,"unit":"ns"},"median_abs_dev":{"estimate":0.7863881273828024,"lower_bound":0.5891982714016921,"upper_bound":1.0004924773497559,"unit":"ns"},"slope":{"estimate":25.26006219106714,"lower_bound":25.069273795293025,"upper_bound":25.44747475569312,"unit":"ns"},"change":{"mean":{"estimate":0.013218385225581164,"lower_bound":0.003921663256974967,"upper_bound":0.021804311793052852,"unit":"%"},"median":{"estimate":0.02226675598440453,"lower_bound":0.012865648572575106,"upper_bound":0.031248444367746986,"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":[4995,9990,14985,19980,24975,29970,34965,39960,44955,49950,54945,59940,64935,69930,74925,79920,84915,89910,94905,99900,104895,109890,114885,119880,124875,129870,134865,139860,144855,149850,154845,159840,164835,169830,174825,179820,184815,189810,194805,199800,204795,209790,214785,219780,224775,229770,234765,239760,244755,249750,254745,259740,264735,269730,274725,279720,284715,289710,294705,299700,304695,309690,314685,319680,324675,329670,334665,339660,344655,349650,354645,359640,364635,369630,374625,379620,384615,389610,394605,399600,404595,409590,414585,419580,424575,429570,434565,439560,444555,449550,454545,459540,464535,469530,474525,479520,484515,489510,494505,499500],"measured_values":[193617.0,338659.0,498380.0,640875.0,802285.0,978221.0,1155810.0,1277101.0,1510830.0,1639846.0,1804089.0,1993281.0,2143763.0,2289296.0,2465569.0,2566594.0,2865021.0,2937156.0,3058841.0,3249122.0,3469312.0,3618027.0,3789944.0,3881828.0,4136647.0,4168495.0,4473260.0,4548797.0,4764211.0,4902348.0,5066761.0,5235176.0,5447913.0,5509621.0,5770546.0,5868399.0,5991348.0,6156354.0,6474825.0,6434866.0,6697875.0,6706707.0,6997294.0,7114215.0,7466720.0,7567059.0,7797277.0,7821859.0,8070347.0,8261169.0,8565620.0,8451279.0,8811686.0,8792870.0,9113233.0,9009182.0,9323134.0,9498330.0,9676459.0,9694279.0,10075897.0,10065263.0,10406781.0,10548878.0,10720871.0,10674666.0,10993520.0,11106533.0,11530734.0,11385493.0,11669859.0,11704911.0,11977567.0,12047719.0,12594771.0,12227944.0,12745695.0,12815797.0,13131091.0,13081971.0,13335909.0,13369383.0,13789926.0,13534292.0,14238213.0,14261975.0,14605040.0,14669044.0,14867732.0,14704920.0,15033115.0,14967894.0,15385752.0,15253004.0,15752522.0,15531348.0,16222766.0,16111168.0,16343842.0,16194344.0],"unit":"ns","throughput":[],"typical":{"estimate":32.89997775757137,"lower_bound":32.795018130172,"upper_bound":33.003530647314925,"unit":"ns"},"mean":{"estimate":32.89902577974314,"lower_bound":32.776334084258934,"upper_bound":33.05976856717271,"unit":"ns"},"median":{"estimate":32.848713546914325,"lower_bound":32.7215021473086,"upper_bound":32.97316500173643,"unit":"ns"},"median_abs_dev":{"estimate":0.43933313056591666,"lower_bound":0.34765180475965035,"upper_bound":0.5320540028937636,"unit":"ns"},"slope":{"estimate":32.89997775757137,"lower_bound":32.795018130172,"upper_bound":33.003530647314925,"unit":"ns"},"change":{"mean":{"estimate":0.09674916858026283,"lower_bound":0.09051046772399164,"upper_bound":0.10362108046306111,"unit":"%"},"median":{"estimate":0.09931663154934278,"lower_bound":0.09443741852273435,"upper_bound":0.10380621768768915,"unit":"%"},"change":"Regressed"}} +{"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":[5004,10008,15012,20016,25020,30024,35028,40032,45036,50040,55044,60048,65052,70056,75060,80064,85068,90072,95076,100080,105084,110088,115092,120096,125100,130104,135108,140112,145116,150120,155124,160128,165132,170136,175140,180144,185148,190152,195156,200160,205164,210168,215172,220176,225180,230184,235188,240192,245196,250200,255204,260208,265212,270216,275220,280224,285228,290232,295236,300240,305244,310248,315252,320256,325260,330264,335268,340272,345276,350280,355284,360288,365292,370296,375300,380304,385308,390312,395316,400320,405324,410328,415332,420336,425340,430344,435348,440352,445356,450360,455364,460368,465372,470376,475380,480384,485388,490392,495396,500400],"measured_values":[192691.0,333716.0,508280.0,667044.0,848763.0,997156.0,1143923.0,1295263.0,1542844.0,1606127.0,1793464.0,1934548.0,2123203.0,2218671.0,2390542.0,2567943.0,2758876.0,3050474.0,3119911.0,3267831.0,3426734.0,3631048.0,3779324.0,3846602.0,4108888.0,4175874.0,4457595.0,4535878.0,4793936.0,4849432.0,5089643.0,5144700.0,5455567.0,5460730.0,5633485.0,5861624.0,6147251.0,6166691.0,6435731.0,6592410.0,6807173.0,6823869.0,7117901.0,7099364.0,7448105.0,7493429.0,7747169.0,7738573.0,8022851.0,8093390.0,8305601.0,8361552.0,8702070.0,8682488.0,9157841.0,9092493.0,9324602.0,9462871.0,9736463.0,9836487.0,9957797.0,10003057.0,10360020.0,10269659.0,10717834.0,10773180.0,11037384.0,10990725.0,11297313.0,11261960.0,11724409.0,11720098.0,12017194.0,11955277.0,12260398.0,12277277.0,12586181.0,12660488.0,12947545.0,12908346.0,13372890.0,13320585.0,13686299.0,13549777.0,14067433.0,14022655.0,14297267.0,14275961.0,14711771.0,14538250.0,14960932.0,15005384.0,15314567.0,15170924.0,15560763.0,15467559.0,15818731.0,15759897.0,16341107.0,16129797.0],"unit":"ns","throughput":[],"typical":{"estimate":32.600817874442875,"lower_bound":32.519743927723,"upper_bound":32.68264876671087,"unit":"ns"},"mean":{"estimate":32.71560693200309,"lower_bound":32.590479328795546,"upper_bound":32.87543701795752,"unit":"ns"},"median":{"estimate":32.63048375927253,"lower_bound":32.544948355041456,"upper_bound":32.75239302229103,"unit":"ns"},"median_abs_dev":{"estimate":0.5006849353565516,"lower_bound":0.3699212525455262,"upper_bound":0.5491715452466981,"unit":"ns"},"slope":{"estimate":32.600817874442875,"lower_bound":32.519743927723,"upper_bound":32.68264876671087,"unit":"ns"},"change":{"mean":{"estimate":0.05846167657818113,"lower_bound":0.052287527701251536,"upper_bound":0.06506262650072145,"unit":"%"},"median":{"estimate":0.06316412966743234,"lower_bound":0.05490456813165413,"upper_bound":0.06933107370531055,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"sw","benchmarks":["sw/sw"],"report_directory":"/root/fuel-core/target/criterion/reports/sw"} +{"reason":"benchmark-complete","id":"cfe/1","report_directory":"/root/fuel-core/target/criterion/reports/cfe/1","iteration_count":[2509,5018,7527,10036,12545,15054,17563,20072,22581,25090,27599,30108,32617,35126,37635,40144,42653,45162,47671,50180,52689,55198,57707,60216,62725,65234,67743,70252,72761,75270,77779,80288,82797,85306,87815,90324,92833,95342,97851,100360,102869,105378,107887,110396,112905,115414,117923,120432,122941,125450,127959,130468,132977,135486,137995,140504,143013,145522,148031,150540,153049,155558,158067,160576,163085,165594,168103,170612,173121,175630,178139,180648,183157,185666,188175,190684,193193,195702,198211,200720,203229,205738,208247,210756,213265,215774,218283,220792,223301,225810,228319,230828,233337,235846,238355,240864,243373,245882,248391,250900],"measured_values":[681876.0,1203311.0,1800939.0,2413079.0,2958631.0,3520121.0,4110166.0,4710549.0,5326801.0,5838438.0,6459149.0,7020575.0,7643516.0,8109154.0,8862280.0,9361760.0,9959462.0,10368843.0,11005884.0,11476304.0,12175698.0,12697374.0,13071827.0,13677776.0,14383287.0,14719559.0,15418007.0,15859851.0,16442780.0,17218768.0,17685208.0,18252438.0,18994195.0,19631076.0,20279635.0,20538550.0,21009258.0,21911349.0,22399600.0,22838353.0,23477322.0,24023411.0,24412522.0,24856280.0,25687867.0,26122952.0,26962188.0,27719196.0,27810877.0,28378370.0,28676023.0,29275222.0,29849811.0,30516828.0,31365386.0,32003363.0,32356116.0,32563478.0,33201992.0,33891224.0,34269046.0,35431264.0,36437441.0,36321818.0,36455168.0,37551595.0,38132109.0,39354830.0,39559689.0,40112715.0,39930660.0,40989515.0,41608207.0,42154746.0,42483864.0,42948781.0,43559077.0,43907846.0,44629914.0,45361829.0,45755699.0,46483368.0,47066034.0,46967436.0,48372936.0,49073984.0,49736734.0,49901020.0,50238387.0,50720901.0,51124924.0,51501857.0,52261668.0,52914964.0,53512892.0,54387110.0,54731755.0,54920039.0,55726024.0,56423008.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":225.8183158533815,"lower_bound":225.4080170081586,"upper_bound":226.28010523445727,"unit":"ns"},"mean":{"estimate":228.41659580720088,"lower_bound":227.4245444890965,"upper_bound":229.67189849482864,"unit":"ns"},"median":{"estimate":227.09566820706715,"lower_bound":226.24591234252466,"upper_bound":227.66656536468713,"unit":"ns"},"median_abs_dev":{"estimate":3.0243122845853017,"lower_bound":2.1445832255768806,"upper_bound":3.9996811602407445,"unit":"ns"},"slope":{"estimate":225.8183158533815,"lower_bound":225.4080170081586,"upper_bound":226.28010523445727,"unit":"ns"},"change":{"mean":{"estimate":7.9837178556018795,"lower_bound":7.9257466605026305,"upper_bound":8.041654619778738,"unit":"%"},"median":{"estimate":7.9554503440601785,"lower_bound":7.919091447624882,"upper_bound":7.986784701875202,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"cfe/10","report_directory":"/root/fuel-core/target/criterion/reports/cfe/10","iteration_count":[2520,5040,7560,10080,12600,15120,17640,20160,22680,25200,27720,30240,32760,35280,37800,40320,42840,45360,47880,50400,52920,55440,57960,60480,63000,65520,68040,70560,73080,75600,78120,80640,83160,85680,88200,90720,93240,95760,98280,100800,103320,105840,108360,110880,113400,115920,118440,120960,123480,126000,128520,131040,133560,136080,138600,141120,143640,146160,148680,151200,153720,156240,158760,161280,163800,166320,168840,171360,173880,176400,178920,181440,183960,186480,189000,191520,194040,196560,199080,201600,204120,206640,209160,211680,214200,216720,219240,221760,224280,226800,229320,231840,234360,236880,239400,241920,244440,246960,249480,252000],"measured_values":[587463.0,1134194.0,1706769.0,2276540.0,2806743.0,3379046.0,3990701.0,4567464.0,5178729.0,5737747.0,6289437.0,6849327.0,7451069.0,7958921.0,8477725.0,8972813.0,9513762.0,9958829.0,10532905.0,11125361.0,11648084.0,12194956.0,12910597.0,13405690.0,13957562.0,14987127.0,15406167.0,15878327.0,16204924.0,16739898.0,17281760.0,17804849.0,18376778.0,18786688.0,19387803.0,19985403.0,20485023.0,20963660.0,21743742.0,22200383.0,22819388.0,23363707.0,23873862.0,24430098.0,24981702.0,25597128.0,26080934.0,26809960.0,27228318.0,27975863.0,28606002.0,28767334.0,29524849.0,30109840.0,30823179.0,31167282.0,31703796.0,32124868.0,32761240.0,33342614.0,33848093.0,34509596.0,34919982.0,35004017.0,36190453.0,36999276.0,37315304.0,38024955.0,38604468.0,38800972.0,39267280.0,40218098.0,40687832.0,41174009.0,41878698.0,42302245.0,43007254.0,43224107.0,43696789.0,44497318.0,45031864.0,45502419.0,46475176.0,46626027.0,46404833.0,47767505.0,48972754.0,49916666.0,49740712.0,49984228.0,50011275.0,50991896.0,52743548.0,52444545.0,53644013.0,53823755.0,54321725.0,54642478.0,55754487.0,55095249.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":221.13107435125175,"lower_bound":220.635180165724,"upper_bound":221.62679986992762,"unit":"ns"},"mean":{"estimate":221.90413258438764,"lower_bound":221.40132168079307,"upper_bound":222.43924123695857,"unit":"ns"},"median":{"estimate":221.1190841836002,"lower_bound":220.79584405834404,"upper_bound":221.64117707689135,"unit":"ns"},"median_abs_dev":{"estimate":1.5506150862595645,"lower_bound":1.1317705228839816,"upper_bound":2.029531172734839,"unit":"ns"},"slope":{"estimate":221.13107435125175,"lower_bound":220.635180165724,"upper_bound":221.62679986992762,"unit":"ns"},"change":{"mean":{"estimate":7.718630557600196,"lower_bound":7.67498069100892,"upper_bound":7.758235861550263,"unit":"%"},"median":{"estimate":7.7202563423916715,"lower_bound":7.693680400152886,"upper_bound":7.767288762363778,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"cfe/100","report_directory":"/root/fuel-core/target/criterion/reports/cfe/100","iteration_count":[2449,4898,7347,9796,12245,14694,17143,19592,22041,24490,26939,29388,31837,34286,36735,39184,41633,44082,46531,48980,51429,53878,56327,58776,61225,63674,66123,68572,71021,73470,75919,78368,80817,83266,85715,88164,90613,93062,95511,97960,100409,102858,105307,107756,110205,112654,115103,117552,120001,122450,124899,127348,129797,132246,134695,137144,139593,142042,144491,146940,149389,151838,154287,156736,159185,161634,164083,166532,168981,171430,173879,176328,178777,181226,183675,186124,188573,191022,193471,195920,198369,200818,203267,205716,208165,210614,213063,215512,217961,220410,222859,225308,227757,230206,232655,235104,237553,240002,242451,244900],"measured_values":[604940.0,1154547.0,1706213.0,2278719.0,2830691.0,3361326.0,3903250.0,4435648.0,4960354.0,5549534.0,6142767.0,6671439.0,7195015.0,7712935.0,8204894.0,8790146.0,9387005.0,9842103.0,10437592.0,10815165.0,11274634.0,11863758.0,12388382.0,12948035.0,13653388.0,14103255.0,14629886.0,15127484.0,15678945.0,16140110.0,16775725.0,17362519.0,17873836.0,18398057.0,18847521.0,19401417.0,20029208.0,20488830.0,21020957.0,21741869.0,22275934.0,22726512.0,23329715.0,23839122.0,24334150.0,24925927.0,25425701.0,26044416.0,26590258.0,27127376.0,27493466.0,28201833.0,28764293.0,29153856.0,29773541.0,30313881.0,30677628.0,31356134.0,32036093.0,32496975.0,32933278.0,33621287.0,33937510.0,34501183.0,35259617.0,35696343.0,36285487.0,36901013.0,37355790.0,38048270.0,38502306.0,38868906.0,39481711.0,39991189.0,40610888.0,41276897.0,41853166.0,42246864.0,42892818.0,43714132.0,43987186.0,44693159.0,46362006.0,45991383.0,46361960.0,46719341.0,47002459.0,47666445.0,48207384.0,48563886.0,49233371.0,49776755.0,50153329.0,50800537.0,51447568.0,51834047.0,52444061.0,52955917.0,53523263.0,54350272.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":221.3523906803264,"lower_bound":221.0591159830822,"upper_bound":221.73004481331026,"unit":"ns"},"mean":{"estimate":222.53862141593984,"lower_bound":221.84889148119035,"upper_bound":223.36132671900924,"unit":"ns"},"median":{"estimate":221.2050581870151,"lower_bound":221.0441441775864,"upper_bound":221.54476087178438,"unit":"ns"},"median_abs_dev":{"estimate":0.9050584927156745,"lower_bound":0.6883437356519431,"upper_bound":1.5131040912702125,"unit":"ns"},"slope":{"estimate":221.3523906803264,"lower_bound":221.0591159830822,"upper_bound":221.73004481331026,"unit":"ns"},"change":{"mean":{"estimate":7.8886907666013695,"lower_bound":7.849337074107882,"upper_bound":7.928170400634063,"unit":"%"},"median":{"estimate":7.848163804812364,"lower_bound":7.829759965096425,"upper_bound":7.883931057502561,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"cfe/1000","report_directory":"/root/fuel-core/target/criterion/reports/cfe/1000","iteration_count":[2465,4930,7395,9860,12325,14790,17255,19720,22185,24650,27115,29580,32045,34510,36975,39440,41905,44370,46835,49300,51765,54230,56695,59160,61625,64090,66555,69020,71485,73950,76415,78880,81345,83810,86275,88740,91205,93670,96135,98600,101065,103530,105995,108460,110925,113390,115855,118320,120785,123250,125715,128180,130645,133110,135575,138040,140505,142970,145435,147900,150365,152830,155295,157760,160225,162690,165155,167620,170085,172550,175015,177480,179945,182410,184875,187340,189805,192270,194735,197200,199665,202130,204595,207060,209525,211990,214455,216920,219385,221850,224315,226780,229245,231710,234175,236640,239105,241570,244035,246500],"measured_values":[643365.0,1190072.0,1786218.0,2383380.0,2934271.0,3464703.0,4045843.0,4603890.0,5182881.0,5742351.0,6264528.0,6872182.0,7325328.0,7933987.0,8620760.0,9195350.0,9721384.0,10286116.0,10729850.0,11350117.0,11889712.0,12427410.0,12912100.0,13674455.0,14026036.0,14576362.0,15186218.0,15886646.0,16428869.0,17123252.0,17538115.0,17997330.0,18535242.0,19063137.0,19716177.0,20272342.0,20856230.0,21675634.0,22369808.0,22644144.0,23194828.0,23893945.0,24313697.0,24864018.0,25550775.0,25947911.0,26320301.0,27037161.0,27355567.0,28084005.0,28820727.0,29240751.0,29725877.0,30250004.0,30858605.0,31348623.0,32057571.0,32610512.0,33004384.0,33758460.0,34846027.0,34798278.0,35368165.0,35854275.0,36772435.0,37343106.0,38148966.0,38424220.0,38758433.0,39361427.0,40116846.0,40718250.0,41095943.0,42083688.0,42411247.0,43109320.0,43283827.0,43940766.0,44314450.0,44891168.0,45524892.0,46015040.0,46635770.0,47609688.0,47876844.0,48287036.0,49055218.0,49347479.0,50038655.0,50920905.0,51116531.0,52134103.0,52831426.0,52602903.0,55115129.0,54358132.0,54693188.0,55483722.0,55948707.0,56322719.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":228.9249320029699,"lower_bound":228.53657906749072,"upper_bound":229.39615038933886,"unit":"ns"},"mean":{"estimate":230.14051825677498,"lower_bound":229.40545151014288,"upper_bound":231.06379389310302,"unit":"ns"},"median":{"estimate":229.22678677962057,"lower_bound":228.5271167777456,"upper_bound":229.51675508399646,"unit":"ns"},"median_abs_dev":{"estimate":1.8654603580712912,"lower_bound":1.3088920135173914,"upper_bound":2.3643446955498395,"unit":"ns"},"slope":{"estimate":228.9249320029699,"lower_bound":228.53657906749072,"upper_bound":229.39615038933886,"unit":"ns"},"change":{"mean":{"estimate":7.800372402030481,"lower_bound":7.74464920657463,"upper_bound":7.853881304605831,"unit":"%"},"median":{"estimate":7.802443846136077,"lower_bound":7.755466309947083,"upper_bound":7.825683148501286,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"cfe/10000","report_directory":"/root/fuel-core/target/criterion/reports/cfe/10000","iteration_count":[1450,2900,4350,5800,7250,8700,10150,11600,13050,14500,15950,17400,18850,20300,21750,23200,24650,26100,27550,29000,30450,31900,33350,34800,36250,37700,39150,40600,42050,43500,44950,46400,47850,49300,50750,52200,53650,55100,56550,58000,59450,60900,62350,63800,65250,66700,68150,69600,71050,72500,73950,75400,76850,78300,79750,81200,82650,84100,85550,87000,88450,89900,91350,92800,94250,95700,97150,98600,100050,101500,102950,104400,105850,107300,108750,110200,111650,113100,114550,116000,117450,118900,120350,121800,123250,124700,126150,127600,129050,130500,131950,133400,134850,136300,137750,139200,140650,142100,143550,145000],"measured_values":[743377.0,1253834.0,1861630.0,2486291.0,3116126.0,3710902.0,4301632.0,4853005.0,5392157.0,6052212.0,6602714.0,7157251.0,7794921.0,8381952.0,8885947.0,9528231.0,10131385.0,10852251.0,11298360.0,12001847.0,12544973.0,13005252.0,13668674.0,14302416.0,14709095.0,15403531.0,15894793.0,16482122.0,16950393.0,17459313.0,18104200.0,18728516.0,19238460.0,19915382.0,20500850.0,21016217.0,21600393.0,22260275.0,22890178.0,23451411.0,24086871.0,24661452.0,25231326.0,25604685.0,26278818.0,27170114.0,27977280.0,28473056.0,29183531.0,29779390.0,30333177.0,30778343.0,31016142.0,31619213.0,32293115.0,33130776.0,33701484.0,34278041.0,34887131.0,35340014.0,36051684.0,36198304.0,36478888.0,37294884.0,37634416.0,38181244.0,38704291.0,39323641.0,39885672.0,40400452.0,41155982.0,41630181.0,42254139.0,42959405.0,43280588.0,43946707.0,44718758.0,45027052.0,45796508.0,46589506.0,47034271.0,47887527.0,48929659.0,48938967.0,49687513.0,51021613.0,51515406.0,51581514.0,51941748.0,52185940.0,52560487.0,53516728.0,53740538.0,54967386.0,55368126.0,55484393.0,56023980.0,56768625.0,57695796.0,59069662.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":402.47250486590605,"lower_bound":401.6121914883874,"upper_bound":403.42085727249395,"unit":"ns"},"mean":{"estimate":407.40336473772163,"lower_bound":405.26518694284755,"upper_bound":410.2707275331341,"unit":"ns"},"median":{"estimate":404.5035511226945,"lower_bound":403.14412170385395,"upper_bound":406.67265145205175,"unit":"ns"},"median_abs_dev":{"estimate":6.022253819266408,"lower_bound":4.775825261919636,"upper_bound":7.669406539190794,"unit":"ns"},"slope":{"estimate":402.47250486590605,"lower_bound":401.6121914883874,"upper_bound":403.42085727249395,"unit":"ns"},"change":{"mean":{"estimate":9.991731318371425,"lower_bound":9.913707697406398,"upper_bound":10.079457636256045,"unit":"%"},"median":{"estimate":10.04449619706399,"lower_bound":9.976064819145433,"upper_bound":10.106228444756352,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"cfe/100000","report_directory":"/root/fuel-core/target/criterion/reports/cfe/100000","iteration_count":[378,756,1134,1512,1890,2268,2646,3024,3402,3780,4158,4536,4914,5292,5670,6048,6426,6804,7182,7560,7938,8316,8694,9072,9450,9828,10206,10584,10962,11340,11718,12096,12474,12852,13230,13608,13986,14364,14742,15120,15498,15876,16254,16632,17010,17388,17766,18144,18522,18900,19278,19656,20034,20412,20790,21168,21546,21924,22302,22680,23058,23436,23814,24192,24570,24948,25326,25704,26082,26460,26838,27216,27594,27972,28350,28728,29106,29484,29862,30240,30618,30996,31374,31752,32130,32508,32886,33264,33642,34020,34398,34776,35154,35532,35910,36288,36666,37044,37422,37800],"measured_values":[907583.0,1677792.0,2508203.0,3349372.0,4170943.0,4997408.0,5855445.0,6693752.0,7485894.0,8375618.0,9140323.0,9973412.0,10819574.0,11657850.0,12380933.0,13597692.0,13852363.0,14617466.0,15466225.0,16209396.0,17074494.0,17895689.0,18614647.0,19420011.0,20467394.0,21211722.0,22018447.0,22919647.0,23549845.0,24379256.0,25218519.0,26073668.0,26791406.0,27784403.0,28438249.0,29323654.0,30233148.0,30742223.0,31611124.0,32473760.0,33276222.0,34063994.0,34820799.0,35470467.0,36184254.0,37060106.0,37924784.0,39036642.0,39970085.0,40640226.0,41402182.0,42205450.0,42771814.0,43560722.0,44462304.0,45618804.0,46179511.0,47207397.0,47749876.0,48526310.0,49471051.0,50112153.0,50806192.0,51674296.0,52460905.0,53154270.0,54101236.0,54870638.0,55407276.0,56601385.0,57352844.0,58246276.0,59095293.0,59571732.0,60238250.0,61420428.0,62592854.0,63045497.0,64261278.0,64469021.0,65139205.0,66027978.0,66341745.0,66636472.0,67208997.0,67903558.0,68235428.0,68655623.0,69176355.0,69771854.0,70348011.0,71271259.0,71581735.0,71968570.0,72364761.0,73225291.0,74423154.0,75119131.0,75686971.0,76207032.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":2099.1673584536848,"lower_bound":2085.673379469206,"upper_bound":2113.91829762768,"unit":"ns"},"mean":{"estimate":2139.568905338365,"lower_bound":2128.819672455823,"upper_bound":2150.53343253294,"unit":"ns"},"median":{"estimate":2142.794818657324,"lower_bound":2138.638961038961,"upper_bound":2147.977659901764,"unit":"ns"},"median_abs_dev":{"estimate":18.14767619296591,"lower_bound":13.831953401245155,"upper_bound":25.26979152464463,"unit":"ns"},"slope":{"estimate":2099.1673584536848,"lower_bound":2085.673379469206,"upper_bound":2113.91829762768,"unit":"ns"},"change":{"mean":{"estimate":58.12783855133113,"lower_bound":56.89675927536419,"upper_bound":59.40664195277718,"unit":"%"},"median":{"estimate":56.60761749528187,"lower_bound":52.954105809507006,"upper_bound":64.66552239798183,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"cfe/1000000","report_directory":"/root/fuel-core/target/criterion/reports/cfe/1000000","iteration_count":[52,104,156,208,260,312,364,416,468,520,572,624,676,728,780,832,884,936,988,1040,1092,1144,1196,1248,1300,1352,1404,1456,1508,1560,1612,1664,1716,1768,1820,1872,1924,1976,2028,2080,2132,2184,2236,2288,2340,2392,2444,2496,2548,2600,2652,2704,2756,2808,2860,2912,2964,3016,3068,3120,3172,3224,3276,3328,3380,3432,3484,3536,3588,3640,3692,3744,3796,3848,3900,3952,4004,4056,4108,4160,4212,4264,4316,4368,4420,4472,4524,4576,4628,4680,4732,4784,4836,4888,4940,4992,5044,5096,5148,5200],"measured_values":[1079124.0,1999744.0,2994237.0,3993512.0,4993751.0,5985561.0,6844672.0,7790518.0,8765127.0,9738538.0,10765621.0,11752364.0,12852367.0,13797427.0,14533484.0,15528363.0,16494314.0,17468352.0,18436480.0,19420945.0,20327464.0,21318963.0,22306022.0,23230630.0,24189449.0,25159795.0,26256429.0,27225286.0,28143728.0,29475057.0,30156708.0,31219474.0,31989172.0,32937923.0,34080272.0,34897669.0,35881756.0,36941371.0,37695582.0,38638190.0,39630986.0,40543688.0,41468765.0,42474488.0,43703368.0,44525669.0,45409365.0,46337938.0,47268673.0,48239933.0,49196570.0,50080468.0,51243418.0,52047462.0,53054254.0,53936902.0,55223540.0,55958139.0,56962005.0,57750319.0,58703195.0,59656879.0,60810080.0,61636093.0,62536506.0,63417262.0,64299719.0,65257959.0,66309315.0,67338378.0,68319604.0,69174733.0,70403332.0,71390139.0,72056874.0,73000808.0,74027536.0,75031353.0,75948248.0,77197170.0,78316099.0,79784642.0,80318970.0,81535767.0,82143209.0,83077460.0,84155283.0,85213014.0,86478509.0,87084665.0,87984801.0,89289594.0,90288406.0,91202176.0,91709323.0,92551582.0,94054299.0,94949318.0,95890366.0,97132080.0],"unit":"ns","throughput":[{"per_iteration":1000000,"unit":"bytes"}],"typical":{"estimate":18583.313006161123,"lower_bound":18564.996128977942,"upper_bound":18601.11139768713,"unit":"ns"},"mean":{"estimate":18665.304612667762,"lower_bound":18620.542838013236,"upper_bound":18723.46636149774,"unit":"ns"},"median":{"estimate":18611.936061553908,"lower_bound":18586.53950722878,"upper_bound":18637.190209790213,"unit":"ns"},"median_abs_dev":{"estimate":90.95070767951373,"lower_bound":75.4111549221131,"upper_bound":121.23333932375736,"unit":"ns"},"slope":{"estimate":18583.313006161123,"lower_bound":18564.996128977942,"upper_bound":18601.11139768713,"unit":"ns"},"change":{"mean":{"estimate":328.0736956757054,"lower_bound":325.30304474007056,"upper_bound":330.32024490298886,"unit":"%"},"median":{"estimate":329.37675892130727,"lower_bound":328.60158374178104,"upper_bound":330.80828466156356,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"cfe/10000000","report_directory":"/root/fuel-core/target/criterion/reports/cfe/10000000","iteration_count":[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],"measured_values":[48253920.0,48302236.0,48209626.0,48202668.0,48192151.0,48390410.0,48173774.0,48522633.0,48551792.0,48323069.0,48156088.0,48372690.0,48298455.0,48499851.0,48190241.0,48166066.0,48513244.0,48204286.0,48205266.0,48325162.0,48215886.0,48261412.0,48159433.0,48931472.0,48250370.0,48263523.0,48168922.0,48232156.0,48291974.0,48397738.0,48351709.0,48267288.0,48218565.0,48183101.0,48200772.0,48348968.0,48155058.0,48249957.0,48216509.0,48260019.0,48143632.0,48217552.0,48214910.0,48417417.0,48279235.0,48230274.0,48106268.0,48319216.0,48175276.0,48353586.0,48230813.0,48179552.0,48215641.0,48226648.0,48473106.0,48340480.0,48183019.0,48383672.0,48209217.0,48529523.0,48224563.0,48405433.0,48355903.0,48290055.0,48201074.0,48200636.0,48176069.0,48150021.0,48352073.0,48148182.0,48448166.0,48150589.0,48214368.0,48189351.0,48270257.0,48171850.0,48242110.0,48124984.0,48206909.0,48195029.0,48431081.0,48350729.0,48156761.0,48198722.0,48242674.0,48224572.0,48180117.0,48367101.0,48199168.0,48253266.0,48177891.0,48218385.0,48295093.0,48426239.0,48124011.0,48223194.0,48190936.0,48396354.0,48389715.0,48353687.0],"unit":"ns","throughput":[{"per_iteration":10000000,"unit":"bytes"}],"typical":{"estimate":3448017.7249999996,"lower_bound":3446392.7637678566,"upper_bound":3449819.0703571434,"unit":"ns"},"mean":{"estimate":3448017.7249999996,"lower_bound":3446392.7637678566,"upper_bound":3449819.0703571434,"unit":"ns"},"median":{"estimate":3444890.0714285714,"lower_bound":3443957.0,"upper_bound":3447144.214285714,"unit":"ns"},"median_abs_dev":{"estimate":5711.822298594785,"lower_bound":4086.356608702707,"upper_bound":8468.796374648648,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":16045.061103161031,"lower_bound":15573.074182578863,"upper_bound":16548.20465793811,"unit":"%"},"median":{"estimate":15926.058700498113,"lower_bound":15585.2721447418,"upper_bound":16513.859654631084,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"cfe/30000000","report_directory":"/root/fuel-core/target/criterion/reports/cfe/30000000","iteration_count":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],"measured_values":[43795025.0,43537033.0,43610088.0,43501716.0,43702531.0,43602236.0,43643902.0,43569000.0,43526392.0,43852176.0,43608773.0,43642555.0,43562721.0,43693931.0,43549384.0,43527860.0,43573910.0,43503629.0,43549417.0,43577341.0,43579713.0,43602788.0,43537617.0,43603279.0,43542838.0,43604183.0,43716181.0,43599269.0,43572639.0,43575462.0,43551653.0,43603975.0,43555548.0,43702038.0,43535855.0,43531867.0,43544461.0,43618904.0,43538873.0,43581952.0,43532428.0,44069119.0,43531042.0,43542538.0,43732300.0,43750741.0,43727119.0,43851188.0,43653445.0,43623132.0,43526374.0,43603118.0,43587771.0,43711008.0,43578323.0,43472667.0,43594431.0,43561039.0,43558513.0,43580310.0,43510234.0,43644210.0,43582959.0,43546003.0,43522210.0,43583945.0,43760864.0,43610588.0,43577566.0,43496325.0,43569408.0,43561005.0,43560360.0,43765633.0,43518185.0,43571382.0,43516106.0,43604219.0,43594075.0,43507568.0,43563703.0,43543839.0,43584615.0,43528734.0,43681862.0,43558723.0,43721970.0,43571302.0,43640323.0,43662267.0,43574228.0,43539238.0,43589851.0,43708350.0,43593555.0,43526700.0,43566883.0,43553005.0,43607164.0,43540911.0],"unit":"ns","throughput":[{"per_iteration":30000000,"unit":"bytes"}],"typical":{"estimate":10900188.4725,"lower_bound":10896049.823875,"upper_bound":10904770.9089375,"unit":"ns"},"mean":{"estimate":10900188.4725,"lower_bound":10896049.823875,"upper_bound":10904770.9089375,"unit":"ns"},"median":{"estimate":10894363.375,"lower_bound":10891587.875,"upper_bound":10897462.75,"unit":"ns"},"median_abs_dev":{"estimate":12644.724525511265,"lower_bound":10037.016496807337,"upper_bound":17829.94187470525,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":38655.92034684233,"lower_bound":36895.69165422418,"upper_bound":40517.97185389586,"unit":"%"},"median":{"estimate":39134.56668163449,"lower_bound":37113.68398637138,"upper_bound":41616.263132760265,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"cfe/60000000","report_directory":"/root/fuel-core/target/criterion/reports/cfe/60000000","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":[44204428.0,44097666.0,44387721.0,44278175.0,44082971.0,44128911.0,44149407.0,44177213.0,44119281.0,44080923.0,44290134.0,44189508.0,44191868.0,44069902.0,44217883.0,44129127.0,44087681.0,44243750.0,44170002.0,44318550.0,44271502.0,44127251.0,44181235.0,44173378.0,44102247.0,44113886.0,44193673.0,44077080.0,44130265.0,44164931.0,44291687.0,44167775.0,44174790.0,44299622.0,44164485.0,44110885.0,44096765.0,44247286.0,44150798.0,44103289.0,44150318.0,44458309.0,44145949.0,44166115.0,44113020.0,44199650.0,44160615.0,44357199.0,44138887.0,44245193.0,44290500.0,44132420.0,44116535.0,44120421.0,44221595.0,44181640.0,44271118.0,44106461.0,44141760.0,44202942.0,44089061.0,44167317.0,44244997.0,44128593.0,44081757.0,44109381.0,44146706.0,44136293.0,44141434.0,44300373.0,44120259.0,44114548.0,44122021.0,44157263.0,44084890.0,44127382.0,44243993.0,44120831.0,44112544.0,44119689.0,44160981.0,44099530.0,44124058.0,44125754.0,44161951.0,44118374.0,44153547.0,44140303.0,44147158.0,44277989.0,44180494.0,44138207.0,44161593.0,44211985.0,44198131.0,44095994.0,44193641.0,44146542.0,44145939.0,44092057.0],"unit":"ns","throughput":[{"per_iteration":60000000,"unit":"bytes"}],"typical":{"estimate":22084110.69,"lower_bound":22077270.989875,"upper_bound":22091417.479375,"unit":"ns"},"mean":{"estimate":22084110.69,"lower_bound":22077270.989875,"upper_bound":22091417.479375,"unit":"ns"},"median":{"estimate":22074141.25,"lower_bound":22068795.0,"upper_bound":22082242.5,"unit":"ns"},"median_abs_dev":{"estimate":25252.754701673985,"lower_bound":19632.218201458454,"upper_bound":34285.12439131737,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":31092.651753972223,"lower_bound":30110.214930785118,"upper_bound":32108.75432509251,"unit":"%"},"median":{"estimate":31499.73671066714,"lower_bound":30215.2553045859,"upper_bound":32833.71053365563,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"cfe","benchmarks":["cfe/1","cfe/10","cfe/100","cfe/1000","cfe/10000","cfe/100000","cfe/1000000","cfe/10000000","cfe/30000000","cfe/60000000"],"report_directory":"/root/fuel-core/target/criterion/reports/cfe"} +{"reason":"benchmark-complete","id":"cfei/1","report_directory":"/root/fuel-core/target/criterion/reports/cfei/1","iteration_count":[2423,4846,7269,9692,12115,14538,16961,19384,21807,24230,26653,29076,31499,33922,36345,38768,41191,43614,46037,48460,50883,53306,55729,58152,60575,62998,65421,67844,70267,72690,75113,77536,79959,82382,84805,87228,89651,92074,94497,96920,99343,101766,104189,106612,109035,111458,113881,116304,118727,121150,123573,125996,128419,130842,133265,135688,138111,140534,142957,145380,147803,150226,152649,155072,157495,159918,162341,164764,167187,169610,172033,174456,176879,179302,181725,184148,186571,188994,191417,193840,196263,198686,201109,203532,205955,208378,210801,213224,215647,218070,220493,222916,225339,227762,230185,232608,235031,237454,239877,242300],"measured_values":[627169.0,1125297.0,1695795.0,2237556.0,2784995.0,3334405.0,3896170.0,4469883.0,4992843.0,5564369.0,6120277.0,6538668.0,7030285.0,7700629.0,8384464.0,8953702.0,9279451.0,9971819.0,10556120.0,10953090.0,11535828.0,12076555.0,12412447.0,12881752.0,13445009.0,13937551.0,14583527.0,15106072.0,15614791.0,16184192.0,16796772.0,17205016.0,17779811.0,18028022.0,18560083.0,19501543.0,20033894.0,20396058.0,20431751.0,20811977.0,21957656.0,22907050.0,23010444.0,23335486.0,23838943.0,24247534.0,25208539.0,26152994.0,26226611.0,26741053.0,27347518.0,27954831.0,28005207.0,28357285.0,29409805.0,29840236.0,30351689.0,31209709.0,31060549.0,31640834.0,32821212.0,33887014.0,33869872.0,34025369.0,34843573.0,35712991.0,36663849.0,36570921.0,36854561.0,37154874.0,38281529.0,38882641.0,39029989.0,39268619.0,39862818.0,41510781.0,41346700.0,41534621.0,42278857.0,43627790.0,43631081.0,43998705.0,44650341.0,44358032.0,45378111.0,45545027.0,45683211.0,46862776.0,47489299.0,48309378.0,48604667.0,48821432.0,48931548.0,48963277.0,49737014.0,50871659.0,51056366.0,51127120.0,53385922.0,55054596.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":220.423091929523,"lower_bound":219.6392437045833,"upper_bound":221.26095521446248,"unit":"ns"},"mean":{"estimate":222.7791120691703,"lower_bound":221.77402626247067,"upper_bound":223.93282821236517,"unit":"ns"},"median":{"estimate":221.87575726767847,"lower_bound":221.13335518200734,"upper_bound":222.38811521651974,"unit":"ns"},"median_abs_dev":{"estimate":4.209245823095672,"lower_bound":2.4215510946627004,"upper_bound":4.866858798947462,"unit":"ns"},"slope":{"estimate":220.423091929523,"lower_bound":219.6392437045833,"upper_bound":221.26095521446248,"unit":"ns"},"change":{"mean":{"estimate":7.719250121443274,"lower_bound":7.646191579704572,"upper_bound":7.78734159487496,"unit":"%"},"median":{"estimate":7.724938450726146,"lower_bound":7.681743504387365,"upper_bound":7.770614548314786,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"cfei/10","report_directory":"/root/fuel-core/target/criterion/reports/cfei/10","iteration_count":[2533,5066,7599,10132,12665,15198,17731,20264,22797,25330,27863,30396,32929,35462,37995,40528,43061,45594,48127,50660,53193,55726,58259,60792,63325,65858,68391,70924,73457,75990,78523,81056,83589,86122,88655,91188,93721,96254,98787,101320,103853,106386,108919,111452,113985,116518,119051,121584,124117,126650,129183,131716,134249,136782,139315,141848,144381,146914,149447,151980,154513,157046,159579,162112,164645,167178,169711,172244,174777,177310,179843,182376,184909,187442,189975,192508,195041,197574,200107,202640,205173,207706,210239,212772,215305,217838,220371,222904,225437,227970,230503,233036,235569,238102,240635,243168,245701,248234,250767,253300],"measured_values":[635670.0,1204635.0,1756480.0,2332660.0,2876296.0,3413260.0,4034102.0,4648100.0,5215300.0,5764570.0,6359348.0,6887794.0,7296105.0,7887992.0,8417333.0,8856497.0,9515522.0,10084850.0,10637121.0,11290118.0,11829216.0,12179455.0,12940875.0,13424961.0,14969849.0,15330033.0,15388127.0,15816005.0,16394425.0,16895594.0,17348987.0,17776284.0,18253958.0,18742548.0,19451503.0,20562628.0,20928879.0,21155857.0,21559270.0,22078665.0,22864598.0,23086676.0,23610106.0,24224133.0,25357519.0,25676514.0,26116374.0,26691363.0,27092790.0,27883535.0,28591922.0,29807301.0,29742216.0,30276121.0,30769116.0,31303236.0,32374872.0,32526563.0,33214145.0,33998951.0,34262513.0,34506494.0,35200320.0,35687608.0,35999403.0,36632338.0,37011988.0,37658305.0,38976584.0,40093954.0,39683263.0,41312071.0,41406567.0,40936879.0,41441429.0,41949057.0,42762875.0,43857243.0,44128399.0,44673820.0,45280922.0,46318894.0,46215877.0,47049966.0,47357874.0,49612638.0,50286326.0,50142476.0,50872856.0,51254608.0,51634644.0,52465550.0,52921616.0,53078852.0,52911620.0,53605501.0,53838187.0,54410044.0,54641750.0,55546647.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":221.59653025168996,"lower_bound":220.84741136419177,"upper_bound":222.37445889335532,"unit":"ns"},"mean":{"estimate":222.64266064379,"lower_bound":221.74592003088188,"upper_bound":223.66250935003129,"unit":"ns"},"median":{"estimate":221.3373132601727,"lower_bound":220.681546444081,"upper_bound":222.33970259244637,"unit":"ns"},"median_abs_dev":{"estimate":3.1397069911618374,"lower_bound":2.3944230203935235,"upper_bound":4.317718401848055,"unit":"ns"},"slope":{"estimate":221.59653025168996,"lower_bound":220.84741136419177,"upper_bound":222.37445889335532,"unit":"ns"},"change":{"mean":{"estimate":7.431862055230525,"lower_bound":7.352981466924634,"upper_bound":7.51007017822337,"unit":"%"},"median":{"estimate":7.455747941759737,"lower_bound":7.3811530679138615,"upper_bound":7.534752636136285,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"cfei/100","report_directory":"/root/fuel-core/target/criterion/reports/cfei/100","iteration_count":[2494,4988,7482,9976,12470,14964,17458,19952,22446,24940,27434,29928,32422,34916,37410,39904,42398,44892,47386,49880,52374,54868,57362,59856,62350,64844,67338,69832,72326,74820,77314,79808,82302,84796,87290,89784,92278,94772,97266,99760,102254,104748,107242,109736,112230,114724,117218,119712,122206,124700,127194,129688,132182,134676,137170,139664,142158,144652,147146,149640,152134,154628,157122,159616,162110,164604,167098,169592,172086,174580,177074,179568,182062,184556,187050,189544,192038,194532,197026,199520,202014,204508,207002,209496,211990,214484,216978,219472,221966,224460,226954,229448,231942,234436,236930,239424,241918,244412,246906,249400],"measured_values":[640114.0,1153786.0,1724303.0,2257749.0,2798739.0,3390207.0,4039689.0,4527536.0,5139638.0,5719287.0,6257049.0,6768542.0,7364719.0,7908183.0,8302593.0,8857459.0,9350353.0,9877997.0,10410858.0,10960248.0,11524513.0,12171200.0,12638696.0,13062911.0,13523417.0,14233718.0,14856395.0,15442957.0,15984953.0,16480166.0,17127733.0,17700250.0,18435135.0,19019925.0,19552694.0,19974248.0,20609170.0,21127610.0,21689442.0,22171848.0,22611604.0,24475507.0,24337531.0,24540209.0,24997620.0,25413133.0,25762165.0,26253068.0,26871780.0,27394356.0,28308207.0,28739717.0,29386596.0,29862398.0,30239870.0,31104515.0,31357251.0,31733300.0,32605623.0,33193896.0,34721596.0,35279708.0,35275598.0,35877584.0,36365151.0,36823833.0,37213703.0,37571385.0,38127870.0,38596903.0,39173011.0,40126956.0,40328778.0,40897393.0,41548749.0,43225384.0,43658796.0,43836693.0,44502522.0,44796318.0,45097275.0,45201570.0,45600520.0,46311175.0,47193164.0,47850774.0,48258607.0,48734901.0,50618664.0,50679579.0,51295793.0,51636396.0,52189052.0,52226365.0,52273858.0,52972928.0,53702710.0,53815463.0,55591353.0,57822129.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":223.37042259780205,"lower_bound":222.6347878534983,"upper_bound":224.17788068056385,"unit":"ns"},"mean":{"estimate":223.67849368609595,"lower_bound":222.86475976777615,"upper_bound":224.66663294597333,"unit":"ns"},"median":{"estimate":222.51465608964784,"lower_bound":221.82693008675366,"upper_bound":223.2383646677953,"unit":"ns"},"median_abs_dev":{"estimate":2.8595600842936344,"lower_bound":1.9704404457972928,"upper_bound":3.608313242980548,"unit":"ns"},"slope":{"estimate":223.37042259780205,"lower_bound":222.6347878534983,"upper_bound":224.17788068056385,"unit":"ns"},"change":{"mean":{"estimate":7.719630163528423,"lower_bound":7.639419240692697,"upper_bound":7.800942601471996,"unit":"%"},"median":{"estimate":7.70744317600197,"lower_bound":7.623247093694154,"upper_bound":7.769128681228043,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"cfei/1000","report_directory":"/root/fuel-core/target/criterion/reports/cfei/1000","iteration_count":[2440,4880,7320,9760,12200,14640,17080,19520,21960,24400,26840,29280,31720,34160,36600,39040,41480,43920,46360,48800,51240,53680,56120,58560,61000,63440,65880,68320,70760,73200,75640,78080,80520,82960,85400,87840,90280,92720,95160,97600,100040,102480,104920,107360,109800,112240,114680,117120,119560,122000,124440,126880,129320,131760,134200,136640,139080,141520,143960,146400,148840,151280,153720,156160,158600,161040,163480,165920,168360,170800,173240,175680,178120,180560,183000,185440,187880,190320,192760,195200,197640,200080,202520,204960,207400,209840,212280,214720,217160,219600,222040,224480,226920,229360,231800,234240,236680,239120,241560,244000],"measured_values":[617255.0,1182979.0,1761455.0,2308171.0,2923027.0,3494808.0,4101904.0,4677593.0,5197004.0,5669299.0,6193695.0,6721406.0,7292357.0,7835048.0,8442380.0,9039066.0,9518564.0,10083707.0,10579774.0,11083053.0,11561494.0,12094794.0,13135349.0,13786044.0,14212672.0,14705050.0,15279570.0,15975026.0,16462435.0,16985625.0,17570984.0,18031170.0,18523236.0,18952737.0,19434146.0,20029690.0,20591211.0,21064314.0,21494544.0,21994326.0,22424080.0,22982310.0,23654398.0,24211383.0,24772472.0,25156411.0,25779425.0,26513559.0,26943403.0,27956311.0,28824193.0,29195991.0,29609408.0,29963016.0,30222202.0,30844513.0,31336089.0,32170758.0,33069050.0,33087856.0,33635938.0,34121748.0,34572824.0,35468001.0,36016907.0,36494324.0,37438486.0,38695959.0,39158693.0,39709297.0,39465892.0,39729885.0,40418161.0,40757093.0,41087938.0,41599007.0,42455476.0,43124948.0,43564311.0,43942238.0,46012454.0,46360589.0,46343055.0,47098589.0,48272082.0,48307045.0,48579328.0,49272476.0,50106021.0,50368456.0,50829059.0,51414467.0,52272456.0,52294051.0,52515008.0,53231156.0,54038519.0,54591054.0,56743546.0,55802761.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":228.45549305816317,"lower_bound":227.7984535976794,"upper_bound":229.14080168063578,"unit":"ns"},"mean":{"estimate":229.66051948145804,"lower_bound":228.8044794045439,"upper_bound":230.60688199669306,"unit":"ns"},"median":{"estimate":228.88200171554467,"lower_bound":227.91760483208907,"upper_bound":229.55621584699455,"unit":"ns"},"median_abs_dev":{"estimate":4.225643835115763,"lower_bound":2.8638007894784465,"upper_bound":4.773890348469948,"unit":"ns"},"slope":{"estimate":228.45549305816317,"lower_bound":227.7984535976794,"upper_bound":229.14080168063578,"unit":"ns"},"change":{"mean":{"estimate":7.689741929973215,"lower_bound":7.615315171307348,"upper_bound":7.759109772532138,"unit":"%"},"median":{"estimate":7.718437841207065,"lower_bound":7.62802694223109,"upper_bound":7.812512380057399,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"cfei/10000","report_directory":"/root/fuel-core/target/criterion/reports/cfei/10000","iteration_count":[1433,2866,4299,5732,7165,8598,10031,11464,12897,14330,15763,17196,18629,20062,21495,22928,24361,25794,27227,28660,30093,31526,32959,34392,35825,37258,38691,40124,41557,42990,44423,45856,47289,48722,50155,51588,53021,54454,55887,57320,58753,60186,61619,63052,64485,65918,67351,68784,70217,71650,73083,74516,75949,77382,78815,80248,81681,83114,84547,85980,87413,88846,90279,91712,93145,94578,96011,97444,98877,100310,101743,103176,104609,106042,107475,108908,110341,111774,113207,114640,116073,117506,118939,120372,121805,123238,124671,126104,127537,128970,130403,131836,133269,134702,136135,137568,139001,140434,141867,143300],"measured_values":[686127.0,1223461.0,1837383.0,2389560.0,3000810.0,3611851.0,4165488.0,4772532.0,5306610.0,5843507.0,6436847.0,6965882.0,7513657.0,8037952.0,8678228.0,9271370.0,9800386.0,10469286.0,11018365.0,11536595.0,12159183.0,12758198.0,13347585.0,13707259.0,14172742.0,14706832.0,15390655.0,15953610.0,16372031.0,17092117.0,17527365.0,18046444.0,18745882.0,19255848.0,19805546.0,20433257.0,21119694.0,21582166.0,22299481.0,22817358.0,23346115.0,23964889.0,24397278.0,25246896.0,25917914.0,26202777.0,26494576.0,27253498.0,27774681.0,28222796.0,29126007.0,29226315.0,29821285.0,30398184.0,31001114.0,31319732.0,32096244.0,32765929.0,33113017.0,33832567.0,34407888.0,34726995.0,35631727.0,36270156.0,36447164.0,37212455.0,37647768.0,38492050.0,39131228.0,39500471.0,40448860.0,40622203.0,40979568.0,41627828.0,42201458.0,42674752.0,43243686.0,43872906.0,45513423.0,45081818.0,45740474.0,46534235.0,46839522.0,47620131.0,48060023.0,48616454.0,49657620.0,50081244.0,50211740.0,51009199.0,51390032.0,51641194.0,52638375.0,53007066.0,53594304.0,54475446.0,54948161.0,55440138.0,56249554.0,56468406.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":394.7538402829461,"lower_bound":394.2421084026653,"upper_bound":395.31368597600897,"unit":"ns"},"mean":{"estimate":399.0885428388047,"lower_bound":397.18236182098644,"upper_bound":401.4529065842689,"unit":"ns"},"median":{"estimate":395.6092119429768,"lower_bound":394.77717646723727,"upper_bound":396.7767186872211,"unit":"ns"},"median_abs_dev":{"estimate":3.433185394958201,"lower_bound":2.537593628448005,"upper_bound":5.100280352128496,"unit":"ns"},"slope":{"estimate":394.7538402829461,"lower_bound":394.2421084026653,"upper_bound":395.31368597600897,"unit":"ns"},"change":{"mean":{"estimate":9.641059439651805,"lower_bound":9.554585249136297,"upper_bound":9.738221891574753,"unit":"%"},"median":{"estimate":9.47433433567636,"lower_bound":9.266486054860477,"upper_bound":9.877420768342752,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"cfei/100000","report_directory":"/root/fuel-core/target/criterion/reports/cfei/100000","iteration_count":[376,752,1128,1504,1880,2256,2632,3008,3384,3760,4136,4512,4888,5264,5640,6016,6392,6768,7144,7520,7896,8272,8648,9024,9400,9776,10152,10528,10904,11280,11656,12032,12408,12784,13160,13536,13912,14288,14664,15040,15416,15792,16168,16544,16920,17296,17672,18048,18424,18800,19176,19552,19928,20304,20680,21056,21432,21808,22184,22560,22936,23312,23688,24064,24440,24816,25192,25568,25944,26320,26696,27072,27448,27824,28200,28576,28952,29328,29704,30080,30456,30832,31208,31584,31960,32336,32712,33088,33464,33840,34216,34592,34968,35344,35720,36096,36472,36848,37224,37600],"measured_values":[898417.0,1694020.0,2529616.0,3367299.0,4215170.0,5038948.0,5903663.0,6718793.0,7536889.0,8366585.0,9226534.0,10197207.0,10722656.0,11636044.0,12343313.0,13193816.0,14040074.0,14827399.0,15562158.0,16421479.0,17134686.0,17932429.0,18800487.0,19442727.0,20276074.0,21159395.0,21811755.0,22718187.0,23797589.0,24279021.0,25075272.0,25948642.0,26505360.0,27275688.0,28127626.0,28743595.0,29475817.0,30538383.0,31488970.0,32352232.0,33170758.0,34766276.0,35333484.0,36066783.0,36770391.0,37527253.0,38477657.0,38726990.0,39471807.0,40371661.0,40960973.0,41419823.0,42407613.0,43241983.0,44136161.0,45026037.0,45374213.0,46126412.0,47371651.0,48052841.0,49205582.0,50103093.0,50787075.0,51571748.0,52384840.0,52812573.0,53555949.0,54285808.0,54818819.0,56774765.0,57334127.0,57335864.0,57875274.0,58769413.0,59104531.0,59668378.0,60455334.0,60851515.0,61843677.0,62451622.0,63056194.0,63809141.0,64336737.0,64948310.0,66066478.0,66509567.0,67325034.0,68582216.0,69291035.0,70034209.0,71710353.0,72731482.0,72982382.0,73494926.0,74144038.0,74578039.0,75642654.0,76157647.0,76518595.0,77221824.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":2100.145796732579,"lower_bound":2092.297788385772,"upper_bound":2109.5666358437443,"unit":"ns"},"mean":{"estimate":2143.0714588278443,"lower_bound":2131.9438967708898,"upper_bound":2154.673401601517,"unit":"ns"},"median":{"estimate":2142.760165070017,"lower_bound":2130.0018173758867,"upper_bound":2149.7986406619384,"unit":"ns"},"median_abs_dev":{"estimate":52.00703702755745,"lower_bound":36.853561745192486,"upper_bound":72.36926537416086,"unit":"ns"},"slope":{"estimate":2100.145796732579,"lower_bound":2092.297788385772,"upper_bound":2109.5666358437443,"unit":"ns"},"change":{"mean":{"estimate":62.420219836114676,"lower_bound":61.76235741901861,"upper_bound":63.077649818406464,"unit":"%"},"median":{"estimate":61.880661811453564,"lower_bound":60.456385138591955,"upper_bound":63.36384366181652,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"cfei/1000000","report_directory":"/root/fuel-core/target/criterion/reports/cfei/1000000","iteration_count":[52,104,156,208,260,312,364,416,468,520,572,624,676,728,780,832,884,936,988,1040,1092,1144,1196,1248,1300,1352,1404,1456,1508,1560,1612,1664,1716,1768,1820,1872,1924,1976,2028,2080,2132,2184,2236,2288,2340,2392,2444,2496,2548,2600,2652,2704,2756,2808,2860,2912,2964,3016,3068,3120,3172,3224,3276,3328,3380,3432,3484,3536,3588,3640,3692,3744,3796,3848,3900,3952,4004,4056,4108,4160,4212,4264,4316,4368,4420,4472,4524,4576,4628,4680,4732,4784,4836,4888,4940,4992,5044,5096,5148,5200],"measured_values":[1023838.0,1956089.0,2929725.0,3906833.0,4882495.0,5855008.0,6830031.0,7832270.0,8775133.0,9749224.0,10723534.0,11749483.0,12658775.0,13635239.0,14629313.0,15569339.0,16562502.0,17497364.0,18486229.0,19591390.0,20405120.0,21367181.0,22344964.0,23341926.0,24355931.0,25278178.0,26306021.0,27273803.0,28171180.0,29100058.0,30040311.0,30963701.0,31985542.0,32898253.0,33888399.0,34886611.0,35826148.0,36796336.0,37756331.0,38745658.0,39666098.0,40637692.0,41633940.0,42519719.0,43551112.0,44933702.0,45801465.0,46549794.0,47482956.0,48411216.0,49455169.0,50336739.0,51355254.0,52580100.0,53417422.0,54640910.0,55504729.0,56165970.0,57461232.0,58417898.0,59144255.0,60030273.0,60831239.0,61808323.0,62682466.0,63588892.0,64710029.0,65499158.0,66342681.0,67223051.0,68241066.0,69096236.0,70141405.0,70971233.0,71880033.0,72974057.0,73900803.0,74702729.0,75699283.0,76560067.0,77435503.0,78534605.0,79320223.0,80289991.0,81277735.0,82265222.0,83113257.0,83986604.0,86388534.0,87595302.0,87972435.0,90016374.0,90543994.0,91215481.0,92641669.0,92822901.0,94099703.0,95150857.0,96255850.0,96558901.0],"unit":"ns","throughput":[{"per_iteration":1000000,"unit":"bytes"}],"typical":{"estimate":18569.650736720054,"lower_bound":18534.37321558312,"upper_bound":18605.372770784597,"unit":"ns"},"mean":{"estimate":18639.039743234604,"lower_bound":18608.985686276654,"upper_bound":18672.245332611656,"unit":"ns"},"median":{"estimate":18642.661531774236,"lower_bound":18619.99945054945,"upper_bound":18677.60576923077,"unit":"ns"},"median_abs_dev":{"estimate":122.89441293001904,"lower_bound":88.83126044215774,"upper_bound":158.2361292754382,"unit":"ns"},"slope":{"estimate":18569.650736720054,"lower_bound":18534.37321558312,"upper_bound":18605.372770784597,"unit":"ns"},"change":{"mean":{"estimate":312.5974705144051,"lower_bound":310.85033390435876,"upper_bound":314.1995527275492,"unit":"%"},"median":{"estimate":313.35307581195764,"lower_bound":312.46885354236986,"upper_bound":314.5008935660885,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"cfei/10000000","report_directory":"/root/fuel-core/target/criterion/reports/cfei/10000000","iteration_count":[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],"measured_values":[48396961.0,48291984.0,48247675.0,48449846.0,48595830.0,48348639.0,48299343.0,48392034.0,48251517.0,48436351.0,48270514.0,48326063.0,48294907.0,48277861.0,48249046.0,48352623.0,48299347.0,48282872.0,48260005.0,48346453.0,48262062.0,48291660.0,48424266.0,48334047.0,48769026.0,48323354.0,48356183.0,48602018.0,48454446.0,48306690.0,48471704.0,48490283.0,48337861.0,48306310.0,48367511.0,48319398.0,48326255.0,48254452.0,48251747.0,48275361.0,48284564.0,48540730.0,48511198.0,48253034.0,48346175.0,48362762.0,48306169.0,48370361.0,48313832.0,48251256.0,48286172.0,48270643.0,48367537.0,48496081.0,48495004.0,48255644.0,48346066.0,48395713.0,48300838.0,48300224.0,48467497.0,48632054.0,48715958.0,48831939.0,48375667.0,48392458.0,48351214.0,48299273.0,48426046.0,48330098.0,48273412.0,48319549.0,48291684.0,48339477.0,48251336.0,48315931.0,48274779.0,48339725.0,48250204.0,48718314.0,48543010.0,48301295.0,48262074.0,48398785.0,48312362.0,48437567.0,48271903.0,48331161.0,48274697.0,48302314.0,48295012.0,48370197.0,48329275.0,48305593.0,48294818.0,48341150.0,48324232.0,48257634.0,48650692.0,48383779.0],"unit":"ns","throughput":[{"per_iteration":10000000,"unit":"bytes"}],"typical":{"estimate":3454594.766428573,"lower_bound":3452996.3441071445,"upper_bound":3456363.1360892844,"unit":"ns"},"mean":{"estimate":3454594.766428573,"lower_bound":3452996.3441071445,"upper_bound":3456363.1360892844,"unit":"ns"},"median":{"estimate":3451868.5,"lower_bound":3450450.714285714,"upper_bound":3453290.4285714286,"unit":"ns"},"median_abs_dev":{"estimate":5178.827608057677,"lower_bound":3594.9342861771584,"upper_bound":6708.713254646579,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":12216.013641027248,"lower_bound":11727.76104851814,"upper_bound":12736.38587053747,"unit":"%"},"median":{"estimate":12148.119225692917,"lower_bound":11542.69099378882,"upper_bound":13643.202428006776,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"cfei","benchmarks":["cfei/cfei","cfei/1","cfei/10","cfei/100","cfei/1000","cfei/10000","cfei/100000","cfei/1000000","cfei/10000000"],"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":[5224,10448,15672,20896,26120,31344,36568,41792,47016,52240,57464,62688,67912,73136,78360,83584,88808,94032,99256,104480,109704,114928,120152,125376,130600,135824,141048,146272,151496,156720,161944,167168,172392,177616,182840,188064,193288,198512,203736,208960,214184,219408,224632,229856,235080,240304,245528,250752,255976,261200,266424,271648,276872,282096,287320,292544,297768,302992,308216,313440,318664,323888,329112,334336,339560,344784,350008,355232,360456,365680,370904,376128,381352,386576,391800,397024,402248,407472,412696,417920,423144,428368,433592,438816,444040,449264,454488,459712,464936,470160,475384,480608,485832,491056,496280,501504,506728,511952,517176,522400],"measured_values":[181969.0,360142.0,537602.0,712732.0,895051.0,1072374.0,1252818.0,1436397.0,1610660.0,1796953.0,1982005.0,2136626.0,2327920.0,2526876.0,2687722.0,2850626.0,3044165.0,3219997.0,3436005.0,3587488.0,3777429.0,3945435.0,4119539.0,4309160.0,4532732.0,4674297.0,4849495.0,5105509.0,5208952.0,5353163.0,5552707.0,5757372.0,5913677.0,6148310.0,6281945.0,6457341.0,6644392.0,6836749.0,6988391.0,7231043.0,7354041.0,7611858.0,7707061.0,7879049.0,8088105.0,8226849.0,8418096.0,8620304.0,8810820.0,9182047.0,9138720.0,9388602.0,9515590.0,9782548.0,9869345.0,10139221.0,10251835.0,10485042.0,10660973.0,11000980.0,10944681.0,11118708.0,11302661.0,11515314.0,11668158.0,11863118.0,12025513.0,12322914.0,12372527.0,12615665.0,12718861.0,13042105.0,13076940.0,13275457.0,13473381.0,13612265.0,13797795.0,14070705.0,14170466.0,14401263.0,14544618.0,14710795.0,14792249.0,15095832.0,15230984.0,15605552.0,15608542.0,15876663.0,15963566.0,16226851.0,16321036.0,16700461.0,16686414.0,16994232.0,17021823.0,17382489.0,17374773.0,17761624.0,17616690.0,18057608.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":34.43767720726497,"lower_bound":34.388417317938284,"upper_bound":34.4873951691894,"unit":"ns"},"mean":{"estimate":34.41931609595879,"lower_bound":34.382739842321804,"upper_bound":34.45778985568758,"unit":"ns"},"median":{"estimate":34.365386393490354,"lower_bound":34.33904469988421,"upper_bound":34.39802833078101,"unit":"ns"},"median_abs_dev":{"estimate":0.11428991354819562,"lower_bound":0.0817532034616345,"upper_bound":0.16109608728765476,"unit":"ns"},"slope":{"estimate":34.43767720726497,"lower_bound":34.388417317938284,"upper_bound":34.4873951691894,"unit":"ns"},"change":{"mean":{"estimate":0.04276082897730693,"lower_bound":0.03901185926247314,"upper_bound":0.04554672281516317,"unit":"%"},"median":{"estimate":0.042561387105297666,"lower_bound":0.04108850889746907,"upper_bound":0.04467247801038531,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcl/10","report_directory":"/root/fuel-core/target/criterion/reports/mcl/10","iteration_count":[5250,10500,15750,21000,26250,31500,36750,42000,47250,52500,57750,63000,68250,73500,78750,84000,89250,94500,99750,105000,110250,115500,120750,126000,131250,136500,141750,147000,152250,157500,162750,168000,173250,178500,183750,189000,194250,199500,204750,210000,215250,220500,225750,231000,236250,241500,246750,252000,257250,262500,267750,273000,278250,283500,288750,294000,299250,304500,309750,315000,320250,325500,330750,336000,341250,346500,351750,357000,362250,367500,372750,378000,383250,388500,393750,399000,404250,409500,414750,420000,425250,430500,435750,441000,446250,451500,456750,462000,467250,472500,477750,483000,488250,493500,498750,504000,509250,514500,519750,525000],"measured_values":[186027.0,356898.0,545725.0,722461.0,879624.0,1062263.0,1235693.0,1409193.0,1580870.0,1761231.0,1951148.0,2113974.0,2289804.0,2480205.0,2636773.0,2821047.0,2991177.0,3170763.0,3349154.0,3534768.0,3706689.0,3902600.0,4053586.0,4246628.0,4402084.0,4592530.0,4747467.0,4939735.0,5100562.0,5284331.0,5454683.0,5677637.0,5808357.0,6000326.0,6163557.0,6344404.0,6502314.0,6698384.0,6897032.0,7080474.0,7236055.0,7420846.0,7576530.0,7796214.0,7967257.0,8147969.0,8278109.0,8483343.0,8636430.0,8851804.0,8966371.0,9189079.0,9340422.0,9524600.0,9703315.0,9892232.0,10058411.0,10263438.0,10450921.0,10605260.0,10730448.0,10944952.0,11178157.0,11296021.0,11482308.0,11639520.0,11812980.0,12038283.0,12231197.0,12332879.0,12526943.0,12714923.0,12875672.0,13172457.0,13242925.0,13417364.0,13630823.0,13847979.0,13965974.0,14142445.0,14320660.0,14580213.0,14646606.0,14872922.0,15085089.0,15200580.0,15407561.0,15598840.0,15668602.0,15928815.0,16048994.0,16305482.0,16405813.0,16632891.0,16757369.0,16920007.0,17071966.0,17358918.0,17460658.0,17726341.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":33.66279576825913,"lower_bound":33.63869549129236,"upper_bound":33.68660788328771,"unit":"ns"},"mean":{"estimate":33.67617221571771,"lower_bound":33.63556010398225,"upper_bound":33.72816993655977,"unit":"ns"},"median":{"estimate":33.62467193328945,"lower_bound":33.603639455782314,"upper_bound":33.66405952380953,"unit":"ns"},"median_abs_dev":{"estimate":0.11159139518449315,"lower_bound":0.0805230999197972,"upper_bound":0.13410844086971077,"unit":"ns"},"slope":{"estimate":33.66279576825913,"lower_bound":33.63869549129236,"upper_bound":33.68660788328771,"unit":"ns"},"change":{"mean":{"estimate":0.03043142216029504,"lower_bound":0.026126577843905954,"upper_bound":0.03412410134497464,"unit":"%"},"median":{"estimate":0.03446578530394495,"lower_bound":0.030309734232120134,"upper_bound":0.036580609656446716,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcl/100","report_directory":"/root/fuel-core/target/criterion/reports/mcl/100","iteration_count":[5149,10298,15447,20596,25745,30894,36043,41192,46341,51490,56639,61788,66937,72086,77235,82384,87533,92682,97831,102980,108129,113278,118427,123576,128725,133874,139023,144172,149321,154470,159619,164768,169917,175066,180215,185364,190513,195662,200811,205960,211109,216258,221407,226556,231705,236854,242003,247152,252301,257450,262599,267748,272897,278046,283195,288344,293493,298642,303791,308940,314089,319238,324387,329536,334685,339834,344983,350132,355281,360430,365579,370728,375877,381026,386175,391324,396473,401622,406771,411920,417069,422218,427367,432516,437665,442814,447963,453112,458261,463410,468559,473708,478857,484006,489155,494304,499453,504602,509751,514900],"measured_values":[179192.0,348640.0,522453.0,699857.0,871491.0,1045090.0,1222507.0,1400886.0,1574758.0,1742435.0,1918965.0,2105652.0,2276387.0,2467973.0,2634052.0,2792047.0,2999062.0,3132272.0,3323355.0,3487931.0,3706682.0,3835067.0,4026272.0,4201852.0,4394112.0,4539770.0,4788981.0,4905334.0,5082074.0,5227940.0,5427105.0,5603812.0,5789350.0,5930221.0,6163964.0,6307407.0,6536580.0,6619458.0,6844704.0,6975232.0,7174787.0,7332048.0,7552003.0,7831356.0,7931478.0,8247047.0,8240970.0,8375598.0,8677947.0,8797963.0,8954306.0,9112902.0,9316325.0,9414151.0,9738110.0,9819940.0,10004312.0,10087836.0,10376113.0,10540791.0,10751045.0,10824754.0,11098422.0,11215674.0,11517175.0,11522924.0,11774573.0,11901934.0,12186057.0,12266566.0,12439605.0,12615007.0,12803529.0,12944964.0,13152276.0,13272589.0,13525673.0,13713497.0,14023026.0,13983252.0,14216624.0,14338607.0,14664332.0,14730844.0,14971994.0,15068219.0,15353850.0,15412350.0,15702236.0,15854620.0,16001049.0,16091150.0,16314257.0,16497564.0,16846693.0,16747673.0,17085977.0,17128243.0,17311991.0,17478523.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":34.097899064792486,"lower_bound":34.057296448233615,"upper_bound":34.141099954611704,"unit":"ns"},"mean":{"estimate":34.0762611756534,"lower_bound":34.03885336976382,"upper_bound":34.11609222977527,"unit":"ns"},"median":{"estimate":34.034651124925496,"lower_bound":34.00869100796271,"upper_bound":34.07865604971839,"unit":"ns"},"median_abs_dev":{"estimate":0.17158973357168875,"lower_bound":0.11915079304598321,"upper_bound":0.22290820501667716,"unit":"ns"},"slope":{"estimate":34.097899064792486,"lower_bound":34.057296448233615,"upper_bound":34.141099954611704,"unit":"ns"},"change":{"mean":{"estimate":0.036439175282481084,"lower_bound":0.03415994092650151,"upper_bound":0.03844788345222934,"unit":"%"},"median":{"estimate":0.03791043095258417,"lower_bound":0.035978582602206544,"upper_bound":0.03958960403302325,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcl/1000","report_directory":"/root/fuel-core/target/criterion/reports/mcl/1000","iteration_count":[4536,9072,13608,18144,22680,27216,31752,36288,40824,45360,49896,54432,58968,63504,68040,72576,77112,81648,86184,90720,95256,99792,104328,108864,113400,117936,122472,127008,131544,136080,140616,145152,149688,154224,158760,163296,167832,172368,176904,181440,185976,190512,195048,199584,204120,208656,213192,217728,222264,226800,231336,235872,240408,244944,249480,254016,258552,263088,267624,272160,276696,281232,285768,290304,294840,299376,303912,308448,312984,317520,322056,326592,331128,335664,340200,344736,349272,353808,358344,362880,367416,371952,376488,381024,385560,390096,394632,399168,403704,408240,412776,417312,421848,426384,430920,435456,439992,444528,449064,453600],"measured_values":[157736.0,340063.0,505891.0,707631.0,870716.0,1104405.0,1130101.0,1326927.0,1637519.0,1720282.0,1828631.0,2062257.0,2186889.0,2447191.0,2630508.0,2777082.0,2945993.0,3165242.0,3322016.0,3557106.0,3598922.0,3843289.0,3867420.0,4167520.0,4145899.0,4426444.0,4963792.0,4849475.0,4940021.0,5255389.0,5406335.0,5487401.0,5778025.0,6063323.0,5706623.0,6268912.0,6400919.0,6983326.0,6980059.0,7024239.0,6814583.0,7407329.0,7049867.0,7813067.0,7405563.0,8123591.0,8027734.0,8331432.0,8486523.0,8749632.0,8657689.0,9136267.0,9393207.0,9477540.0,9227652.0,9763106.0,9616155.0,10127291.0,10152011.0,10791074.0,10095355.0,10741947.0,10697661.0,12250080.0,11150421.0,11613729.0,11570198.0,11864462.0,11681835.0,12202031.0,12119932.0,12661060.0,12534193.0,12773156.0,13259850.0,13310491.0,12833450.0,15227051.0,13200897.0,14210022.0,13868440.0,14166568.0,13707226.0,14862524.0,14553864.0,15202227.0,14695022.0,15248222.0,15460118.0,16011203.0,15304614.0,16247575.0,15459388.0,16345970.0,16276742.0,16808207.0,16492192.0,17307602.0,16697504.0,17481279.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":38.20471838056822,"lower_bound":37.927947852740296,"upper_bound":38.51227272864544,"unit":"ns"},"mean":{"estimate":38.15997755722819,"lower_bound":37.92758115697895,"upper_bound":38.40099214013722,"unit":"ns"},"median":{"estimate":38.23427368632638,"lower_bound":37.933858697276776,"upper_bound":38.45001773857692,"unit":"ns"},"median_abs_dev":{"estimate":0.9837299994878004,"lower_bound":0.6984304134108891,"upper_bound":1.1772381230399465,"unit":"ns"},"slope":{"estimate":38.20471838056822,"lower_bound":37.927947852740296,"upper_bound":38.51227272864544,"unit":"ns"},"change":{"mean":{"estimate":-0.04055048919908455,"lower_bound":-0.04705042333371041,"upper_bound":-0.03370073785843212,"unit":"%"},"median":{"estimate":-0.03733333046342857,"lower_bound":-0.0464549469495289,"upper_bound":-0.029029729648192948,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"mcl/10000","report_directory":"/root/fuel-core/target/criterion/reports/mcl/10000","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":[232152.0,436550.0,656298.0,872974.0,1091321.0,1310386.0,1526892.0,1746956.0,1967367.0,2195527.0,2403024.0,2617828.0,2846506.0,3070616.0,3280505.0,3505519.0,3724175.0,3937384.0,4159482.0,4385587.0,4591755.0,4812905.0,5022113.0,5253360.0,5486833.0,5665403.0,5895055.0,6127537.0,6363796.0,6554970.0,6788192.0,6988039.0,7219848.0,7407205.0,7682636.0,7870941.0,8124720.0,8326889.0,8528431.0,8741324.0,8973605.0,9182258.0,9410738.0,9626756.0,9868112.0,10065378.0,10349665.0,10543425.0,10709761.0,10915091.0,11154856.0,11361364.0,11624045.0,11818240.0,12048298.0,12236123.0,12502913.0,12689710.0,12916251.0,13104973.0,13373443.0,13531029.0,13782448.0,13997688.0,14415787.0,14447763.0,14706750.0,14891032.0,15140766.0,15303538.0,15556805.0,15730029.0,16033502.0,16216780.0,16401357.0,16655698.0,16847230.0,17035217.0,17325131.0,17495143.0,17736999.0,17926250.0,18242600.0,18400574.0,18666237.0,18846940.0,19140024.0,19256241.0,19599387.0,19723127.0,20039683.0,20170747.0,20389823.0,20636108.0,20835525.0,20981730.0,21291444.0,21535168.0,21794286.0,21866373.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":161.75357142896092,"lower_bound":161.64036823422984,"upper_bound":161.86675022201155,"unit":"ns"},"mean":{"estimate":161.69886736425258,"lower_bound":161.53854559877948,"upper_bound":161.94000455152965,"unit":"ns"},"median":{"estimate":161.52203355366888,"lower_bound":161.45314824576818,"upper_bound":161.6638024951678,"unit":"ns"},"median_abs_dev":{"estimate":0.4036230670584402,"lower_bound":0.29152554632314126,"upper_bound":0.4809598361958615,"unit":"ns"},"slope":{"estimate":161.75357142896092,"lower_bound":161.64036823422984,"upper_bound":161.86675022201155,"unit":"ns"},"change":{"mean":{"estimate":-0.018745704502146965,"lower_bound":-0.02055164504691563,"upper_bound":-0.016633917989154076,"unit":"%"},"median":{"estimate":-0.021630656667893433,"lower_bound":-0.022438896743890904,"upper_bound":-0.020532341461286234,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"mcl/19753","report_directory":"/root/fuel-core/target/criterion/reports/mcl/19753","iteration_count":[819,1638,2457,3276,4095,4914,5733,6552,7371,8190,9009,9828,10647,11466,12285,13104,13923,14742,15561,16380,17199,18018,18837,19656,20475,21294,22113,22932,23751,24570,25389,26208,27027,27846,28665,29484,30303,31122,31941,32760,33579,34398,35217,36036,36855,37674,38493,39312,40131,40950,41769,42588,43407,44226,45045,45864,46683,47502,48321,49140,49959,50778,51597,52416,53235,54054,54873,55692,56511,57330,58149,58968,59787,60606,61425,62244,63063,63882,64701,65520,66339,67158,67977,68796,69615,70434,71253,72072,72891,73710,74529,75348,76167,76986,77805,78624,79443,80262,81081,81900],"measured_values":[254798.0,507234.0,758013.0,1034519.0,1243134.0,1522326.0,1739367.0,2037010.0,2240005.0,2536692.0,2747173.0,3070073.0,3230916.0,3553189.0,3727296.0,4073737.0,4237786.0,4564619.0,4733779.0,5100878.0,5232065.0,5575806.0,5719763.0,6124419.0,6362238.0,6599838.0,6741923.0,7130293.0,7217477.0,7612801.0,7716186.0,8153946.0,8214220.0,8725687.0,8709520.0,9175446.0,9223071.0,9665047.0,9689729.0,10197096.0,10251475.0,10680563.0,10733838.0,11222617.0,11266575.0,11669531.0,11690704.0,12249999.0,12241628.0,12688099.0,12677950.0,13286020.0,13184938.0,13741244.0,13689438.0,14293575.0,14177849.0,14718108.0,14686005.0,15305875.0,15210472.0,15744641.0,15657999.0,16344145.0,16190769.0,16785187.0,16683658.0,17357761.0,17238291.0,17802261.0,17688653.0,18369161.0,18151947.0,18770587.0,18637358.0,19394937.0,19166388.0,19875619.0,19634252.0,20413868.0,20183998.0,20836696.0,20642021.0,21405043.0,21154627.0,21871215.0,21674902.0,22416654.0,22198712.0,22898273.0,22664270.0,23451574.0,23182614.0,23879865.0,23630376.0,24482155.0,24110968.0,24871136.0,24638695.0,25585219.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":307.5445037497025,"lower_bound":306.6129045222966,"upper_bound":308.4732921881092,"unit":"ns"},"mean":{"estimate":307.6772416465257,"lower_bound":306.9881319159823,"upper_bound":308.36713291322127,"unit":"ns"},"median":{"estimate":309.6501492334826,"lower_bound":304.71586214220423,"upper_bound":309.90660874098864,"unit":"ns"},"median_abs_dev":{"estimate":4.059194195741134,"lower_bound":1.826761490112435,"upper_bound":5.844666213976623,"unit":"ns"},"slope":{"estimate":307.5445037497025,"lower_bound":306.6129045222966,"upper_bound":308.4732921881092,"unit":"ns"},"change":{"mean":{"estimate":-0.0075484786813644345,"lower_bound":-0.010093961201328851,"upper_bound":-0.004924381994583177,"unit":"%"},"median":{"estimate":-0.003938005908734166,"lower_bound":-0.019751760610202895,"upper_bound":-0.0009565654576249027,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcl/29629","report_directory":"/root/fuel-core/target/criterion/reports/mcl/29629","iteration_count":[669,1338,2007,2676,3345,4014,4683,5352,6021,6690,7359,8028,8697,9366,10035,10704,11373,12042,12711,13380,14049,14718,15387,16056,16725,17394,18063,18732,19401,20070,20739,21408,22077,22746,23415,24084,24753,25422,26091,26760,27429,28098,28767,29436,30105,30774,31443,32112,32781,33450,34119,34788,35457,36126,36795,37464,38133,38802,39471,40140,40809,41478,42147,42816,43485,44154,44823,45492,46161,46830,47499,48168,48837,49506,50175,50844,51513,52182,52851,53520,54189,54858,55527,56196,56865,57534,58203,58872,59541,60210,60879,61548,62217,62886,63555,64224,64893,65562,66231,66900],"measured_values":[347228.0,664484.0,1005533.0,1326112.0,1654761.0,1983011.0,2314604.0,2646360.0,2987410.0,3306265.0,3636980.0,4001853.0,4299754.0,4650517.0,4974492.0,5303730.0,5637037.0,5953990.0,6285948.0,6632494.0,6947513.0,7276085.0,7612146.0,7961864.0,8281068.0,8592008.0,8951299.0,9270144.0,9604764.0,9921882.0,10273742.0,10605456.0,10910607.0,11240880.0,11577231.0,11985719.0,12235113.0,12621483.0,12911747.0,13345707.0,13576039.0,13898590.0,14260540.0,14587708.0,14914895.0,15243301.0,15593359.0,15938591.0,16223523.0,16574604.0,16906671.0,17237513.0,17577202.0,17871974.0,18229994.0,18558318.0,18892626.0,19203394.0,19528138.0,19970649.0,20218264.0,20524588.0,20886910.0,21234899.0,21574047.0,21872311.0,22257106.0,22680245.0,22916834.0,23176382.0,23496215.0,23969954.0,24207575.0,24497619.0,24880443.0,25181964.0,25527100.0,25886229.0,26205059.0,26505754.0,26854304.0,27128707.0,27479930.0,27914640.0,28152741.0,28519971.0,28954807.0,29169271.0,29465680.0,29848415.0,30152722.0,30481724.0,30797570.0,31123398.0,31468257.0,31849014.0,32114279.0,32512363.0,32843545.0,33110568.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":495.55964682205456,"lower_bound":495.3731315035692,"upper_bound":495.7670819293371,"unit":"ns"},"mean":{"estimate":495.7412456326598,"lower_bound":495.34631570508344,"upper_bound":496.3295716322655,"unit":"ns"},"median":{"estimate":495.4130127885733,"lower_bound":495.13424592872315,"upper_bound":495.5467551880108,"unit":"ns"},"median_abs_dev":{"estimate":0.7646822602575842,"lower_bound":0.6177246063890593,"upper_bound":0.9777513545066016,"unit":"ns"},"slope":{"estimate":495.55964682205456,"lower_bound":495.3731315035692,"upper_bound":495.7670819293371,"unit":"ns"},"change":{"mean":{"estimate":-0.011991718352129976,"lower_bound":-0.013782973363358049,"upper_bound":-0.010311640968667676,"unit":"%"},"median":{"estimate":-0.011217675659918824,"lower_bound":-0.011958327914577405,"upper_bound":-0.010431950310561877,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"mcl/44444","report_directory":"/root/fuel-core/target/criterion/reports/mcl/44444","iteration_count":[359,718,1077,1436,1795,2154,2513,2872,3231,3590,3949,4308,4667,5026,5385,5744,6103,6462,6821,7180,7539,7898,8257,8616,8975,9334,9693,10052,10411,10770,11129,11488,11847,12206,12565,12924,13283,13642,14001,14360,14719,15078,15437,15796,16155,16514,16873,17232,17591,17950,18309,18668,19027,19386,19745,20104,20463,20822,21181,21540,21899,22258,22617,22976,23335,23694,24053,24412,24771,25130,25489,25848,26207,26566,26925,27284,27643,28002,28361,28720,29079,29438,29797,30156,30515,30874,31233,31592,31951,32310,32669,33028,33387,33746,34105,34464,34823,35182,35541,35900],"measured_values":[276774.0,554279.0,826030.0,1112423.0,1379439.0,1664849.0,1928913.0,2222166.0,2483111.0,2796379.0,3031555.0,3371499.0,3587979.0,3877609.0,4132445.0,4444537.0,4686064.0,5011425.0,5232573.0,5564748.0,5787928.0,6114014.0,6367813.0,6679715.0,6897872.0,7216829.0,7443891.0,7789487.0,7995190.0,8306577.0,8526467.0,8892899.0,9095504.0,9414002.0,9651992.0,10009269.0,10218577.0,10531567.0,10745416.0,11115356.0,11303764.0,11708391.0,11914139.0,12238041.0,12392789.0,12754831.0,12964534.0,13418197.0,13600560.0,13860054.0,14054778.0,14436556.0,14646907.0,15004576.0,15188350.0,15549084.0,15708746.0,16104230.0,16320123.0,16667611.0,16847179.0,17187332.0,17393601.0,17784550.0,17943729.0,18371320.0,18481995.0,18891222.0,19045923.0,19437847.0,19527061.0,19823626.0,20139048.0,20324175.0,20618759.0,21016473.0,21190585.0,21452173.0,21752249.0,22073345.0,22344119.0,22571147.0,22844192.0,23138018.0,23481554.0,23679890.0,23939341.0,24183812.0,24568452.0,24743907.0,25042576.0,25453876.0,25637306.0,25858683.0,26116457.0,26446546.0,26752345.0,26998841.0,27223166.0,27569325.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":768.7111688256091,"lower_bound":768.1271662413491,"upper_bound":769.402467163255,"unit":"ns"},"mean":{"estimate":770.1533331632423,"lower_bound":769.4851916165508,"upper_bound":770.8515544188767,"unit":"ns"},"median":{"estimate":768.9107131436316,"lower_bound":768.3120372922168,"upper_bound":770.5076719701619,"unit":"ns"},"median_abs_dev":{"estimate":3.425739657546677,"lower_bound":2.160203855324144,"upper_bound":4.479137061738067,"unit":"ns"},"slope":{"estimate":768.7111688256091,"lower_bound":768.1271662413491,"upper_bound":769.402467163255,"unit":"ns"},"change":{"mean":{"estimate":-0.001887223738976318,"lower_bound":-0.003962541537713085,"upper_bound":-0.000044908850700340376,"unit":"%"},"median":{"estimate":-0.0018550675388367965,"lower_bound":-0.003716483619883859,"upper_bound":0.0012239634865065646,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcl/66666","report_directory":"/root/fuel-core/target/criterion/reports/mcl/66666","iteration_count":[208,416,624,832,1040,1248,1456,1664,1872,2080,2288,2496,2704,2912,3120,3328,3536,3744,3952,4160,4368,4576,4784,4992,5200,5408,5616,5824,6032,6240,6448,6656,6864,7072,7280,7488,7696,7904,8112,8320,8528,8736,8944,9152,9360,9568,9776,9984,10192,10400,10608,10816,11024,11232,11440,11648,11856,12064,12272,12480,12688,12896,13104,13312,13520,13728,13936,14144,14352,14560,14768,14976,15184,15392,15600,15808,16016,16224,16432,16640,16848,17056,17264,17472,17680,17888,18096,18304,18512,18720,18928,19136,19344,19552,19760,19968,20176,20384,20592,20800],"measured_values":[262194.0,484705.0,737551.0,970598.0,1251319.0,1457612.0,1727240.0,1939336.0,2213703.0,2427480.0,2725770.0,2909002.0,3204129.0,3414208.0,3709105.0,3899667.0,4195275.0,4362709.0,4684113.0,4848081.0,5187272.0,5335800.0,5660073.0,5816652.0,6160310.0,6335024.0,6656625.0,6854469.0,7160530.0,7266303.0,7756561.0,7797750.0,8150856.0,8268557.0,8612134.0,8753540.0,9181134.0,9233958.0,9599429.0,9695845.0,10122977.0,10261142.0,10620340.0,10769655.0,11073022.0,11172722.0,11606556.0,11860595.0,12101689.0,12141592.0,12564961.0,12634943.0,13067529.0,13084500.0,13577288.0,13602029.0,14048923.0,14158047.0,14942335.0,14671963.0,15071059.0,15073608.0,15601032.0,15566296.0,16071767.0,16029250.0,16587948.0,16555446.0,17033062.0,17058470.0,17520632.0,17467231.0,18076143.0,17973170.0,18467841.0,18461758.0,19070581.0,18965396.0,19480558.0,19408492.0,20014537.0,19931037.0,20485712.0,20361799.0,21029107.0,20958004.0,21469314.0,21363506.0,21926167.0,21823839.0,22423399.0,22337285.0,22967825.0,22893527.0,23462743.0,23273790.0,23851309.0,23759395.0,24418996.0,24296677.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":1177.8477947420172,"lower_bound":1175.2345317649877,"upper_bound":1180.4967871410922,"unit":"ns"},"mean":{"estimate":1179.0929856811458,"lower_bound":1176.6077274926051,"upper_bound":1181.8791188579296,"unit":"ns"},"median":{"estimate":1182.0675885540577,"lower_bound":1171.5960498335799,"upper_bound":1184.668163567202,"unit":"ns"},"median_abs_dev":{"estimate":13.282951758899554,"lower_bound":7.681797314052716,"upper_bound":15.755226427963732,"unit":"ns"},"slope":{"estimate":1177.8477947420172,"lower_bound":1175.2345317649877,"upper_bound":1180.4967871410922,"unit":"ns"},"change":{"mean":{"estimate":-0.007744604317225345,"lower_bound":-0.014246717379912848,"upper_bound":-0.003201578723251525,"unit":"%"},"median":{"estimate":-0.0011620983589454292,"lower_bound":-0.011239164704140906,"upper_bound":0.0013760826519089164,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcl/100000","report_directory":"/root/fuel-core/target/criterion/reports/mcl/100000","iteration_count":[194,388,582,776,970,1164,1358,1552,1746,1940,2134,2328,2522,2716,2910,3104,3298,3492,3686,3880,4074,4268,4462,4656,4850,5044,5238,5432,5626,5820,6014,6208,6402,6596,6790,6984,7178,7372,7566,7760,7954,8148,8342,8536,8730,8924,9118,9312,9506,9700,9894,10088,10282,10476,10670,10864,11058,11252,11446,11640,11834,12028,12222,12416,12610,12804,12998,13192,13386,13580,13774,13968,14162,14356,14550,14744,14938,15132,15326,15520,15714,15908,16102,16296,16490,16684,16878,17072,17266,17460,17654,17848,18042,18236,18430,18624,18818,19012,19206,19400],"measured_values":[302746.0,569703.0,854828.0,1135983.0,1425510.0,1708222.0,1993171.0,2300447.0,2562201.0,2846053.0,3135008.0,3440105.0,3709871.0,3976115.0,4273765.0,4557667.0,4863105.0,5137758.0,5412730.0,5671328.0,6000156.0,6287838.0,6561827.0,6823366.0,7149997.0,7377601.0,7726690.0,8013115.0,8289671.0,8520501.0,8860669.0,9211764.0,9411207.0,9664860.0,10008566.0,10207068.0,10573951.0,10808960.0,11158305.0,11380119.0,11717489.0,11932737.0,12284193.0,12504245.0,12838722.0,13070249.0,13493365.0,13672873.0,13998234.0,14318785.0,14589177.0,14851453.0,15192350.0,15484131.0,15789258.0,15959006.0,16268719.0,16475444.0,16928995.0,17187711.0,17465197.0,17674131.0,17991713.0,18259139.0,18578414.0,18786164.0,19157791.0,19320214.0,19670356.0,19900761.0,20442102.0,20479762.0,20824805.0,21084686.0,21396919.0,21648453.0,21997955.0,22163179.0,22545354.0,22813030.0,23151050.0,23436676.0,23667780.0,23924882.0,24340502.0,24464689.0,24876356.0,25035344.0,25404722.0,25664207.0,25995742.0,26427288.0,26548259.0,26838166.0,27296737.0,27328864.0,27708153.0,27936387.0,28313465.0,28516196.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":1471.5228707843858,"lower_bound":1470.4351529837704,"upper_bound":1472.66552063272,"unit":"ns"},"mean":{"estimate":1471.9056974162095,"lower_bound":1470.295360060453,"upper_bound":1474.182032537853,"unit":"ns"},"median":{"estimate":1470.6288149699312,"lower_bound":1469.5979381443299,"upper_bound":1472.2520821840621,"unit":"ns"},"median_abs_dev":{"estimate":4.62859130152435,"lower_bound":3.6263057463043133,"upper_bound":5.67799011582997,"unit":"ns"},"slope":{"estimate":1471.5228707843858,"lower_bound":1470.4351529837704,"upper_bound":1472.66552063272,"unit":"ns"},"change":{"mean":{"estimate":-0.020186763552035414,"lower_bound":-0.021999013065963646,"upper_bound":-0.0183994523036887,"unit":"%"},"median":{"estimate":-0.020546764830533526,"lower_bound":-0.021374489872865055,"upper_bound":-0.01910373650610586,"unit":"%"},"change":"Improved"}} +{"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":[5050,10100,15150,20200,25250,30300,35350,40400,45450,50500,55550,60600,65650,70700,75750,80800,85850,90900,95950,101000,106050,111100,116150,121200,126250,131300,136350,141400,146450,151500,156550,161600,166650,171700,176750,181800,186850,191900,196950,202000,207050,212100,217150,222200,227250,232300,237350,242400,247450,252500,257550,262600,267650,272700,277750,282800,287850,292900,297950,303000,308050,313100,318150,323200,328250,333300,338350,343400,348450,353500,358550,363600,368650,373700,378750,383800,388850,393900,398950,404000,409050,414100,419150,424200,429250,434300,439350,444400,449450,454500,459550,464600,469650,474700,479750,484800,489850,494900,499950,505000],"measured_values":[209508.0,381565.0,570945.0,762904.0,949841.0,1136624.0,1338899.0,1533301.0,1723049.0,1897106.0,2077372.0,2270817.0,2479201.0,2647627.0,2867219.0,3047740.0,3213789.0,3406706.0,3600875.0,3814235.0,4012354.0,4208404.0,4369413.0,4548707.0,4858646.0,4945345.0,5131863.0,5304308.0,5509888.0,5763192.0,5946042.0,6078502.0,6261645.0,6444146.0,6636134.0,6890052.0,7083097.0,7267816.0,7438903.0,7589923.0,7818622.0,7980860.0,8294322.0,8480170.0,8619532.0,8822974.0,9018635.0,9198723.0,9343849.0,9501854.0,9744709.0,9874453.0,10013533.0,10251610.0,10508949.0,10613767.0,10869342.0,11044521.0,11179543.0,11374064.0,11637286.0,11756974.0,11941584.0,12132854.0,12314791.0,12501833.0,12827726.0,12979680.0,13139144.0,13297420.0,13485674.0,13732354.0,13937782.0,14098504.0,14237931.0,14437026.0,14590467.0,14816898.0,15030119.0,15200476.0,15351217.0,15574498.0,15825337.0,15944169.0,16127556.0,16389689.0,16541292.0,16707571.0,16848169.0,17074562.0,17349773.0,17458100.0,17647351.0,17813474.0,18173389.0,18250521.0,18503935.0,18572890.0,18818011.0,18991468.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":37.65991412782183,"lower_bound":37.630953674190806,"upper_bound":37.691545300451565,"unit":"ns"},"mean":{"estimate":37.73066561710004,"lower_bound":37.66606622501042,"upper_bound":37.82693665831993,"unit":"ns"},"median":{"estimate":37.634265346534654,"lower_bound":37.61379219720455,"upper_bound":37.71955445544555,"unit":"ns"},"median_abs_dev":{"estimate":0.16671409882546384,"lower_bound":0.1289868037492086,"upper_bound":0.21604360563933864,"unit":"ns"},"slope":{"estimate":37.65991412782183,"lower_bound":37.630953674190806,"upper_bound":37.691545300451565,"unit":"ns"},"change":{"mean":{"estimate":0.13810606025004546,"lower_bound":0.13517292800774774,"upper_bound":0.14162584610311274,"unit":"%"},"median":{"estimate":0.13573998643131424,"lower_bound":0.13427774258142233,"upper_bound":0.13862234111821325,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcli/10","report_directory":"/root/fuel-core/target/criterion/reports/mcli/10","iteration_count":[5103,10206,15309,20412,25515,30618,35721,40824,45927,51030,56133,61236,66339,71442,76545,81648,86751,91854,96957,102060,107163,112266,117369,122472,127575,132678,137781,142884,147987,153090,158193,163296,168399,173502,178605,183708,188811,193914,199017,204120,209223,214326,219429,224532,229635,234738,239841,244944,250047,255150,260253,265356,270459,275562,280665,285768,290871,295974,301077,306180,311283,316386,321489,326592,331695,336798,341901,347004,352107,357210,362313,367416,372519,377622,382725,387828,392931,398034,403137,408240,413343,418446,423549,428652,433755,438858,443961,449064,454167,459270,464373,469476,474579,479682,484785,489888,494991,500094,505197,510300],"measured_values":[218177.0,376368.0,581183.0,757906.0,945206.0,1125645.0,1325858.0,1515938.0,1717103.0,1880841.0,2093120.0,2300571.0,2512401.0,2647804.0,2852456.0,3026439.0,3222124.0,3384023.0,3619567.0,3786300.0,3977510.0,4128040.0,4397676.0,4559494.0,4736980.0,4883755.0,5176543.0,5336527.0,5486496.0,5636033.0,5860494.0,6079074.0,6269568.0,6404519.0,6668626.0,6842583.0,7040917.0,7182933.0,7413773.0,7562290.0,7765831.0,7907384.0,8163050.0,8313231.0,8609605.0,8746564.0,9010962.0,9095827.0,9296689.0,9386570.0,9664850.0,9958486.0,10076671.0,10145312.0,10427904.0,10656545.0,10958595.0,11015992.0,11256327.0,11333189.0,11570279.0,11736280.0,12195723.0,12121914.0,12337742.0,12415922.0,12678021.0,12892040.0,13110046.0,13155853.0,13465674.0,13673299.0,13885668.0,13912948.0,14226431.0,14367112.0,14571966.0,14663117.0,15017641.0,15130717.0,15375345.0,15494846.0,15777031.0,16454497.0,16175011.0,16189155.0,16510729.0,16686837.0,16977213.0,16965960.0,17269723.0,17394915.0,17606574.0,17733806.0,17990277.0,18155104.0,18422533.0,18490058.0,18761845.0,18909609.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":37.15959449555211,"lower_bound":37.101846559945315,"upper_bound":37.23272794158016,"unit":"ns"},"mean":{"estimate":37.228881127605604,"lower_bound":37.135009250497056,"upper_bound":37.367954652569644,"unit":"ns"},"median":{"estimate":37.13994628071123,"lower_bound":37.113127075969366,"upper_bound":37.189593230035975,"unit":"ns"},"median_abs_dev":{"estimate":0.16316070207315603,"lower_bound":0.1276923825046758,"upper_bound":0.21565554213043955,"unit":"ns"},"slope":{"estimate":37.15959449555211,"lower_bound":37.101846559945315,"upper_bound":37.23272794158016,"unit":"ns"},"change":{"mean":{"estimate":0.12504967956575586,"lower_bound":0.11816713888461229,"upper_bound":0.131346599098541,"unit":"%"},"median":{"estimate":0.1294476964098623,"lower_bound":0.1268086980899945,"upper_bound":0.13178852182789424,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcli/100","report_directory":"/root/fuel-core/target/criterion/reports/mcli/100","iteration_count":[5080,10160,15240,20320,25400,30480,35560,40640,45720,50800,55880,60960,66040,71120,76200,81280,86360,91440,96520,101600,106680,111760,116840,121920,127000,132080,137160,142240,147320,152400,157480,162560,167640,172720,177800,182880,187960,193040,198120,203200,208280,213360,218440,223520,228600,233680,238760,243840,248920,254000,259080,264160,269240,274320,279400,284480,289560,294640,299720,304800,309880,314960,320040,325120,330200,335280,340360,345440,350520,355600,360680,365760,370840,375920,381000,386080,391160,396240,401320,406400,411480,416560,421640,426720,431800,436880,441960,447040,452120,457200,462280,467360,472440,477520,482600,487680,492760,497840,502920,508000],"measured_values":[195149.0,380403.0,571477.0,754011.0,948484.0,1129128.0,1323869.0,1539449.0,1735255.0,1970706.0,2092270.0,2271523.0,2480617.0,2630772.0,2844895.0,3053422.0,3227439.0,3397311.0,3595338.0,3768241.0,3975114.0,4141845.0,4376240.0,4547217.0,4740147.0,4912739.0,5122514.0,5277987.0,5486100.0,5658922.0,5899880.0,6030518.0,6242935.0,6415711.0,6659673.0,6800940.0,7084203.0,7192935.0,7405614.0,7534161.0,7769614.0,8051621.0,8201440.0,8288286.0,8540127.0,8674286.0,8952271.0,9094972.0,9309849.0,9406849.0,9710455.0,9808086.0,10047907.0,10188311.0,10424067.0,10595633.0,10824877.0,10925161.0,11224019.0,11376565.0,11602370.0,11908654.0,12089893.0,12065986.0,12378191.0,12553560.0,12801087.0,12891776.0,13094737.0,13177367.0,13502027.0,13610709.0,13883898.0,13956492.0,14203267.0,14393702.0,14678574.0,14723166.0,15052184.0,15095017.0,15382518.0,15485575.0,15855038.0,15846607.0,16195874.0,16193423.0,16477263.0,16639237.0,16936268.0,16994896.0,17342813.0,17381632.0,17709718.0,17769597.0,18054079.0,18233383.0,18583811.0,18457883.0,18849872.0,18849147.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":37.33238696185402,"lower_bound":37.28359442719599,"upper_bound":37.38211083430266,"unit":"ns"},"mean":{"estimate":37.35484771062272,"lower_bound":37.304972981652945,"upper_bound":37.41005171854985,"unit":"ns"},"median":{"estimate":37.31969410628611,"lower_bound":37.261943552286226,"upper_bound":37.37943670502725,"unit":"ns"},"median_abs_dev":{"estimate":0.22894213264999075,"lower_bound":0.1777849463616976,"upper_bound":0.2620898893719926,"unit":"ns"},"slope":{"estimate":37.33238696185402,"lower_bound":37.28359442719599,"upper_bound":37.38211083430266,"unit":"ns"},"change":{"mean":{"estimate":0.12984434459381378,"lower_bound":0.12760708480935326,"upper_bound":0.13200869092158005,"unit":"%"},"median":{"estimate":0.13038250964516385,"lower_bound":0.1284438058986368,"upper_bound":0.132436725877616,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcli/1000","report_directory":"/root/fuel-core/target/criterion/reports/mcli/1000","iteration_count":[4396,8792,13188,17584,21980,26376,30772,35168,39564,43960,48356,52752,57148,61544,65940,70336,74732,79128,83524,87920,92316,96712,101108,105504,109900,114296,118692,123088,127484,131880,136276,140672,145068,149464,153860,158256,162652,167048,171444,175840,180236,184632,189028,193424,197820,202216,206612,211008,215404,219800,224196,228592,232988,237384,241780,246176,250572,254968,259364,263760,268156,272552,276948,281344,285740,290136,294532,298928,303324,307720,312116,316512,320908,325304,329700,334096,338492,342888,347284,351680,356076,360472,364868,369264,373660,378056,382452,386848,391244,395640,400036,404432,408828,413224,417620,422016,426412,430808,435204,439600],"measured_values":[183399.0,367921.0,562026.0,777505.0,983243.0,1178957.0,1429399.0,1493445.0,1622974.0,1916470.0,2251228.0,2314130.0,2543768.0,2611112.0,2738258.0,3053965.0,3126141.0,3599256.0,3350238.0,3706087.0,3793976.0,4120937.0,4255397.0,4590773.0,4593083.0,4880194.0,4985248.0,5262372.0,5550443.0,5745536.0,5644604.0,6254817.0,6210108.0,6398252.0,6380293.0,6859223.0,6728158.0,7174748.0,7256934.0,7753734.0,7768775.0,8165889.0,8057949.0,8357638.0,8193012.0,8835324.0,8790340.0,8957125.0,8880860.0,9626482.0,9119375.0,9952762.0,9820953.0,10269456.0,10193146.0,10701424.0,10540440.0,11007422.0,11031420.0,11549949.0,11286514.0,11723764.0,11498029.0,12474081.0,11671029.0,12643276.0,12438261.0,12924996.0,12543075.0,13394849.0,12753559.0,13653922.0,13484877.0,14223359.0,14179830.0,14488838.0,14711136.0,14866193.0,14204542.0,15209490.0,14238617.0,15697276.0,15638273.0,16140098.0,15999029.0,16362192.0,16114458.0,16711594.0,16054075.0,17336873.0,16543148.0,17756708.0,17317155.0,17904656.0,19300474.0,18355334.0,17621270.0,18602493.0,17916483.0,18868821.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":42.74771469905672,"lower_bound":42.42899882599133,"upper_bound":43.076824661409816,"unit":"ns"},"mean":{"estimate":42.81536434168941,"lower_bound":42.57189484326263,"upper_bound":43.064631595037,"unit":"ns"},"median":{"estimate":42.89139418913141,"lower_bound":42.54515710607322,"upper_bound":43.21860189501394,"unit":"ns"},"median_abs_dev":{"estimate":1.1089960007249056,"lower_bound":0.8387446306762328,"upper_bound":1.4402921676651277,"unit":"ns"},"slope":{"estimate":42.74771469905672,"lower_bound":42.42899882599133,"upper_bound":43.076824661409816,"unit":"ns"},"change":{"mean":{"estimate":0.08275527863444387,"lower_bound":0.0717301192711185,"upper_bound":0.09396343307867688,"unit":"%"},"median":{"estimate":0.0722800107336703,"lower_bound":0.05470914086157164,"upper_bound":0.12159119277081909,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcli/10000","report_directory":"/root/fuel-core/target/criterion/reports/mcli/10000","iteration_count":[1324,2648,3972,5296,6620,7944,9268,10592,11916,13240,14564,15888,17212,18536,19860,21184,22508,23832,25156,26480,27804,29128,30452,31776,33100,34424,35748,37072,38396,39720,41044,42368,43692,45016,46340,47664,48988,50312,51636,52960,54284,55608,56932,58256,59580,60904,62228,63552,64876,66200,67524,68848,70172,71496,72820,74144,75468,76792,78116,79440,80764,82088,83412,84736,86060,87384,88708,90032,91356,92680,94004,95328,96652,97976,99300,100624,101948,103272,104596,105920,107244,108568,109892,111216,112540,113864,115188,116512,117836,119160,120484,121808,123132,124456,125780,127104,128428,129752,131076,132400],"measured_values":[221642.0,444310.0,659365.0,901173.0,1099453.0,1335541.0,1535512.0,1778141.0,1975379.0,2221727.0,2417360.0,2682527.0,2854771.0,3110505.0,3292897.0,3553714.0,3732123.0,4019428.0,4174025.0,4442704.0,4610701.0,4892070.0,5061861.0,5351055.0,5507414.0,5787994.0,5931129.0,6242506.0,6382522.0,6671307.0,6807113.0,7110969.0,7265483.0,7569929.0,7689493.0,8043664.0,8141837.0,8451201.0,8585908.0,8907577.0,9095461.0,9345702.0,9431031.0,9764513.0,9897627.0,10187095.0,10327001.0,10641282.0,10704220.0,11119687.0,11278905.0,11627045.0,11669863.0,11995832.0,12027999.0,12396379.0,12541525.0,12922616.0,12932825.0,13313441.0,13352334.0,13794805.0,13902308.0,14203570.0,14254130.0,14646229.0,14677930.0,15093061.0,15184315.0,15538905.0,15538375.0,16053006.0,15973593.0,16398480.0,16397350.0,16892405.0,16890264.0,17287072.0,17332292.0,17801618.0,17752202.0,18208933.0,18197668.0,18617128.0,18595733.0,19104485.0,19101713.0,19540836.0,19482768.0,19976273.0,19914566.0,20434143.0,20365319.0,20934987.0,20773497.0,21285759.0,21215685.0,21745754.0,21655827.0,22186610.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":166.68778186480776,"lower_bound":166.3808869570057,"upper_bound":166.99906123748391,"unit":"ns"},"mean":{"estimate":166.89139280324034,"lower_bound":166.66242884288098,"upper_bound":167.1205907091336,"unit":"ns"},"median":{"estimate":167.31860575438174,"lower_bound":166.21960035843108,"upper_bound":167.59474998458597,"unit":"ns"},"median_abs_dev":{"estimate":1.5649915914349997,"lower_bound":0.8721067700476476,"upper_bound":1.7366046530471557,"unit":"ns"},"slope":{"estimate":166.68778186480776,"lower_bound":166.3808869570057,"upper_bound":166.99906123748391,"unit":"ns"},"change":{"mean":{"estimate":-0.006251834256650213,"lower_bound":-0.008793301143710838,"upper_bound":-0.003633681798794464,"unit":"%"},"median":{"estimate":-0.009204518599168265,"lower_bound":-0.018252401515715944,"upper_bound":0.005853890498126235,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcli/19753","report_directory":"/root/fuel-core/target/criterion/reports/mcli/19753","iteration_count":[838,1676,2514,3352,4190,5028,5866,6704,7542,8380,9218,10056,10894,11732,12570,13408,14246,15084,15922,16760,17598,18436,19274,20112,20950,21788,22626,23464,24302,25140,25978,26816,27654,28492,29330,30168,31006,31844,32682,33520,34358,35196,36034,36872,37710,38548,39386,40224,41062,41900,42738,43576,44414,45252,46090,46928,47766,48604,49442,50280,51118,51956,52794,53632,54470,55308,56146,56984,57822,58660,59498,60336,61174,62012,62850,63688,64526,65364,66202,67040,67878,68716,69554,70392,71230,72068,72906,73744,74582,75420,76258,77096,77934,78772,79610,80448,81286,82124,82962,83800],"measured_values":[262710.0,515348.0,783791.0,1031595.0,1311820.0,1549554.0,1848450.0,2060067.0,2355652.0,2598239.0,2880514.0,3112698.0,3421088.0,3613380.0,3924937.0,4157196.0,4452086.0,4661304.0,4991686.0,5164912.0,5511974.0,5687999.0,6025022.0,6186337.0,6582273.0,6795258.0,7078341.0,7222770.0,7605004.0,7741920.0,8137534.0,8255533.0,8653704.0,8783115.0,9183148.0,9363440.0,9747468.0,9875987.0,10301748.0,10318555.0,10765926.0,10890176.0,11273528.0,11368871.0,11826231.0,11897554.0,12329849.0,12386296.0,12875465.0,12895629.0,13415809.0,13408948.0,13897905.0,13935691.0,14424418.0,14439248.0,14965906.0,14984503.0,15510738.0,15502205.0,16004189.0,16027177.0,16559727.0,16507009.0,17058806.0,17093771.0,17626174.0,17562243.0,18101224.0,18118086.0,18642281.0,18575685.0,19169601.0,19126297.0,19905522.0,19792575.0,20226599.0,20136843.0,20752177.0,20640552.0,21285193.0,21201468.0,21917784.0,21726057.0,22291121.0,22272418.0,22866713.0,22715213.0,23349622.0,23386660.0,23898308.0,23977546.0,24432025.0,24285368.0,24995136.0,24779373.0,25498203.0,25321963.0,25976396.0,25841145.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":311.08434948065036,"lower_bound":310.3993770112904,"upper_bound":311.76655650626543,"unit":"ns"},"mean":{"estimate":311.0139618707585,"lower_bound":310.50928032574484,"upper_bound":311.52273077103126,"unit":"ns"},"median":{"estimate":311.82562266691144,"lower_bound":309.41516081372885,"upper_bound":312.9277500542417,"unit":"ns"},"median_abs_dev":{"estimate":3.152891290123664,"lower_bound":1.5029472502858099,"upper_bound":3.8811833598590773,"unit":"ns"},"slope":{"estimate":311.08434948065036,"lower_bound":310.3993770112904,"upper_bound":311.76655650626543,"unit":"ns"},"change":{"mean":{"estimate":0.009015026068677434,"lower_bound":0.005397893967835966,"upper_bound":0.012023480610720167,"unit":"%"},"median":{"estimate":0.015310889626352742,"lower_bound":0.006718456850934418,"upper_bound":0.019312409903843752,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcli/29629","report_directory":"/root/fuel-core/target/criterion/reports/mcli/29629","iteration_count":[672,1344,2016,2688,3360,4032,4704,5376,6048,6720,7392,8064,8736,9408,10080,10752,11424,12096,12768,13440,14112,14784,15456,16128,16800,17472,18144,18816,19488,20160,20832,21504,22176,22848,23520,24192,24864,25536,26208,26880,27552,28224,28896,29568,30240,30912,31584,32256,32928,33600,34272,34944,35616,36288,36960,37632,38304,38976,39648,40320,40992,41664,42336,43008,43680,44352,45024,45696,46368,47040,47712,48384,49056,49728,50400,51072,51744,52416,53088,53760,54432,55104,55776,56448,57120,57792,58464,59136,59808,60480,61152,61824,62496,63168,63840,64512,65184,65856,66528,67200],"measured_values":[385699.0,674890.0,1010688.0,1347976.0,1683791.0,2026373.0,2354056.0,2703189.0,3027255.0,3368301.0,3701700.0,4065984.0,4397814.0,4786245.0,5092511.0,5431053.0,5714676.0,6090673.0,6394850.0,6751865.0,7066797.0,7426323.0,7736307.0,8123199.0,8408155.0,8779758.0,9078832.0,9446203.0,9755428.0,10149436.0,10431443.0,10817921.0,11099500.0,11483843.0,11771495.0,12179046.0,12442827.0,12933387.0,13111911.0,13527774.0,13790886.0,14191076.0,14459305.0,14919261.0,15183608.0,15548910.0,15821752.0,16249242.0,16479545.0,16893402.0,17166414.0,17609714.0,17841226.0,18373793.0,18519591.0,18960628.0,19256684.0,19640775.0,19965222.0,20297918.0,20541541.0,20959322.0,21247680.0,21801985.0,21910713.0,22317874.0,22568591.0,23021998.0,23254611.0,23707958.0,23893801.0,24437407.0,24591476.0,25170964.0,25240031.0,25752368.0,25951805.0,26422545.0,26578407.0,27081741.0,27311948.0,27754025.0,27935554.0,28447388.0,28655030.0,29133373.0,29669519.0,29849514.0,29932705.0,30480160.0,30741404.0,31152759.0,31305433.0,31793196.0,32062960.0,32514239.0,32662009.0,33290164.0,33357593.0,33835033.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":502.887067055986,"lower_bound":502.43779091338075,"upper_bound":503.34830847985097,"unit":"ns"},"mean":{"estimate":503.30220918076617,"lower_bound":502.32029954333984,"upper_bound":504.9656524426992,"unit":"ns"},"median":{"estimate":502.538566468254,"lower_bound":501.6636904761905,"upper_bound":503.12737106083875,"unit":"ns"},"median_abs_dev":{"estimate":2.110065385060315,"lower_bound":1.5826633862503894,"upper_bound":2.411324576691744,"unit":"ns"},"slope":{"estimate":502.887067055986,"lower_bound":502.43779091338075,"upper_bound":503.34830847985097,"unit":"ns"},"change":{"mean":{"estimate":-0.0021611276955201264,"lower_bound":-0.006379904113343571,"upper_bound":0.0017604481851934187,"unit":"%"},"median":{"estimate":-0.003582666248497679,"lower_bound":-0.005467375290687415,"upper_bound":0.0003812961431171047,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcli/44444","report_directory":"/root/fuel-core/target/criterion/reports/mcli/44444","iteration_count":[358,716,1074,1432,1790,2148,2506,2864,3222,3580,3938,4296,4654,5012,5370,5728,6086,6444,6802,7160,7518,7876,8234,8592,8950,9308,9666,10024,10382,10740,11098,11456,11814,12172,12530,12888,13246,13604,13962,14320,14678,15036,15394,15752,16110,16468,16826,17184,17542,17900,18258,18616,18974,19332,19690,20048,20406,20764,21122,21480,21838,22196,22554,22912,23270,23628,23986,24344,24702,25060,25418,25776,26134,26492,26850,27208,27566,27924,28282,28640,28998,29356,29714,30072,30430,30788,31146,31504,31862,32220,32578,32936,33294,33652,34010,34368,34726,35084,35442,35800],"measured_values":[287315.0,550335.0,828087.0,1098862.0,1380064.0,1651109.0,1930780.0,2226487.0,2484330.0,2782294.0,3034860.0,3318742.0,3649301.0,3871920.0,4152643.0,4400825.0,4726610.0,4953692.0,5241387.0,5496796.0,5794724.0,6058721.0,6358216.0,6609491.0,6943415.0,7154983.0,7464060.0,7698619.0,7998529.0,8254016.0,8580906.0,8817311.0,9149842.0,9367783.0,9741851.0,9928229.0,10211410.0,10485649.0,10775390.0,11270315.0,11331688.0,11730385.0,11894487.0,12245127.0,12445572.0,12689201.0,12981377.0,13213538.0,13623677.0,13760680.0,14093393.0,14352967.0,14637985.0,14881182.0,15198374.0,15426294.0,15739723.0,15940007.0,16359791.0,16800218.0,16865764.0,17078397.0,17379156.0,17619150.0,17954058.0,18226977.0,18494901.0,18752032.0,19059982.0,19266849.0,19639936.0,19870810.0,20157607.0,20417671.0,21106544.0,20962595.0,21251976.0,21507262.0,21818089.0,22025450.0,22357395.0,22606333.0,22985123.0,23138846.0,23572188.0,23721290.0,24048892.0,24296441.0,24568053.0,24837173.0,25159461.0,25325895.0,25974935.0,25878861.0,26295048.0,26446751.0,26847152.0,27011023.0,27348879.0,27611698.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":771.8396036466817,"lower_bound":771.1050579572003,"upper_bound":772.7145632996223,"unit":"ns"},"mean":{"estimate":772.2648547848715,"lower_bound":771.4113266426751,"upper_bound":773.2698495949168,"unit":"ns"},"median":{"estimate":771.0414338919925,"lower_bound":770.7454065198478,"upper_bound":771.4774475006282,"unit":"ns"},"median_abs_dev":{"estimate":2.1510204843223835,"lower_bound":1.4404542563454048,"upper_bound":2.698061448075261,"unit":"ns"},"slope":{"estimate":771.8396036466817,"lower_bound":771.1050579572003,"upper_bound":772.7145632996223,"unit":"ns"},"change":{"mean":{"estimate":0.003430115123891575,"lower_bound":0.0012317564664369176,"upper_bound":0.0055564429184518736,"unit":"%"},"median":{"estimate":0.0052613953389808454,"lower_bound":0.0015496387485519954,"upper_bound":0.006598600275833366,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcli/66666","report_directory":"/root/fuel-core/target/criterion/reports/mcli/66666","iteration_count":[210,420,630,840,1050,1260,1470,1680,1890,2100,2310,2520,2730,2940,3150,3360,3570,3780,3990,4200,4410,4620,4830,5040,5250,5460,5670,5880,6090,6300,6510,6720,6930,7140,7350,7560,7770,7980,8190,8400,8610,8820,9030,9240,9450,9660,9870,10080,10290,10500,10710,10920,11130,11340,11550,11760,11970,12180,12390,12600,12810,13020,13230,13440,13650,13860,14070,14280,14490,14700,14910,15120,15330,15540,15750,15960,16170,16380,16590,16800,17010,17220,17430,17640,17850,18060,18270,18480,18690,18900,19110,19320,19530,19740,19950,20160,20370,20580,20790,21000],"measured_values":[262883.0,494763.0,747784.0,988964.0,1242719.0,1484516.0,1743960.0,1978364.0,2239342.0,2477369.0,2734014.0,2969914.0,3238120.0,3479003.0,3732240.0,3961484.0,4244462.0,4453637.0,4739081.0,4950713.0,5253078.0,5444728.0,5716526.0,5934216.0,6241392.0,6434699.0,6712533.0,6930847.0,7239505.0,7441694.0,7705817.0,7909391.0,8199346.0,8420308.0,8700512.0,8911680.0,9184966.0,9425191.0,9691504.0,9907903.0,10238013.0,10590846.0,10720118.0,10941610.0,11232275.0,11390779.0,11715981.0,11880094.0,12197176.0,12413566.0,12679465.0,12871061.0,13218665.0,13370152.0,13686782.0,13873229.0,14240197.0,14351882.0,14720239.0,14865147.0,15214856.0,15359535.0,15685584.0,15950093.0,16183147.0,16345470.0,16885935.0,16953777.0,17228280.0,17439928.0,17675948.0,17810558.0,18184338.0,18312478.0,18685880.0,18834818.0,19330826.0,19348092.0,19632390.0,19896103.0,20183184.0,20322671.0,20703734.0,20936731.0,21186132.0,21453166.0,21718383.0,21815785.0,22154355.0,22307307.0,22656777.0,22797009.0,23156141.0,23385473.0,23683961.0,23769082.0,24143481.0,24271156.0,24620008.0,24822563.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":1184.2632125511059,"lower_bound":1183.2456741507572,"upper_bound":1185.3281640962216,"unit":"ns"},"mean":{"estimate":1184.3806760057696,"lower_bound":1183.0139756086598,"upper_bound":1186.199203107772,"unit":"ns"},"median":{"estimate":1183.8056916099774,"lower_bound":1182.2443809523809,"upper_bound":1185.2469808541973,"unit":"ns"},"median_abs_dev":{"estimate":5.5712639056125965,"lower_bound":3.866340298154904,"upper_bound":6.220026675258735,"unit":"ns"},"slope":{"estimate":1184.2632125511059,"lower_bound":1183.2456741507572,"upper_bound":1185.3281640962216,"unit":"ns"},"change":{"mean":{"estimate":-0.0005253944198387872,"lower_bound":-0.0028650378842758973,"upper_bound":0.0015138325726463267,"unit":"%"},"median":{"estimate":-0.0013755828327415287,"lower_bound":-0.002840134344431533,"upper_bound":0.00047585865227772045,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcli/100000","report_directory":"/root/fuel-core/target/criterion/reports/mcli/100000","iteration_count":[194,388,582,776,970,1164,1358,1552,1746,1940,2134,2328,2522,2716,2910,3104,3298,3492,3686,3880,4074,4268,4462,4656,4850,5044,5238,5432,5626,5820,6014,6208,6402,6596,6790,6984,7178,7372,7566,7760,7954,8148,8342,8536,8730,8924,9118,9312,9506,9700,9894,10088,10282,10476,10670,10864,11058,11252,11446,11640,11834,12028,12222,12416,12610,12804,12998,13192,13386,13580,13774,13968,14162,14356,14550,14744,14938,15132,15326,15520,15714,15908,16102,16296,16490,16684,16878,17072,17266,17460,17654,17848,18042,18236,18430,18624,18818,19012,19206,19400],"measured_values":[315664.0,579892.0,892974.0,1157168.0,1490992.0,1734302.0,2102456.0,2316115.0,2680171.0,2906744.0,3285981.0,3474694.0,4153303.0,4047614.0,4469945.0,4629551.0,5084955.0,5221903.0,5706267.0,5809203.0,6251625.0,6395522.0,6857293.0,6949453.0,7475667.0,7505712.0,8066801.0,8145210.0,8648347.0,8694749.0,9227600.0,9268949.0,9851827.0,9883680.0,10386011.0,10434039.0,10998197.0,10997949.0,11667795.0,11605680.0,12281114.0,12143819.0,12806715.0,12740706.0,13376164.0,13306136.0,14237251.0,13878063.0,14600882.0,14483641.0,15348155.0,15053329.0,15952054.0,15717007.0,16393448.0,16462841.0,17009595.0,16806978.0,17599749.0,17484334.0,18127826.0,17945809.0,18765071.0,18915287.0,19420216.0,19163765.0,20014176.0,19745297.0,20610658.0,20280866.0,21100168.0,20901419.0,21759603.0,21435915.0,22364442.0,22010508.0,22961167.0,22838236.0,23546963.0,23181350.0,24088807.0,23639185.0,24234388.0,24562574.0,24807025.0,25058854.0,25358145.0,25676543.0,25930495.0,26298515.0,26514561.0,26968391.0,27037026.0,27413538.0,27656521.0,27996423.0,28289291.0,28592961.0,28979491.0,29192029.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":1511.2514037955573,"lower_bound":1507.5765360266075,"upper_bound":1515.368507567418,"unit":"ns"},"mean":{"estimate":1516.7028277541979,"lower_bound":1511.6208082161888,"upper_bound":1522.2649608321422,"unit":"ns"},"median":{"estimate":1504.555780776228,"lower_bound":1501.8966486090421,"upper_bound":1529.6039764359352,"unit":"ns"},"median_abs_dev":{"estimate":19.59747049508628,"lower_bound":13.811843462951174,"upper_bound":31.74855559614447,"unit":"ns"},"slope":{"estimate":1511.2514037955573,"lower_bound":1507.5765360266075,"upper_bound":1515.368507567418,"unit":"ns"},"change":{"mean":{"estimate":-0.009747247894480893,"lower_bound":-0.01323838883090688,"upper_bound":-0.00578654476256909,"unit":"%"},"median":{"estimate":-0.017257189213884527,"lower_bound":-0.01935043662366409,"upper_bound":-0.0007709002651786756,"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":[4491,8982,13473,17964,22455,26946,31437,35928,40419,44910,49401,53892,58383,62874,67365,71856,76347,80838,85329,89820,94311,98802,103293,107784,112275,116766,121257,125748,130239,134730,139221,143712,148203,152694,157185,161676,166167,170658,175149,179640,184131,188622,193113,197604,202095,206586,211077,215568,220059,224550,229041,233532,238023,242514,247005,251496,255987,260478,264969,269460,273951,278442,282933,287424,291915,296406,300897,305388,309879,314370,318861,323352,327843,332334,336825,341316,345807,350298,354789,359280,363771,368262,372753,377244,381735,386226,390717,395208,399699,404190,408681,413172,417663,422154,426645,431136,435627,440118,444609,449100],"measured_values":[249740.0,476620.0,695455.0,932247.0,1163402.0,1391836.0,1627173.0,1858257.0,2089387.0,2330573.0,2568311.0,2808874.0,3018038.0,3286683.0,3493484.0,3710184.0,3977380.0,4193522.0,4433691.0,4689814.0,4909534.0,5132103.0,5364242.0,5571802.0,5831595.0,6080888.0,6343122.0,6549195.0,6766631.0,7007028.0,7218444.0,7437769.0,7708261.0,7996924.0,8142960.0,8404761.0,8606900.0,8850560.0,9100176.0,9295663.0,9537509.0,9802494.0,10012282.0,10268313.0,10525074.0,11186866.0,11132642.0,11197570.0,11405310.0,11655760.0,11895755.0,12104127.0,12516085.0,12698061.0,12834389.0,13136642.0,13256304.0,13528993.0,13738194.0,14042329.0,14282638.0,14472655.0,14704537.0,14932846.0,15205583.0,15455816.0,15647709.0,15804137.0,16181660.0,16620396.0,16639674.0,16807508.0,16999703.0,17233400.0,17517805.0,17768684.0,17955682.0,18257613.0,18437798.0,18690360.0,18883462.0,19122916.0,19408272.0,19551396.0,19838910.0,20226334.0,20258874.0,20529669.0,20752178.0,21044265.0,21254831.0,21440806.0,21655573.0,22093323.0,22106906.0,22394196.0,22639695.0,22926087.0,23152140.0,23230720.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":52.019640761910665,"lower_bound":51.968193418919896,"upper_bound":52.0788794027343,"unit":"ns"},"mean":{"estimate":52.050427635100895,"lower_bound":51.969008136694406,"upper_bound":52.15450045843817,"unit":"ns"},"median":{"estimate":51.958361617522044,"lower_bound":51.93569506162083,"upper_bound":51.981240557578715,"unit":"ns"},"median_abs_dev":{"estimate":0.1643191604461739,"lower_bound":0.1321270794434181,"upper_bound":0.20391767539692152,"unit":"ns"},"slope":{"estimate":52.019640761910665,"lower_bound":51.968193418919896,"upper_bound":52.0788794027343,"unit":"ns"},"change":{"mean":{"estimate":0.0189539725635679,"lower_bound":0.01643097641253775,"upper_bound":0.02141316410637502,"unit":"%"},"median":{"estimate":0.01887666910376562,"lower_bound":0.017176888647068334,"upper_bound":0.01965799082022175,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcp/10","report_directory":"/root/fuel-core/target/criterion/reports/mcp/10","iteration_count":[4641,9282,13923,18564,23205,27846,32487,37128,41769,46410,51051,55692,60333,64974,69615,74256,78897,83538,88179,92820,97461,102102,106743,111384,116025,120666,125307,129948,134589,139230,143871,148512,153153,157794,162435,167076,171717,176358,180999,185640,190281,194922,199563,204204,208845,213486,218127,222768,227409,232050,236691,241332,245973,250614,255255,259896,264537,269178,273819,278460,283101,287742,292383,297024,301665,306306,310947,315588,320229,324870,329511,334152,338793,343434,348075,352716,357357,361998,366639,371280,375921,380562,385203,389844,394485,399126,403767,408408,413049,417690,422331,426972,431613,436254,440895,445536,450177,454818,459459,464100],"measured_values":[249548.0,467646.0,701694.0,939181.0,1173267.0,1404096.0,1636906.0,1842460.0,2052473.0,2282249.0,2513149.0,2749168.0,2961313.0,3207536.0,3422915.0,3671251.0,3888460.0,4108557.0,4362926.0,4608658.0,4792197.0,5032938.0,5256220.0,5499230.0,5720948.0,6001544.0,6169131.0,6442580.0,6676920.0,6868232.0,7105966.0,7324131.0,7558152.0,7812977.0,8037780.0,8285274.0,8475247.0,8751726.0,8920905.0,9187984.0,9401626.0,9583545.0,9802909.0,10091931.0,10317051.0,10519990.0,10739823.0,10988685.0,11290441.0,11458147.0,11661086.0,11907815.0,12129381.0,12364004.0,12618017.0,12836241.0,13026521.0,13253827.0,13682312.0,13736862.0,13969797.0,14205662.0,14446702.0,14762725.0,14871085.0,15109280.0,15500882.0,15595905.0,15812654.0,16048707.0,16301048.0,16496148.0,16691099.0,16936932.0,17169745.0,17411996.0,17606728.0,17854334.0,18111112.0,18371121.0,18668452.0,18833273.0,19014281.0,19256613.0,19479177.0,19749056.0,19928860.0,20167197.0,20359893.0,20625827.0,20776459.0,21133907.0,21279915.0,21478708.0,21736841.0,21982074.0,22209045.0,22485927.0,22741678.0,22913701.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":49.388058028545,"lower_bound":49.358913987148426,"upper_bound":49.41989897939735,"unit":"ns"},"mean":{"estimate":49.48994354263775,"lower_bound":49.40373306746853,"upper_bound":49.606483414336694,"unit":"ns"},"median":{"estimate":49.368320115473814,"lower_bound":49.342047469875524,"upper_bound":49.39280135130976,"unit":"ns"},"median_abs_dev":{"estimate":0.12181730918972779,"lower_bound":0.08538783177770494,"upper_bound":0.17044973338957237,"unit":"ns"},"slope":{"estimate":49.388058028545,"lower_bound":49.358913987148426,"upper_bound":49.41989897939735,"unit":"ns"},"change":{"mean":{"estimate":0.03368058677276409,"lower_bound":0.03098462734823005,"upper_bound":0.03644387260906601,"unit":"%"},"median":{"estimate":0.0325231762128797,"lower_bound":0.03158426038556576,"upper_bound":0.0335719407961268,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcp/100","report_directory":"/root/fuel-core/target/criterion/reports/mcp/100","iteration_count":[4470,8940,13410,17880,22350,26820,31290,35760,40230,44700,49170,53640,58110,62580,67050,71520,75990,80460,84930,89400,93870,98340,102810,107280,111750,116220,120690,125160,129630,134100,138570,143040,147510,151980,156450,160920,165390,169860,174330,178800,183270,187740,192210,196680,201150,205620,210090,214560,219030,223500,227970,232440,236910,241380,245850,250320,254790,259260,263730,268200,272670,277140,281610,286080,290550,295020,299490,303960,308430,312900,317370,321840,326310,330780,335250,339720,344190,348660,353130,357600,362070,366540,371010,375480,379950,384420,388890,393360,397830,402300,406770,411240,415710,420180,424650,429120,433590,438060,442530,447000],"measured_values":[247401.0,466028.0,698860.0,931383.0,1186489.0,1399626.0,1649500.0,1866815.0,2104178.0,2337328.0,2586229.0,2785374.0,3042799.0,3249472.0,3510201.0,3712826.0,3980701.0,4184924.0,4450337.0,4644781.0,4962010.0,5112540.0,5452956.0,5585892.0,5854369.0,6059342.0,6329858.0,6504900.0,6777395.0,6969648.0,7281690.0,7440577.0,7720959.0,7918367.0,8170129.0,8370782.0,8760029.0,8848191.0,9121813.0,9295520.0,9645881.0,9850459.0,10196900.0,10264895.0,10574556.0,10703154.0,11031456.0,11147062.0,11512244.0,11625832.0,11989908.0,12094844.0,12384725.0,12555850.0,12882172.0,13035137.0,13386548.0,13532577.0,13817898.0,13957159.0,14302412.0,14415093.0,14895796.0,14886383.0,15225505.0,15388169.0,15758251.0,15872991.0,16200038.0,16292610.0,16628555.0,16810146.0,17163510.0,17229938.0,17577206.0,17788769.0,18085210.0,18152967.0,18459799.0,18625716.0,18947279.0,19137343.0,19565855.0,19576773.0,19868607.0,20000413.0,20362205.0,20521508.0,20858232.0,20920717.0,21351129.0,21439935.0,21795335.0,21927531.0,22224200.0,22311749.0,22721969.0,22794979.0,23263373.0,23270122.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":52.284653553946,"lower_bound":52.23010217386568,"upper_bound":52.34134404508942,"unit":"ns"},"mean":{"estimate":52.32447009625691,"lower_bound":52.25318222064474,"upper_bound":52.412048311827924,"unit":"ns"},"median":{"estimate":52.27543605994693,"lower_bound":52.17791509266591,"upper_bound":52.35199105145414,"unit":"ns"},"median_abs_dev":{"estimate":0.3019136363790187,"lower_bound":0.22858687794987056,"upper_bound":0.3593340933993833,"unit":"ns"},"slope":{"estimate":52.284653553946,"lower_bound":52.23010217386568,"upper_bound":52.34134404508942,"unit":"ns"},"change":{"mean":{"estimate":0.04466483753775141,"lower_bound":0.04224849980511417,"upper_bound":0.04699528201394885,"unit":"%"},"median":{"estimate":0.04624798860840018,"lower_bound":0.04402899971729157,"upper_bound":0.04767375218647096,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcp/1000","report_directory":"/root/fuel-core/target/criterion/reports/mcp/1000","iteration_count":[3459,6918,10377,13836,17295,20754,24213,27672,31131,34590,38049,41508,44967,48426,51885,55344,58803,62262,65721,69180,72639,76098,79557,83016,86475,89934,93393,96852,100311,103770,107229,110688,114147,117606,121065,124524,127983,131442,134901,138360,141819,145278,148737,152196,155655,159114,162573,166032,169491,172950,176409,179868,183327,186786,190245,193704,197163,200622,204081,207540,210999,214458,217917,221376,224835,228294,231753,235212,238671,242130,245589,249048,252507,255966,259425,262884,266343,269802,273261,276720,280179,283638,287097,290556,294015,297474,300933,304392,307851,311310,314769,318228,321687,325146,328605,332064,335523,338982,342441,345900],"measured_values":[224952.0,455469.0,671915.0,1020828.0,1137341.0,1410921.0,1566962.0,1900839.0,2011977.0,2279314.0,2464836.0,2740890.0,2908555.0,3195216.0,3357408.0,3672165.0,3807867.0,4108370.0,4255786.0,4571231.0,4700209.0,5023952.0,5183701.0,5549947.0,5612549.0,5940928.0,6092891.0,6412124.0,6499469.0,6848798.0,6950834.0,7312775.0,7393208.0,7768196.0,7841351.0,8233767.0,8304246.0,8697360.0,8765551.0,9137881.0,9186455.0,9589810.0,9651343.0,10043145.0,10087218.0,10502802.0,10558933.0,10977351.0,10964430.0,11440238.0,11437624.0,11903037.0,11855801.0,12352326.0,12304123.0,12785605.0,12760113.0,13295641.0,13256818.0,13746667.0,13672647.0,14149144.0,14093094.0,14625700.0,14580325.0,15083185.0,15019425.0,15590728.0,15462176.0,16028557.0,15971618.0,16458886.0,16343123.0,16964730.0,16818275.0,17367752.0,17236031.0,17824820.0,17664375.0,18274120.0,18143811.0,18769084.0,18567180.0,19186292.0,19019657.0,19652677.0,19454079.0,20168823.0,19924306.0,20556955.0,20365100.0,21069602.0,20845920.0,21477376.0,21311118.0,21951898.0,21733169.0,22353383.0,22255381.0,22842998.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":65.45431331146214,"lower_bound":65.27928495358029,"upper_bound":65.62809938736478,"unit":"ns"},"mean":{"estimate":65.58371976119057,"lower_bound":65.38505557523382,"upper_bound":65.82764822002385,"unit":"ns"},"median":{"estimate":65.79975426423823,"lower_bound":64.90371783752529,"upper_bound":66.00803197707305,"unit":"ns"},"median_abs_dev":{"estimate":1.1354885164204787,"lower_bound":0.3091623886680976,"upper_bound":1.3766209355878292,"unit":"ns"},"slope":{"estimate":65.45431331146214,"lower_bound":65.27928495358029,"upper_bound":65.62809938736478,"unit":"ns"},"change":{"mean":{"estimate":-0.004508405671787341,"lower_bound":-0.008135027063626496,"upper_bound":-0.0006565274954264462,"unit":"%"},"median":{"estimate":-0.005331075573129951,"lower_bound":-0.019034803219210472,"upper_bound":0.0061368942945012606,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcp/10000","report_directory":"/root/fuel-core/target/criterion/reports/mcp/10000","iteration_count":[835,1670,2505,3340,4175,5010,5845,6680,7515,8350,9185,10020,10855,11690,12525,13360,14195,15030,15865,16700,17535,18370,19205,20040,20875,21710,22545,23380,24215,25050,25885,26720,27555,28390,29225,30060,30895,31730,32565,33400,34235,35070,35905,36740,37575,38410,39245,40080,40915,41750,42585,43420,44255,45090,45925,46760,47595,48430,49265,50100,50935,51770,52605,53440,54275,55110,55945,56780,57615,58450,59285,60120,60955,61790,62625,63460,64295,65130,65965,66800,67635,68470,69305,70140,70975,71810,72645,73480,74315,75150,75985,76820,77655,78490,79325,80160,80995,81830,82665,83500],"measured_values":[324587.0,623201.0,944725.0,1342438.0,1682458.0,1810244.0,2167404.0,2512016.0,2760567.0,3014856.0,3353720.0,3787815.0,3990310.0,4233283.0,4631539.0,5024960.0,5205882.0,5450387.0,5859382.0,6262070.0,6421407.0,6687930.0,7051162.0,7545043.0,7759187.0,7940238.0,8392891.0,8879946.0,8901019.0,9090478.0,9465496.0,10073264.0,10095231.0,10294735.0,10691902.0,11333509.0,11320243.0,11516128.0,11884918.0,12673372.0,12579957.0,12767065.0,13138064.0,13812632.0,13744464.0,13945451.0,14350482.0,15070424.0,14965370.0,15189929.0,15683470.0,16333110.0,16215292.0,16387281.0,16918618.0,17618923.0,17398698.0,17535842.0,18220116.0,18816399.0,18675761.0,18822839.0,19262346.0,20143970.0,19995348.0,20054138.0,20491787.0,21366665.0,21094050.0,21236359.0,21975732.0,22653984.0,22321547.0,22389570.0,22947231.0,23945777.0,23558716.0,23650852.0,24163423.0,25158214.0,24828850.0,24902579.0,25334773.0,26484248.0,25989061.0,26060942.0,26670565.0,27705730.0,27272754.0,27282158.0,27865285.0,28932365.0,28585243.0,28458081.0,29230938.0,30180731.0,29676995.0,29725716.0,30246458.0,31437877.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":368.57585596178706,"lower_bound":367.22971680899093,"upper_bound":369.9887322255724,"unit":"ns"},"mean":{"estimate":369.59553707428915,"lower_bound":368.23853526332766,"upper_bound":371.09259331554347,"unit":"ns"},"median":{"estimate":366.73070420245483,"lower_bound":366.2559279271475,"upper_bound":368.1056338935033,"unit":"ns"},"median_abs_dev":{"estimate":4.774444156254,"lower_bound":3.0986846377428474,"upper_bound":6.8942443875505175,"unit":"ns"},"slope":{"estimate":368.57585596178706,"lower_bound":367.22971680899093,"upper_bound":369.9887322255724,"unit":"ns"},"change":{"mean":{"estimate":0.05756067689156441,"lower_bound":0.05287329883295493,"upper_bound":0.0631089492186702,"unit":"%"},"median":{"estimate":0.044813150474531493,"lower_bound":0.04043809693488187,"upper_bound":0.06026672032886382,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcp/19753","report_directory":"/root/fuel-core/target/criterion/reports/mcp/19753","iteration_count":[427,854,1281,1708,2135,2562,2989,3416,3843,4270,4697,5124,5551,5978,6405,6832,7259,7686,8113,8540,8967,9394,9821,10248,10675,11102,11529,11956,12383,12810,13237,13664,14091,14518,14945,15372,15799,16226,16653,17080,17507,17934,18361,18788,19215,19642,20069,20496,20923,21350,21777,22204,22631,23058,23485,23912,24339,24766,25193,25620,26047,26474,26901,27328,27755,28182,28609,29036,29463,29890,30317,30744,31171,31598,32025,32452,32879,33306,33733,34160,34587,35014,35441,35868,36295,36722,37149,37576,38003,38430,38857,39284,39711,40138,40565,40992,41419,41846,42273,42700],"measured_values":[410918.0,685764.0,1071864.0,1418454.0,1765859.0,2047764.0,2470921.0,2839255.0,3214372.0,3425912.0,3929698.0,4255784.0,4612234.0,4777858.0,5293277.0,5678934.0,6074565.0,6166131.0,6793683.0,7117717.0,7427756.0,7533470.0,8207912.0,8532553.0,8965338.0,8919082.0,9682937.0,9939331.0,10277735.0,10233215.0,10966556.0,11362943.0,11807512.0,11657744.0,12523727.0,12793241.0,13086155.0,12976716.0,13760370.0,14211228.0,14693796.0,14520861.0,15378691.0,15611476.0,15932870.0,15714596.0,16585991.0,17036796.0,17523877.0,17260404.0,18258704.0,18485388.0,18751753.0,18469218.0,19450083.0,19878452.0,20457245.0,19894882.0,21090749.0,21299908.0,21551526.0,21238506.0,22276048.0,22734706.0,23279241.0,22606369.0,24061721.0,24157931.0,24372338.0,23937973.0,25112168.0,25550466.0,26122526.0,25373765.0,26844954.0,26967442.0,27202688.0,26645023.0,27883475.0,28382074.0,28994844.0,28209344.0,29725647.0,29845785.0,30035546.0,29455249.0,30770290.0,31257116.0,31884872.0,30855580.0,32533126.0,32645267.0,32970385.0,32137988.0,33599187.0,34129313.0,34759267.0,33589283.0,35532947.0,35480909.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":825.4980335967114,"lower_bound":821.7004077617771,"upper_bound":828.9972525320601,"unit":"ns"},"mean":{"estimate":826.4892366294073,"lower_bound":822.9481120008488,"upper_bound":830.5590736442891,"unit":"ns"},"median":{"estimate":830.8702058187714,"lower_bound":828.3186896013351,"upper_bound":831.3169956507193,"unit":"ns"},"median_abs_dev":{"estimate":8.39311546612862,"lower_bound":4.711768686841206,"upper_bound":13.32251241179781,"unit":"ns"},"slope":{"estimate":825.4980335967114,"lower_bound":821.7004077617771,"upper_bound":828.9972525320601,"unit":"ns"},"change":{"mean":{"estimate":0.037030925485318944,"lower_bound":0.027826364570265084,"upper_bound":0.04536665559448156,"unit":"%"},"median":{"estimate":0.039840869210632235,"lower_bound":0.02346568747550637,"upper_bound":0.06437188867834559,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcp/29629","report_directory":"/root/fuel-core/target/criterion/reports/mcp/29629","iteration_count":[298,596,894,1192,1490,1788,2086,2384,2682,2980,3278,3576,3874,4172,4470,4768,5066,5364,5662,5960,6258,6556,6854,7152,7450,7748,8046,8344,8642,8940,9238,9536,9834,10132,10430,10728,11026,11324,11622,11920,12218,12516,12814,13112,13410,13708,14006,14304,14602,14900,15198,15496,15794,16092,16390,16688,16986,17284,17582,17880,18178,18476,18774,19072,19370,19668,19966,20264,20562,20860,21158,21456,21754,22052,22350,22648,22946,23244,23542,23840,24138,24436,24734,25032,25330,25628,25926,26224,26522,26820,27118,27416,27714,28012,28310,28608,28906,29204,29502,29800],"measured_values":[399789.0,732652.0,1143174.0,1464640.0,1914807.0,2190291.0,2675267.0,2920898.0,3451441.0,3657565.0,4203265.0,4392846.0,4963934.0,5116084.0,5744663.0,5867957.0,6528950.0,6618771.0,7223639.0,7380285.0,8014902.0,8000978.0,8809746.0,8812171.0,9597163.0,9532780.0,10389776.0,10211998.0,11052938.0,10984229.0,11855545.0,11699090.0,12564634.0,12457147.0,13368759.0,13286191.0,14143020.0,13990274.0,14964582.0,14647119.0,15682825.0,15351305.0,16446854.0,16116216.0,17133390.0,16833830.0,17990137.0,17538138.0,18671004.0,18265245.0,19478587.0,19022574.0,20354470.0,19836487.0,21058959.0,20475134.0,21765831.0,21208753.0,22613829.0,21944522.0,23342289.0,22712681.0,24090146.0,23451177.0,24901723.0,24290790.0,25562633.0,24981695.0,26409566.0,25617423.0,27160781.0,26278599.0,27742191.0,26986916.0,28719996.0,27682958.0,29276955.0,28519289.0,30075752.0,29585074.0,31041885.0,29830278.0,31807581.0,30593880.0,32340820.0,31871817.0,33538860.0,32632105.0,34262787.0,33230934.0,35121773.0,34116912.0,36026061.0,34804008.0,36583285.0,35486928.0,37530083.0,35976688.0,37983109.0,36883610.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":1259.3348242308955,"lower_bound":1251.9917098132257,"upper_bound":1266.593240909156,"unit":"ns"},"mean":{"estimate":1258.0437432959561,"lower_bound":1252.4523268466908,"upper_bound":1263.694204048218,"unit":"ns"},"median":{"estimate":1259.8423048634734,"lower_bound":1236.8781128576475,"upper_bound":1279.4844526511397,"unit":"ns"},"median_abs_dev":{"estimate":40.08884854969671,"lower_bound":14.06672130304165,"upper_bound":46.18489221760223,"unit":"ns"},"slope":{"estimate":1259.3348242308955,"lower_bound":1251.9917098132257,"upper_bound":1266.593240909156,"unit":"ns"},"change":{"mean":{"estimate":-0.0731537393255115,"lower_bound":-0.07747767226161402,"upper_bound":-0.06903418760541898,"unit":"%"},"median":{"estimate":-0.06986033694946003,"lower_bound":-0.08645984375538263,"upper_bound":-0.05474212207684326,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"mcp/44444","report_directory":"/root/fuel-core/target/criterion/reports/mcp/44444","iteration_count":[157,314,471,628,785,942,1099,1256,1413,1570,1727,1884,2041,2198,2355,2512,2669,2826,2983,3140,3297,3454,3611,3768,3925,4082,4239,4396,4553,4710,4867,5024,5181,5338,5495,5652,5809,5966,6123,6280,6437,6594,6751,6908,7065,7222,7379,7536,7693,7850,8007,8164,8321,8478,8635,8792,8949,9106,9263,9420,9577,9734,9891,10048,10205,10362,10519,10676,10833,10990,11147,11304,11461,11618,11775,11932,12089,12246,12403,12560,12717,12874,13031,13188,13345,13502,13659,13816,13973,14130,14287,14444,14601,14758,14915,15072,15229,15386,15543,15700],"measured_values":[426927.0,807379.0,1222595.0,1614661.0,2040292.0,2441775.0,2852455.0,3238079.0,3681030.0,4054647.0,4542300.0,4857468.0,5317222.0,5690322.0,6128149.0,6506056.0,6990701.0,7305436.0,7764661.0,8093190.0,8579275.0,8967360.0,9463475.0,9735278.0,10204407.0,10557800.0,11038963.0,11375620.0,11834465.0,12173739.0,12701621.0,13011584.0,13456078.0,13691430.0,14260832.0,14438024.0,15101173.0,15301222.0,15880148.0,16122400.0,16706285.0,16983441.0,17541244.0,17882091.0,18308935.0,18493974.0,19118173.0,19305009.0,19939595.0,20078876.0,20738115.0,20934476.0,21603747.0,21774352.0,22359646.0,22506756.0,23161778.0,23330041.0,24046476.0,24102881.0,24792687.0,24950645.0,25707671.0,25732934.0,26483037.0,26590367.0,27226883.0,27358792.0,28033581.0,28175376.0,28952634.0,29059526.0,29721618.0,29825574.0,30475294.0,30608385.0,31435801.0,31604583.0,32106858.0,32245237.0,32909213.0,32989606.0,33722671.0,33866472.0,34649313.0,34591998.0,35319898.0,35350942.0,36249384.0,36112817.0,36901103.0,37090993.0,37676922.0,37745828.0,38495510.0,38571037.0,39325486.0,39472778.0,40128586.0,40284931.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":2577.216882209373,"lower_bound":2573.7820995951574,"upper_bound":2580.795904555923,"unit":"ns"},"mean":{"estimate":2584.548059234684,"lower_bound":2580.662073828206,"upper_bound":2588.910162141606,"unit":"ns"},"median":{"estimate":2587.757724413498,"lower_bound":2581.7786785047933,"upper_bound":2589.097165557633,"unit":"ns"},"median_abs_dev":{"estimate":16.812609927677624,"lower_bound":11.855053166777267,"upper_bound":23.423778469001622,"unit":"ns"},"slope":{"estimate":2577.216882209373,"lower_bound":2573.7820995951574,"upper_bound":2580.795904555923,"unit":"ns"},"change":{"mean":{"estimate":0.07437355400647183,"lower_bound":0.06990502874411281,"upper_bound":0.07871479624180422,"unit":"%"},"median":{"estimate":0.06848117218773209,"lower_bound":0.0634840114551195,"upper_bound":0.09156338544944975,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcp/66666","report_directory":"/root/fuel-core/target/criterion/reports/mcp/66666","iteration_count":[95,190,285,380,475,570,665,760,855,950,1045,1140,1235,1330,1425,1520,1615,1710,1805,1900,1995,2090,2185,2280,2375,2470,2565,2660,2755,2850,2945,3040,3135,3230,3325,3420,3515,3610,3705,3800,3895,3990,4085,4180,4275,4370,4465,4560,4655,4750,4845,4940,5035,5130,5225,5320,5415,5510,5605,5700,5795,5890,5985,6080,6175,6270,6365,6460,6555,6650,6745,6840,6935,7030,7125,7220,7315,7410,7505,7600,7695,7790,7885,7980,8075,8170,8265,8360,8455,8550,8645,8740,8835,8930,9025,9120,9215,9310,9405,9500],"measured_values":[403647.0,765678.0,1116815.0,1517357.0,1858042.0,2275486.0,2605661.0,3072760.0,3381789.0,3800809.0,4097685.0,4592780.0,4839042.0,5320605.0,5584480.0,6076439.0,6328375.0,6855639.0,7090432.0,7599751.0,7852231.0,8386194.0,8556693.0,9123108.0,9317548.0,9893532.0,10089326.0,10650807.0,10791243.0,11451860.0,11546625.0,12160306.0,12303912.0,12987043.0,13022957.0,13699403.0,13758825.0,14477277.0,14530113.0,15216150.0,15317703.0,16009888.0,16034538.0,16738258.0,16831813.0,17509551.0,17519335.0,18267003.0,18287601.0,19006784.0,18987223.0,19942780.0,19802969.0,20558870.0,20498181.0,21295632.0,21278318.0,22133005.0,21960607.0,22816839.0,22756698.0,23631685.0,23492209.0,24443139.0,24274958.0,25101620.0,24932272.0,25904790.0,25750927.0,26653819.0,26462423.0,27650709.0,27226308.0,28210650.0,27912039.0,29181224.0,28718060.0,29754466.0,29536796.0,30556866.0,30221185.0,31385017.0,30904419.0,32131492.0,32022172.0,32874516.0,32405834.0,33614219.0,33151625.0,34349124.0,33917155.0,35144586.0,34666277.0,35884682.0,35395123.0,36632831.0,36097369.0,37356675.0,36894623.0,38182266.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":3972.2485734641023,"lower_bound":3959.6930858342653,"upper_bound":3984.7194827163344,"unit":"ns"},"mean":{"estimate":3972.4083184209444,"lower_bound":3962.344719453016,"upper_bound":3983.156935398108,"unit":"ns"},"median":{"estimate":3992.5627192982456,"lower_bound":3931.085982929081,"upper_bound":4003.19325586694,"unit":"ns"},"median_abs_dev":{"estimate":73.46034742850514,"lower_bound":20.648045207388957,"upper_bound":75.20130721754107,"unit":"ns"},"slope":{"estimate":3972.2485734641023,"lower_bound":3959.6930858342653,"upper_bound":3984.7194827163344,"unit":"ns"},"change":{"mean":{"estimate":0.015841244220351935,"lower_bound":0.010647026122308008,"upper_bound":0.020473738210103027,"unit":"%"},"median":{"estimate":0.023140216476424058,"lower_bound":0.0072746476323271025,"upper_bound":0.026158464839189932,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcp/100000","report_directory":"/root/fuel-core/target/criterion/reports/mcp/100000","iteration_count":[76,152,228,304,380,456,532,608,684,760,836,912,988,1064,1140,1216,1292,1368,1444,1520,1596,1672,1748,1824,1900,1976,2052,2128,2204,2280,2356,2432,2508,2584,2660,2736,2812,2888,2964,3040,3116,3192,3268,3344,3420,3496,3572,3648,3724,3800,3876,3952,4028,4104,4180,4256,4332,4408,4484,4560,4636,4712,4788,4864,4940,5016,5092,5168,5244,5320,5396,5472,5548,5624,5700,5776,5852,5928,6004,6080,6156,6232,6308,6384,6460,6536,6612,6688,6764,6840,6916,6992,7068,7144,7220,7296,7372,7448,7524,7600],"measured_values":[452032.0,873423.0,1314813.0,1772949.0,2186525.0,2623386.0,3059599.0,3490941.0,3936795.0,4372269.0,4814483.0,5250324.0,5714278.0,6109111.0,6572601.0,6980272.0,7443300.0,7914460.0,8339088.0,8790944.0,9210636.0,9630207.0,10108127.0,10497394.0,10944045.0,11344712.0,11834904.0,12220858.0,12683494.0,13081850.0,13607758.0,14003684.0,14442879.0,14853596.0,15373623.0,15745816.0,16254209.0,16646448.0,17119967.0,17433430.0,17937832.0,18350334.0,18878515.0,19225486.0,19661101.0,20088955.0,20614590.0,20980514.0,21446786.0,21829388.0,22367179.0,22660855.0,23174271.0,23599597.0,24129677.0,24506681.0,25188146.0,25438019.0,25843175.0,26228269.0,26706450.0,27054874.0,27516216.0,27977146.0,28449369.0,28857825.0,29310455.0,29252689.0,30161551.0,30213921.0,30653202.0,31150930.0,31617185.0,31962345.0,32281729.0,32838704.0,33159125.0,33689950.0,34037949.0,34557767.0,34981240.0,35380456.0,35806815.0,36306357.0,36632101.0,37304160.0,37544397.0,38023433.0,38292164.0,38844571.0,39167490.0,39731708.0,40016766.0,40572642.0,40881457.0,41499290.0,41903034.0,42325589.0,42661777.0,43205443.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":5703.636866216079,"lower_bound":5695.645789630627,"upper_bound":5713.379110628549,"unit":"ns"},"mean":{"estimate":5735.80337065665,"lower_bound":5726.861587389873,"upper_bound":5744.992348858137,"unit":"ns"},"median":{"estimate":5750.757536201615,"lower_bound":5742.8843984962405,"upper_bound":5754.028015101188,"unit":"ns"},"median_abs_dev":{"estimate":27.182002841296523,"lower_bound":15.955273985117678,"upper_bound":49.70626410714793,"unit":"ns"},"slope":{"estimate":5703.636866216079,"lower_bound":5695.645789630627,"upper_bound":5713.379110628549,"unit":"ns"},"change":{"mean":{"estimate":-0.0032911422085734054,"lower_bound":-0.005490724305881031,"upper_bound":-0.0010966252174442392,"unit":"%"},"median":{"estimate":-0.0024078099127159414,"lower_bound":-0.0038156992737196083,"upper_bound":-0.001350978056847807,"unit":"%"},"change":"NoChange"}} +{"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":[4544,9088,13632,18176,22720,27264,31808,36352,40896,45440,49984,54528,59072,63616,68160,72704,77248,81792,86336,90880,95424,99968,104512,109056,113600,118144,122688,127232,131776,136320,140864,145408,149952,154496,159040,163584,168128,172672,177216,181760,186304,190848,195392,199936,204480,209024,213568,218112,222656,227200,231744,236288,240832,245376,249920,254464,259008,263552,268096,272640,277184,281728,286272,290816,295360,299904,304448,308992,313536,318080,322624,327168,331712,336256,340800,345344,349888,354432,358976,363520,368064,372608,377152,381696,386240,390784,395328,399872,404416,408960,413504,418048,422592,427136,431680,436224,440768,445312,449856,454400],"measured_values":[262119.0,455689.0,691240.0,916574.0,1145895.0,1383419.0,1603099.0,1827486.0,2076654.0,2281801.0,2526058.0,2737757.0,2978155.0,3186003.0,3437101.0,3658545.0,3913818.0,4099353.0,4366794.0,4573595.0,4830687.0,5039646.0,5279253.0,5495839.0,5740714.0,5951996.0,6178421.0,6385440.0,6631499.0,6863410.0,7105275.0,7343865.0,7564884.0,7730573.0,8013988.0,8209140.0,8473612.0,8714241.0,8989079.0,9175044.0,9414549.0,9669303.0,9924745.0,10068133.0,10336532.0,10475837.0,10768447.0,10951138.0,11213304.0,11436273.0,11702856.0,11864470.0,12170652.0,12333623.0,12617738.0,12760111.0,13074099.0,13293299.0,13601286.0,13694447.0,14001930.0,14225849.0,14473415.0,14601876.0,14922193.0,15055238.0,15427747.0,15572138.0,15811564.0,16026931.0,16312567.0,16475334.0,16779478.0,16921905.0,17225529.0,17324562.0,17688266.0,17776310.0,18135068.0,18282256.0,18621165.0,18765213.0,19105667.0,19190192.0,19524907.0,19643764.0,20066966.0,20132921.0,20383820.0,20518091.0,20841366.0,21051088.0,21299143.0,21451116.0,21754914.0,21985258.0,22219473.0,22367698.0,22691540.0,22917861.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":50.40608051748127,"lower_bound":50.3690442288348,"upper_bound":50.44416310666271,"unit":"ns"},"mean":{"estimate":50.485295053761945,"lower_bound":50.38757756282395,"upper_bound":50.65072133662609,"unit":"ns"},"median":{"estimate":50.406956134685444,"lower_bound":50.389763581488936,"upper_bound":50.438998755463814,"unit":"ns"},"median_abs_dev":{"estimate":0.1789510223232969,"lower_bound":0.12109825455575265,"upper_bound":0.21601311023093317,"unit":"ns"},"slope":{"estimate":50.40608051748127,"lower_bound":50.3690442288348,"upper_bound":50.44416310666271,"unit":"ns"},"change":{"mean":{"estimate":0.007787792968042551,"lower_bound":0.005266206608910934,"upper_bound":0.011167522626765698,"unit":"%"},"median":{"estimate":0.008882042020532,"lower_bound":0.0073934571892435574,"upper_bound":0.010062025320549672,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcpi/10","report_directory":"/root/fuel-core/target/criterion/reports/mcpi/10","iteration_count":[4694,9388,14082,18776,23470,28164,32858,37552,42246,46940,51634,56328,61022,65716,70410,75104,79798,84492,89186,93880,98574,103268,107962,112656,117350,122044,126738,131432,136126,140820,145514,150208,154902,159596,164290,168984,173678,178372,183066,187760,192454,197148,201842,206536,211230,215924,220618,225312,230006,234700,239394,244088,248782,253476,258170,262864,267558,272252,276946,281640,286334,291028,295722,300416,305110,309804,314498,319192,323886,328580,333274,337968,342662,347356,352050,356744,361438,366132,370826,375520,380214,384908,389602,394296,398990,403684,408378,413072,417766,422460,427154,431848,436542,441236,445930,450624,455318,460012,464706,469400],"measured_values":[561343.0,1125256.0,766592.0,903027.0,1109544.0,1333713.0,1549503.0,1769001.0,2022757.0,2233538.0,2438738.0,2658285.0,2866341.0,3108461.0,3341003.0,3552681.0,3751894.0,4015219.0,4216311.0,4438651.0,4605793.0,4897193.0,5074049.0,5317897.0,5503231.0,5758186.0,5953592.0,6195982.0,6399051.0,6637786.0,6899759.0,7061420.0,7250852.0,7554868.0,7690073.0,7945568.0,8119466.0,8391563.0,8605049.0,8855977.0,9017616.0,9275429.0,9470729.0,10073759.0,9917881.0,10233715.0,10344470.0,10596907.0,10818355.0,11069031.0,11221045.0,11518538.0,11652720.0,11970126.0,12184285.0,13105937.0,12669030.0,12860184.0,12999095.0,13292413.0,13419708.0,13807843.0,13945164.0,14210447.0,14325588.0,14713614.0,14732874.0,15094242.0,15186279.0,15498227.0,15617586.0,15911418.0,16133480.0,16344277.0,16479683.0,16765611.0,16946764.0,17296448.0,17435624.0,17774948.0,17805312.0,18248155.0,18340844.0,18737810.0,18736511.0,19047898.0,19219498.0,19463189.0,19589970.0,19932349.0,20071506.0,20429896.0,20380445.0,20822652.0,20901879.0,21230248.0,21328073.0,21671663.0,21788071.0,22107141.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":47.10877997807476,"lower_bound":47.04163725516143,"upper_bound":47.191482763114436,"unit":"ns"},"mean":{"estimate":48.69014695435648,"lower_bound":47.16395169227851,"upper_bound":50.89993292191515,"unit":"ns"},"median":{"estimate":47.115575089411365,"lower_bound":47.048050195791994,"upper_bound":47.18319965426117,"unit":"ns"},"median_abs_dev":{"estimate":0.2430289723659162,"lower_bound":0.1833075230298655,"upper_bound":0.30982611349019107,"unit":"ns"},"slope":{"estimate":47.10877997807476,"lower_bound":47.04163725516143,"upper_bound":47.191482763114436,"unit":"ns"},"change":{"mean":{"estimate":0.03295550442103501,"lower_bound":0.00040477306866335087,"upper_bound":0.07895472822426787,"unit":"%"},"median":{"estimate":0.002905789574676687,"lower_bound":-0.00035280079360666683,"upper_bound":0.005150761593709863,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcpi/100","report_directory":"/root/fuel-core/target/criterion/reports/mcpi/100","iteration_count":[4579,9158,13737,18316,22895,27474,32053,36632,41211,45790,50369,54948,59527,64106,68685,73264,77843,82422,87001,91580,96159,100738,105317,109896,114475,119054,123633,128212,132791,137370,141949,146528,151107,155686,160265,164844,169423,174002,178581,183160,187739,192318,196897,201476,206055,210634,215213,219792,224371,228950,233529,238108,242687,247266,251845,256424,261003,265582,270161,274740,279319,283898,288477,293056,297635,302214,306793,311372,315951,320530,325109,329688,334267,338846,343425,348004,352583,357162,361741,366320,370899,375478,380057,384636,389215,393794,398373,402952,407531,412110,416689,421268,425847,430426,435005,439584,444163,448742,453321,457900],"measured_values":[232598.0,463361.0,691529.0,927691.0,1157746.0,1388014.0,1621166.0,1846762.0,2094873.0,2340990.0,2544160.0,2769715.0,3017127.0,3245723.0,3467712.0,3703545.0,3923077.0,4190402.0,4386769.0,4634493.0,4847336.0,5142085.0,5304408.0,5544892.0,5806955.0,6048683.0,6246246.0,6511368.0,6725535.0,7012440.0,7181100.0,7380419.0,7641180.0,7922713.0,8090814.0,8337526.0,8565782.0,8925095.0,9017002.0,9242152.0,9478040.0,9794306.0,9956039.0,10184960.0,10412115.0,10705380.0,10880104.0,11128171.0,11351136.0,11689238.0,11803725.0,12026459.0,12284871.0,12578301.0,12700712.0,12934283.0,13195506.0,13759025.0,13677967.0,13879611.0,14092035.0,14475635.0,14589561.0,14849209.0,15065393.0,15475891.0,15469433.0,15698821.0,16041916.0,16257392.0,16399776.0,16613512.0,16902266.0,17199672.0,17365368.0,17542843.0,17839308.0,18202747.0,18279645.0,18637155.0,18803903.0,19013743.0,19177903.0,19456298.0,19719174.0,20063559.0,20093563.0,20350215.0,20605640.0,21034660.0,20991569.0,21354804.0,21515606.0,21951183.0,21987367.0,22178516.0,22447656.0,22764632.0,22914660.0,23141390.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":50.642190879631066,"lower_bound":50.59059302182264,"upper_bound":50.69988371772992,"unit":"ns"},"mean":{"estimate":50.64130277245627,"lower_bound":50.597828673805786,"upper_bound":50.68897556199574,"unit":"ns"},"median":{"estimate":50.56782147749608,"lower_bound":50.550073788772195,"upper_bound":50.606658323113884,"unit":"ns"},"median_abs_dev":{"estimate":0.16337131815022696,"lower_bound":0.10790473526773547,"upper_bound":0.214574202064241,"unit":"ns"},"slope":{"estimate":50.642190879631066,"lower_bound":50.59059302182264,"upper_bound":50.69988371772992,"unit":"ns"},"change":{"mean":{"estimate":0.020204606816686788,"lower_bound":0.019173181869515242,"upper_bound":0.021320324975293063,"unit":"%"},"median":{"estimate":0.0192213013216902,"lower_bound":0.018549741703477673,"upper_bound":0.020155700034765037,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcpi/1000","report_directory":"/root/fuel-core/target/criterion/reports/mcpi/1000","iteration_count":[3499,6998,10497,13996,17495,20994,24493,27992,31491,34990,38489,41988,45487,48986,52485,55984,59483,62982,66481,69980,73479,76978,80477,83976,87475,90974,94473,97972,101471,104970,108469,111968,115467,118966,122465,125964,129463,132962,136461,139960,143459,146958,150457,153956,157455,160954,164453,167952,171451,174950,178449,181948,185447,188946,192445,195944,199443,202942,206441,209940,213439,216938,220437,223936,227435,230934,234433,237932,241431,244930,248429,251928,255427,258926,262425,265924,269423,272922,276421,279920,283419,286918,290417,293916,297415,300914,304413,307912,311411,314910,318409,321908,325407,328906,332405,335904,339403,342902,346401,349900],"measured_values":[239330.0,452210.0,668732.0,903606.0,1114794.0,1356923.0,1559160.0,1808481.0,2005818.0,2262921.0,2449094.0,2735953.0,2896196.0,3171198.0,3345818.0,3617541.0,3806093.0,4066912.0,4246962.0,4523543.0,4680379.0,5004337.0,5124568.0,5443207.0,5591834.0,5881514.0,6033465.0,6341970.0,6463084.0,6830221.0,6901500.0,7265067.0,7366816.0,7693317.0,7839195.0,8143691.0,8251798.0,8671804.0,8781557.0,9082796.0,9151541.0,9547571.0,9617999.0,9963688.0,10040393.0,10454320.0,10490933.0,10895414.0,11023041.0,11327865.0,11395021.0,11871615.0,11812682.0,12223226.0,12253967.0,12710995.0,12731267.0,13126288.0,13168606.0,13596684.0,13626004.0,14030078.0,14071280.0,14479880.0,14496286.0,14963002.0,14951029.0,15421601.0,15402173.0,15868680.0,15840390.0,16347670.0,16294061.0,16771637.0,16720002.0,17225880.0,17179666.0,17663526.0,17658921.0,18184346.0,18052581.0,18681541.0,18519334.0,19045136.0,18959392.0,19534052.0,19398215.0,20025540.0,19872739.0,20387058.0,20291710.0,20925098.0,20756144.0,21339595.0,21190988.0,21758235.0,21658844.0,22191150.0,22089900.0,22654922.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":64.32072562521083,"lower_bound":64.17810949008776,"upper_bound":64.46204683473378,"unit":"ns"},"mean":{"estimate":64.3491795376905,"lower_bound":64.22576989593958,"upper_bound":64.48662060151565,"unit":"ns"},"median":{"estimate":64.5671699850751,"lower_bound":63.864437458321426,"upper_bound":64.66819931745205,"unit":"ns"},"median_abs_dev":{"estimate":0.8424066157903257,"lower_bound":0.27279937673367577,"upper_bound":0.9159430890069752,"unit":"ns"},"slope":{"estimate":64.32072562521083,"lower_bound":64.17810949008776,"upper_bound":64.46204683473378,"unit":"ns"},"change":{"mean":{"estimate":-0.013974228462356297,"lower_bound":-0.016066832477746366,"upper_bound":-0.011733591124357502,"unit":"%"},"median":{"estimate":-0.012345473194479428,"lower_bound":-0.023225638927083736,"upper_bound":-0.006891108418163316,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"mcpi/4095","report_directory":"/root/fuel-core/target/criterion/reports/mcpi/4095","iteration_count":[1810,3620,5430,7240,9050,10860,12670,14480,16290,18100,19910,21720,23530,25340,27150,28960,30770,32580,34390,36200,38010,39820,41630,43440,45250,47060,48870,50680,52490,54300,56110,57920,59730,61540,63350,65160,66970,68780,70590,72400,74210,76020,77830,79640,81450,83260,85070,86880,88690,90500,92310,94120,95930,97740,99550,101360,103170,104980,106790,108600,110410,112220,114030,115840,117650,119460,121270,123080,124890,126700,128510,130320,132130,133940,135750,137560,139370,141180,142990,144800,146610,148420,150230,152040,153850,155660,157470,159280,161090,162900,164710,166520,168330,170140,171950,173760,175570,177380,179190,181000],"measured_values":[276880.0,534225.0,785611.0,1041129.0,1311657.0,1605361.0,1868455.0,2085040.0,2357349.0,2606151.0,2886955.0,3133662.0,3417422.0,3681128.0,3980793.0,4196270.0,4452901.0,4723025.0,5076133.0,5337284.0,5542700.0,5870000.0,6046729.0,6270227.0,6549553.0,6781098.0,7086276.0,7462611.0,7628978.0,8064559.0,8313606.0,8531356.0,8633283.0,9048520.0,9179039.0,9430258.0,9693981.0,10158896.0,10273719.0,10576568.0,10774940.0,11185462.0,11319210.0,11488601.0,11838014.0,12234254.0,12343407.0,12757707.0,12911156.0,13117122.0,13335020.0,13875278.0,13897211.0,14344015.0,14412908.0,14888194.0,14949642.0,15247146.0,15420610.0,15960601.0,16071722.0,16461295.0,16587787.0,17110139.0,17107777.0,17537412.0,17604842.0,17929154.0,18226108.0,18594685.0,18658678.0,19032908.0,19222823.0,19331973.0,19655629.0,19886405.0,20221706.0,20748795.0,20910113.0,21204139.0,21315207.0,21609246.0,21774481.0,22657781.0,22585194.0,23577603.0,23125812.0,24080385.0,23640834.0,24541852.0,24237511.0,24882872.0,24738006.0,25834861.0,25177177.0,26037359.0,25832641.0,26685740.0,26178771.0,27061308.0],"unit":"ns","throughput":[{"per_iteration":4095,"unit":"bytes"}],"typical":{"estimate":146.98034480461322,"lower_bound":146.3993821061774,"upper_bound":147.55940905688092,"unit":"ns"},"mean":{"estimate":146.297733983295,"lower_bound":145.94450873564688,"upper_bound":146.67195976867336,"unit":"ns"},"median":{"estimate":145.63298885515667,"lower_bound":145.34155077157553,"upper_bound":146.62220994475138,"unit":"ns"},"median_abs_dev":{"estimate":1.6028296606474786,"lower_bound":1.0491634971948114,"upper_bound":1.9064306824447594,"unit":"ns"},"slope":{"estimate":146.98034480461322,"lower_bound":146.3993821061774,"upper_bound":147.55940905688092,"unit":"ns"},"change":{"mean":{"estimate":-0.007405705604429547,"lower_bound":-0.01175878606822408,"upper_bound":-0.0028893871042092543,"unit":"%"},"median":{"estimate":-0.01405410955456543,"lower_bound":-0.02140205096655934,"upper_bound":-0.0004787463009348306,"unit":"%"},"change":"NoChange"}} +{"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":[5423,10846,16269,21692,27115,32538,37961,43384,48807,54230,59653,65076,70499,75922,81345,86768,92191,97614,103037,108460,113883,119306,124729,130152,135575,140998,146421,151844,157267,162690,168113,173536,178959,184382,189805,195228,200651,206074,211497,216920,222343,227766,233189,238612,244035,249458,254881,260304,265727,271150,276573,281996,287419,292842,298265,303688,309111,314534,319957,325380,330803,336226,341649,347072,352495,357918,363341,368764,374187,379610,385033,390456,395879,401302,406725,412148,417571,422994,428417,433840,439263,444686,450109,455532,460955,466378,471801,477224,482647,488070,493493,498916,504339,509762,515185,520608,526031,531454,536877,542300],"measured_values":[189894.0,340428.0,521238.0,685262.0,859663.0,1021847.0,1196271.0,1367801.0,1532520.0,1702009.0,1888495.0,2047064.0,2215464.0,2400712.0,2562589.0,2729173.0,2920803.0,3069583.0,3263734.0,3427995.0,3634950.0,3747147.0,3935197.0,4105949.0,4290069.0,4435501.0,4696966.0,4805882.0,4969223.0,5129736.0,5328177.0,5456522.0,5684483.0,5804002.0,5985036.0,6145073.0,6329296.0,6537737.0,6679342.0,6870116.0,7021032.0,7194885.0,7537370.0,7518999.0,7819728.0,7836661.0,8118794.0,8196356.0,8474805.0,8520781.0,8785213.0,8881634.0,9068530.0,9243062.0,9417581.0,9595054.0,9768155.0,9899211.0,10241176.0,10286312.0,10446554.0,10622774.0,10846041.0,10941555.0,11108758.0,11437372.0,11527479.0,11699075.0,11879552.0,11977235.0,12202244.0,12274147.0,12556648.0,12661203.0,12880543.0,13041376.0,13185322.0,13304425.0,14133777.0,13719020.0,13859287.0,14409793.0,14458966.0,14423641.0,14738246.0,14712507.0,15343495.0,15147398.0,15322689.0,15348408.0,15772390.0,15867535.0,16098487.0,16043339.0,16402619.0,16394173.0,16629507.0,16729513.0,16977524.0,17147903.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":31.720353997435407,"lower_bound":31.64741148493519,"upper_bound":31.804674489933955,"unit":"ns"},"mean":{"estimate":31.696963160854658,"lower_bound":31.626038413439204,"upper_bound":31.78941522627469,"unit":"ns"},"median":{"estimate":31.5962352241729,"lower_bound":31.563072568429554,"upper_bound":31.642458534312915,"unit":"ns"},"median_abs_dev":{"estimate":0.16759343021239861,"lower_bound":0.12038416884390157,"upper_bound":0.20303080972665033,"unit":"ns"},"slope":{"estimate":31.720353997435407,"lower_bound":31.64741148493519,"upper_bound":31.804674489933955,"unit":"ns"},"change":{"mean":{"estimate":-0.008121472287879072,"lower_bound":-0.011544254752922437,"upper_bound":-0.0047600884664289,"unit":"%"},"median":{"estimate":-0.009792407696107008,"lower_bound":-0.0108519625484651,"upper_bound":-0.00814915140704986,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"meq/10","report_directory":"/root/fuel-core/target/criterion/reports/meq/10","iteration_count":[5395,10790,16185,21580,26975,32370,37765,43160,48555,53950,59345,64740,70135,75530,80925,86320,91715,97110,102505,107900,113295,118690,124085,129480,134875,140270,145665,151060,156455,161850,167245,172640,178035,183430,188825,194220,199615,205010,210405,215800,221195,226590,231985,237380,242775,248170,253565,258960,264355,269750,275145,280540,285935,291330,296725,302120,307515,312910,318305,323700,329095,334490,339885,345280,350675,356070,361465,366860,372255,377650,383045,388440,393835,399230,404625,410020,415415,420810,426205,431600,436995,442390,447785,453180,458575,463970,469365,474760,480155,485550,490945,496340,501735,507130,512525,517920,523315,528710,534105,539500],"measured_values":[180839.0,347999.0,526326.0,696710.0,870477.0,1041711.0,1217390.0,1389710.0,1563551.0,1743618.0,1916381.0,2085220.0,2271551.0,2438425.0,2610370.0,2783235.0,2955985.0,3129255.0,3303591.0,3488050.0,3687021.0,3837604.0,4002006.0,4176036.0,4348625.0,4519946.0,4691539.0,4866790.0,5042436.0,5215366.0,5444076.0,5575675.0,5764889.0,5915535.0,6107045.0,6291640.0,6445384.0,6730809.0,6874998.0,6991505.0,7219449.0,7302000.0,7574250.0,7678233.0,7823101.0,8027116.0,8166261.0,8353886.0,8515442.0,8705402.0,9001745.0,9098576.0,9232283.0,9386300.0,9560149.0,9776242.0,9948712.0,10093596.0,10312745.0,10447441.0,10658177.0,10799467.0,10970213.0,11145947.0,11396313.0,11500440.0,11658065.0,11845524.0,12033400.0,12202414.0,12345486.0,12560577.0,12708488.0,12966569.0,13072132.0,13230029.0,13408877.0,13573231.0,13745890.0,13917581.0,14108513.0,14274904.0,14439526.0,14664926.0,14797910.0,14991850.0,15139604.0,15317595.0,15513659.0,15640418.0,15863060.0,15993416.0,16169856.0,16336501.0,16574273.0,16762252.0,16931932.0,17072866.0,17207751.0,17377815.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":32.29952027290483,"lower_bound":32.28153162939805,"upper_bound":32.3197488432305,"unit":"ns"},"mean":{"estimate":32.32352211995748,"lower_bound":32.294100947856556,"upper_bound":32.35973482206644,"unit":"ns"},"median":{"estimate":32.277259019427696,"lower_bound":32.25936824219957,"upper_bound":32.29155113389193,"unit":"ns"},"median_abs_dev":{"estimate":0.07324794721823073,"lower_bound":0.05178040403458267,"upper_bound":0.0913313668402984,"unit":"ns"},"slope":{"estimate":32.29952027290483,"lower_bound":32.28153162939805,"upper_bound":32.3197488432305,"unit":"ns"},"change":{"mean":{"estimate":-0.015039647631100106,"lower_bound":-0.01756685986783697,"upper_bound":-0.012907980936647693,"unit":"%"},"median":{"estimate":-0.01369357245221725,"lower_bound":-0.015340827180656658,"upper_bound":-0.012204175351874347,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"meq/100","report_directory":"/root/fuel-core/target/criterion/reports/meq/100","iteration_count":[5251,10502,15753,21004,26255,31506,36757,42008,47259,52510,57761,63012,68263,73514,78765,84016,89267,94518,99769,105020,110271,115522,120773,126024,131275,136526,141777,147028,152279,157530,162781,168032,173283,178534,183785,189036,194287,199538,204789,210040,215291,220542,225793,231044,236295,241546,246797,252048,257299,262550,267801,273052,278303,283554,288805,294056,299307,304558,309809,315060,320311,325562,330813,336064,341315,346566,351817,357068,362319,367570,372821,378072,383323,388574,393825,399076,404327,409578,414829,420080,425331,430582,435833,441084,446335,451586,456837,462088,467339,472590,477841,483092,488343,493594,498845,504096,509347,514598,519849,525100],"measured_values":[176958.0,346133.0,526460.0,693408.0,868680.0,1044481.0,1217271.0,1393076.0,1562560.0,1733859.0,1910142.0,2085401.0,2251198.0,2434457.0,2609215.0,2777258.0,2949708.0,3135381.0,3299390.0,3486689.0,3655647.0,3821872.0,3994991.0,4162365.0,4334727.0,4520394.0,4682833.0,4855624.0,5047551.0,5215412.0,5418329.0,5561798.0,5737932.0,5909631.0,6070077.0,6246353.0,6462740.0,6589836.0,6789547.0,6948915.0,7106339.0,7357048.0,7452986.0,7634507.0,7871743.0,8029692.0,8191176.0,8353045.0,8498668.0,8711893.0,8846997.0,9020633.0,9235470.0,9422720.0,9560961.0,9721637.0,9908985.0,10055355.0,10246003.0,10445517.0,10588770.0,10796430.0,10925462.0,11213030.0,11290066.0,11445519.0,11628720.0,11864047.0,12005318.0,12175047.0,12325997.0,12495705.0,12688835.0,12854573.0,13045151.0,13202007.0,13374435.0,13539281.0,13736855.0,13909445.0,14063715.0,14226849.0,14439560.0,14606246.0,14852617.0,14915446.0,15128490.0,15255733.0,15491826.0,15622771.0,15807548.0,15989775.0,16170407.0,16319977.0,16513416.0,16711606.0,16847227.0,16990605.0,17203466.0,17353706.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":33.100037312377495,"lower_bound":33.08485457561102,"upper_bound":33.11678437960938,"unit":"ns"},"mean":{"estimate":33.110755384473904,"lower_bound":33.09203630898324,"upper_bound":33.13201229093118,"unit":"ns"},"median":{"estimate":33.08973374960806,"lower_bound":33.075070545946794,"upper_bound":33.10827935608178,"unit":"ns"},"median_abs_dev":{"estimate":0.0684161325003288,"lower_bound":0.049178616371340654,"upper_bound":0.08494937678486907,"unit":"ns"},"slope":{"estimate":33.100037312377495,"lower_bound":33.08485457561102,"upper_bound":33.11678437960938,"unit":"ns"},"change":{"mean":{"estimate":-0.0072997884073610075,"lower_bound":-0.010756382044801676,"upper_bound":-0.004792975389201873,"unit":"%"},"median":{"estimate":-0.0048072908950588245,"lower_bound":-0.005718044084198293,"upper_bound":-0.003724782594827558,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"meq/1000","report_directory":"/root/fuel-core/target/criterion/reports/meq/1000","iteration_count":[4807,9614,14421,19228,24035,28842,33649,38456,43263,48070,52877,57684,62491,67298,72105,76912,81719,86526,91333,96140,100947,105754,110561,115368,120175,124982,129789,134596,139403,144210,149017,153824,158631,163438,168245,173052,177859,182666,187473,192280,197087,201894,206701,211508,216315,221122,225929,230736,235543,240350,245157,249964,254771,259578,264385,269192,273999,278806,283613,288420,293227,298034,302841,307648,312455,317262,322069,326876,331683,336490,341297,346104,350911,355718,360525,365332,370139,374946,379753,384560,389367,394174,398981,403788,408595,413402,418209,423016,427823,432630,437437,442244,447051,451858,456665,461472,466279,471086,475893,480700],"measured_values":[220648.0,403510.0,596825.0,787685.0,991279.0,1181086.0,1381320.0,1608763.0,1785217.0,1981150.0,2184044.0,2376499.0,2571891.0,2772554.0,2963071.0,3176266.0,3379398.0,3554362.0,3762732.0,3978493.0,4162253.0,4350040.0,4549980.0,4760999.0,4944881.0,5146275.0,5328347.0,5513610.0,5726502.0,5931187.0,6140183.0,6300674.0,6526430.0,6739681.0,6921858.0,7119553.0,7343984.0,7499955.0,7722136.0,7986045.0,8152289.0,8401286.0,8549133.0,8725528.0,8929414.0,9090970.0,9280231.0,9551723.0,9670366.0,9873812.0,10092719.0,10340257.0,10493560.0,10683483.0,10933611.0,11078297.0,11271955.0,11493425.0,11691295.0,11891698.0,12071839.0,12358664.0,12476698.0,12721115.0,12885666.0,13047121.0,13265182.0,13457007.0,13782597.0,13854177.0,14052379.0,14233563.0,14462425.0,14615223.0,14807546.0,15114546.0,15209802.0,15520685.0,15643942.0,15877934.0,16072850.0,16270649.0,16459576.0,16617808.0,16878485.0,17058494.0,17184445.0,17407638.0,17619394.0,17801297.0,18008456.0,18307792.0,18486847.0,18723318.0,18916382.0,18984835.0,19261921.0,19461832.0,19621649.0,19814810.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":41.24031955454844,"lower_bound":41.21168669072155,"upper_bound":41.269342941049544,"unit":"ns"},"mean":{"estimate":41.27821447766851,"lower_bound":41.20831736354813,"upper_bound":41.390371391338974,"unit":"ns"},"median":{"estimate":41.198711122338125,"lower_bound":41.173461823573014,"upper_bound":41.23407390390895,"unit":"ns"},"median_abs_dev":{"estimate":0.11394727128549434,"lower_bound":0.0837645368124604,"upper_bound":0.15685030923101584,"unit":"ns"},"slope":{"estimate":41.24031955454844,"lower_bound":41.21168669072155,"upper_bound":41.269342941049544,"unit":"ns"},"change":{"mean":{"estimate":-0.032193113975428345,"lower_bound":-0.03491714653226806,"upper_bound":-0.029365049071359322,"unit":"%"},"median":{"estimate":-0.03135525844809961,"lower_bound":-0.032135068058071536,"upper_bound":-0.029891523690523836,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"meq/10000","report_directory":"/root/fuel-core/target/criterion/reports/meq/10000","iteration_count":[1696,3392,5088,6784,8480,10176,11872,13568,15264,16960,18656,20352,22048,23744,25440,27136,28832,30528,32224,33920,35616,37312,39008,40704,42400,44096,45792,47488,49184,50880,52576,54272,55968,57664,59360,61056,62752,64448,66144,67840,69536,71232,72928,74624,76320,78016,79712,81408,83104,84800,86496,88192,89888,91584,93280,94976,96672,98368,100064,101760,103456,105152,106848,108544,110240,111936,113632,115328,117024,118720,120416,122112,123808,125504,127200,128896,130592,132288,133984,135680,137376,139072,140768,142464,144160,145856,147552,149248,150944,152640,154336,156032,157728,159424,161120,162816,164512,166208,167904,169600],"measured_values":[296981.0,615953.0,869454.0,1230652.0,1479327.0,1848770.0,2030380.0,2462492.0,2637271.0,3088790.0,3202820.0,3698319.0,3798396.0,4301339.0,4350805.0,4953710.0,4967178.0,5566288.0,5504615.0,6153004.0,6078022.0,6775359.0,6934219.0,7385511.0,7280889.0,8011539.0,7872288.0,8635124.0,8418320.0,9273867.0,8959089.0,9896329.0,9579775.0,10512448.0,10221414.0,11113911.0,10738815.0,11717118.0,11313991.0,12306356.0,11882205.0,12972389.0,12473854.0,13550779.0,13103762.0,14220387.0,13613290.0,14807104.0,14251966.0,15363356.0,14776178.0,16047717.0,15371894.0,16655446.0,16001765.0,17255717.0,16515087.0,17903948.0,17176108.0,18537726.0,17673961.0,19129024.0,18303605.0,19702093.0,18911327.0,20348679.0,19451210.0,20926325.0,19982660.0,21616031.0,20669574.0,22260495.0,21189492.0,22937504.0,21739069.0,23444806.0,22300913.0,24071795.0,22871214.0,24601990.0,23453174.0,25333433.0,24136284.0,25902896.0,24636412.0,26628076.0,25217020.0,27171112.0,25812683.0,27750703.0,26410659.0,28392900.0,26999473.0,29006873.0,27554318.0,29647653.0,28113636.0,30201618.0,28729723.0,30818653.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":176.59756305398562,"lower_bound":175.16789356285256,"upper_bound":178.0220172840788,"unit":"ns"},"mean":{"estimate":176.68049177790078,"lower_bound":175.64751049803516,"upper_bound":177.7125542732178,"unit":"ns"},"median":{"estimate":179.45939935397865,"lower_bound":171.69499475890984,"upper_bound":181.5396119210978,"unit":"ns"},"median_abs_dev":{"estimate":4.750604513367093,"lower_bound":1.0361862455813118,"upper_bound":7.936566479697754,"unit":"ns"},"slope":{"estimate":176.59756305398562,"lower_bound":175.16789356285256,"upper_bound":178.0220172840788,"unit":"ns"},"change":{"mean":{"estimate":0.025664409975993063,"lower_bound":0.019707732795883556,"upper_bound":0.031331964612291215,"unit":"%"},"median":{"estimate":0.042286227220156514,"lower_bound":-0.0024745966695730592,"upper_bound":0.05470349710300204,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"meq/19753","report_directory":"/root/fuel-core/target/criterion/reports/meq/19753","iteration_count":[1044,2088,3132,4176,5220,6264,7308,8352,9396,10440,11484,12528,13572,14616,15660,16704,17748,18792,19836,20880,21924,22968,24012,25056,26100,27144,28188,29232,30276,31320,32364,33408,34452,35496,36540,37584,38628,39672,40716,41760,42804,43848,44892,45936,46980,48024,49068,50112,51156,52200,53244,54288,55332,56376,57420,58464,59508,60552,61596,62640,63684,64728,65772,66816,67860,68904,69948,70992,72036,73080,74124,75168,76212,77256,78300,79344,80388,81432,82476,83520,84564,85608,86652,87696,88740,89784,90828,91872,92916,93960,95004,96048,97092,98136,99180,100224,101268,102312,103356,104400],"measured_values":[390038.0,744588.0,1114784.0,1481398.0,1860812.0,2200887.0,2596635.0,2953236.0,3342079.0,3679891.0,4090594.0,4415658.0,4828291.0,5167668.0,5571282.0,5890392.0,6322589.0,6600493.0,7064204.0,7363877.0,7783562.0,8097164.0,8536997.0,8808567.0,9277134.0,9565910.0,10034451.0,10360542.0,10818208.0,11065893.0,11503147.0,11911923.0,12247411.0,12528210.0,13002731.0,13294936.0,13730068.0,13995868.0,14518211.0,14989553.0,15345347.0,15497177.0,15986170.0,16199139.0,16710577.0,16958049.0,17476599.0,17650665.0,18356240.0,18415353.0,18953906.0,19143889.0,19683213.0,19908302.0,20498892.0,20679286.0,21219704.0,21364881.0,21962921.0,22106029.0,22639522.0,22871916.0,23423994.0,23529513.0,24180439.0,24241697.0,24906994.0,25097801.0,25648592.0,25782322.0,26450773.0,26507845.0,27147882.0,27228780.0,27888767.0,28002898.0,28635954.0,28694276.0,29337140.0,29535057.0,30094552.0,30184291.0,30840189.0,31029119.0,31584741.0,31680104.0,32319760.0,32384041.0,33056354.0,33158892.0,34348670.0,34915912.0,35115278.0,35868456.0,35884901.0,36502117.0,36661747.0,37106271.0,37411683.0,37902549.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":356.7662825765335,"lower_bound":355.57710539653846,"upper_bound":357.9243056277311,"unit":"ns"},"mean":{"estimate":355.6326251027048,"lower_bound":354.9784387572925,"upper_bound":356.35713416144523,"unit":"ns"},"median":{"estimate":355.6110602106354,"lower_bound":354.2834165754424,"upper_bound":355.87900288538856,"unit":"ns"},"median_abs_dev":{"estimate":2.9631984514566114,"lower_bound":1.3417858924855888,"upper_bound":3.844006890684326,"unit":"ns"},"slope":{"estimate":356.7662825765335,"lower_bound":355.57710539653846,"upper_bound":357.9243056277311,"unit":"ns"},"change":{"mean":{"estimate":-0.023714284322300383,"lower_bound":-0.025552132190601595,"upper_bound":-0.021640079184804106,"unit":"%"},"median":{"estimate":-0.023423717922096077,"lower_bound":-0.02625170102756269,"upper_bound":-0.02262334526476517,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"meq/29629","report_directory":"/root/fuel-core/target/criterion/reports/meq/29629","iteration_count":[604,1208,1812,2416,3020,3624,4228,4832,5436,6040,6644,7248,7852,8456,9060,9664,10268,10872,11476,12080,12684,13288,13892,14496,15100,15704,16308,16912,17516,18120,18724,19328,19932,20536,21140,21744,22348,22952,23556,24160,24764,25368,25972,26576,27180,27784,28388,28992,29596,30200,30804,31408,32012,32616,33220,33824,34428,35032,35636,36240,36844,37448,38052,38656,39260,39864,40468,41072,41676,42280,42884,43488,44092,44696,45300,45904,46508,47112,47716,48320,48924,49528,50132,50736,51340,51944,52548,53152,53756,54360,54964,55568,56172,56776,57380,57984,58588,59192,59796,60400],"measured_values":[355714.0,645623.0,968934.0,1293402.0,1615694.0,1946475.0,2297316.0,2621899.0,2923922.0,3253080.0,3555364.0,3871558.0,4205219.0,4558741.0,4848077.0,5273158.0,5523913.0,5858865.0,6231843.0,6578034.0,6806561.0,7103224.0,7479914.0,7894132.0,8101757.0,8568797.0,8745790.0,9159632.0,9394384.0,9782511.0,10047198.0,10534112.0,10705467.0,11005145.0,11344427.0,11818013.0,11987161.0,12525503.0,12689637.0,13071922.0,13291099.0,13826577.0,13994050.0,14330408.0,14657197.0,15033298.0,15231539.0,15500645.0,15936630.0,16450748.0,16567742.0,16827518.0,17220530.0,17572811.0,17844008.0,18063164.0,18479965.0,18754318.0,19114318.0,19714650.0,19824636.0,19992927.0,20508970.0,21031395.0,21105791.0,21747110.0,21774747.0,22253958.0,22437358.0,22919831.0,23256562.0,23446216.0,24113845.0,24035015.0,24525646.0,24779282.0,24989877.0,25271023.0,25635090.0,26006879.0,26343034.0,26546409.0,26890805.0,27090705.0,27729022.0,27934636.0,28384169.0,28706837.0,28927763.0,29267023.0,29665468.0,29910339.0,30144983.0,30553386.0,30982977.0,31175894.0,31508058.0,31695736.0,32205126.0,32566876.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":538.6873989129169,"lower_bound":538.105054730191,"upper_bound":539.3109442360078,"unit":"ns"},"mean":{"estimate":539.2868015580151,"lower_bound":538.3115667240417,"upper_bound":540.6130542803163,"unit":"ns"},"median":{"estimate":538.1804708415527,"lower_bound":537.7672518263125,"upper_bound":538.7008405501783,"unit":"ns"},"median_abs_dev":{"estimate":2.639957757328309,"lower_bound":2.017968545183125,"upper_bound":3.609262587021756,"unit":"ns"},"slope":{"estimate":538.6873989129169,"lower_bound":538.105054730191,"upper_bound":539.3109442360078,"unit":"ns"},"change":{"mean":{"estimate":0.012860943594398266,"lower_bound":0.010461618845812017,"upper_bound":0.015759590863114212,"unit":"%"},"median":{"estimate":0.011672597605761892,"lower_bound":0.010469704621258069,"upper_bound":0.01282409275731422,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"meq/44444","report_directory":"/root/fuel-core/target/criterion/reports/meq/44444","iteration_count":[467,934,1401,1868,2335,2802,3269,3736,4203,4670,5137,5604,6071,6538,7005,7472,7939,8406,8873,9340,9807,10274,10741,11208,11675,12142,12609,13076,13543,14010,14477,14944,15411,15878,16345,16812,17279,17746,18213,18680,19147,19614,20081,20548,21015,21482,21949,22416,22883,23350,23817,24284,24751,25218,25685,26152,26619,27086,27553,28020,28487,28954,29421,29888,30355,30822,31289,31756,32223,32690,33157,33624,34091,34558,35025,35492,35959,36426,36893,37360,37827,38294,38761,39228,39695,40162,40629,41096,41563,42030,42497,42964,43431,43898,44365,44832,45299,45766,46233,46700],"measured_values":[375867.0,742715.0,1111681.0,1481507.0,1875937.0,2220723.0,2614885.0,2960775.0,3341378.0,3695077.0,4077832.0,4433050.0,4819175.0,5177230.0,5565413.0,5991153.0,6314719.0,6658141.0,7058910.0,7423150.0,7779251.0,8157722.0,8601665.0,8907679.0,9272415.0,9617030.0,10047568.0,10362230.0,10751731.0,11110784.0,11539457.0,11842190.0,12250670.0,12606382.0,13262853.0,13331043.0,13738377.0,14060663.0,14478432.0,14826228.0,15220028.0,15574577.0,16004818.0,16325522.0,16755287.0,17019387.0,17469916.0,17818186.0,18241071.0,18543214.0,18946763.0,19273457.0,19658794.0,20008807.0,20479230.0,20778526.0,21193364.0,21544912.0,21916665.0,22239037.0,22641028.0,22980522.0,23501935.0,23726081.0,24188571.0,24491156.0,24925746.0,25176849.0,25607009.0,25930289.0,26425560.0,26678079.0,27175614.0,27449808.0,27802350.0,28136551.0,28601030.0,28885760.0,29418014.0,29652781.0,30018695.0,30393923.0,30859643.0,31112984.0,31638897.0,31933514.0,32504997.0,32641645.0,32958853.0,33356861.0,33918755.0,34136191.0,34487703.0,34811165.0,35372142.0,35590693.0,36049811.0,36309178.0,36854948.0,37065654.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":794.9909167141585,"lower_bound":794.5173056852775,"upper_bound":795.5015214357674,"unit":"ns"},"mean":{"estimate":795.1014062162255,"lower_bound":794.5710407552082,"upper_bound":795.7034067383787,"unit":"ns"},"median":{"estimate":794.4013754654012,"lower_bound":793.8958133353024,"upper_bound":794.8869557458958,"unit":"ns"},"median_abs_dev":{"estimate":1.6760223241640944,"lower_bound":1.231189714205219,"upper_bound":2.353128468542008,"unit":"ns"},"slope":{"estimate":794.9909167141585,"lower_bound":794.5173056852775,"upper_bound":795.5015214357674,"unit":"ns"},"change":{"mean":{"estimate":0.007910771728545152,"lower_bound":0.0056785225352631195,"upper_bound":0.009952254530702675,"unit":"%"},"median":{"estimate":0.00566090918282347,"lower_bound":0.0033208811404614735,"upper_bound":0.01247984959213877,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"meq/66666","report_directory":"/root/fuel-core/target/criterion/reports/meq/66666","iteration_count":[309,618,927,1236,1545,1854,2163,2472,2781,3090,3399,3708,4017,4326,4635,4944,5253,5562,5871,6180,6489,6798,7107,7416,7725,8034,8343,8652,8961,9270,9579,9888,10197,10506,10815,11124,11433,11742,12051,12360,12669,12978,13287,13596,13905,14214,14523,14832,15141,15450,15759,16068,16377,16686,16995,17304,17613,17922,18231,18540,18849,19158,19467,19776,20085,20394,20703,21012,21321,21630,21939,22248,22557,22866,23175,23484,23793,24102,24411,24720,25029,25338,25647,25956,26265,26574,26883,27192,27501,27810,28119,28428,28737,29046,29355,29664,29973,30282,30591,30900],"measured_values":[386081.0,758233.0,1136139.0,1514729.0,1888998.0,2288653.0,2643654.0,3046353.0,3405068.0,3815094.0,4158448.0,4568011.0,4937732.0,5323145.0,5676917.0,6079724.0,6422946.0,6855013.0,7185546.0,7566743.0,7926992.0,8406802.0,8663782.0,9105002.0,9443726.0,9899798.0,10181030.0,10681359.0,10980999.0,11412652.0,11717408.0,12141747.0,12509617.0,12898743.0,13230165.0,13631563.0,14011228.0,14445363.0,14722898.0,15190850.0,15534348.0,15976936.0,16325596.0,16677896.0,17026373.0,17446305.0,17726941.0,18273361.0,18579652.0,19081093.0,19281406.0,19810330.0,20052102.0,20544665.0,20785092.0,21332206.0,21549465.0,22051926.0,22334800.0,22819040.0,23058235.0,23533371.0,23864435.0,24366558.0,24555513.0,25155709.0,25339344.0,25856180.0,26077466.0,26622087.0,26961406.0,27382987.0,27617903.0,28045336.0,28427314.0,28944039.0,29171858.0,29648656.0,29919533.0,30345926.0,30629154.0,31198037.0,31310033.0,31973694.0,32231712.0,32574835.0,32936879.0,33655423.0,33722974.0,34298538.0,34461451.0,34904959.0,35225078.0,35739855.0,35954972.0,36401119.0,36660486.0,37188361.0,37444714.0,37969874.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":1227.522116142349,"lower_bound":1226.626027475398,"upper_bound":1228.474914739927,"unit":"ns"},"mean":{"estimate":1227.6245124168593,"lower_bound":1226.7562104526414,"upper_bound":1228.535874810744,"unit":"ns"},"median":{"estimate":1226.8540502108463,"lower_bound":1225.7369206886335,"upper_bound":1227.9527503065387,"unit":"ns"},"median_abs_dev":{"estimate":4.9617421052990975,"lower_bound":3.393471465711897,"upper_bound":5.5054288136020935,"unit":"ns"},"slope":{"estimate":1227.522116142349,"lower_bound":1226.626027475398,"upper_bound":1228.474914739927,"unit":"ns"},"change":{"mean":{"estimate":-0.013389857724618648,"lower_bound":-0.015557450349561215,"upper_bound":-0.011467048384704802,"unit":"%"},"median":{"estimate":-0.01414513580175325,"lower_bound":-0.016165511173530156,"upper_bound":-0.01083235272410965,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"meq/100000","report_directory":"/root/fuel-core/target/criterion/reports/meq/100000","iteration_count":[212,424,636,848,1060,1272,1484,1696,1908,2120,2332,2544,2756,2968,3180,3392,3604,3816,4028,4240,4452,4664,4876,5088,5300,5512,5724,5936,6148,6360,6572,6784,6996,7208,7420,7632,7844,8056,8268,8480,8692,8904,9116,9328,9540,9752,9964,10176,10388,10600,10812,11024,11236,11448,11660,11872,12084,12296,12508,12720,12932,13144,13356,13568,13780,13992,14204,14416,14628,14840,15052,15264,15476,15688,15900,16112,16324,16536,16748,16960,17172,17384,17596,17808,18020,18232,18444,18656,18868,19080,19292,19504,19716,19928,20140,20352,20564,20776,20988,21200],"measured_values":[422073.0,788654.0,1190962.0,1573366.0,1960409.0,2365105.0,2738400.0,3158726.0,3538895.0,3947214.0,4314019.0,4721679.0,5102991.0,5525464.0,5898586.0,6302495.0,6684165.0,7107696.0,7559218.0,7937172.0,8255843.0,8678411.0,9036669.0,9486818.0,9809220.0,10233754.0,10568040.0,11074698.0,11433744.0,11845817.0,12209941.0,12611208.0,12990920.0,13411650.0,13802769.0,14138538.0,14510663.0,14958992.0,15315378.0,15811427.0,16146917.0,16638958.0,16905211.0,17281379.0,17536431.0,18001665.0,18302842.0,18805131.0,19150113.0,19645831.0,19970804.0,20435923.0,20762984.0,21252262.0,21607613.0,22146745.0,22348389.0,22761966.0,23260494.0,23578351.0,23943361.0,24451370.0,24772071.0,25338006.0,25565363.0,26031616.0,26215997.0,26661038.0,27034326.0,27447180.0,27750894.0,28242454.0,28424742.0,29109612.0,29314425.0,29954911.0,30217573.0,30775656.0,30997370.0,31584788.0,31850636.0,32296002.0,32708960.0,33162446.0,33408779.0,33913980.0,34161106.0,34497409.0,34917576.0,35292416.0,35600097.0,36380255.0,36443692.0,36800551.0,37182239.0,37594260.0,38205384.0,38696908.0,38959887.0,39486073.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":1853.7625148263912,"lower_bound":1852.0053519532487,"upper_bound":1855.5415389313,"unit":"ns"},"mean":{"estimate":1856.373591160645,"lower_bound":1853.911541024429,"upper_bound":1859.853935842367,"unit":"ns"},"median":{"estimate":1854.7836885627767,"lower_bound":1853.2955291222313,"upper_bound":1856.875868917577,"unit":"ns"},"median_abs_dev":{"estimate":7.85078646439432,"lower_bound":6.176892936595111,"upper_bound":9.09673751549006,"unit":"ns"},"slope":{"estimate":1853.7625148263912,"lower_bound":1852.0053519532487,"upper_bound":1855.5415389313,"unit":"ns"},"change":{"mean":{"estimate":-0.020309454343660605,"lower_bound":-0.02267011791773961,"upper_bound":-0.01786298196270011,"unit":"%"},"median":{"estimate":-0.021451425128005464,"lower_bound":-0.022651790535648586,"upper_bound":-0.02011898980554494,"unit":"%"},"change":"Improved"}} +{"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":[4872,9744,14616,19488,24360,29232,34104,38976,43848,48720,53592,58464,63336,68208,73080,77952,82824,87696,92568,97440,102312,107184,112056,116928,121800,126672,131544,136416,141288,146160,151032,155904,160776,165648,170520,175392,180264,185136,190008,194880,199752,204624,209496,214368,219240,224112,228984,233856,238728,243600,248472,253344,258216,263088,267960,272832,277704,282576,287448,292320,297192,302064,306936,311808,316680,321552,326424,331296,336168,341040,345912,350784,355656,360528,365400,370272,375144,380016,384888,389760,394632,399504,404376,409248,414120,418992,423864,428736,433608,438480,443352,448224,453096,457968,462840,467712,472584,477456,482328,487200],"measured_values":[283462.0,449138.0,706164.0,900971.0,1120305.0,1358614.0,1576063.0,1791477.0,2038190.0,2240413.0,2480060.0,2689628.0,2947575.0,3180001.0,3411939.0,3584812.0,3815859.0,4034124.0,4273025.0,4495082.0,4757873.0,4944929.0,5225061.0,5420727.0,5666408.0,5825683.0,6054387.0,6280924.0,6599547.0,6727918.0,7062446.0,7172113.0,7473434.0,7628102.0,7901342.0,8082833.0,8341054.0,8590273.0,9014183.0,9150994.0,9309904.0,9434788.0,9820779.0,9885409.0,10163733.0,10318264.0,10596120.0,10809485.0,11014431.0,11204788.0,11482322.0,11651559.0,12001140.0,12098356.0,12344828.0,12557662.0,12860653.0,13157742.0,13363694.0,13495208.0,13708372.0,13889906.0,14284513.0,14346685.0,14720785.0,14887263.0,15042571.0,15294259.0,15520294.0,15748365.0,16135165.0,16122152.0,16507264.0,16607737.0,17204773.0,17066207.0,17501231.0,17500492.0,17783113.0,17927292.0,18193186.0,18410858.0,18810659.0,18846365.0,19185103.0,19272112.0,19718685.0,19720988.0,20190041.0,20231813.0,20551038.0,20671686.0,21085738.0,21158444.0,21470986.0,21513575.0,21891814.0,21996678.0,22446336.0,22446153.0],"unit":"ns","throughput":[],"typical":{"estimate":46.26186277193266,"lower_bound":46.20168519833033,"upper_bound":46.32598843155104,"unit":"ns"},"mean":{"estimate":46.41289931448929,"lower_bound":46.24505210993492,"upper_bound":46.693185679978,"unit":"ns"},"median":{"estimate":46.18908791506331,"lower_bound":46.12544531305775,"upper_bound":46.298150843409466,"unit":"ns"},"median_abs_dev":{"estimate":0.26837933015199905,"lower_bound":0.18402523309967306,"upper_bound":0.34962842695531315,"unit":"ns"},"slope":{"estimate":46.26186277193266,"lower_bound":46.20168519833033,"upper_bound":46.32598843155104,"unit":"ns"},"change":{"mean":{"estimate":0.03205907137148678,"lower_bound":0.02601349558324601,"upper_bound":0.03852324295968913,"unit":"%"},"median":{"estimate":0.03120292371729594,"lower_bound":0.029404009734254277,"upper_bound":0.03357924867883596,"unit":"%"},"change":"Regressed"}} +{"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":[4835,9670,14505,19340,24175,29010,33845,38680,43515,48350,53185,58020,62855,67690,72525,77360,82195,87030,91865,96700,101535,106370,111205,116040,120875,125710,130545,135380,140215,145050,149885,154720,159555,164390,169225,174060,178895,183730,188565,193400,198235,203070,207905,212740,217575,222410,227245,232080,236915,241750,246585,251420,256255,261090,265925,270760,275595,280430,285265,290100,294935,299770,304605,309440,314275,319110,323945,328780,333615,338450,343285,348120,352955,357790,362625,367460,372295,377130,381965,386800,391635,396470,401305,406140,410975,415810,420645,425480,430315,435150,439985,444820,449655,454490,459325,464160,468995,473830,478665,483500],"measured_values":[226921.0,443894.0,661240.0,883884.0,1101746.0,1317574.0,1540832.0,1758131.0,1982276.0,2213504.0,2421035.0,2640040.0,2861002.0,3079157.0,3306398.0,3497799.0,3742420.0,4057187.0,4187928.0,4400116.0,4624089.0,4835044.0,5069190.0,5264440.0,5506731.0,5727667.0,5944049.0,6264375.0,6569253.0,6709226.0,6848744.0,7032523.0,7420082.0,7481288.0,7727155.0,7934962.0,8157597.0,8397459.0,8588069.0,8782315.0,9040486.0,9290854.0,9489615.0,9701984.0,9907127.0,10138042.0,10351977.0,10567800.0,10801711.0,11343801.0,11272454.0,11536423.0,12170835.0,11916131.0,12134235.0,13062314.0,12596615.0,12869560.0,12991297.0,13243623.0,13451478.0,14229040.0,13998742.0,14142365.0,14332916.0,14658033.0,14780720.0,15011528.0,15217444.0,15674910.0,15680166.0,16188385.0,16113023.0,16343819.0,16523597.0,17213368.0,17028250.0,17277357.0,17434701.0,17762227.0,17867718.0,18158634.0,18446946.0,18683910.0,18853502.0,18985036.0,19344317.0,19764168.0,19982993.0,19987003.0,20032769.0,20411033.0,20515656.0,20806142.0,20990559.0,22026157.0,21725194.0,21743888.0,21827221.0,22078000.0],"unit":"ns","throughput":[],"typical":{"estimate":45.936069646952966,"lower_bound":45.817568236663966,"upper_bound":46.0720998387011,"unit":"ns"},"mean":{"estimate":45.84597364729494,"lower_bound":45.751108097961165,"upper_bound":45.95167134527665,"unit":"ns"},"median":{"estimate":45.65185030669632,"lower_bound":45.608279790462305,"upper_bound":45.7023784901758,"unit":"ns"},"median_abs_dev":{"estimate":0.17801572695839524,"lower_bound":0.11903056950970013,"upper_bound":0.2586575405140625,"unit":"ns"},"slope":{"estimate":45.936069646952966,"lower_bound":45.817568236663966,"upper_bound":46.0720998387011,"unit":"ns"},"change":{"mean":{"estimate":0.0033462034819013997,"lower_bound":-0.00016762427811267946,"upper_bound":0.006455329315268404,"unit":"%"},"median":{"estimate":0.0011432373152369113,"lower_bound":0.00011599971299764549,"upper_bound":0.002488884324240992,"unit":"%"},"change":"NoChange"}} +{"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":[10,20,30,40,50,60,70,80,90,100,110,120,130,140,150,160,170,180,190,200,210,220,230,240,250,260,270,280,290,300,310,320,330,340,350,360,370,380,390,400,410,420,430,440,450,460,470,480,490,500,510,520,530,540,550,560,570,580,590,600,610,620,630,640,650,660,670,680,690,700,710,720,730,740,750,760,770,780,790,800,810,820,830,840,850,860,870,880,890,900,910,920,930,940,950,960,970,980,990,1000],"measured_values":[1436816.0,152972.0,4185957.0,158602.0,7026697.0,169137.0,9793967.0,178482.0,12632711.0,187369.0,15458949.0,193619.0,18311784.0,204937.0,21020757.0,217114.0,23842394.0,227582.0,26737225.0,233822.0,29603879.0,247974.0,32296725.0,252215.0,35157274.0,283726.0,37896904.0,270915.0,40752926.0,277981.0,43371759.0,292501.0,46303077.0,299720.0,49162198.0,313203.0,51868756.0,321355.0,54599368.0,330365.0,57512722.0,338327.0,60405986.0,348313.0,63252146.0,357746.0,65818167.0,372231.0,68685327.0,394735.0,71500853.0,388627.0,74266990.0,391133.0,77229029.0,407591.0,80081911.0,244810.0,82681787.0,261165.0,85520968.0,269212.0,88281858.0,275405.0,91022732.0,284823.0,93772202.0,293877.0,96890649.0,303894.0,99468378.0,307817.0,102202846.0,320036.0,105229295.0,325676.0,107935786.0,334605.0,110827181.0,343997.0,113486141.0,352097.0,116166681.0,364026.0,119217796.0,373826.0,121808843.0,371819.0,124721456.0,372316.0,127340222.0,379078.0,130538360.0,389509.0,133012681.0,418360.0,136282217.0,427312.0,138873514.0,435571.0],"unit":"ns","throughput":[],"typical":{"estimate":69306.7870036944,"lower_bound":50950.41084873085,"upper_bound":87632.07522702731,"unit":"ns"},"mean":{"estimate":70668.5345250516,"lower_bound":56783.999295599264,"upper_bound":84562.97070523251,"unit":"ns"},"median":{"estimate":73590.25,"lower_bound":1169.11,"upper_bound":140022.5683377542,"unit":"ns"},"median_abs_dev":{"estimate":101562.39950190698,"lower_bound":731.266191584581,"upper_bound":102554.36831429602,"unit":"ns"},"slope":{"estimate":69306.7870036944,"lower_bound":50950.41084873085,"upper_bound":87632.07522702731,"unit":"ns"},"change":{"mean":{"estimate":565.1997865451237,"lower_bound":455.38733049064695,"upper_bound":670.6619884681998,"unit":"%"},"median":{"estimate":609.1739086295817,"lower_bound":9.098837577569585,"upper_bound":1163.7837776446377,"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":[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":[4346.0,1265385.0,7660.0,2670551.0,11431.0,4034169.0,15950.0,5408936.0,20592.0,6836162.0,25331.0,8251380.0,29965.0,9618220.0,34067.0,11043084.0,38225.0,12414648.0,43372.0,13806701.0,47717.0,15309133.0,52945.0,16577815.0,57184.0,18038807.0,61851.0,19336550.0,68402.0,20706196.0,72821.0,22244430.0,76856.0,23447157.0,81472.0,24939658.0,87170.0,26440289.0,89266.0,27713767.0,94323.0,29063750.0,97353.0,30610374.0,142761.0,31966819.0,116674.0,33467851.0,109270.0,34728871.0,113444.0,36102021.0,117482.0,37643039.0,121242.0,38905340.0,126976.0,40253648.0,129798.0,41600137.0,136412.0,43110309.0,139505.0,44494061.0,142100.0,45836976.0,148008.0,47399775.0,153916.0,48721390.0,156970.0,50043065.0,160947.0,51299823.0,165387.0,53152795.0,176425.0,54247103.0,180353.0,55656087.0,184667.0,56884155.0,191348.0,58392392.0,193319.0,59752658.0,202607.0,61165477.0,202054.0,62612940.0,207364.0,63883683.0,213479.0,65334803.0,217241.0,66830951.0,222472.0,68354490.0,229379.0,69434306.0],"unit":"ns","throughput":[],"typical":{"estimate":70773.21419772426,"lower_bound":52537.58173835658,"upper_bound":88835.80033004482,"unit":"ns"},"mean":{"estimate":69356.85907134601,"lower_bound":55664.58832003553,"upper_bound":83045.99997371754,"unit":"ns"},"median":{"estimate":63703.85,"lower_bound":464.5929292929293,"upper_bound":138038.55,"unit":"ns"},"median_abs_dev":{"estimate":93797.04020130161,"lower_bound":34.458890166927546,"upper_bound":98800.6722809374,"unit":"ns"},"slope":{"estimate":70773.21419772426,"lower_bound":52537.58173835658,"upper_bound":88835.80033004482,"unit":"ns"},"change":{"mean":{"estimate":618.4857282157946,"lower_bound":507.07394658773035,"upper_bound":755.2805562982136,"unit":"%"},"median":{"estimate":574.9601716678546,"lower_bound":3.197282624895161,"upper_bound":1251.2611257349417,"unit":"%"},"change":"Regressed"}} +{"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":[151,302,453,604,755,906,1057,1208,1359,1510,1661,1812,1963,2114,2265,2416,2567,2718,2869,3020,3171,3322,3473,3624,3775,3926,4077,4228,4379,4530,4681,4832,4983,5134,5285,5436,5587,5738,5889,6040,6191,6342,6493,6644,6795,6946,7097,7248,7399,7550,7701,7852,8003,8154,8305,8456,8607,8758,8909,9060,9211,9362,9513,9664,9815,9966,10117,10268,10419,10570,10721,10872,11023,11174,11325,11476,11627,11778,11929,12080,12231,12382,12533,12684,12835,12986,13137,13288,13439,13590,13741,13892,14043,14194,14345,14496,14647,14798,14949,15100],"measured_values":[972318.0,1908191.0,2866987.0,3819819.0,4815589.0,5715679.0,6697484.0,7523427.0,8489911.0,9533884.0,10554236.0,11458442.0,12467578.0,13386225.0,14350381.0,15224890.0,16310941.0,17138398.0,18050330.0,18979469.0,19910405.0,20867808.0,22024672.0,22720462.0,23913119.0,24755755.0,25815490.0,26229888.0,27360162.0,28276605.0,29597689.0,30600446.0,31665604.0,32467927.0,33024447.0,34201097.0,35477002.0,36159598.0,37188594.0,37555721.0,39192812.0,40038892.0,41149723.0,42126294.0,43007779.0,43688351.0,44936812.0,45578378.0,46487711.0,47175295.0,48337751.0,49128809.0,50711308.0,51389794.0,52513675.0,53481551.0,53423972.0,54808284.0,56126868.0,56605390.0,57710979.0,58340350.0,59078462.0,60206504.0,62242305.0,62584632.0,63447608.0,64359133.0,65197434.0,66455455.0,68324658.0,68289040.0,69936730.0,70782241.0,71403510.0,72014942.0,74017840.0,73576530.0,75177884.0,76399721.0,76325846.0,76706663.0,78944312.0,79193319.0,80271521.0,81817052.0,82661900.0,82995955.0,84857511.0,85492141.0,86615809.0,87643489.0,86764504.0,87032593.0,89713428.0,90186777.0,92346686.0,92407384.0,92592803.0,94120762.0],"unit":"ns","throughput":[],"typical":{"estimate":6272.844797610531,"lower_bound":6258.870205782687,"upper_bound":6286.677040178689,"unit":"ns"},"mean":{"estimate":6291.266764389626,"lower_bound":6281.5543931191705,"upper_bound":6300.819413851531,"unit":"ns"},"median":{"estimate":6300.211646440626,"lower_bound":6284.59238410596,"upper_bound":6307.107247976453,"unit":"ns"},"median_abs_dev":{"estimate":48.1408030190153,"lower_bound":37.809597502033945,"upper_bound":62.01827655020294,"unit":"ns"},"slope":{"estimate":6272.844797610531,"lower_bound":6258.870205782687,"upper_bound":6286.677040178689,"unit":"ns"},"change":{"mean":{"estimate":0.016376164174779717,"lower_bound":0.013167950146520203,"upper_bound":0.019158010442919052,"unit":"%"},"median":{"estimate":0.019482658814592213,"lower_bound":0.01465361106793605,"upper_bound":0.02189221187980195,"unit":"%"},"change":"Regressed"}} +{"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":[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":[1072670.0,2079549.0,3161019.0,4144996.0,5197189.0,6210003.0,7300416.0,8271808.0,9319069.0,10409499.0,11445971.0,12533742.0,13464005.0,14598975.0,15521966.0,16663985.0,18078669.0,19268824.0,20321185.0,21287057.0,22556954.0,23519341.0,24467671.0,25593133.0,26737927.0,27832320.0,28755809.0,29172719.0,30101739.0,31395502.0,32399085.0,33545895.0,34402222.0,35950242.0,37376169.0,38526146.0,39130913.0,40695895.0,41663254.0,42474785.0,43389398.0,43777936.0,45064629.0,45959626.0,46631116.0,48379772.0,48971303.0,51283139.0,52212961.0,53371198.0,54191688.0,54078214.0,55408733.0,56299770.0,57053958.0,59922819.0,61039799.0,61943294.0,62843251.0,63275915.0,63583659.0,64366489.0,65533638.0,67065768.0,67822553.0,68793664.0,70118917.0,71432385.0,72066929.0,72806435.0,73894153.0,75693313.0,76677669.0,76965377.0,77918663.0,78886365.0,79926884.0,81211828.0,82354845.0,84080432.0,85028844.0,86061212.0,87213920.0,88475644.0,89163138.0,89838679.0,91382150.0,92089622.0,92750771.0,93586429.0,95486345.0,96588494.0,97341748.0,98202828.0,99611401.0,100659928.0,101501377.0,103048818.0,102708396.0,104718850.0],"unit":"ns","throughput":[],"typical":{"estimate":130998.80885769174,"lower_bound":130801.22677776453,"upper_bound":131214.9360915797,"unit":"ns"},"mean":{"estimate":131284.5697402551,"lower_bound":131009.43778897641,"upper_bound":131568.70682417846,"unit":"ns"},"median":{"estimate":130867.12264784946,"lower_bound":130567.11931818182,"upper_bound":131217.35185185185,"unit":"ns"},"median_abs_dev":{"estimate":1246.9151153628295,"lower_bound":882.8030274215286,"upper_bound":1768.6784123848854,"unit":"ns"},"slope":{"estimate":130998.80885769174,"lower_bound":130801.22677776453,"upper_bound":131214.9360915797,"unit":"ns"},"change":{"mean":{"estimate":0.03250459439893394,"lower_bound":0.02945318488988603,"upper_bound":0.03543514594936755,"unit":"%"},"median":{"estimate":0.031488631423315816,"lower_bound":0.027656136929005815,"upper_bound":0.03454078414288664,"unit":"%"},"change":"Regressed"}} +{"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":[172,344,516,688,860,1032,1204,1376,1548,1720,1892,2064,2236,2408,2580,2752,2924,3096,3268,3440,3612,3784,3956,4128,4300,4472,4644,4816,4988,5160,5332,5504,5676,5848,6020,6192,6364,6536,6708,6880,7052,7224,7396,7568,7740,7912,8084,8256,8428,8600,8772,8944,9116,9288,9460,9632,9804,9976,10148,10320,10492,10664,10836,11008,11180,11352,11524,11696,11868,12040,12212,12384,12556,12728,12900,13072,13244,13416,13588,13760,13932,14104,14276,14448,14620,14792,14964,15136,15308,15480,15652,15824,15996,16168,16340,16512,16684,16856,17028,17200],"measured_values":[987757.0,1844244.0,2784289.0,3695996.0,4651973.0,5568842.0,6502002.0,7407190.0,8420299.0,9353806.0,10417691.0,11234368.0,12252403.0,13177548.0,14162448.0,14752880.0,15824572.0,16906288.0,17688897.0,18710697.0,19615858.0,20391805.0,21634948.0,22269818.0,23153121.0,24352056.0,25377943.0,25827941.0,27203179.0,28224454.0,29058511.0,30128088.0,31066689.0,31702319.0,32621587.0,33362740.0,34654401.0,35665359.0,36756695.0,37149113.0,38444304.0,39534888.0,39788733.0,40795941.0,42452762.0,43175797.0,44440513.0,45079600.0,46276175.0,46609304.0,47946162.0,48887349.0,49771614.0,50665295.0,51748732.0,52559032.0,53317273.0,53952529.0,55612364.0,56597226.0,57623438.0,58468995.0,59387471.0,59837999.0,60914855.0,62375914.0,63024803.0,63634441.0,65001311.0,65483247.0,66787287.0,67556034.0,68214339.0,69399746.0,70606790.0,71099529.0,72211828.0,72833141.0,74069752.0,74805556.0,76195060.0,76060295.0,77859674.0,78741783.0,79464136.0,80642342.0,81276446.0,82414232.0,83772047.0,83463971.0,85559636.0,86518944.0,87326969.0,88066993.0,89947302.0,90175765.0,90786365.0,91982764.0,93049258.0,93293474.0],"unit":"ns","throughput":[],"typical":{"estimate":5451.6382964867125,"lower_bound":5445.22985051379,"upper_bound":5457.8756978957545,"unit":"ns"},"mean":{"estimate":5447.115604430353,"lower_bound":5438.767146704809,"upper_bound":5456.5545649778305,"unit":"ns"},"median":{"estimate":5451.6500069253,"lower_bound":5443.007751937985,"upper_bound":5456.97460844803,"unit":"ns"},"median_abs_dev":{"estimate":28.930436141160953,"lower_bound":22.688961480641428,"upper_bound":39.99886728404353,"unit":"ns"},"slope":{"estimate":5451.6382964867125,"lower_bound":5445.22985051379,"upper_bound":5457.8756978957545,"unit":"ns"},"change":{"mean":{"estimate":0.10737570311390132,"lower_bound":0.1046183862831341,"upper_bound":0.11005914419998013,"unit":"%"},"median":{"estimate":0.10773153159377613,"lower_bound":0.10457656549544811,"upper_bound":0.1106392392396478,"unit":"%"},"change":"Regressed"}} +{"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":[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":[1074905.0,2081824.0,3070154.0,4194509.0,5247139.0,6214108.0,7281616.0,8331224.0,9446353.0,10436061.0,11367752.0,12371285.0,13322368.0,14487656.0,15580908.0,16548303.0,17649236.0,18713613.0,19884551.0,20860802.0,21931942.0,23117140.0,24124543.0,25188791.0,26301763.0,26844617.0,27896130.0,28846647.0,30071502.0,31408249.0,32341768.0,33381966.0,34477617.0,35431254.0,36491276.0,37569267.0,38553426.0,39594883.0,40397205.0,41165419.0,42849472.0,43655781.0,44814114.0,45677713.0,46887338.0,47827084.0,49026562.0,50084836.0,51252219.0,51992235.0,53052271.0,54353921.0,55099243.0,56025753.0,57501697.0,58236596.0,58769217.0,60581225.0,61515266.0,62419355.0,63249904.0,64492759.0,65236832.0,66738658.0,67166287.0,69052757.0,69654845.0,71185194.0,72292594.0,73054195.0,74334779.0,75419412.0,76490188.0,77496473.0,78286934.0,79257876.0,80056262.0,81836555.0,82709579.0,83794746.0,85089961.0,85775202.0,86933569.0,88186880.0,88424741.0,89457980.0,90366379.0,91770168.0,93383591.0,94370312.0,95363212.0,96318686.0,97434524.0,98761878.0,98998897.0,100392634.0,101348329.0,101632354.0,103199679.0,104914990.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":130500.00290490616,"lower_bound":130353.36869217071,"upper_bound":130635.02718997968,"unit":"ns"},"mean":{"estimate":130314.96543778453,"lower_bound":130154.63254147046,"upper_bound":130478.96386636529,"unit":"ns"},"median":{"estimate":130356.8504784689,"lower_bound":130245.33318318319,"upper_bound":130500.59672619047,"unit":"ns"},"median_abs_dev":{"estimate":748.0749046939618,"lower_bound":547.7383632083913,"upper_bound":880.8377853503766,"unit":"ns"},"slope":{"estimate":130500.00290490616,"lower_bound":130353.36869217071,"upper_bound":130635.02718997968,"unit":"ns"},"change":{"mean":{"estimate":0.040701649809689266,"lower_bound":0.03867479336625089,"upper_bound":0.042863895466828575,"unit":"%"},"median":{"estimate":0.04129556851961569,"lower_bound":0.039919731005156445,"upper_bound":0.04298215488914936,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"scwq/10","report_directory":"/root/fuel-core/target/criterion/reports/scwq/10","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":[1477928.0,2865490.0,4315407.0,5760031.0,7222646.0,8585825.0,10082834.0,11495953.0,12989174.0,14338899.0,15716146.0,17410918.0,18485122.0,19879456.0,21281889.0,22941918.0,24104014.0,25476545.0,27634865.0,28701573.0,30035898.0,31490805.0,32947939.0,34019952.0,35400550.0,37209785.0,38632149.0,39889562.0,41426294.0,42866230.0,44460277.0,45905048.0,47284022.0,48745774.0,50084153.0,51629949.0,53208177.0,54638961.0,55874803.0,57081535.0,60426942.0,60522685.0,61943693.0,62829899.0,63737224.0,65707872.0,66766133.0,68848021.0,70195624.0,71835525.0,73518640.0,74889252.0,76174754.0,77501532.0,78623247.0,80941648.0,81636289.0,82482840.0,84580431.0,85122745.0,87636637.0,88221263.0,89954039.0,92046747.0,93418171.0,94434344.0,95841779.0,97549794.0,99123742.0,99825768.0,102275110.0,102955100.0,104181845.0,106088903.0,107473622.0,109116632.0,110851194.0,111520084.0,113272807.0,114801687.0,115937242.0,117729563.0,118952515.0,120706548.0,121743625.0,123588348.0,125355010.0,125705179.0,127674308.0,132279560.0,129949258.0,132019497.0,134009880.0,133874115.0,136377631.0,137215370.0,139040804.0,140056479.0,141411736.0,143021899.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":1433728.3325639132,"lower_bound":1431841.1039273408,"upper_bound":1436084.8189278226,"unit":"ns"},"mean":{"estimate":1433659.2472726142,"lower_bound":1431790.4261602121,"upper_bound":1435688.9343652148,"unit":"ns"},"median":{"estimate":1433286.5909203826,"lower_bound":1431400.2272727273,"upper_bound":1434367.6169354839,"unit":"ns"},"median_abs_dev":{"estimate":5880.539020245778,"lower_bound":4619.467263538332,"upper_bound":7635.766638428525,"unit":"ns"},"slope":{"estimate":1433728.3325639132,"lower_bound":1431841.1039273408,"upper_bound":1436084.8189278226,"unit":"ns"},"change":{"mean":{"estimate":0.043028198803125584,"lower_bound":0.04076624670244193,"upper_bound":0.04510449832467602,"unit":"%"},"median":{"estimate":0.04360178753965793,"lower_bound":0.04181489138643513,"upper_bound":0.0449174390201843,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"scwq/100","report_directory":"/root/fuel-core/target/criterion/reports/scwq/100","iteration_count":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],"measured_values":[59825820.0,59573194.0,59613823.0,59579052.0,59390438.0,59178405.0,60023784.0,59295590.0,59560701.0,59390837.0,58962111.0,59657442.0,59672064.0,59634174.0,59758652.0,59762055.0,59681048.0,59831415.0,59458799.0,59107896.0,59503489.0,59211620.0,59851336.0,59816254.0,60711724.0,59029390.0,59715120.0,59826607.0,59487754.0,59751401.0,59790386.0,59485284.0,59661897.0,59639118.0,59890648.0,59759800.0,59639675.0,59622124.0,59527443.0,60156188.0,59958254.0,59025824.0,59446684.0,59008898.0,59681733.0,59875514.0,59540594.0,59551245.0,59106108.0,59314322.0,59306591.0,59140768.0,59463071.0,59217374.0,59096729.0,59574027.0,60011202.0,59721277.0,59321902.0,59358130.0,59498337.0,59062316.0,58916913.0,58976303.0,59379083.0,58837818.0,59426965.0,58948099.0,59121871.0,59674914.0,59546647.0,59389110.0,60105061.0,59839783.0,59081569.0,59165784.0,59650829.0,59049409.0,59582660.0,59090321.0,59065138.0,59386143.0,59004229.0,59357482.0,59344818.0,59760828.0,59706447.0,59494740.0,59343325.0,59997977.0,59303139.0,59030032.0,59078050.0,59736230.0,59482120.0,59193101.0,58916789.0,59407658.0,59010074.0,59212477.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":14867323.485,"lower_bound":14851024.2595625,"upper_bound":14883905.7475,"unit":"ns"},"mean":{"estimate":14867323.485,"lower_bound":14851024.2595625,"upper_bound":14883905.7475,"unit":"ns"},"median":{"estimate":14871629.75,"lower_bound":14847072.625,"upper_bound":14893298.5,"unit":"ns"},"median_abs_dev":{"estimate":95366.94603189826,"lower_bound":66970.15276104212,"upper_bound":113136.28663267927,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.017097640496309685,"lower_bound":0.015308330054129338,"upper_bound":0.018907873168320703,"unit":"%"},"median":{"estimate":0.017914713142967775,"lower_bound":0.015963444528278116,"upper_bound":0.019556536884428925,"unit":"%"},"change":"Regressed"}} +{"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":[145536709.0,145305798.0,145555235.0,144638985.0,145037663.0,145439588.0,146024356.0,145099212.0,145369464.0,145443008.0,145016804.0,146100401.0,145157866.0,145314699.0,146355190.0,145160258.0,145163473.0,144733082.0,145574654.0,144875219.0,145470169.0,144374080.0,145482556.0,145380265.0,145286193.0,145098174.0,145528846.0,145965526.0,145347292.0,144954855.0,145195704.0,145292397.0,146128417.0,145298939.0,144704466.0,145301986.0,145258829.0,144938438.0,145456930.0,145354560.0,144660845.0,145664407.0,145464319.0,145428869.0,145139277.0,146116085.0,145369583.0,145116469.0,145302501.0,145051716.0,145150927.0,145099846.0,145530699.0,148790009.0,145238242.0,145070784.0,144950310.0,145271755.0,145396339.0,145365166.0,145255433.0,145214300.0,145300342.0,145543825.0,145563760.0,148805068.0,145017110.0,144955678.0,145299534.0,145708772.0,146119243.0,145344936.0,145301705.0,145689313.0,145613036.0,145561240.0,145247571.0,144826989.0,144604617.0,145903931.0,145402377.0,145642488.0,145389902.0,145407711.0,145204453.0,144959738.0,146052852.0,145104467.0,145120759.0,145715509.0,144785655.0,145168509.0,145182008.0,145460662.0,145239999.0,145763992.0,145824785.0,145060613.0,145567759.0,145625907.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":145404549.82,"lower_bound":145296672.69399998,"upper_bound":145531508.775,"unit":"ns"},"mean":{"estimate":145404549.82,"lower_bound":145296672.69399998,"upper_bound":145531508.775,"unit":"ns"},"median":{"estimate":145304149.5,"lower_bound":145258829.0,"upper_bound":145389902.0,"unit":"ns"},"median_abs_dev":{"estimate":304609.801492095,"lower_bound":232903.1124651432,"upper_bound":383553.8022905588,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.01658157468132382,"lower_bound":0.015760941914716792,"upper_bound":0.01754652815729053,"unit":"%"},"median":{"estimate":0.01569309008003761,"lower_bound":0.0151972021580562,"upper_bound":0.016633468569746374,"unit":"%"},"change":"Regressed"}} +{"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":[1459187263.0,1458377021.0,1457716059.0,1458191881.0,1457063643.0,1458231579.0,1459911588.0,1456331989.0,1457466867.0,1457007416.0,1456757945.0,1456373377.0,1458663455.0,1458069607.0,1455079510.0,1457362729.0,1456800145.0,1457863040.0,1457858254.0,1458028516.0,1457450846.0,1457379365.0,1458912709.0,1459597777.0,1458538731.0,1459664662.0,1459998963.0,1458541182.0,1456769920.0,1457761686.0,1457608771.0,1457544136.0,1457182304.0,1455892398.0,1457788532.0,1457052780.0,1458955723.0,1456771296.0,1454173083.0,1457744081.0,1458926332.0,1458580073.0,1459802172.0,1456081654.0,1456528754.0,1458324062.0,1455563688.0,1459013218.0,1459370135.0,1458752762.0,1457667069.0,1459712897.0,1456094261.0,1455846511.0,1456074374.0,1456374019.0,1454748302.0,1455974916.0,1456659941.0,1456841167.0,1457806493.0,1457678121.0,1454959871.0,1457376222.0,1458422182.0,1456188615.0,1459643091.0,1458538263.0,1457057226.0,1460985115.0,1459715559.0,1459867687.0,1458937139.0,1457504028.0,1456304617.0,1458890538.0,1457289349.0,1459688462.0,1456836574.0,1456579503.0,1458300623.0,1455863987.0,1457670811.0,1456892189.0,1457815070.0,1456557760.0,1459803572.0,1456517202.0,1460464245.0,1457569463.0,1457974064.0,1457587034.0,1458942385.0,1457913017.0,1456883783.0,1454254084.0,1458840686.0,1454409625.0,1455688139.0,1459761314.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":1457645848.44,"lower_bound":1457363781.9545,"upper_bound":1457928683.72125,"unit":"ns"},"mean":{"estimate":1457645848.44,"lower_bound":1457363781.9545,"upper_bound":1457928683.72125,"unit":"ns"},"median":{"estimate":1457668940.0,"lower_bound":1457371047.0,"upper_bound":1457885635.5,"unit":"ns"},"median_abs_dev":{"estimate":1485204.9018323421,"lower_bound":1165097.4828153849,"upper_bound":1829016.1292284727,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.008472533145572836,"lower_bound":0.008183857618947233,"upper_bound":0.008757586304743053,"unit":"%"},"median":{"estimate":0.008623461473459049,"lower_bound":0.008306994284562608,"upper_bound":0.00890251483612392,"unit":"%"},"change":"NoChange"}} +{"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":[15256967787.0,15247565026.0,15213600263.0,15186201965.0,15248463954.0,15236273149.0,15225860468.0,15244758419.0,15237746697.0,15235516661.0,15224088294.0,15251621597.0,15213338505.0,15238637976.0,15237513104.0,15231547773.0,15230310188.0,15258287785.0,15231978741.0,15244574079.0,15254545988.0,15233962545.0,15248631101.0,15248170822.0,15232314465.0,15233054061.0,15228929438.0,15256324022.0,15258019251.0,15262963985.0,15243036820.0,15243168383.0,15248757283.0,15210267134.0,15237496738.0,15239933318.0,15239472537.0,15235892566.0,15246926230.0,15235089698.0,15258204826.0,15212746780.0,15250324076.0,15252417410.0,15242953166.0,15250144113.0,15247468719.0,15248215139.0,15228519191.0,15257898408.0,15219949055.0,15249483551.0,15258325116.0,15241542040.0,15212452042.0,15260212107.0,15248289222.0,15240406380.0,15257565539.0,15250920838.0,15248016808.0,15240584443.0,15275348012.0,15233255592.0,15262076135.0,15246460711.0,15249588033.0,15248005581.0,15260710851.0,15276387348.0,15278926061.0,15263628945.0,15227494774.0,15279809369.0,15277505168.0,15242687345.0,15274899431.0,15265761171.0,15250134331.0,15268605026.0,15254181368.0,15240730786.0,15218381086.0,15281467590.0,15262714211.0,15233548995.0,15264381978.0,15246005769.0,15248111833.0,15234546472.0,15238089827.0,15256161974.0,15246841808.0,15270836944.0,15240614511.0,15253205706.0,15253978677.0,15253846930.0,15236220509.0,15269035951.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":15245926345.94,"lower_bound":15242625430.5685,"upper_bound":15249170424.4475,"unit":"ns"},"mean":{"estimate":15245926345.94,"lower_bound":15242625430.5685,"upper_bound":15249170424.4475,"unit":"ns"},"median":{"estimate":15247516872.5,"lower_bound":15242862082.5,"upper_bound":15249025993.5,"unit":"ns"},"median_abs_dev":{"estimate":15144908.473724127,"lower_bound":11522316.285037994,"upper_bound":18236604.110290553,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.003637982787130234,"lower_bound":0.003350281494828472,"upper_bound":0.003934706556569878,"unit":"%"},"median":{"estimate":0.0038132048832981713,"lower_bound":0.0032874300258771694,"upper_bound":0.004111214591873802,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"scwq","benchmarks":["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":[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":[1075384.0,2046232.0,3155256.0,4219631.0,5228375.0,6330616.0,7333055.0,8328165.0,9318559.0,10245564.0,11278531.0,12488637.0,13481878.0,14579521.0,15338756.0,16307404.0,17363625.0,18723449.0,19501365.0,20447453.0,21606575.0,22744408.0,23944587.0,24999832.0,25977522.0,27112635.0,28058557.0,29364245.0,30276226.0,31342297.0,31934575.0,33259995.0,34802383.0,35510687.0,36762368.0,37520056.0,38783271.0,39798116.0,41003027.0,41751274.0,42586577.0,43952725.0,44445249.0,46118822.0,46921825.0,48207095.0,49089404.0,49437245.0,50600030.0,51774161.0,52789222.0,53408452.0,55496750.0,56792249.0,57656040.0,58763853.0,58949557.0,60765295.0,61891819.0,62806323.0,63925444.0,65097975.0,66091066.0,66957980.0,67853294.0,68647616.0,70052716.0,70437120.0,72244797.0,73229776.0,74202814.0,75313998.0,76198336.0,77563812.0,78326146.0,79762056.0,80567325.0,81742713.0,82302121.0,83351367.0,84556848.0,85752918.0,86655986.0,88200869.0,88571740.0,89847719.0,91121149.0,91563599.0,92508481.0,94000603.0,94909771.0,96051920.0,96555575.0,96228878.0,97945738.0,99097629.0,100625152.0,102031728.0,102951366.0,102743188.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":130223.66369624648,"lower_bound":129996.48061372581,"upper_bound":130440.36475010983,"unit":"ns"},"mean":{"estimate":130188.13421365201,"lower_bound":129970.03124194556,"upper_bound":130404.9035441697,"unit":"ns"},"median":{"estimate":130474.66699486302,"lower_bound":130174.29464285714,"upper_bound":130574.50394056848,"unit":"ns"},"median_abs_dev":{"estimate":808.0165370162637,"lower_bound":636.5606431582602,"upper_bound":1132.8091631083958,"unit":"ns"},"slope":{"estimate":130223.66369624648,"lower_bound":129996.48061372581,"upper_bound":130440.36475010983,"unit":"ns"},"change":{"mean":{"estimate":0.029100342650615785,"lower_bound":0.02696663450602587,"upper_bound":0.031249867605476007,"unit":"%"},"median":{"estimate":0.031076968547625317,"lower_bound":0.028506334176940706,"upper_bound":0.03227255088679337,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"swwq/10","report_directory":"/root/fuel-core/target/criterion/reports/swwq/10","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":[1377430.0,2500236.0,3709714.0,4944219.0,6179489.0,7561518.0,8772329.0,10088728.0,11237447.0,12718487.0,13840722.0,15239325.0,16383272.0,17680254.0,18767497.0,20213969.0,21522276.0,22729480.0,23980943.0,25149615.0,26411245.0,27749620.0,28953400.0,30214688.0,31650415.0,32898729.0,33983657.0,35233527.0,36588577.0,37763305.0,39116646.0,40215829.0,41525296.0,42755655.0,44195690.0,45556832.0,46753962.0,48095020.0,49539453.0,50636588.0,51361670.0,53181301.0,54545078.0,55046919.0,56033400.0,57927975.0,59073283.0,60613679.0,61827336.0,63198370.0,64366015.0,65647898.0,66937356.0,67846053.0,68506986.0,70352816.0,71419202.0,73178607.0,74401405.0,74825376.0,76961126.0,78110039.0,78677859.0,80791230.0,81691526.0,83206957.0,84280868.0,85741433.0,86075636.0,87976621.0,89827184.0,90773908.0,92443794.0,92740727.0,94586736.0,95866156.0,96909649.0,98336446.0,100283616.0,100913592.0,102221428.0,103333232.0,104679317.0,105859555.0,106912853.0,108216502.0,109687661.0,110795412.0,111194821.0,112970049.0,113698688.0,115379120.0,116304555.0,117889658.0,119003932.0,119111889.0,122226855.0,123082875.0,125106806.0,126306297.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":1257912.6386375055,"lower_bound":1256284.0069326959,"upper_bound":1259458.0725487084,"unit":"ns"},"mean":{"estimate":1259561.6395495252,"lower_bound":1257308.215560371,"upper_bound":1262621.0132689588,"unit":"ns"},"median":{"estimate":1260197.0817363532,"lower_bound":1258498.132996633,"upper_bound":1261098.6213559322,"unit":"ns"},"median_abs_dev":{"estimate":4478.837430417427,"lower_bound":3430.611184548966,"upper_bound":6540.996284315572,"unit":"ns"},"slope":{"estimate":1257912.6386375055,"lower_bound":1256284.0069326959,"upper_bound":1259458.0725487084,"unit":"ns"},"change":{"mean":{"estimate":0.028727875504550138,"lower_bound":0.025700727218727175,"upper_bound":0.03192547633493896,"unit":"%"},"median":{"estimate":0.029760491527778266,"lower_bound":0.028260811404420758,"upper_bound":0.031187389779139024,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"swwq/100","report_directory":"/root/fuel-core/target/criterion/reports/swwq/100","iteration_count":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],"measured_values":[53130850.0,53139059.0,53235362.0,53143201.0,52798972.0,53278214.0,53449049.0,53240828.0,53085995.0,53031408.0,53032284.0,53159143.0,52884279.0,53107935.0,52558260.0,52877708.0,53087861.0,53400218.0,53237778.0,53176552.0,53200185.0,53219407.0,53170533.0,53568064.0,53317017.0,53148037.0,53208375.0,53031630.0,52991177.0,52400870.0,53428810.0,53037989.0,53155960.0,53104161.0,53236450.0,52965859.0,52959977.0,53167954.0,53059436.0,53074047.0,52961194.0,52435015.0,53083011.0,53001246.0,53124218.0,53154583.0,52984749.0,52741270.0,53099858.0,53115102.0,53025663.0,53132038.0,53036920.0,53055409.0,53022919.0,52924586.0,53303035.0,52907654.0,52587188.0,53157234.0,53224072.0,52376943.0,52743923.0,52181340.0,52943964.0,52981740.0,52941161.0,53032508.0,53239896.0,53172578.0,53151976.0,53051217.0,52992991.0,53111696.0,53018830.0,53187796.0,52739643.0,53141791.0,53033873.0,53044050.0,52894612.0,52489184.0,53020227.0,52961353.0,52758697.0,52692716.0,52847040.0,53213046.0,53017600.0,52968533.0,53005136.0,53137599.0,52839698.0,53113108.0,53098639.0,52852760.0,53074423.0,53386598.0,53068524.0,53129213.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":13258086.2,"lower_bound":13246702.1969375,"upper_bound":13269000.765,"unit":"ns"},"mean":{"estimate":13258086.2,"lower_bound":13246702.1969375,"upper_bound":13269000.765,"unit":"ns"},"median":{"estimate":13265995.0,"lower_bound":13257907.5,"upper_bound":13276983.75,"unit":"ns"},"median_abs_dev":{"estimate":35872.988963127136,"lower_bound":27377.505788952112,"upper_bound":47526.224756240845,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.014893513511935241,"lower_bound":0.01358245532207793,"upper_bound":0.016197639746262642,"unit":"%"},"median":{"estimate":0.015161862506294588,"lower_bound":0.01412892632365259,"upper_bound":0.016601165000651452,"unit":"%"},"change":"Regressed"}} +{"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":[127143817.0,127437159.0,127188142.0,126469561.0,127219689.0,126749750.0,126782034.0,127380174.0,127344031.0,127789680.0,127316208.0,127488355.0,126650538.0,127288456.0,126655403.0,127009304.0,127493978.0,127463455.0,127530848.0,127215828.0,127089986.0,126769676.0,127163925.0,127060874.0,127126122.0,127139772.0,127178752.0,127334786.0,127147253.0,126608865.0,126673023.0,126686206.0,127221613.0,126295032.0,127439859.0,127118105.0,127343416.0,126844416.0,127186001.0,127562139.0,127114615.0,126712973.0,126455473.0,127485110.0,126786189.0,126483599.0,126521294.0,127368508.0,126816565.0,127285399.0,127315866.0,126393252.0,126285508.0,126365711.0,127147300.0,127418466.0,126478124.0,127058902.0,127282061.0,127320263.0,127220013.0,126590845.0,127240585.0,127114468.0,126944901.0,126988301.0,127105949.0,126793889.0,127279680.0,127072407.0,126202558.0,127810124.0,127059012.0,127324197.0,126331452.0,127461529.0,126370828.0,126112426.0,127079353.0,126743277.0,126784431.0,127445525.0,127414068.0,126638138.0,126432856.0,127035182.0,127608330.0,127335670.0,126895862.0,126949639.0,126368582.0,127308960.0,127433793.0,126325006.0,127506910.0,127030856.0,127348800.0,127447769.0,126695385.0,127266627.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":127028195.92,"lower_bound":126950358.4725,"upper_bound":127103905.39675,"unit":"ns"},"mean":{"estimate":127028195.92,"lower_bound":126950358.4725,"upper_bound":127103905.39675,"unit":"ns"},"median":{"estimate":127116360.0,"lower_bound":127035182.0,"upper_bound":127200914.5,"unit":"ns"},"median_abs_dev":{"estimate":442928.96603643894,"lower_bound":281332.2406053543,"upper_bound":507634.0766876936,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.018283085969102997,"lower_bound":0.01707420923428221,"upper_bound":0.019450284054764802,"unit":"%"},"median":{"estimate":0.019531030769011526,"lower_bound":0.018521919564287836,"upper_bound":0.02046010083212413,"unit":"%"},"change":"Regressed"}} +{"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":[1268589063.0,1263484981.0,1264049028.0,1260330209.0,1261436274.0,1262233561.0,1268387699.0,1264238066.0,1268223897.0,1264770107.0,1266272197.0,1265813835.0,1265877231.0,1268379302.0,1268438927.0,1263314730.0,1266026535.0,1264175462.0,1265517331.0,1261944733.0,1264010617.0,1266308240.0,1264594638.0,1262190944.0,1262116288.0,1265071930.0,1266703541.0,1268002302.0,1264847889.0,1265393766.0,1264697584.0,1265474596.0,1268855455.0,1264114902.0,1263542888.0,1262890544.0,1262732508.0,1264705630.0,1265252204.0,1262834037.0,1261241501.0,1265533358.0,1267149361.0,1262545461.0,1265466810.0,1265499235.0,1260073990.0,1267104350.0,1263050090.0,1264637453.0,1263552251.0,1264439146.0,1262826087.0,1262449502.0,1260291722.0,1259437211.0,1260593416.0,1261554624.0,1261294931.0,1262556788.0,1262145157.0,1265633051.0,1265179531.0,1266973185.0,1266657787.0,1267128068.0,1264202888.0,1264564801.0,1264815945.0,1259905742.0,1265856958.0,1267026750.0,1263372985.0,1264599578.0,1262590781.0,1264364754.0,1262166269.0,1265409038.0,1265120555.0,1262273600.0,1263199454.0,1267411288.0,1266098276.0,1265521224.0,1265415878.0,1264472042.0,1264385032.0,1269140615.0,1267924598.0,1263815569.0,1262082617.0,1264054319.0,1265612281.0,1265052131.0,1262410696.0,1265403147.0,1265450813.0,1265562226.0,1264503932.0,1265353765.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":1264499982.84,"lower_bound":1264072851.78625,"upper_bound":1264921904.68,"unit":"ns"},"mean":{"estimate":1264499982.84,"lower_bound":1264072851.78625,"upper_bound":1264921904.68,"unit":"ns"},"median":{"estimate":1264618515.5,"lower_bound":1264202888.0,"upper_bound":1265186379.5,"unit":"ns"},"median_abs_dev":{"estimate":2010261.0108107328,"lower_bound":1370080.161381216,"upper_bound":2793583.0700039864,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.010688460119437693,"lower_bound":0.010166338045326523,"upper_bound":0.01119812389868996,"unit":"%"},"median":{"estimate":0.010885967358684745,"lower_bound":0.010441922635009204,"upper_bound":0.011401252916088733,"unit":"%"},"change":"Regressed"}} +{"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":[13319124097.0,13295891402.0,13286866777.0,13266078587.0,13261647585.0,13311208660.0,13265195529.0,13266235260.0,13313111764.0,13297589598.0,13271572661.0,13251750624.0,13291595737.0,13258818187.0,13300322213.0,13327113295.0,13265082934.0,13343190811.0,13297623664.0,13309906366.0,13302681554.0,13319220954.0,13244085622.0,13265759421.0,13310612843.0,13313579124.0,13261603233.0,13266646353.0,13294573217.0,13255325457.0,13275211324.0,13317202980.0,13258235343.0,13275411856.0,13291915102.0,13266700968.0,13281693423.0,13275794641.0,13253366180.0,13302178526.0,13280263742.0,13298479159.0,13251560404.0,13305699468.0,13303010270.0,13258327763.0,13326723261.0,13304257779.0,13264342275.0,13300751131.0,13302233911.0,13263008405.0,13271132361.0,13284931824.0,13288042395.0,13266065108.0,13293467770.0,13301713973.0,13280434715.0,13266745794.0,13266648513.0,13275828918.0,13320239209.0,13290191900.0,13322630296.0,13256510728.0,13249320766.0,13270723221.0,13266843559.0,13271797390.0,13268320595.0,13276124823.0,13298412963.0,13317254935.0,13317177317.0,13286823458.0,13317535797.0,13276704433.0,13294075481.0,13277295353.0,13266730125.0,13277728359.0,13280538303.0,13300113617.0,13303282907.0,13302859591.0,13275250055.0,13293591075.0,13294061732.0,13312436093.0,13263766364.0,13284428751.0,13291115746.0,13278500698.0,13284594297.0,13286773557.0,13298639288.0,13287395622.0,13295577079.0,13287224772.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":13286279830.66,"lower_bound":13282198547.9075,"upper_bound":13290398741.97175,"unit":"ns"},"mean":{"estimate":13286279830.66,"lower_bound":13282198547.9075,"upper_bound":13290398741.97175,"unit":"ns"},"median":{"estimate":13286798507.5,"lower_bound":13277728359.0,"upper_bound":13293467770.0,"unit":"ns"},"median_abs_dev":{"estimate":23822690.658062696,"lower_bound":18994634.237077832,"upper_bound":29992164.987632632,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.012162447869221493,"lower_bound":0.011578880334738768,"upper_bound":0.012751962444014104,"unit":"%"},"median":{"estimate":0.011732256341093317,"lower_bound":0.010762768311977755,"upper_bound":0.01239755521319319,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"swwq","benchmarks":["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":[218255.0,140179.0,138047.0,140277.0,143913.0,137396.0,138653.0,145069.0,142775.0,137836.0,142340.0,141539.0,141599.0,142458.0,137361.0,139767.0,143740.0,142310.0,138407.0,144714.0,137909.0,137514.0,143561.0,138489.0,142505.0,188604.0,145620.0,138345.0,137732.0,142272.0,138010.0,140205.0,141198.0,136368.0,142400.0,137245.0,141882.0,142261.0,141005.0,143416.0,141414.0,138513.0,142034.0,137319.0,143485.0,145552.0,143405.0,159433.0,144990.0,143274.0,142949.0,140007.0,140963.0,144639.0,140648.0,140127.0,142408.0,142294.0,136394.0,142355.0,140125.0,140188.0,138027.0,142689.0,138587.0,140499.0,142347.0,137989.0,142795.0,142536.0,142400.0,156139.0,149595.0,141726.0,142090.0,138354.0,141227.0,140185.0,139409.0,142500.0,140943.0,141740.0,142684.0,141764.0,142762.0,142505.0,144045.0,142746.0,142452.0,141095.0,141535.0,141569.0,141948.0,142699.0,142807.0,143068.0,142668.0,142392.0,140494.0,137874.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":142845.76,"lower_bound":141305.48775,"upper_bound":144974.04625,"unit":"ns"},"mean":{"estimate":142845.76,"lower_bound":141305.48775,"upper_bound":144974.04625,"unit":"ns"},"median":{"estimate":141915.0,"lower_bound":141227.0,"upper_bound":142369.5,"unit":"ns"},"median_abs_dev":{"estimate":2157.924261689186,"lower_bound":1364.733275771141,"upper_bound":2756.1533510684967,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.048534841017287444,"lower_bound":0.035202941563080584,"upper_bound":0.06692894637369459,"unit":"%"},"median":{"estimate":0.04360391365255856,"lower_bound":0.03738804110412364,"upper_bound":0.05128034389126879,"unit":"%"},"change":"Regressed"}} +{"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":[161015.0,142258.0,141953.0,140960.0,138057.0,142504.0,146093.0,143061.0,153218.0,141588.0,141919.0,142278.0,144913.0,138427.0,141856.0,140933.0,140847.0,141953.0,146836.0,138895.0,142926.0,142667.0,142427.0,141512.0,142362.0,141372.0,141540.0,140764.0,141647.0,136343.0,137974.0,139895.0,142567.0,140659.0,140920.0,139106.0,144275.0,142649.0,141344.0,142743.0,139051.0,142428.0,142890.0,142158.0,142727.0,142803.0,142406.0,142298.0,141242.0,142288.0,142836.0,142307.0,155611.0,140850.0,142023.0,137005.0,144464.0,137551.0,141079.0,137136.0,137206.0,141277.0,141152.0,142197.0,142635.0,138863.0,142513.0,136881.0,137401.0,139312.0,142645.0,143970.0,143408.0,137266.0,138033.0,141916.0,141367.0,137293.0,137282.0,146082.0,140758.0,142511.0,140390.0,141032.0,142334.0,139103.0,141283.0,137244.0,142140.0,141040.0,140798.0,137176.0,141754.0,143541.0,144490.0,141862.0,141779.0,143159.0,137564.0,141751.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":141668.17,"lower_bound":141028.5285,"upper_bound":142386.8115,"unit":"ns"},"mean":{"estimate":141668.17,"lower_bound":141028.5285,"upper_bound":142386.8115,"unit":"ns"},"median":{"estimate":141766.5,"lower_bound":141283.0,"upper_bound":142158.0,"unit":"ns"},"median_abs_dev":{"estimate":1393.6439752578735,"lower_bound":1111.2086802721024,"upper_bound":2100.8441627025604,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0339730249761685,"lower_bound":0.021697586160509787,"upper_bound":0.04466271298172955,"unit":"%"},"median":{"estimate":0.04193722645440823,"lower_bound":0.03797045477907157,"upper_bound":0.04513171005337037,"unit":"%"},"change":"Regressed"}} +{"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":[154517.0,137576.0,140765.0,136567.0,170451.0,142113.0,141125.0,141598.0,140183.0,140880.0,139828.0,137623.0,138211.0,143105.0,141637.0,142224.0,137095.0,139805.0,146261.0,144475.0,145822.0,140327.0,144659.0,140722.0,143531.0,144378.0,143167.0,145086.0,138849.0,142730.0,141015.0,137330.0,136833.0,136729.0,137620.0,142718.0,142335.0,140108.0,142147.0,143339.0,140840.0,144655.0,141256.0,140322.0,144156.0,143554.0,139611.0,143434.0,144570.0,141896.0,141267.0,143265.0,142372.0,141405.0,142567.0,142895.0,141187.0,142198.0,141210.0,141443.0,140909.0,141282.0,141388.0,140790.0,141693.0,138322.0,141156.0,141246.0,137533.0,141692.0,137894.0,140963.0,139290.0,139494.0,139735.0,144958.0,144210.0,139916.0,142881.0,141490.0,139465.0,143441.0,142198.0,139430.0,144897.0,144505.0,142093.0,154432.0,144647.0,139435.0,142662.0,141442.0,136109.0,140600.0,140827.0,141399.0,139616.0,139188.0,142564.0,140653.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":141860.32,"lower_bound":141138.3785,"upper_bound":142734.63075,"unit":"ns"},"mean":{"estimate":141860.32,"lower_bound":141138.3785,"upper_bound":142734.63075,"unit":"ns"},"median":{"estimate":141393.5,"lower_bound":141015.0,"upper_bound":141896.0,"unit":"ns"},"median_abs_dev":{"estimate":2273.567059636116,"lower_bound":1641.2381708621979,"upper_bound":2828.0594497919083,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.039589464950466224,"lower_bound":0.030373263374133586,"upper_bound":0.047383692344010284,"unit":"%"},"median":{"estimate":0.035402280333042935,"lower_bound":0.032577654760335584,"upper_bound":0.03870925124682101,"unit":"%"},"change":"Regressed"}} +{"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":[210443.0,144761.0,143002.0,145557.0,141922.0,143186.0,143572.0,144777.0,138656.0,143693.0,144023.0,142435.0,143015.0,143376.0,139486.0,137858.0,141737.0,140860.0,141224.0,142144.0,137961.0,137598.0,137133.0,139727.0,142491.0,142879.0,137385.0,143838.0,142528.0,142818.0,142527.0,142435.0,142383.0,138929.0,138429.0,142314.0,142233.0,142024.0,141318.0,141910.0,137372.0,139462.0,142314.0,139263.0,142203.0,141952.0,140823.0,141184.0,142751.0,138066.0,137676.0,138060.0,141618.0,138929.0,141940.0,141942.0,138711.0,143439.0,141515.0,143146.0,139220.0,140909.0,142398.0,142740.0,142334.0,142524.0,141829.0,137721.0,137050.0,137694.0,145128.0,141887.0,142690.0,141766.0,141849.0,141980.0,147695.0,143235.0,140872.0,142649.0,141799.0,142923.0,144427.0,142149.0,145126.0,143915.0,143659.0,143099.0,142146.0,143474.0,139013.0,137434.0,139871.0,142649.0,136971.0,137698.0,137080.0,138149.0,142189.0,141737.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":142066.31,"lower_bound":141029.48,"upper_bound":143728.30125,"unit":"ns"},"mean":{"estimate":142066.31,"lower_bound":141029.48,"upper_bound":143728.30125,"unit":"ns"},"median":{"estimate":141966.0,"lower_bound":141766.0,"upper_bound":142324.0,"unit":"ns"},"median_abs_dev":{"estimate":1687.1987700462341,"lower_bound":1126.0346800088882,"upper_bound":2742.8099513053894,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.029257850821619913,"lower_bound":0.01761768344527916,"upper_bound":0.04233274183629185,"unit":"%"},"median":{"estimate":0.02935823720063513,"lower_bound":0.02475277931330999,"upper_bound":0.03366815597233595,"unit":"%"},"change":"Regressed"}} +{"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":[164309.0,145028.0,143174.0,141507.0,142865.0,139538.0,144048.0,144309.0,143915.0,143310.0,142873.0,145803.0,145447.0,144411.0,144472.0,144598.0,138901.0,139015.0,144924.0,143970.0,143105.0,138736.0,143222.0,139213.0,143730.0,143822.0,139388.0,142060.0,143740.0,142959.0,142668.0,138210.0,139477.0,142981.0,138905.0,142947.0,138945.0,142231.0,141092.0,141709.0,139829.0,145476.0,140961.0,144144.0,142350.0,143973.0,140265.0,138825.0,139341.0,147099.0,143550.0,143158.0,138498.0,138832.0,143415.0,139130.0,143199.0,144026.0,139295.0,139810.0,142407.0,144006.0,138627.0,145012.0,142970.0,144148.0,143094.0,143076.0,142608.0,143507.0,140353.0,139852.0,143301.0,143246.0,141716.0,142947.0,137946.0,140153.0,137997.0,139923.0,144160.0,146137.0,142791.0,143734.0,143264.0,145541.0,143487.0,143176.0,143495.0,141926.0,142436.0,143543.0,143252.0,144420.0,142536.0,141011.0,142499.0,142572.0,142577.0,144715.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":142548.94,"lower_bound":141995.177,"upper_bound":143196.63225,"unit":"ns"},"mean":{"estimate":142548.94,"lower_bound":141995.177,"upper_bound":143196.63225,"unit":"ns"},"median":{"estimate":142964.5,"lower_bound":142556.5,"upper_bound":143222.0,"unit":"ns"},"median_abs_dev":{"estimate":1751.6918689012527,"lower_bound":1179.4082790613174,"upper_bound":2544.882854819298,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.028779481012075392,"lower_bound":0.02071213437067851,"upper_bound":0.03637831109601952,"unit":"%"},"median":{"estimate":0.03307006387837097,"lower_bound":0.029696110166830936,"upper_bound":0.03660984038892079,"unit":"%"},"change":"Regressed"}} +{"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":[167538.0,148032.0,141901.0,140899.0,145932.0,141589.0,147147.0,143019.0,147234.0,147046.0,141939.0,142987.0,143682.0,146966.0,148490.0,143569.0,256994.0,149292.0,146163.0,147749.0,149273.0,148094.0,141897.0,146757.0,143510.0,147342.0,146578.0,145163.0,148066.0,147747.0,146885.0,145010.0,146042.0,147177.0,144158.0,147666.0,147093.0,145738.0,141492.0,142771.0,141056.0,142604.0,147469.0,143733.0,147926.0,142811.0,143201.0,143270.0,156039.0,143449.0,142935.0,146871.0,140311.0,142476.0,146180.0,145148.0,141793.0,144343.0,147263.0,145838.0,146009.0,145953.0,147733.0,146808.0,145724.0,146531.0,146875.0,149501.0,148633.0,150114.0,146131.0,141698.0,146689.0,144865.0,146388.0,141475.0,147714.0,145660.0,143263.0,146374.0,147144.0,141170.0,141342.0,145731.0,145886.0,140973.0,146190.0,146365.0,146145.0,146854.0,143105.0,141349.0,147193.0,154689.0,148735.0,145775.0,167749.0,149352.0,149802.0,142374.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":147134.04,"lower_bound":145421.04849999998,"upper_bound":149853.8675,"unit":"ns"},"mean":{"estimate":147134.04,"lower_bound":145421.04849999998,"upper_bound":149853.8675,"unit":"ns"},"median":{"estimate":146138.0,"lower_bound":145731.0,"upper_bound":146689.0,"unit":"ns"},"median_abs_dev":{"estimate":2734.655651450157,"lower_bound":1710.9203696250916,"upper_bound":3788.784232735634,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.05155418557174074,"lower_bound":0.037218124545860744,"upper_bound":0.07124452335406845,"unit":"%"},"median":{"estimate":0.045848645437857716,"lower_bound":0.04115703955004024,"upper_bound":0.05092791630839777,"unit":"%"},"change":"Regressed"}} +{"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":[180435.0,150526.0,148521.0,148374.0,214436.0,144443.0,147405.0,148154.0,150342.0,143116.0,146429.0,145377.0,143973.0,147810.0,145125.0,144468.0,144828.0,144000.0,147355.0,142872.0,148711.0,148192.0,145164.0,148733.0,146942.0,145620.0,149093.0,147513.0,149201.0,148144.0,146543.0,144913.0,147964.0,146632.0,142064.0,146156.0,147053.0,150020.0,142517.0,146925.0,149482.0,143818.0,145664.0,150136.0,148123.0,148020.0,149223.0,144309.0,151375.0,147906.0,142711.0,150489.0,148666.0,147606.0,145873.0,149061.0,148079.0,148810.0,149051.0,147471.0,147705.0,147946.0,148189.0,148029.0,148230.0,150862.0,148211.0,143371.0,144644.0,177604.0,147898.0,149363.0,148406.0,145745.0,146833.0,142944.0,147777.0,148562.0,143100.0,147362.0,149079.0,147001.0,151609.0,148988.0,147835.0,144871.0,145970.0,144040.0,145020.0,143858.0,147553.0,146898.0,147130.0,153048.0,148637.0,147864.0,142361.0,186943.0,177353.0,163610.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":149244.11,"lower_bound":147563.53575,"upper_bound":151345.66175,"unit":"ns"},"mean":{"estimate":149244.11,"lower_bound":147563.53575,"upper_bound":151345.66175,"unit":"ns"},"median":{"estimate":147793.5,"lower_bound":147130.0,"upper_bound":148079.0,"unit":"ns"},"median_abs_dev":{"estimate":2054.883563518524,"lower_bound":1478.152173757553,"upper_bound":3169.0574437379837,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.045833783859635435,"lower_bound":0.029718135015004983,"upper_bound":0.06427670363996665,"unit":"%"},"median":{"estimate":0.042785729153069774,"lower_bound":0.0381066676079207,"upper_bound":0.04594770226171474,"unit":"%"},"change":"Regressed"}} +{"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":[173426.0,152729.0,151977.0,143945.0,152876.0,150192.0,149590.0,149692.0,148861.0,149339.0,152947.0,153584.0,151009.0,150405.0,148919.0,149404.0,146447.0,144580.0,147611.0,151734.0,149379.0,149350.0,149716.0,149546.0,152223.0,149821.0,150764.0,149613.0,150280.0,147774.0,151475.0,150582.0,149289.0,153154.0,150395.0,147699.0,149635.0,150634.0,146067.0,152851.0,146152.0,146058.0,145113.0,148596.0,152910.0,149965.0,145822.0,151891.0,152084.0,146085.0,150016.0,148113.0,146387.0,152475.0,151404.0,150440.0,150896.0,149401.0,352376.0,153797.0,152986.0,149183.0,150099.0,208464.0,149893.0,145528.0,145156.0,147948.0,147193.0,144156.0,180280.0,145279.0,148952.0,145823.0,147555.0,254412.0,150631.0,149022.0,153954.0,150683.0,152919.0,146532.0,151922.0,149938.0,156798.0,151779.0,149501.0,151704.0,149700.0,152329.0,153281.0,151258.0,149391.0,149991.0,149534.0,149534.0,149720.0,146857.0,189462.0,146510.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":154253.52,"lower_bound":150442.31825,"upper_bound":159604.42425,"unit":"ns"},"mean":{"estimate":154253.52,"lower_bound":150442.31825,"upper_bound":159604.42425,"unit":"ns"},"median":{"estimate":149857.0,"lower_bound":149534.0,"upper_bound":150417.5,"unit":"ns"},"median_abs_dev":{"estimate":2839.920249581337,"lower_bound":1596.7601716518402,"upper_bound":3610.149468407031,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.07322064251923144,"lower_bound":0.044285866052036174,"upper_bound":0.11120776364062154,"unit":"%"},"median":{"estimate":0.04639243644082591,"lower_bound":0.04318474149362203,"upper_bound":0.05099302575857112,"unit":"%"},"change":"Regressed"}} +{"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":[179592.0,153671.0,153192.0,153222.0,152374.0,147595.0,147604.0,148376.0,147836.0,151735.0,152592.0,153375.0,152131.0,152232.0,151805.0,151077.0,157381.0,154175.0,153008.0,152357.0,151059.0,152879.0,182217.0,154901.0,151755.0,151469.0,152725.0,152269.0,147021.0,152290.0,152219.0,153162.0,151057.0,147372.0,150174.0,146767.0,147484.0,151792.0,150886.0,152588.0,151697.0,151124.0,151790.0,151026.0,147827.0,153471.0,153108.0,183853.0,151887.0,151042.0,150958.0,150434.0,153242.0,152740.0,152254.0,148689.0,151191.0,152209.0,152000.0,152458.0,151230.0,151418.0,150226.0,146780.0,146307.0,151943.0,151797.0,150244.0,152808.0,151192.0,151574.0,151110.0,150520.0,147147.0,147364.0,151822.0,151016.0,146760.0,150232.0,151105.0,145764.0,147680.0,152043.0,151473.0,152253.0,151497.0,151747.0,151531.0,151481.0,152380.0,151401.0,151993.0,150936.0,153493.0,154644.0,147555.0,152079.0,154106.0,147422.0,149093.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":152035.82,"lower_bound":151053.429,"upper_bound":153259.7005,"unit":"ns"},"mean":{"estimate":152035.82,"lower_bound":151053.429,"upper_bound":153259.7005,"unit":"ns"},"median":{"estimate":151716.0,"lower_bound":151230.0,"upper_bound":151943.0,"unit":"ns"},"median_abs_dev":{"estimate":1261.6925776004791,"lower_bound":980.7398825883865,"upper_bound":1982.2361648082733,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.029421658207988033,"lower_bound":0.01410200374010868,"upper_bound":0.04431955046219114,"unit":"%"},"median":{"estimate":0.04405272701623031,"lower_bound":0.03990597458846756,"upper_bound":0.04785603843392794,"unit":"%"},"change":"Regressed"}} +{"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":[182401.0,156324.0,156003.0,155455.0,155204.0,156373.0,152049.0,151706.0,155964.0,155471.0,155809.0,156279.0,156179.0,157344.0,158922.0,155825.0,155888.0,152315.0,152420.0,156248.0,153050.0,152805.0,155062.0,181886.0,156331.0,153373.0,158292.0,156075.0,151270.0,155399.0,155586.0,150232.0,184088.0,152327.0,184660.0,155893.0,158413.0,154559.0,154337.0,152150.0,159006.0,154878.0,156137.0,155309.0,157732.0,152921.0,156033.0,152014.0,155934.0,157306.0,156162.0,154938.0,156317.0,155656.0,196127.0,159940.0,154854.0,151944.0,151618.0,151448.0,155597.0,193222.0,156577.0,162035.0,155968.0,153725.0,150807.0,155720.0,156031.0,155680.0,154578.0,153527.0,237722.0,156045.0,158845.0,156295.0,155920.0,155132.0,157298.0,155721.0,155936.0,155141.0,183344.0,152123.0,151310.0,156778.0,156628.0,153445.0,154319.0,156681.0,158961.0,156430.0,156701.0,155196.0,158730.0,270658.0,158030.0,154945.0,154657.0,154278.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":159469.77,"lower_bound":156713.03775,"upper_bound":162929.34125,"unit":"ns"},"mean":{"estimate":159469.77,"lower_bound":156713.03775,"upper_bound":162929.34125,"unit":"ns"},"median":{"estimate":155890.5,"lower_bound":155471.0,"upper_bound":156054.0,"unit":"ns"},"median_abs_dev":{"estimate":1887.3497664928436,"lower_bound":1117.880380153656,"upper_bound":3034.140846133232,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.05446145553316328,"lower_bound":0.03254384437657865,"upper_bound":0.07989987032788581,"unit":"%"},"median":{"estimate":0.03903794819157058,"lower_bound":0.03515519635560804,"upper_bound":0.04184256933682473,"unit":"%"},"change":"Regressed"}} +{"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":[849,1698,2547,3396,4245,5094,5943,6792,7641,8490,9339,10188,11037,11886,12735,13584,14433,15282,16131,16980,17829,18678,19527,20376,21225,22074,22923,23772,24621,25470,26319,27168,28017,28866,29715,30564,31413,32262,33111,33960,34809,35658,36507,37356,38205,39054,39903,40752,41601,42450,43299,44148,44997,45846,46695,47544,48393,49242,50091,50940,51789,52638,53487,54336,55185,56034,56883,57732,58581,59430,60279,61128,61977,62826,63675,64524,65373,66222,67071,67920,68769,69618,70467,71316,72165,73014,73863,74712,75561,76410,77259,78108,78957,79806,80655,81504,82353,83202,84051,84900],"measured_values":[839025.0,1623141.0,2454742.0,3291160.0,4059792.0,4864962.0,5686348.0,6547378.0,7305759.0,8173496.0,8901970.0,9769104.0,10556687.0,11438569.0,12276327.0,13025017.0,13802412.0,14698567.0,15465450.0,16343892.0,17026424.0,17887842.0,18708383.0,19573033.0,20451362.0,21154321.0,22153734.0,22823683.0,23441039.0,24405633.0,25193677.0,25916994.0,26756765.0,27597380.0,28325991.0,29315066.0,30075047.0,30875675.0,31802635.0,32499736.0,33280615.0,34220568.0,34867151.0,35705768.0,36579025.0,37685069.0,38026964.0,39009335.0,40090275.0,40602044.0,41603264.0,42293845.0,42917366.0,43886721.0,44682996.0,45319095.0,46183080.0,47046155.0,47779897.0,48677054.0,49803607.0,50330322.0,51049275.0,52104152.0,52548964.0,53467688.0,54428060.0,55129395.0,55876994.0,56829227.0,57611552.0,58478490.0,59262955.0,60291934.0,60790180.0,61867685.0,62476937.0,63253082.0,64139626.0,64846408.0,65852314.0,66633203.0,67370131.0,68230818.0,69027703.0,69685617.0,70611680.0,71910178.0,72387798.0,72998764.0,74057040.0,74526934.0,75525239.0,76403264.0,77108162.0,78351021.0,79186669.0,79741039.0,80602303.0,81172588.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":957.013291674086,"lower_bound":956.4103204530744,"upper_bound":957.6382376074782,"unit":"ns"},"mean":{"estimate":957.8898828814189,"lower_bound":957.0935583887793,"upper_bound":958.8290165042199,"unit":"ns"},"median":{"estimate":956.8283469075621,"lower_bound":956.2736679830944,"upper_bound":957.4076656161462,"unit":"ns"},"median_abs_dev":{"estimate":2.668743205837081,"lower_bound":1.8633157875138524,"upper_bound":3.356944513776115,"unit":"ns"},"slope":{"estimate":957.013291674086,"lower_bound":956.4103204530744,"upper_bound":957.6382376074782,"unit":"ns"},"change":{"mean":{"estimate":0.4820435987766507,"lower_bound":0.4799073673739598,"upper_bound":0.4840875518717415,"unit":"%"},"median":{"estimate":0.48109593405325524,"lower_bound":0.4798904448066672,"upper_bound":0.48279738650089377,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"ldc/10","report_directory":"/root/fuel-core/target/criterion/reports/ldc/10","iteration_count":[848,1696,2544,3392,4240,5088,5936,6784,7632,8480,9328,10176,11024,11872,12720,13568,14416,15264,16112,16960,17808,18656,19504,20352,21200,22048,22896,23744,24592,25440,26288,27136,27984,28832,29680,30528,31376,32224,33072,33920,34768,35616,36464,37312,38160,39008,39856,40704,41552,42400,43248,44096,44944,45792,46640,47488,48336,49184,50032,50880,51728,52576,53424,54272,55120,55968,56816,57664,58512,59360,60208,61056,61904,62752,63600,64448,65296,66144,66992,67840,68688,69536,70384,71232,72080,72928,73776,74624,75472,76320,77168,78016,78864,79712,80560,81408,82256,83104,83952,84800],"measured_values":[861402.0,1634690.0,2419655.0,3233166.0,4053480.0,4833291.0,5708244.0,6533863.0,7268988.0,8141324.0,9015978.0,9693071.0,10687394.0,11329730.0,12113537.0,13087884.0,13764479.0,14542537.0,15334324.0,16321403.0,17331318.0,18124814.0,18650055.0,19303293.0,20314932.0,21060790.0,21766320.0,22598377.0,23660419.0,24210650.0,25279020.0,26017210.0,26563140.0,27440771.0,28309007.0,29003072.0,30125948.0,30809372.0,31352685.0,32258921.0,33263442.0,33822572.0,34954809.0,35897226.0,36181463.0,37199464.0,37999614.0,38776001.0,39856333.0,40604898.0,41102484.0,42118093.0,42967063.0,43571761.0,44490495.0,45599135.0,45862040.0,47110366.0,47978747.0,48334188.0,49371874.0,50266712.0,50740390.0,51900915.0,52852506.0,53088699.0,54432830.0,55481101.0,55542105.0,56659522.0,57531830.0,57945973.0,59054896.0,59986275.0,60404828.0,61455832.0,62589186.0,62767472.0,63917844.0,64964828.0,65342150.0,66418352.0,67225734.0,67561220.0,68810177.0,69728856.0,69994587.0,71203006.0,72059025.0,72617895.0,73669238.0,74719599.0,74960416.0,76413479.0,77251958.0,77246247.0,78666976.0,79247732.0,79891739.0,80949442.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":954.1641283169432,"lower_bound":953.2788330333825,"upper_bound":955.0630474803494,"unit":"ns"},"mean":{"estimate":955.8337064934087,"lower_bound":954.4727717514736,"upper_bound":957.5403931823867,"unit":"ns"},"median":{"estimate":954.614336154273,"lower_bound":953.6367924528302,"upper_bound":955.9261059408465,"unit":"ns"},"median_abs_dev":{"estimate":5.015216658722216,"lower_bound":3.7614179702005366,"upper_bound":6.15340329457677,"unit":"ns"},"slope":{"estimate":954.1641283169432,"lower_bound":953.2788330333825,"upper_bound":955.0630474803494,"unit":"ns"},"change":{"mean":{"estimate":0.46153527829142726,"lower_bound":0.4590694669971301,"upper_bound":0.46444666890525604,"unit":"%"},"median":{"estimate":0.4606856060163529,"lower_bound":0.45934309328117795,"upper_bound":0.4626527771151785,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"ldc/100","report_directory":"/root/fuel-core/target/criterion/reports/ldc/100","iteration_count":[804,1608,2412,3216,4020,4824,5628,6432,7236,8040,8844,9648,10452,11256,12060,12864,13668,14472,15276,16080,16884,17688,18492,19296,20100,20904,21708,22512,23316,24120,24924,25728,26532,27336,28140,28944,29748,30552,31356,32160,32964,33768,34572,35376,36180,36984,37788,38592,39396,40200,41004,41808,42612,43416,44220,45024,45828,46632,47436,48240,49044,49848,50652,51456,52260,53064,53868,54672,55476,56280,57084,57888,58692,59496,60300,61104,61908,62712,63516,64320,65124,65928,66732,67536,68340,69144,69948,70752,71556,72360,73164,73968,74772,75576,76380,77184,77988,78792,79596,80400],"measured_values":[818807.0,1603271.0,2423247.0,3214970.0,3987065.0,4823927.0,5617185.0,6413695.0,7223812.0,8003078.0,8788204.0,9601171.0,10367965.0,11112732.0,11969063.0,12858035.0,13685525.0,14539855.0,15300117.0,15963111.0,16852288.0,17672351.0,18347131.0,19223583.0,20063639.0,20696474.0,21582772.0,22429445.0,23134770.0,23989821.0,24817576.0,25511195.0,26114212.0,27025273.0,27592749.0,28458157.0,29355633.0,29914221.0,30812135.0,31770208.0,32304864.0,33179799.0,33993079.0,34649315.0,35351480.0,36678928.0,37431119.0,38595046.0,39201203.0,39812999.0,41257672.0,41752275.0,42204802.0,43258349.0,44107248.0,44575162.0,45594067.0,46477385.0,47032914.0,48079400.0,48354194.0,48906781.0,49776229.0,51333790.0,51147102.0,52716723.0,53169260.0,53392946.0,54931929.0,56116708.0,56520826.0,57758136.0,58527097.0,58932628.0,59989665.0,60885616.0,61334006.0,62470402.0,63296524.0,63637983.0,64586167.0,65706879.0,66004289.0,67088523.0,68163818.0,68356213.0,69545776.0,70431355.0,70812279.0,71931814.0,73031001.0,73149031.0,74339178.0,75235992.0,75472789.0,76809448.0,77627418.0,77937119.0,79246938.0,79394313.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":992.0639961857624,"lower_bound":990.8181085464224,"upper_bound":993.2205473835804,"unit":"ns"},"mean":{"estimate":992.699584003858,"lower_bound":991.3820726771013,"upper_bound":994.0159709725141,"unit":"ns"},"median":{"estimate":993.8868247148098,"lower_bound":991.7512437810946,"upper_bound":995.2315615798559,"unit":"ns"},"median_abs_dev":{"estimate":5.509551450997535,"lower_bound":4.312695923900791,"upper_bound":6.941192229628366,"unit":"ns"},"slope":{"estimate":992.0639961857624,"lower_bound":990.8181085464224,"upper_bound":993.2205473835804,"unit":"ns"},"change":{"mean":{"estimate":0.40727234718247685,"lower_bound":0.4009700236932398,"upper_bound":0.41284892679166885,"unit":"%"},"median":{"estimate":0.41990018739987156,"lower_bound":0.41280228042241673,"upper_bound":0.4237469664822451,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"ldc/1000","report_directory":"/root/fuel-core/target/criterion/reports/ldc/1000","iteration_count":[730,1460,2190,2920,3650,4380,5110,5840,6570,7300,8030,8760,9490,10220,10950,11680,12410,13140,13870,14600,15330,16060,16790,17520,18250,18980,19710,20440,21170,21900,22630,23360,24090,24820,25550,26280,27010,27740,28470,29200,29930,30660,31390,32120,32850,33580,34310,35040,35770,36500,37230,37960,38690,39420,40150,40880,41610,42340,43070,43800,44530,45260,45990,46720,47450,48180,48910,49640,50370,51100,51830,52560,53290,54020,54750,55480,56210,56940,57670,58400,59130,59860,60590,61320,62050,62780,63510,64240,64970,65700,66430,67160,67890,68620,69350,70080,70810,71540,72270,73000],"measured_values":[804262.0,1577685.0,2336998.0,3137214.0,3922437.0,4674529.0,5498476.0,6305057.0,7034954.0,7838957.0,8646117.0,9379115.0,10186365.0,11039925.0,11683216.0,12546685.0,13445452.0,14026258.0,14899710.0,15773572.0,16369030.0,17343434.0,18159348.0,18754042.0,19666588.0,20517094.0,21049369.0,21947139.0,22854431.0,23388537.0,24287628.0,25189139.0,25782099.0,26654671.0,27574915.0,28166528.0,29099478.0,29721659.0,30424935.0,31411361.0,32305222.0,32717447.0,33726563.0,34626780.0,35171525.0,36021104.0,37016670.0,37489360.0,38458293.0,39444077.0,39767939.0,41049443.0,41716401.0,42174105.0,43209719.0,44163065.0,44469868.0,45554431.0,46395631.0,46848685.0,47767302.0,48774494.0,49124742.0,50439199.0,50858859.0,51492511.0,52647738.0,53800002.0,53715474.0,54955597.0,55959353.0,56238760.0,57287795.0,58369976.0,58562140.0,59718409.0,60691578.0,60916768.0,62120429.0,63003601.0,63316525.0,64104597.0,65424343.0,65507088.0,66809235.0,67767279.0,67900615.0,69103928.0,70138561.0,70172318.0,71518991.0,72667783.0,72799749.0,73829809.0,74635615.0,74929363.0,76634661.0,77251685.0,76993137.0,78484066.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":1074.7596919822427,"lower_bound":1073.4349523000085,"upper_bound":1076.0301584880135,"unit":"ns"},"mean":{"estimate":1074.8451773558797,"lower_bound":1073.8062996403382,"upper_bound":1075.9434112769002,"unit":"ns"},"median":{"estimate":1075.1395770198492,"lower_bound":1073.604272918862,"upper_bound":1076.395259552992,"unit":"ns"},"median_abs_dev":{"estimate":6.591386546890808,"lower_bound":4.9542243149753045,"upper_bound":7.356153534823597,"unit":"ns"},"slope":{"estimate":1074.7596919822427,"lower_bound":1073.4349523000085,"upper_bound":1076.0301584880135,"unit":"ns"},"change":{"mean":{"estimate":0.4018639264372357,"lower_bound":0.39731252783096443,"upper_bound":0.4062559758469169,"unit":"%"},"median":{"estimate":0.4039658179633867,"lower_bound":0.4006877682095442,"upper_bound":0.40988419485306227,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"ldc/10000","report_directory":"/root/fuel-core/target/criterion/reports/ldc/10000","iteration_count":[391,782,1173,1564,1955,2346,2737,3128,3519,3910,4301,4692,5083,5474,5865,6256,6647,7038,7429,7820,8211,8602,8993,9384,9775,10166,10557,10948,11339,11730,12121,12512,12903,13294,13685,14076,14467,14858,15249,15640,16031,16422,16813,17204,17595,17986,18377,18768,19159,19550,19941,20332,20723,21114,21505,21896,22287,22678,23069,23460,23851,24242,24633,25024,25415,25806,26197,26588,26979,27370,27761,28152,28543,28934,29325,29716,30107,30498,30889,31280,31671,32062,32453,32844,33235,33626,34017,34408,34799,35190,35581,35972,36363,36754,37145,37536,37927,38318,38709,39100],"measured_values":[782151.0,1512329.0,2288106.0,2952541.0,3798012.0,4555109.0,5220810.0,6058839.0,6887381.0,7396186.0,8303799.0,9147219.0,9614154.0,10538281.0,11397078.0,11829358.0,12816527.0,13716892.0,14044379.0,15091972.0,15945750.0,16347572.0,17416796.0,18278110.0,18468224.0,19557477.0,20516546.0,20663781.0,21817322.0,22797153.0,22889683.0,24096660.0,25105035.0,25140502.0,26335336.0,27384410.0,27347787.0,28644101.0,29679217.0,29708124.0,30983713.0,32019710.0,31920130.0,33368628.0,34454809.0,34298675.0,35635989.0,36705754.0,36407152.0,37905233.0,38937369.0,38725959.0,40116615.0,41313797.0,41152020.0,42435580.0,43583280.0,43104597.0,44711900.0,45807346.0,45356453.0,47160333.0,48143707.0,47700273.0,49209090.0,50441887.0,49975489.0,51527009.0,52765068.0,52025492.0,53820095.0,55082605.0,54188581.0,56049776.0,57295173.0,56430094.0,58394180.0,59804202.0,58790165.0,60833219.0,62195078.0,61017753.0,62985821.0,64231698.0,63249567.0,65179085.0,66400006.0,65340410.0,67441731.0,68851981.0,67610360.0,69804588.0,71038733.0,69776659.0,71887658.0,73339297.0,71956101.0,74130585.0,75611005.0,74594155.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":1930.9465992289192,"lower_bound":1924.861534287414,"upper_bound":1936.8246426894168,"unit":"ns"},"mean":{"estimate":1929.2923355743087,"lower_bound":1924.5513384722165,"upper_bound":1933.9576474450644,"unit":"ns"},"median":{"estimate":1937.0642971936131,"lower_bound":1929.919693094629,"upper_bound":1939.5549207825422,"unit":"ns"},"median_abs_dev":{"estimate":24.306655773426282,"lower_bound":17.72576802706041,"upper_bound":34.58454189677944,"unit":"ns"},"slope":{"estimate":1930.9465992289192,"lower_bound":1924.861534287414,"upper_bound":1936.8246426894168,"unit":"ns"},"change":{"mean":{"estimate":0.32868931410273783,"lower_bound":0.31895422799462436,"upper_bound":0.3388339658543684,"unit":"%"},"median":{"estimate":0.32493715828105096,"lower_bound":0.30888112444857213,"upper_bound":0.33523096589584106,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"ldc/19753","report_directory":"/root/fuel-core/target/criterion/reports/ldc/19753","iteration_count":[224,448,672,896,1120,1344,1568,1792,2016,2240,2464,2688,2912,3136,3360,3584,3808,4032,4256,4480,4704,4928,5152,5376,5600,5824,6048,6272,6496,6720,6944,7168,7392,7616,7840,8064,8288,8512,8736,8960,9184,9408,9632,9856,10080,10304,10528,10752,10976,11200,11424,11648,11872,12096,12320,12544,12768,12992,13216,13440,13664,13888,14112,14336,14560,14784,15008,15232,15456,15680,15904,16128,16352,16576,16800,17024,17248,17472,17696,17920,18144,18368,18592,18816,19040,19264,19488,19712,19936,20160,20384,20608,20832,21056,21280,21504,21728,21952,22176,22400],"measured_values":[832819.0,1542941.0,2325828.0,3019431.0,3765954.0,4591097.0,5279463.0,6038467.0,6897197.0,7540504.0,8306488.0,9209020.0,9900714.0,10631700.0,11465583.0,12074366.0,12828070.0,13791252.0,14361934.0,15053939.0,16115397.0,16648125.0,17298452.0,18347165.0,18866398.0,19535221.0,20647834.0,21141440.0,21848912.0,22966355.0,23415700.0,24179465.0,25233452.0,25791128.0,26304144.0,27543001.0,27881304.0,28574945.0,29813628.0,30204594.0,30847797.0,32096996.0,32478203.0,33147044.0,34465089.0,34767536.0,35531989.0,36750767.0,37256439.0,37666426.0,38995349.0,39210021.0,40003890.0,41437307.0,41567398.0,42193784.0,43657894.0,43806247.0,44438861.0,45903730.0,46106114.0,46734871.0,48288908.0,48253742.0,49047126.0,50608484.0,50603127.0,51902906.0,52901092.0,52908861.0,53716632.0,55164204.0,55170115.0,55716782.0,57290547.0,57319542.0,57951274.0,59648610.0,59766794.0,60273294.0,62039471.0,61914430.0,62519744.0,64447577.0,64162271.0,64749880.0,66604666.0,66410779.0,67070708.0,68947002.0,68933581.0,69296718.0,71141857.0,70856668.0,71531885.0,73918624.0,73176835.0,73745525.0,75624945.0,75457692.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":3385.4828497540584,"lower_bound":3378.9515276656157,"upper_bound":3392.411875632056,"unit":"ns"},"mean":{"estimate":3390.3364631671684,"lower_bound":3383.17477631575,"upper_bound":3399.5139991055576,"unit":"ns"},"median":{"estimate":3373.9416801948055,"lower_bound":3370.33878212108,"upper_bound":3382.3561222784565,"unit":"ns"},"median_abs_dev":{"estimate":18.517202776903936,"lower_bound":11.278429053992085,"upper_bound":33.79299842437043,"unit":"ns"},"slope":{"estimate":3385.4828497540584,"lower_bound":3378.9515276656157,"upper_bound":3392.411875632056,"unit":"ns"},"change":{"mean":{"estimate":0.168051781587222,"lower_bound":0.1646354832767308,"upper_bound":0.1721429786635281,"unit":"%"},"median":{"estimate":0.16003727667845302,"lower_bound":0.1542145996203359,"upper_bound":0.16939048439391977,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"ldc/29629","report_directory":"/root/fuel-core/target/criterion/reports/ldc/29629","iteration_count":[138,276,414,552,690,828,966,1104,1242,1380,1518,1656,1794,1932,2070,2208,2346,2484,2622,2760,2898,3036,3174,3312,3450,3588,3726,3864,4002,4140,4278,4416,4554,4692,4830,4968,5106,5244,5382,5520,5658,5796,5934,6072,6210,6348,6486,6624,6762,6900,7038,7176,7314,7452,7590,7728,7866,8004,8142,8280,8418,8556,8694,8832,8970,9108,9246,9384,9522,9660,9798,9936,10074,10212,10350,10488,10626,10764,10902,11040,11178,11316,11454,11592,11730,11868,12006,12144,12282,12420,12558,12696,12834,12972,13110,13248,13386,13524,13662,13800],"measured_values":[778070.0,1442227.0,2191915.0,2916577.0,3603515.0,4398270.0,5120787.0,5777652.0,6576091.0,7300882.0,7934881.0,8768578.0,9497271.0,10107656.0,10963615.0,11720544.0,12290807.0,13197682.0,13881943.0,14463985.0,15379566.0,16115908.0,16659812.0,17575356.0,18264875.0,18842228.0,19774885.0,20475744.0,20990389.0,21985066.0,22625156.0,23130146.0,24118122.0,24808495.0,25194148.0,26394310.0,27047027.0,27717456.0,28573422.0,29494744.0,29949266.0,30665252.0,31452026.0,32014752.0,32830410.0,33611995.0,34090333.0,35012368.0,35881206.0,36787892.0,37318002.0,38077613.0,38478515.0,39341329.0,40230055.0,40817310.0,41649321.0,42404100.0,42873030.0,43793129.0,44659501.0,45011746.0,45884991.0,46905832.0,47246061.0,48661942.0,49103823.0,49570204.0,50290339.0,51305178.0,51582326.0,52459578.0,53372562.0,53894575.0,55125791.0,55892017.0,55833896.0,56881704.0,57892460.0,58053598.0,59191625.0,60145579.0,60556355.0,61232589.0,62575706.0,62922871.0,63515209.0,64543187.0,64687855.0,65625335.0,66553846.0,66799407.0,67964088.0,68792415.0,68953820.0,70064848.0,70985445.0,71337737.0,72287301.0,73104430.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":5291.01189251761,"lower_bound":5285.810997822073,"upper_bound":5296.252382593348,"unit":"ns"},"mean":{"estimate":5290.639769673482,"lower_bound":5283.024002420216,"upper_bound":5300.19796130831,"unit":"ns"},"median":{"estimate":5294.03734671126,"lower_bound":5287.403026427963,"upper_bound":5296.030303030303,"unit":"ns"},"median_abs_dev":{"estimate":19.3872839305488,"lower_bound":15.366471309875562,"upper_bound":28.189607899242958,"unit":"ns"},"slope":{"estimate":5291.01189251761,"lower_bound":5285.810997822073,"upper_bound":5296.252382593348,"unit":"ns"},"change":{"mean":{"estimate":0.19569242768372908,"lower_bound":0.19352573241627663,"upper_bound":0.19799104373167276,"unit":"%"},"median":{"estimate":0.1975383690970578,"lower_bound":0.19573337273410774,"upper_bound":0.19837148914513336,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"ldc/44444","report_directory":"/root/fuel-core/target/criterion/reports/ldc/44444","iteration_count":[86,172,258,344,430,516,602,688,774,860,946,1032,1118,1204,1290,1376,1462,1548,1634,1720,1806,1892,1978,2064,2150,2236,2322,2408,2494,2580,2666,2752,2838,2924,3010,3096,3182,3268,3354,3440,3526,3612,3698,3784,3870,3956,4042,4128,4214,4300,4386,4472,4558,4644,4730,4816,4902,4988,5074,5160,5246,5332,5418,5504,5590,5676,5762,5848,5934,6020,6106,6192,6278,6364,6450,6536,6622,6708,6794,6880,6966,7052,7138,7224,7310,7396,7482,7568,7654,7740,7826,7912,7998,8084,8170,8256,8342,8428,8514,8600],"measured_values":[766383.0,1511948.0,2231136.0,2969095.0,3713848.0,4462275.0,5201978.0,5920487.0,6695371.0,7446073.0,8103965.0,8896229.0,9716084.0,10396040.0,11156060.0,11898255.0,12553443.0,13402010.0,14086159.0,14777460.0,15604797.0,16316204.0,17099719.0,17857699.0,18570775.0,19426330.0,20231930.0,20785751.0,21595314.0,22414419.0,22983661.0,23848596.0,24677903.0,25169957.0,26047946.0,26913250.0,27495748.0,28397647.0,29212484.0,29514232.0,30410467.0,31243655.0,31688048.0,32625898.0,33387405.0,33800055.0,34802204.0,35527664.0,36524496.0,38190869.0,39228480.0,39567229.0,42198820.0,43656942.0,44338121.0,45188641.0,46206444.0,46526136.0,47871131.0,48699275.0,49351866.0,50100547.0,51148339.0,51811680.0,52932733.0,53611327.0,54138535.0,55083803.0,55976233.0,56724918.0,57539967.0,58483915.0,59067076.0,59788695.0,60850545.0,61361761.0,62052752.0,63006210.0,63595099.0,64486213.0,65371349.0,65974343.0,67272036.0,67951165.0,68450728.0,69292553.0,70149463.0,70795519.0,71740591.0,72585866.0,73205694.0,74083249.0,74688876.0,70486711.0,71440602.0,76157085.0,72808838.0,73727928.0,78556417.0,75010601.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":9187.697438148882,"lower_bound":9108.784573811208,"upper_bound":9258.177820953955,"unit":"ns"},"mean":{"estimate":8976.441000156157,"lower_bound":8906.232657696772,"upper_bound":9048.065680914082,"unit":"ns"},"median":{"estimate":8736.121593963331,"lower_bound":8687.983005366727,"upper_bound":9277.173954865415,"unit":"ns"},"median_abs_dev":{"estimate":218.76587067016504,"lower_bound":103.40255787892603,"upper_bound":522.6417854751868,"unit":"ns"},"slope":{"estimate":9187.697438148882,"lower_bound":9108.784573811208,"upper_bound":9258.177820953955,"unit":"ns"},"change":{"mean":{"estimate":0.10030538984460624,"lower_bound":0.09128190963712197,"upper_bound":0.10871359823130652,"unit":"%"},"median":{"estimate":0.07021965361011206,"lower_bound":0.06284898963647656,"upper_bound":0.13285773717195726,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"ldc/66666","report_directory":"/root/fuel-core/target/criterion/reports/ldc/66666","iteration_count":[63,126,189,252,315,378,441,504,567,630,693,756,819,882,945,1008,1071,1134,1197,1260,1323,1386,1449,1512,1575,1638,1701,1764,1827,1890,1953,2016,2079,2142,2205,2268,2331,2394,2457,2520,2583,2646,2709,2772,2835,2898,2961,3024,3087,3150,3213,3276,3339,3402,3465,3528,3591,3654,3717,3780,3843,3906,3969,4032,4095,4158,4221,4284,4347,4410,4473,4536,4599,4662,4725,4788,4851,4914,4977,5040,5103,5166,5229,5292,5355,5418,5481,5544,5607,5670,5733,5796,5859,5922,5985,6048,6111,6174,6237,6300],"measured_values":[759802.0,1473559.0,2220820.0,3000021.0,3677940.0,4423466.0,5199729.0,5849990.0,6621114.0,7402876.0,8082120.0,8875863.0,9611355.0,10279639.0,11098459.0,11808029.0,12455223.0,13266582.0,14087589.0,14617143.0,15478980.0,16280615.0,16863138.0,17701340.0,18468270.0,19118682.0,19873630.0,20639845.0,21226369.0,22139266.0,22890476.0,23491014.0,24314742.0,25120252.0,25608663.0,26488539.0,27350707.0,27770415.0,28711192.0,29637913.0,30042794.0,30997522.0,31684111.0,32278049.0,33189691.0,33981083.0,34383121.0,35374673.0,36262213.0,36600312.0,37634910.0,38520516.0,38841036.0,39782663.0,40615021.0,41099178.0,42046315.0,42883299.0,43600690.0,44306294.0,45073174.0,45479936.0,46333025.0,47178610.0,47738906.0,48557249.0,49448617.0,49795455.0,50764504.0,51595702.0,51891386.0,52858885.0,53793529.0,54221311.0,55164230.0,55983880.0,56318576.0,57333196.0,58000042.0,58525988.0,59476140.0,60562611.0,60606476.0,61635738.0,62646518.0,62902793.0,63946463.0,64804387.0,65134668.0,66190054.0,67057440.0,67188383.0,69012835.0,69396206.0,69680962.0,71095128.0,71500887.0,71842658.0,72754151.0,73699743.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":11674.991476047391,"lower_bound":11662.908834163245,"upper_bound":11687.488006049518,"unit":"ns"},"mean":{"estimate":11689.456638113626,"lower_bound":11677.548647718828,"upper_bound":11702.553791948161,"unit":"ns"},"median":{"estimate":11694.40858318636,"lower_bound":11676.0,"upper_bound":11699.70566893424,"unit":"ns"},"median_abs_dev":{"estimate":51.81752900777996,"lower_bound":38.18870325419235,"upper_bound":65.15873791130096,"unit":"ns"},"slope":{"estimate":11674.991476047391,"lower_bound":11662.908834163245,"upper_bound":11687.488006049518,"unit":"ns"},"change":{"mean":{"estimate":0.08388566788022445,"lower_bound":0.08052334827473426,"upper_bound":0.08727400936960308,"unit":"%"},"median":{"estimate":0.07928826857683102,"lower_bound":0.07687407898756149,"upper_bound":0.08053764328040698,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"ldc/100000","report_directory":"/root/fuel-core/target/criterion/reports/ldc/100000","iteration_count":[43,86,129,172,215,258,301,344,387,430,473,516,559,602,645,688,731,774,817,860,903,946,989,1032,1075,1118,1161,1204,1247,1290,1333,1376,1419,1462,1505,1548,1591,1634,1677,1720,1763,1806,1849,1892,1935,1978,2021,2064,2107,2150,2193,2236,2279,2322,2365,2408,2451,2494,2537,2580,2623,2666,2709,2752,2795,2838,2881,2924,2967,3010,3053,3096,3139,3182,3225,3268,3311,3354,3397,3440,3483,3526,3569,3612,3655,3698,3741,3784,3827,3870,3913,3956,3999,4042,4085,4128,4171,4214,4257,4300],"measured_values":[791344.0,1449425.0,2179155.0,2899824.0,3621177.0,4398272.0,5085862.0,5829018.0,6617424.0,7319023.0,8053352.0,8789818.0,9485695.0,10251248.0,10968199.0,11690096.0,12449354.0,13179883.0,13831405.0,14505019.0,15281149.0,15990551.0,16699728.0,17527309.0,18202709.0,18891098.0,19661717.0,20739920.0,21234678.0,22011866.0,22605881.0,23210841.0,24042731.0,24688058.0,25389693.0,26528395.0,27045260.0,27610605.0,28422819.0,29084561.0,29755703.0,30644871.0,31233947.0,31923353.0,32791842.0,33398837.0,34020734.0,35276095.0,35713807.0,36167984.0,37147738.0,37661051.0,38428061.0,39213721.0,39849698.0,40477298.0,41448026.0,41990793.0,42665742.0,43564772.0,44187522.0,45021102.0,45733257.0,46283969.0,47025562.0,48012428.0,48670259.0,49289907.0,50308956.0,50905438.0,51265010.0,52201395.0,52728929.0,53446746.0,54581547.0,54901162.0,55582359.0,56778898.0,57109273.0,57780950.0,58984139.0,59546510.0,59908409.0,60887039.0,61448851.0,62031971.0,63032083.0,63460068.0,64372969.0,64948540.0,65655836.0,66525193.0,67046335.0,67951376.0,68580134.0,69154532.0,70053718.0,70774673.0,71337379.0,72237553.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":16840.43143002464,"lower_bound":16826.123481501454,"upper_bound":16856.961868203438,"unit":"ns"},"mean":{"estimate":16909.76351183796,"lower_bound":16881.188016575124,"upper_bound":16949.225878450838,"unit":"ns"},"median":{"estimate":16886.03356133151,"lower_bound":16861.80824923212,"upper_bound":16900.27813465604,"unit":"ns"},"median_abs_dev":{"estimate":93.62016776188159,"lower_bound":69.94226085361302,"upper_bound":112.52452888031691,"unit":"ns"},"slope":{"estimate":16840.43143002464,"lower_bound":16826.123481501454,"upper_bound":16856.961868203438,"unit":"ns"},"change":{"mean":{"estimate":0.1163614565222939,"lower_bound":0.11316252106717584,"upper_bound":0.11985087173097611,"unit":"%"},"median":{"estimate":0.1150206376583045,"lower_bound":0.11178710786307255,"upper_bound":0.11973633754278046,"unit":"%"},"change":"Regressed"}} +{"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":[1598,3196,4794,6392,7990,9588,11186,12784,14382,15980,17578,19176,20774,22372,23970,25568,27166,28764,30362,31960,33558,35156,36754,38352,39950,41548,43146,44744,46342,47940,49538,51136,52734,54332,55930,57528,59126,60724,62322,63920,65518,67116,68714,70312,71910,73508,75106,76704,78302,79900,81498,83096,84694,86292,87890,89488,91086,92684,94282,95880,97478,99076,100674,102272,103870,105468,107066,108664,110262,111860,113458,115056,116654,118252,119850,121448,123046,124644,126242,127840,129438,131036,132634,134232,135830,137428,139026,140624,142222,143820,145418,147016,148614,150212,151810,153408,155006,156604,158202,159800],"measured_values":[657482.0,1285845.0,1926370.0,2567279.0,3210304.0,3864944.0,4500973.0,5140891.0,5774112.0,6440146.0,7062123.0,7722946.0,8359395.0,8984992.0,9641058.0,10315677.0,10940371.0,11608733.0,12365766.0,12843913.0,13489769.0,14205996.0,14763377.0,15407057.0,15969325.0,16734148.0,17278834.0,17993087.0,18544074.0,19237526.0,19854991.0,20542354.0,21102405.0,21797226.0,22407816.0,23137858.0,23701678.0,24406817.0,24901477.0,25647569.0,26329744.0,26981457.0,27573421.0,28201908.0,28748263.0,29514211.0,30054770.0,30819988.0,31345219.0,32088936.0,32601461.0,33359883.0,33922799.0,34669479.0,35208339.0,35961575.0,36425147.0,37233042.0,37855308.0,38513272.0,39083893.0,39813065.0,40214976.0,41040904.0,41550359.0,42347907.0,42782477.0,43612576.0,44153033.0,45101536.0,45358676.0,46285742.0,46784316.0,47481617.0,47957862.0,48866447.0,49366918.0,50025630.0,50478136.0,51438232.0,51786252.0,52644547.0,53249875.0,53801433.0,54306574.0,55146934.0,55832887.0,56508444.0,56843268.0,57750186.0,58219073.0,59062241.0,59627335.0,60425655.0,60777228.0,61559540.0,62018733.0,62957999.0,63461609.0,64215045.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":401.1454262948384,"lower_bound":400.92278018022995,"upper_bound":401.36284431951185,"unit":"ns"},"mean":{"estimate":401.5346227297453,"lower_bound":401.2625426950106,"upper_bound":401.85324428514974,"unit":"ns"},"median":{"estimate":401.52641662028395,"lower_bound":401.2833959115561,"upper_bound":401.7202753441802,"unit":"ns"},"median_abs_dev":{"estimate":0.9014344602727303,"lower_bound":0.551927780647597,"upper_bound":1.251324330384467,"unit":"ns"},"slope":{"estimate":401.1454262948384,"lower_bound":400.92278018022995,"upper_bound":401.36284431951185,"unit":"ns"},"change":{"mean":{"estimate":0.008461528576584554,"lower_bound":0.005111785424540866,"upper_bound":0.01114444311125236,"unit":"%"},"median":{"estimate":0.011902879468198568,"lower_bound":0.010877581664473846,"upper_bound":0.01288020795574818,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"ccp/10","report_directory":"/root/fuel-core/target/criterion/reports/ccp/10","iteration_count":[1603,3206,4809,6412,8015,9618,11221,12824,14427,16030,17633,19236,20839,22442,24045,25648,27251,28854,30457,32060,33663,35266,36869,38472,40075,41678,43281,44884,46487,48090,49693,51296,52899,54502,56105,57708,59311,60914,62517,64120,65723,67326,68929,70532,72135,73738,75341,76944,78547,80150,81753,83356,84959,86562,88165,89768,91371,92974,94577,96180,97783,99386,100989,102592,104195,105798,107401,109004,110607,112210,113813,115416,117019,118622,120225,121828,123431,125034,126637,128240,129843,131446,133049,134652,136255,137858,139461,141064,142667,144270,145873,147476,149079,150682,152285,153888,155491,157094,158697,160300],"measured_values":[653161.0,1275016.0,1902319.0,2546429.0,3174030.0,3853311.0,4444094.0,5089208.0,5703114.0,6399788.0,6980880.0,7663029.0,8285783.0,8961815.0,9518582.0,10243240.0,10776048.0,11512119.0,12045939.0,12791478.0,13344739.0,14028284.0,14583149.0,15284880.0,16183792.0,16717191.0,17198614.0,17883432.0,18512574.0,19165515.0,19677199.0,20411887.0,20957174.0,21757714.0,22266597.0,22948794.0,23492330.0,24340572.0,24760125.0,25491523.0,26174976.0,26833566.0,27372063.0,28130948.0,28659616.0,29386688.0,29993434.0,30666316.0,31161211.0,31918422.0,32509270.0,33369087.0,33704301.0,34472194.0,34964150.0,35879245.0,36391331.0,37073124.0,37477388.0,38401435.0,38809031.0,39613865.0,40186690.0,40904174.0,41281658.0,42139784.0,42565645.0,43343720.0,43850484.0,44809779.0,45127364.0,46122486.0,46379451.0,47322392.0,47721862.0,48587903.0,48934868.0,49850982.0,50161002.0,50953361.0,51493294.0,52434897.0,52796345.0,53717457.0,53995402.0,55062395.0,55300537.0,56201176.0,56557241.0,57882294.0,57794076.0,58778293.0,59119136.0,60142805.0,60368783.0,61361859.0,61572266.0,62652721.0,62843963.0,63772936.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":397.72061226452064,"lower_bound":397.3715046529695,"upper_bound":398.0890604772913,"unit":"ns"},"mean":{"estimate":397.82843432452506,"lower_bound":397.4949917039013,"upper_bound":398.19133208985664,"unit":"ns"},"median":{"estimate":397.6838739862757,"lower_bound":397.1349033063007,"upper_bound":398.2620391643717,"unit":"ns"},"median_abs_dev":{"estimate":1.730956841826655,"lower_bound":1.341516152597417,"upper_bound":1.9819064870596579,"unit":"ns"},"slope":{"estimate":397.72061226452064,"lower_bound":397.3715046529695,"upper_bound":398.0890604772913,"unit":"ns"},"change":{"mean":{"estimate":-0.029933913538034318,"lower_bound":-0.03371504472065318,"upper_bound":-0.026288447096626838,"unit":"%"},"median":{"estimate":-0.0233117829482673,"lower_bound":-0.028890851068147483,"upper_bound":-0.020214824831427447,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ccp/100","report_directory":"/root/fuel-core/target/criterion/reports/ccp/100","iteration_count":[1495,2990,4485,5980,7475,8970,10465,11960,13455,14950,16445,17940,19435,20930,22425,23920,25415,26910,28405,29900,31395,32890,34385,35880,37375,38870,40365,41860,43355,44850,46345,47840,49335,50830,52325,53820,55315,56810,58305,59800,61295,62790,64285,65780,67275,68770,70265,71760,73255,74750,76245,77740,79235,80730,82225,83720,85215,86710,88205,89700,91195,92690,94185,95680,97175,98670,100165,101660,103155,104650,106145,107640,109135,110630,112125,113620,115115,116610,118105,119600,121095,122590,124085,125580,127075,128570,130065,131560,133055,134550,136045,137540,139035,140530,142025,143520,145015,146510,148005,149500],"measured_values":[678557.0,1280990.0,1925514.0,2567169.0,3209294.0,3877833.0,4491728.0,5146307.0,5767497.0,6492620.0,7097325.0,7747104.0,8359697.0,9059682.0,9619301.0,10257121.0,10901192.0,11627413.0,12209455.0,12848968.0,13505498.0,14201857.0,14774334.0,15447267.0,16098737.0,16758543.0,17310018.0,17990603.0,18618367.0,19364396.0,19892686.0,20531787.0,21181647.0,21907253.0,22445044.0,23083563.0,23821273.0,25061815.0,25448940.0,25790517.0,26327052.0,27116356.0,27601401.0,28261396.0,40196535.0,29718587.0,30161863.0,30803531.0,31519073.0,32278124.0,32765180.0,33336219.0,34033897.0,34791326.0,35432027.0,36075660.0,36618780.0,37500289.0,37891331.0,38510676.0,39167874.0,40008161.0,40461911.0,41045096.0,41728846.0,42619410.0,43082950.0,43690669.0,44260508.0,45150624.0,45551237.0,46212862.0,46903642.0,47652929.0,48145455.0,48829515.0,49419559.0,50234398.0,50708939.0,51294847.0,52101092.0,52865040.0,53222129.0,53914257.0,54575217.0,55476071.0,55984194.0,56692402.0,57401340.0,58028614.0,58494847.0,59009750.0,59917230.0,60659624.0,61019807.0,61684519.0,62282737.0,63168966.0,63567570.0,64199781.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":431.211028181718,"lower_bound":430.0155342425368,"upper_bound":433.6375896700612,"unit":"ns"},"mean":{"estimate":432.25678574625096,"lower_bound":430.19445382698433,"upper_bound":435.95948326610943,"unit":"ns"},"median":{"estimate":429.77440871936807,"lower_bound":429.56573764399855,"upper_bound":430.2714826169536,"unit":"ns"},"median_abs_dev":{"estimate":1.103668698960549,"lower_bound":0.7047228960113555,"upper_bound":1.4826017899893045,"unit":"ns"},"slope":{"estimate":431.211028181718,"lower_bound":430.0155342425368,"upper_bound":433.6375896700612,"unit":"ns"},"change":{"mean":{"estimate":-0.015901791520296582,"lower_bound":-0.022240844919831824,"upper_bound":-0.006128316427584839,"unit":"%"},"median":{"estimate":-0.01730546797641508,"lower_bound":-0.02069006974452192,"upper_bound":-0.01389860142058072,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"ccp/1000","report_directory":"/root/fuel-core/target/criterion/reports/ccp/1000","iteration_count":[1245,2490,3735,4980,6225,7470,8715,9960,11205,12450,13695,14940,16185,17430,18675,19920,21165,22410,23655,24900,26145,27390,28635,29880,31125,32370,33615,34860,36105,37350,38595,39840,41085,42330,43575,44820,46065,47310,48555,49800,51045,52290,53535,54780,56025,57270,58515,59760,61005,62250,63495,64740,65985,67230,68475,69720,70965,72210,73455,74700,75945,77190,78435,79680,80925,82170,83415,84660,85905,87150,88395,89640,90885,92130,93375,94620,95865,97110,98355,99600,100845,102090,103335,104580,105825,107070,108315,109560,110805,112050,113295,114540,115785,117030,118275,119520,120765,122010,123255,124500],"measured_values":[679375.0,1149667.0,1816090.0,2354087.0,3040718.0,3438043.0,4247281.0,4729585.0,5515557.0,5781059.0,6716472.0,7082876.0,7950665.0,8086615.0,9068492.0,9380662.0,10367406.0,10342048.0,11534773.0,11747459.0,12767248.0,12628059.0,13907636.0,14139382.0,15309700.0,14935070.0,16352468.0,16453676.0,17635944.0,17197822.0,18777112.0,18807410.0,20102251.0,19517408.0,21200264.0,21274744.0,22507830.0,21800189.0,23626347.0,23472845.0,24940501.0,24090736.0,26084663.0,25840288.0,27368469.0,26389106.0,28438856.0,28203096.0,29906482.0,28673950.0,30985626.0,30581684.0,32303438.0,30969112.0,33332455.0,32957591.0,34704756.0,33369291.0,35699376.0,35248739.0,37081124.0,35555424.0,38225782.0,37610733.0,39651903.0,37842010.0,40653968.0,39966281.0,41971157.0,40218654.0,43035519.0,42404723.0,44533843.0,42440105.0,45431037.0,44646993.0,47001686.0,44767814.0,47917719.0,47017586.0,49297083.0,47131604.0,50291956.0,49312000.0,51733847.0,49443998.0,52637450.0,51726136.0,54158442.0,51619959.0,55127925.0,54010044.0,56667449.0,54077761.0,57521573.0,56517649.0,59149301.0,56252695.0,59927589.0,58716328.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":477.2097888797691,"lower_bound":474.24842259512025,"upper_bound":480.1266452689483,"unit":"ns"},"mean":{"estimate":478.0488938638412,"lower_bound":475.5240452403448,"upper_bound":480.72212818780554,"unit":"ns"},"median":{"estimate":480.226609772423,"lower_bound":472.12610441767066,"upper_bound":486.5166990542816,"unit":"ns"},"median_abs_dev":{"estimate":12.472166697168046,"lower_bound":5.136747337757086,"upper_bound":19.31659147377312,"unit":"ns"},"slope":{"estimate":477.2097888797691,"lower_bound":474.24842259512025,"upper_bound":480.1266452689483,"unit":"ns"},"change":{"mean":{"estimate":-0.22446463286791152,"lower_bound":-0.22861109419308429,"upper_bound":-0.22017347898104642,"unit":"%"},"median":{"estimate":-0.21799742250398324,"lower_bound":-0.23173290427423365,"upper_bound":-0.2073566750293362,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ccp/10000","report_directory":"/root/fuel-core/target/criterion/reports/ccp/10000","iteration_count":[430,860,1290,1720,2150,2580,3010,3440,3870,4300,4730,5160,5590,6020,6450,6880,7310,7740,8170,8600,9030,9460,9890,10320,10750,11180,11610,12040,12470,12900,13330,13760,14190,14620,15050,15480,15910,16340,16770,17200,17630,18060,18490,18920,19350,19780,20210,20640,21070,21500,21930,22360,22790,23220,23650,24080,24510,24940,25370,25800,26230,26660,27090,27520,27950,28380,28810,29240,29670,30100,30530,30960,31390,31820,32250,32680,33110,33540,33970,34400,34830,35260,35690,36120,36550,36980,37410,37840,38270,38700,39130,39560,39990,40420,40850,41280,41710,42140,42570,43000],"measured_values":[521540.0,929617.0,1463199.0,1859678.0,2437318.0,2797426.0,3410021.0,3712254.0,4386434.0,4646133.0,5364569.0,5569241.0,6375809.0,6489893.0,7309779.0,7418169.0,8313705.0,8366485.0,9304056.0,9283350.0,10229354.0,10229031.0,11225697.0,11110844.0,12214253.0,12059960.0,13167367.0,13006652.0,14159935.0,13922723.0,15155368.0,14828599.0,16356199.0,15825145.0,17136666.0,16708783.0,18045294.0,17639480.0,19047108.0,18544277.0,19984456.0,19489636.0,21073833.0,20450344.0,21942316.0,21434391.0,22951718.0,22311112.0,23936123.0,23222613.0,24885556.0,24171548.0,25857606.0,25108134.0,26831139.0,26028431.0,27845115.0,26908591.0,28798247.0,27978960.0,29801534.0,28816532.0,30721169.0,29731704.0,31687699.0,30668217.0,32730405.0,31607216.0,33680557.0,32550784.0,34657729.0,33459399.0,35712649.0,34392024.0,36671933.0,35320711.0,37568726.0,36270366.0,38523941.0,37198087.0,39644221.0,38097888.0,40525926.0,39157078.0,41469050.0,39911275.0,42505729.0,40938211.0,43439853.0,41803114.0,44423632.0,42696729.0,45405223.0,43627456.0,46446965.0,44499398.0,47417863.0,45628970.0,48228973.0,46420582.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":1107.735083012293,"lower_bound":1100.5610147721025,"upper_bound":1114.9884620775185,"unit":"ns"},"mean":{"estimate":1108.8937834746619,"lower_bound":1103.1791752487898,"upper_bound":1114.7499431722947,"unit":"ns"},"median":{"estimate":1108.6373200442968,"lower_bound":1081.339738372093,"upper_bound":1134.0409376153561,"unit":"ns"},"median_abs_dev":{"estimate":40.916546104750104,"lower_bound":3.9321757560694417,"upper_bound":71.83804360834071,"unit":"ns"},"slope":{"estimate":1107.735083012293,"lower_bound":1100.5610147721025,"upper_bound":1114.9884620775185,"unit":"ns"},"change":{"mean":{"estimate":-0.7655491416684888,"lower_bound":-0.7670691967916642,"upper_bound":-0.7638940495063364,"unit":"%"},"median":{"estimate":-0.7659547985579799,"lower_bound":-0.7721092959378857,"upper_bound":-0.7598813348641025,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ccp/19753","report_directory":"/root/fuel-core/target/criterion/reports/ccp/19753","iteration_count":[207,414,621,828,1035,1242,1449,1656,1863,2070,2277,2484,2691,2898,3105,3312,3519,3726,3933,4140,4347,4554,4761,4968,5175,5382,5589,5796,6003,6210,6417,6624,6831,7038,7245,7452,7659,7866,8073,8280,8487,8694,8901,9108,9315,9522,9729,9936,10143,10350,10557,10764,10971,11178,11385,11592,11799,12006,12213,12420,12627,12834,13041,13248,13455,13662,13869,14076,14283,14490,14697,14904,15111,15318,15525,15732,15939,16146,16353,16560,16767,16974,17181,17388,17595,17802,18009,18216,18423,18630,18837,19044,19251,19458,19665,19872,20079,20286,20493,20700],"measured_values":[596690.0,996782.0,1471576.0,1977965.0,2420972.0,2896595.0,3383740.0,3908387.0,4332310.0,4892657.0,5304099.0,5822144.0,6249417.0,6763325.0,7201959.0,7729763.0,8154286.0,8719250.0,9122456.0,9680517.0,10069765.0,10712101.0,11060943.0,11680295.0,12004767.0,12811212.0,12818064.0,13548987.0,13956362.0,14533979.0,14894329.0,15462241.0,15867880.0,16425939.0,16801237.0,17362636.0,17729937.0,18368586.0,18680191.0,19274062.0,19430821.0,20285324.0,20609614.0,21238525.0,21552098.0,22225792.0,22503607.0,23170966.0,23403116.0,24154052.0,24518111.0,25139098.0,25422738.0,26094137.0,26376114.0,27007960.0,27408002.0,28063188.0,28021930.0,28646398.0,28924253.0,29804612.0,29830024.0,30626596.0,30811675.0,31679105.0,31836428.0,32886448.0,33174563.0,33868351.0,34035745.0,34771436.0,35016025.0,35526435.0,35515917.0,36376267.0,36429698.0,37285725.0,37459421.0,38250071.0,38422506.0,39314160.0,39510200.0,40148719.0,40339868.0,41326638.0,41750753.0,42679571.0,42734175.0,43560838.0,43695071.0,44409238.0,44592884.0,45526795.0,45510623.0,46295843.0,46519278.0,47381274.0,47474165.0,48530941.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":2318.5247045444326,"lower_bound":2314.3081337436606,"upper_bound":2322.64227599126,"unit":"ns"},"mean":{"estimate":2330.2459022262346,"lower_bound":2321.6211271004067,"upper_bound":2343.694857161693,"unit":"ns"},"median":{"estimate":2322.555658516295,"lower_bound":2319.366085650868,"upper_bound":2329.8792270531403,"unit":"ns"},"median_abs_dev":{"estimate":16.608128707728707,"lower_bound":13.01711015850802,"upper_bound":20.016120646748426,"unit":"ns"},"slope":{"estimate":2318.5247045444326,"lower_bound":2314.3081337436606,"upper_bound":2322.64227599126,"unit":"ns"},"change":{"mean":{"estimate":-0.7235099584277255,"lower_bound":-0.7247564339284295,"upper_bound":-0.7217712743817275,"unit":"%"},"median":{"estimate":-0.7239467231451445,"lower_bound":-0.7246658854635424,"upper_bound":-0.7230621832864901,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ccp/29629","report_directory":"/root/fuel-core/target/criterion/reports/ccp/29629","iteration_count":[136,272,408,544,680,816,952,1088,1224,1360,1496,1632,1768,1904,2040,2176,2312,2448,2584,2720,2856,2992,3128,3264,3400,3536,3672,3808,3944,4080,4216,4352,4488,4624,4760,4896,5032,5168,5304,5440,5576,5712,5848,5984,6120,6256,6392,6528,6664,6800,6936,7072,7208,7344,7480,7616,7752,7888,8024,8160,8296,8432,8568,8704,8840,8976,9112,9248,9384,9520,9656,9792,9928,10064,10200,10336,10472,10608,10744,10880,11016,11152,11288,11424,11560,11696,11832,11968,12104,12240,12376,12512,12648,12784,12920,13056,13192,13328,13464,13600],"measured_values":[490203.0,954239.0,1439579.0,1912445.0,2384756.0,2865620.0,3336091.0,3795938.0,4252499.0,4765955.0,5230008.0,5713312.0,6190834.0,6674887.0,7083291.0,7656241.0,8108971.0,8610675.0,8977229.0,9552441.0,9930914.0,10467841.0,10877495.0,11415804.0,11861175.0,12379776.0,12764361.0,13329383.0,13731190.0,14354738.0,14644069.0,15261038.0,15606507.0,16117685.0,16627066.0,16996480.0,17498002.0,18033283.0,18416648.0,18982437.0,19371026.0,19950302.0,20290087.0,20838354.0,21188026.0,21791725.0,22242448.0,22702239.0,23177232.0,23767087.0,24159406.0,24658955.0,25096484.0,25602825.0,26003178.0,26570583.0,26970783.0,27641343.0,27858834.0,28497795.0,28864332.0,29523951.0,29789545.0,30423912.0,30784928.0,31446086.0,31721775.0,32368001.0,32641315.0,33368428.0,33516493.0,34202817.0,34735250.0,35220475.0,35567389.0,36098698.0,36431201.0,37071885.0,37452755.0,37783720.0,38260665.0,38754361.0,39164046.0,39706244.0,40089759.0,40540010.0,41139674.0,41609116.0,42093139.0,42509759.0,43053720.0,43416831.0,43946413.0,44428394.0,45067732.0,45403491.0,45812287.0,46241256.0,46564703.0,47107147.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":3480.1426405175634,"lower_bound":3477.367532695081,"upper_bound":3483.1480829443412,"unit":"ns"},"mean":{"estimate":3487.8995674945268,"lower_bound":3484.468800285488,"upper_bound":3491.8297867271813,"unit":"ns"},"median":{"estimate":3482.8239708100436,"lower_bound":3478.6581498211935,"upper_bound":3488.784532563025,"unit":"ns"},"median_abs_dev":{"estimate":14.775255987686835,"lower_bound":10.23737274059641,"upper_bound":19.395987723240076,"unit":"ns"},"slope":{"estimate":3480.1426405175634,"lower_bound":3477.367532695081,"upper_bound":3483.1480829443412,"unit":"ns"},"change":{"mean":{"estimate":-0.7116302641201377,"lower_bound":-0.712237872349005,"upper_bound":-0.7110006677960378,"unit":"%"},"median":{"estimate":-0.7121097913836416,"lower_bound":-0.7132258851688602,"upper_bound":-0.7115224680065331,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ccp/44444","report_directory":"/root/fuel-core/target/criterion/reports/ccp/44444","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":[490778.0,1008305.0,1487178.0,1991247.0,2453548.0,2947922.0,3433400.0,3957097.0,4420163.0,4912667.0,5400978.0,5921974.0,6374361.0,6874634.0,7341257.0,7859267.0,8328654.0,8836219.0,9320075.0,9817721.0,10345792.0,10808599.0,11277951.0,11804105.0,12273461.0,12780201.0,13281398.0,13789245.0,14256392.0,14738764.0,15204914.0,15749095.0,16249753.0,16723112.0,17217542.0,17701036.0,18199692.0,18710504.0,19141710.0,19704753.0,20087122.0,20698057.0,21136093.0,21622570.0,22103879.0,22649060.0,23054367.0,23625846.0,24034333.0,24624484.0,25024202.0,25624115.0,26008988.0,26545831.0,27008435.0,27575610.0,28273590.0,28517120.0,29081100.0,29513767.0,29906183.0,30493421.0,31008188.0,31469080.0,31988460.0,32432686.0,32946731.0,33478431.0,33885577.0,34487898.0,34924184.0,35382829.0,35813918.0,36436779.0,36855827.0,37109701.0,37669300.0,38120599.0,38639314.0,39212864.0,39658078.0,40094390.0,40582791.0,41129433.0,41625225.0,42033218.0,42601190.0,43019582.0,43590931.0,44040871.0,44541777.0,45018872.0,45436902.0,46080791.0,46511348.0,46964917.0,47515682.0,47989634.0,48493582.0,48951763.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":6538.690721205852,"lower_bound":6534.6446466197685,"upper_bound":6543.429030939005,"unit":"ns"},"mean":{"estimate":6550.235784470345,"lower_bound":6545.325113213449,"upper_bound":6555.9286269504955,"unit":"ns"},"median":{"estimate":6548.843555555555,"lower_bound":6543.706666666667,"upper_bound":6553.060613107822,"unit":"ns"},"median_abs_dev":{"estimate":19.400702929286837,"lower_bound":14.134812021279252,"upper_bound":24.51543185884572,"unit":"ns"},"slope":{"estimate":6538.690721205852,"lower_bound":6534.6446466197685,"upper_bound":6543.429030939005,"unit":"ns"},"change":{"mean":{"estimate":-0.6263930073629014,"lower_bound":-0.6270815584332132,"upper_bound":-0.625861943495687,"unit":"%"},"median":{"estimate":-0.6261396957929667,"lower_bound":-0.6265182060004748,"upper_bound":-0.6258390755074204,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ccp/66666","report_directory":"/root/fuel-core/target/criterion/reports/ccp/66666","iteration_count":[52,104,156,208,260,312,364,416,468,520,572,624,676,728,780,832,884,936,988,1040,1092,1144,1196,1248,1300,1352,1404,1456,1508,1560,1612,1664,1716,1768,1820,1872,1924,1976,2028,2080,2132,2184,2236,2288,2340,2392,2444,2496,2548,2600,2652,2704,2756,2808,2860,2912,2964,3016,3068,3120,3172,3224,3276,3328,3380,3432,3484,3536,3588,3640,3692,3744,3796,3848,3900,3952,4004,4056,4108,4160,4212,4264,4316,4368,4420,4472,4524,4576,4628,4680,4732,4784,4836,4888,4940,4992,5044,5096,5148,5200],"measured_values":[482434.0,899301.0,1359744.0,1798910.0,2261918.0,2697514.0,3199975.0,3597773.0,4074780.0,4501559.0,4994706.0,5397539.0,5880806.0,6294804.0,6787089.0,7205169.0,7690800.0,8117492.0,8759752.0,9069899.0,9518678.0,9902062.0,10414500.0,10822396.0,11359032.0,11713223.0,12293738.0,12629814.0,13118113.0,13533039.0,14064996.0,14405402.0,14967800.0,15297178.0,15964198.0,16198507.0,16778777.0,17140700.0,17699850.0,18113487.0,18560000.0,18897678.0,19468352.0,19785709.0,20387016.0,20737834.0,21295456.0,21702847.0,22249754.0,22521323.0,23064054.0,23374691.0,23969492.0,24261823.0,24859475.0,25200775.0,25773958.0,26140009.0,26767189.0,27021809.0,27584422.0,27881084.0,28529707.0,28714675.0,29372016.0,29711605.0,30518679.0,30541605.0,31265601.0,31371646.0,32090895.0,32409222.0,32994715.0,33256165.0,34079471.0,34048907.0,34755541.0,35034322.0,35651594.0,35953118.0,36626265.0,36864740.0,37554860.0,37646631.0,38485492.0,38694594.0,39351229.0,39531298.0,40235562.0,40421581.0,41126317.0,41300814.0,42042519.0,42241741.0,42885862.0,43090513.0,43782201.0,43988946.0,44775947.0,44843301.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":8671.194617032887,"lower_bound":8662.629665139699,"upper_bound":8680.092873129213,"unit":"ns"},"mean":{"estimate":8688.585659210019,"lower_bound":8676.660676661711,"upper_bound":8704.464383659111,"unit":"ns"},"median":{"estimate":8680.776813975499,"lower_bound":8666.644761384101,"upper_bound":8695.667341430499,"unit":"ns"},"median_abs_dev":{"estimate":41.452608238428944,"lower_bound":33.07107457666087,"upper_bound":51.76623600201095,"unit":"ns"},"slope":{"estimate":8671.194617032887,"lower_bound":8662.629665139699,"upper_bound":8680.092873129213,"unit":"ns"},"change":{"mean":{"estimate":-0.6729765422777356,"lower_bound":-0.6734876556060322,"upper_bound":-0.6723403044191977,"unit":"%"},"median":{"estimate":-0.6729848820696998,"lower_bound":-0.6735077587190663,"upper_bound":-0.6724162728609389,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ccp/100000","report_directory":"/root/fuel-core/target/criterion/reports/ccp/100000","iteration_count":[38,76,114,152,190,228,266,304,342,380,418,456,494,532,570,608,646,684,722,760,798,836,874,912,950,988,1026,1064,1102,1140,1178,1216,1254,1292,1330,1368,1406,1444,1482,1520,1558,1596,1634,1672,1710,1748,1786,1824,1862,1900,1938,1976,2014,2052,2090,2128,2166,2204,2242,2280,2318,2356,2394,2432,2470,2508,2546,2584,2622,2660,2698,2736,2774,2812,2850,2888,2926,2964,3002,3040,3078,3116,3154,3192,3230,3268,3306,3344,3382,3420,3458,3496,3534,3572,3610,3648,3686,3724,3762,3800],"measured_values":[505039.0,934643.0,1423807.0,1865559.0,2370276.0,2799121.0,3316808.0,3744259.0,4268072.0,4665949.0,5226030.0,5617011.0,6166176.0,6527502.0,7110812.0,7483985.0,8063594.0,8407435.0,9079886.0,9338440.0,9993619.0,10327749.0,10934109.0,11203348.0,11875054.0,12135399.0,12869465.0,13091803.0,13812623.0,14028148.0,14732744.0,14969814.0,15713371.0,15932334.0,16644184.0,16867364.0,17602788.0,17825300.0,18547765.0,18751235.0,19461725.0,19746860.0,20448240.0,20593676.0,21399303.0,21500963.0,22351957.0,22478829.0,23304799.0,23376199.0,24288956.0,24272192.0,25170105.0,25230234.0,26156522.0,26362466.0,27156591.0,27088054.0,28105035.0,28015612.0,29283415.0,29012190.0,29925934.0,29917052.0,30907188.0,30856673.0,31854850.0,31860981.0,32839154.0,32725993.0,33728205.0,33737077.0,34739042.0,34609733.0,35692927.0,35598096.0,36591864.0,36479083.0,37549404.0,37488758.0,38466383.0,38405733.0,39424476.0,39255129.0,40327936.0,40386840.0,41319723.0,41113018.0,42244126.0,42060231.0,43209594.0,42973880.0,44181618.0,43914369.0,45083094.0,44839076.0,46002229.0,45931432.0,46998490.0,46743352.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":12408.071512292627,"lower_bound":12382.56180479561,"upper_bound":12433.625210727356,"unit":"ns"},"mean":{"estimate":12417.741656169497,"lower_bound":12392.881216293128,"upper_bound":12446.089978679896,"unit":"ns"},"median":{"estimate":12428.789943609023,"lower_bound":12330.802997076024,"upper_bound":12489.631385975288,"unit":"ns"},"median_abs_dev":{"estimate":144.73810067470947,"lower_bound":57.036701702431614,"upper_bound":176.56032797091373,"unit":"ns"},"slope":{"estimate":12408.071512292627,"lower_bound":12382.56180479561,"upper_bound":12433.625210727356,"unit":"ns"},"change":{"mean":{"estimate":-0.6834998699810912,"lower_bound":-0.6841550918304803,"upper_bound":-0.682670408378384,"unit":"%"},"median":{"estimate":-0.6832907405847816,"lower_bound":-0.6857985735431228,"upper_bound":-0.6817239650196933,"unit":"%"},"change":"Improved"}} +{"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":"bldd/1","report_directory":"/root/fuel-core/target/criterion/reports/bldd/1","iteration_count":[1145,2290,3435,4580,5725,6870,8015,9160,10305,11450,12595,13740,14885,16030,17175,18320,19465,20610,21755,22900,24045,25190,26335,27480,28625,29770,30915,32060,33205,34350,35495,36640,37785,38930,40075,41220,42365,43510,44655,45800,46945,48090,49235,50380,51525,52670,53815,54960,56105,57250,58395,59540,60685,61830,62975,64120,65265,66410,67555,68700,69845,70990,72135,73280,74425,75570,76715,77860,79005,80150,81295,82440,83585,84730,85875,87020,88165,89310,90455,91600,92745,93890,95035,96180,97325,98470,99615,100760,101905,103050,104195,105340,106485,107630,108775,109920,111065,112210,113355,114500],"measured_values":[807675.0,1483699.0,2262808.0,2964735.0,3713372.0,4454959.0,5085190.0,5775313.0,6564403.0,7238935.0,8018395.0,8766796.0,9528628.0,10417768.0,10977081.0,11579766.0,12366710.0,13160014.0,14079033.0,14649669.0,15251089.0,15957106.0,17100421.0,17340418.0,18575852.0,19219371.0,19611448.0,20672967.0,21395515.0,22289534.0,22674306.0,23486701.0,24174082.0,24635879.0,25938436.0,26157699.0,27440626.0,27744347.0,28906379.0,29113235.0,29789520.0,30828934.0,31583252.0,31863587.0,33030174.0,34109087.0,34758497.0,34927679.0,36221224.0,36306388.0,37487558.0,38356230.0,38826203.0,39714852.0,40379032.0,40894961.0,41797286.0,43057931.0,43658209.0,44047151.0,44927305.0,45468754.0,47155927.0,47163928.0,47691350.0,48494256.0,49081269.0,50016729.0,51028328.0,51171631.0,52302038.0,52306385.0,53301525.0,53683214.0,55189124.0,55494192.0,56557281.0,57373193.0,57697894.0,58418074.0,59600462.0,59822636.0,60503643.0,60953302.0,62144716.0,63543623.0,64355684.0,65215112.0,65356273.0,66230671.0,66640127.0,66656007.0,68581274.0,69644383.0,69241669.0,69769544.0,71245352.0,72679066.0,73424283.0,72794373.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":640.9599832735669,"lower_bound":639.7257980311829,"upper_bound":642.1938883222278,"unit":"ns"},"mean":{"estimate":641.6574697007904,"lower_bound":640.1878341076422,"upper_bound":643.4767279192841,"unit":"ns"},"median":{"estimate":641.0594343938449,"lower_bound":639.6755577755578,"upper_bound":642.3233381853469,"unit":"ns"},"median_abs_dev":{"estimate":6.61759539159251,"lower_bound":4.785776736581917,"upper_bound":8.264636595910593,"unit":"ns"},"slope":{"estimate":640.9599832735669,"lower_bound":639.7257980311829,"upper_bound":642.1938883222278,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"bldd/10","report_directory":"/root/fuel-core/target/criterion/reports/bldd/10","iteration_count":[1141,2282,3423,4564,5705,6846,7987,9128,10269,11410,12551,13692,14833,15974,17115,18256,19397,20538,21679,22820,23961,25102,26243,27384,28525,29666,30807,31948,33089,34230,35371,36512,37653,38794,39935,41076,42217,43358,44499,45640,46781,47922,49063,50204,51345,52486,53627,54768,55909,57050,58191,59332,60473,61614,62755,63896,65037,66178,67319,68460,69601,70742,71883,73024,74165,75306,76447,77588,78729,79870,81011,82152,83293,84434,85575,86716,87857,88998,90139,91280,92421,93562,94703,95844,96985,98126,99267,100408,101549,102690,103831,104972,106113,107254,108395,109536,110677,111818,112959,114100],"measured_values":[842408.0,1491135.0,2254624.0,2982984.0,3718574.0,4485193.0,5216871.0,5968038.0,6745723.0,7475821.0,8206885.0,8781822.0,9437800.0,10452589.0,10892040.0,11908985.0,12694595.0,13208656.0,14048553.0,14913963.0,15423844.0,15999992.0,16730978.0,17923218.0,18666658.0,18875405.0,19746484.0,20976541.0,21649383.0,21802291.0,23118338.0,23654375.0,24112711.0,25081825.0,25614799.0,26433854.0,27449999.0,28447640.0,28398866.0,29505756.0,30105000.0,31197873.0,32075022.0,31953779.0,33057220.0,33427865.0,34744600.0,35864339.0,36507776.0,36742351.0,37095766.0,38038119.0,39379137.0,39854241.0,40826930.0,41023081.0,41612228.0,42357068.0,43696640.0,44078738.0,45226453.0,45679688.0,46051342.0,47163936.0,47430663.0,48622392.0,48956891.0,50387159.0,50753147.0,51467859.0,52311988.0,53047609.0,53265913.0,54585842.0,55105295.0,55971364.0,56422783.0,57493209.0,57820753.0,58168163.0,59607998.0,59626727.0,60855692.0,61332973.0,62785910.0,63335806.0,64087092.0,65590760.0,65879094.0,65391044.0,67088966.0,67610239.0,68532422.0,69472137.0,69161983.0,71063433.0,70905801.0,73368037.0,72942254.0,73005091.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":644.7055040811941,"lower_bound":643.4816893826035,"upper_bound":645.9796440249394,"unit":"ns"},"mean":{"estimate":647.0290405278473,"lower_bound":645.1955392564029,"upper_bound":649.4539645151228,"unit":"ns"},"median":{"estimate":645.7322132351026,"lower_bound":644.0787924398887,"upper_bound":646.9343901049062,"unit":"ns"},"median_abs_dev":{"estimate":7.687701514114934,"lower_bound":5.6558924915060285,"upper_bound":9.442531861681978,"unit":"ns"},"slope":{"estimate":644.7055040811941,"lower_bound":643.4816893826035,"upper_bound":645.9796440249394,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"bldd/100","report_directory":"/root/fuel-core/target/criterion/reports/bldd/100","iteration_count":[1045,2090,3135,4180,5225,6270,7315,8360,9405,10450,11495,12540,13585,14630,15675,16720,17765,18810,19855,20900,21945,22990,24035,25080,26125,27170,28215,29260,30305,31350,32395,33440,34485,35530,36575,37620,38665,39710,40755,41800,42845,43890,44935,45980,47025,48070,49115,50160,51205,52250,53295,54340,55385,56430,57475,58520,59565,60610,61655,62700,63745,64790,65835,66880,67925,68970,70015,71060,72105,73150,74195,75240,76285,77330,78375,79420,80465,81510,82555,83600,84645,85690,86735,87780,88825,89870,90915,91960,93005,94050,95095,96140,97185,98230,99275,100320,101365,102410,103455,104500],"measured_values":[818163.0,1435822.0,2154301.0,2864912.0,3578551.0,4315142.0,5031370.0,5921505.0,6661120.0,7414327.0,8090434.0,8668718.0,9649689.0,10400440.0,10784343.0,11511128.0,12177152.0,13021218.0,13613629.0,14441947.0,15390077.0,16190201.0,17008817.0,17214863.0,18497531.0,19107854.0,19955890.0,20700647.0,21034508.0,21967317.0,22927338.0,23062300.0,24272814.0,24977753.0,25615441.0,26406711.0,26997851.0,27830829.0,28437791.0,28910406.0,29541152.0,30267971.0,30654270.0,32290073.0,32645929.0,34122381.0,34438527.0,35459341.0,35844754.0,37027193.0,37221377.0,37687533.0,38806748.0,40096500.0,40229080.0,40728699.0,41689920.0,42777634.0,42074103.0,43485611.0,44170144.0,45700811.0,46548396.0,46288648.0,47338325.0,48941544.0,48035940.0,49057394.0,49897405.0,51838094.0,51430940.0,52737003.0,53076837.0,54750743.0,55108962.0,55037113.0,56342541.0,56850933.0,58254719.0,58799625.0,60005437.0,60360880.0,61164806.0,60859113.0,62438418.0,62476153.0,63602084.0,64309768.0,65053300.0,66109585.0,66708530.0,67179749.0,67051890.0,68534339.0,68726269.0,70124943.0,70956281.0,71161566.0,71656856.0,72249772.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":698.5572435553061,"lower_bound":697.0985088965396,"upper_bound":700.0427820134378,"unit":"ns"},"mean":{"estimate":699.0846094296118,"lower_bound":697.0709704335934,"upper_bound":701.5133938138232,"unit":"ns"},"median":{"estimate":699.518847769277,"lower_bound":696.8358417198702,"upper_bound":700.8519012843112,"unit":"ns"},"median_abs_dev":{"estimate":9.535753697992421,"lower_bound":7.476186155515222,"upper_bound":11.333108290423848,"unit":"ns"},"slope":{"estimate":698.5572435553061,"lower_bound":697.0985088965396,"upper_bound":700.0427820134378,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"bldd/1000","report_directory":"/root/fuel-core/target/criterion/reports/bldd/1000","iteration_count":[921,1842,2763,3684,4605,5526,6447,7368,8289,9210,10131,11052,11973,12894,13815,14736,15657,16578,17499,18420,19341,20262,21183,22104,23025,23946,24867,25788,26709,27630,28551,29472,30393,31314,32235,33156,34077,34998,35919,36840,37761,38682,39603,40524,41445,42366,43287,44208,45129,46050,46971,47892,48813,49734,50655,51576,52497,53418,54339,55260,56181,57102,58023,58944,59865,60786,61707,62628,63549,64470,65391,66312,67233,68154,69075,69996,70917,71838,72759,73680,74601,75522,76443,77364,78285,79206,80127,81048,81969,82890,83811,84732,85653,86574,87495,88416,89337,90258,91179,92100],"measured_values":[702169.0,1374442.0,2089693.0,2821588.0,3496235.0,4112408.0,4891138.0,5627913.0,6157376.0,6674302.0,7498747.0,8225907.0,8874351.0,9360309.0,10372326.0,11004394.0,11732324.0,12028493.0,12959129.0,13691289.0,14598860.0,15111019.0,16104140.0,16847564.0,17345667.0,17376359.0,18445880.0,19398329.0,19959780.0,20270183.0,21186848.0,21895802.0,22590156.0,22798573.0,24158171.0,24698280.0,25879277.0,25825392.0,26891200.0,27567277.0,28723462.0,28390080.0,29632063.0,30598598.0,31310704.0,30864926.0,32247349.0,32921996.0,34136137.0,33859634.0,35050757.0,36134721.0,36715384.0,36958868.0,38035634.0,38497875.0,39225670.0,39798923.0,40747957.0,41220918.0,42366180.0,42050075.0,43084041.0,43927656.0,44663760.0,44986694.0,45698642.0,47261831.0,47256950.0,46964383.0,49091480.0,49632395.0,50540537.0,50099097.0,51885096.0,52729085.0,53320965.0,52917577.0,54621467.0,56049110.0,55978225.0,55504005.0,57635172.0,57916218.0,59066499.0,59009924.0,60674933.0,60915769.0,61263735.0,60840910.0,63003505.0,64005053.0,64309429.0,63179607.0,65425922.0,66062296.0,66551339.0,66103525.0,68621933.0,69971612.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":746.9648790780192,"lower_bound":744.7030992320576,"upper_bound":749.0848360810502,"unit":"ns"},"mean":{"estimate":746.7090204717914,"lower_bound":744.8883967495995,"upper_bound":748.4975517945225,"unit":"ns"},"median":{"estimate":747.2518593837547,"lower_bound":745.2438925081433,"upper_bound":749.6091448780694,"unit":"ns"},"median_abs_dev":{"estimate":7.810717136107823,"lower_bound":6.148118610252019,"upper_bound":10.437363296058358,"unit":"ns"},"slope":{"estimate":746.9648790780192,"lower_bound":744.7030992320576,"upper_bound":749.0848360810502,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"bldd/10000","report_directory":"/root/fuel-core/target/criterion/reports/bldd/10000","iteration_count":[368,736,1104,1472,1840,2208,2576,2944,3312,3680,4048,4416,4784,5152,5520,5888,6256,6624,6992,7360,7728,8096,8464,8832,9200,9568,9936,10304,10672,11040,11408,11776,12144,12512,12880,13248,13616,13984,14352,14720,15088,15456,15824,16192,16560,16928,17296,17664,18032,18400,18768,19136,19504,19872,20240,20608,20976,21344,21712,22080,22448,22816,23184,23552,23920,24288,24656,25024,25392,25760,26128,26496,26864,27232,27600,27968,28336,28704,29072,29440,29808,30176,30544,30912,31280,31648,32016,32384,32752,33120,33488,33856,34224,34592,34960,35328,35696,36064,36432,36800],"measured_values":[545522.0,1105504.0,1622370.0,2223077.0,2681667.0,3342430.0,3782743.0,4418156.0,4858521.0,5515943.0,5932822.0,6603328.0,7024016.0,7717557.0,8111714.0,8841488.0,9185273.0,10041928.0,10183350.0,10899042.0,11320445.0,12023276.0,12225469.0,13138935.0,13499790.0,13975603.0,14549942.0,15344289.0,15570128.0,16506730.0,16771921.0,17638481.0,17931165.0,18808222.0,18884029.0,19529856.0,19818162.0,20790828.0,20784732.0,21879509.0,22020533.0,22922425.0,23152638.0,24083895.0,24208058.0,25227218.0,25292007.0,26250386.0,26419107.0,27327214.0,27436039.0,28434751.0,28498896.0,29543072.0,29128128.0,30464443.0,30691109.0,31726455.0,31436412.0,32929070.0,32944896.0,33989954.0,33922332.0,35022077.0,34934244.0,36516874.0,36057896.0,37286490.0,37187213.0,38384898.0,38221405.0,39289184.0,39091934.0,40468420.0,40172834.0,41494549.0,41203627.0,42635847.0,42540422.0,43545971.0,43580333.0,44902158.0,44772405.0,46094039.0,45868529.0,46943775.0,46847219.0,47965436.0,48029295.0,49040420.0,48943679.0,50477119.0,50045451.0,51095724.0,51283481.0,52612376.0,52246350.0,53650725.0,56362320.0,54869130.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":1476.8549142176548,"lower_bound":1472.192450536464,"upper_bound":1482.4403628416774,"unit":"ns"},"mean":{"estimate":1476.9087300574374,"lower_bound":1473.514402883486,"upper_bound":1480.371126961008,"unit":"ns"},"median":{"estimate":1476.8208808132201,"lower_bound":1467.3684782608696,"upper_bound":1483.359961554702,"unit":"ns"},"median_abs_dev":{"estimate":19.344101421567565,"lower_bound":13.700845737896362,"upper_bound":23.456811213993106,"unit":"ns"},"slope":{"estimate":1476.8549142176548,"lower_bound":1472.192450536464,"upper_bound":1482.4403628416774,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"bldd/19753","report_directory":"/root/fuel-core/target/criterion/reports/bldd/19753","iteration_count":[187,374,561,748,935,1122,1309,1496,1683,1870,2057,2244,2431,2618,2805,2992,3179,3366,3553,3740,3927,4114,4301,4488,4675,4862,5049,5236,5423,5610,5797,5984,6171,6358,6545,6732,6919,7106,7293,7480,7667,7854,8041,8228,8415,8602,8789,8976,9163,9350,9537,9724,9911,10098,10285,10472,10659,10846,11033,11220,11407,11594,11781,11968,12155,12342,12529,12716,12903,13090,13277,13464,13651,13838,14025,14212,14399,14586,14773,14960,15147,15334,15521,15708,15895,16082,16269,16456,16643,16830,17017,17204,17391,17578,17765,17952,18139,18326,18513,18700],"measured_values":[588508.0,1128522.0,1665313.0,2220867.0,2771459.0,3360500.0,3876495.0,4429484.0,4959439.0,5624640.0,6079012.0,6641811.0,7176596.0,7839581.0,8301013.0,8868769.0,9325520.0,10182312.0,10507946.0,11240361.0,11659123.0,12316660.0,12759846.0,13302786.0,13837893.0,14711766.0,14870893.0,15545675.0,16029514.0,16783470.0,17112050.0,17798443.0,18173716.0,19163196.0,19395230.0,19927290.0,20520523.0,21411310.0,21552454.0,22101979.0,22649429.0,23690283.0,23806102.0,24425417.0,24930174.0,25712006.0,25895012.0,26538092.0,26942454.0,28182762.0,28199829.0,28839122.0,29295038.0,30186367.0,30381156.0,31031124.0,31438919.0,32523646.0,32710541.0,33280122.0,33793697.0,34747911.0,34863340.0,35375433.0,35924804.0,37220183.0,36982524.0,37725052.0,38274548.0,39258581.0,39413988.0,39932535.0,40269325.0,41876938.0,41365398.0,42048990.0,42613259.0,43656037.0,43655341.0,44357046.0,44607548.0,46170429.0,45790574.0,46289643.0,46948793.0,47974049.0,48268708.0,48690421.0,49099631.0,50682869.0,50122109.0,50984227.0,51380440.0,52655052.0,52450276.0,53221029.0,53590266.0,55371113.0,54808429.0,55364830.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":2969.073863282729,"lower_bound":2963.4640529271915,"upper_bound":2975.3160993897714,"unit":"ns"},"mean":{"estimate":2972.2824622552953,"lower_bound":2967.000517225665,"upper_bound":2978.2782574694784,"unit":"ns"},"median":{"estimate":2963.3065317035907,"lower_bound":2959.9467468805706,"upper_bound":2965.822084116202,"unit":"ns"},"median_abs_dev":{"estimate":13.168279821577633,"lower_bound":9.032549582993223,"upper_bound":20.489832270402353,"unit":"ns"},"slope":{"estimate":2969.073863282729,"lower_bound":2963.4640529271915,"upper_bound":2975.3160993897714,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"bldd/29629","report_directory":"/root/fuel-core/target/criterion/reports/bldd/29629","iteration_count":[123,246,369,492,615,738,861,984,1107,1230,1353,1476,1599,1722,1845,1968,2091,2214,2337,2460,2583,2706,2829,2952,3075,3198,3321,3444,3567,3690,3813,3936,4059,4182,4305,4428,4551,4674,4797,4920,5043,5166,5289,5412,5535,5658,5781,5904,6027,6150,6273,6396,6519,6642,6765,6888,7011,7134,7257,7380,7503,7626,7749,7872,7995,8118,8241,8364,8487,8610,8733,8856,8979,9102,9225,9348,9471,9594,9717,9840,9963,10086,10209,10332,10455,10578,10701,10824,10947,11070,11193,11316,11439,11562,11685,11808,11931,12054,12177,12300],"measured_values":[573662.0,1082421.0,1632643.0,2173830.0,2723822.0,3233458.0,3811944.0,4330770.0,4898318.0,5396012.0,5985563.0,6543392.0,7027952.0,7557764.0,8122648.0,8664152.0,9203035.0,9657103.0,10301711.0,10804863.0,11430652.0,11815646.0,12471247.0,13013186.0,13594434.0,13926394.0,14701652.0,15127583.0,15713179.0,16118621.0,16815460.0,17279299.0,17852661.0,18234905.0,18948091.0,19617955.0,20208624.0,20467999.0,21160210.0,21563216.0,22608126.0,22602507.0,23678400.0,23866460.0,24709619.0,24865684.0,25849799.0,26184128.0,26893669.0,27034938.0,28070006.0,28283135.0,29223388.0,29121788.0,30282017.0,30493593.0,31380865.0,31205995.0,32487787.0,32563058.0,33578021.0,33404655.0,34607684.0,34706530.0,36029204.0,35508601.0,36874663.0,36969896.0,37989431.0,37802143.0,39118794.0,39090553.0,40204032.0,39857498.0,41239457.0,41286359.0,42324035.0,42009636.0,43464694.0,43428138.0,44497470.0,44270355.0,45675186.0,45761305.0,46827977.0,46339010.0,47979250.0,47750453.0,48943405.0,48426570.0,50047279.0,50011500.0,51113743.0,50623025.0,52270948.0,51989430.0,53362394.0,52572863.0,54446355.0,54055834.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":4432.564807164371,"lower_bound":4421.41613223653,"upper_bound":4443.452823268764,"unit":"ns"},"mean":{"estimate":4425.400279630694,"lower_bound":4416.8348114189075,"upper_bound":4434.643861891801,"unit":"ns"},"median":{"estimate":4415.308589478438,"lower_bound":4408.2253911555135,"upper_bound":4425.866606443842,"unit":"ns"},"median_abs_dev":{"estimate":43.82916670166925,"lower_bound":28.63705274362209,"upper_bound":64.0819875592693,"unit":"ns"},"slope":{"estimate":4432.564807164371,"lower_bound":4421.41613223653,"upper_bound":4443.452823268764,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"bldd/44444","report_directory":"/root/fuel-core/target/criterion/reports/bldd/44444","iteration_count":[68,136,204,272,340,408,476,544,612,680,748,816,884,952,1020,1088,1156,1224,1292,1360,1428,1496,1564,1632,1700,1768,1836,1904,1972,2040,2108,2176,2244,2312,2380,2448,2516,2584,2652,2720,2788,2856,2924,2992,3060,3128,3196,3264,3332,3400,3468,3536,3604,3672,3740,3808,3876,3944,4012,4080,4148,4216,4284,4352,4420,4488,4556,4624,4692,4760,4828,4896,4964,5032,5100,5168,5236,5304,5372,5440,5508,5576,5644,5712,5780,5848,5916,5984,6052,6120,6188,6256,6324,6392,6460,6528,6596,6664,6732,6800],"measured_values":[561558.0,1079363.0,1627680.0,2158514.0,2724721.0,3242050.0,3780778.0,4231426.0,4829091.0,5244723.0,5853286.0,6314436.0,6912239.0,7374361.0,8019058.0,8401429.0,8978508.0,9480472.0,10076996.0,10545393.0,11216583.0,11625053.0,12225478.0,12680203.0,13298542.0,13757310.0,14356616.0,14774997.0,15441663.0,15754333.0,16495357.0,16794563.0,17494475.0,17883569.0,18511568.0,18903299.0,19614965.0,19968158.0,20710256.0,21064928.0,21891316.0,22232384.0,22918508.0,23266967.0,23899394.0,24276127.0,24986146.0,25400472.0,26098971.0,26416501.0,27328869.0,27345817.0,28182254.0,28765411.0,29326766.0,29593502.0,30321566.0,30660691.0,31295025.0,31684804.0,32630950.0,32648902.0,33340238.0,33731303.0,34552508.0,34573382.0,35401799.0,35644448.0,36410614.0,36851417.0,37662303.0,37862600.0,38697065.0,39053249.0,39747972.0,40128214.0,41006827.0,41188084.0,42049204.0,42265807.0,42999420.0,43178277.0,43913736.0,44038911.0,45036782.0,45061795.0,46130695.0,46146438.0,47179652.0,47202963.0,48177221.0,48318668.0,49241668.0,49292846.0,50223906.0,50199604.0,51498626.0,53387507.0,55059894.0,54622549.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":7797.04884930328,"lower_bound":7769.146973152127,"upper_bound":7830.535828116817,"unit":"ns"},"mean":{"estimate":7803.879021379777,"lower_bound":7787.1080184432585,"upper_bound":7822.607146203587,"unit":"ns"},"median":{"estimate":7783.47502334267,"lower_bound":7771.4028361344535,"upper_bound":7797.82218078619,"unit":"ns"},"median_abs_dev":{"estimate":57.08570545711461,"lower_bound":41.73076810717002,"upper_bound":67.85225584666337,"unit":"ns"},"slope":{"estimate":7797.04884930328,"lower_bound":7769.146973152127,"upper_bound":7830.535828116817,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"bldd/66666","report_directory":"/root/fuel-core/target/criterion/reports/bldd/66666","iteration_count":[45,90,135,180,225,270,315,360,405,450,495,540,585,630,675,720,765,810,855,900,945,990,1035,1080,1125,1170,1215,1260,1305,1350,1395,1440,1485,1530,1575,1620,1665,1710,1755,1800,1845,1890,1935,1980,2025,2070,2115,2160,2205,2250,2295,2340,2385,2430,2475,2520,2565,2610,2655,2700,2745,2790,2835,2880,2925,2970,3015,3060,3105,3150,3195,3240,3285,3330,3375,3420,3465,3510,3555,3600,3645,3690,3735,3780,3825,3870,3915,3960,4005,4050,4095,4140,4185,4230,4275,4320,4365,4410,4455,4500],"measured_values":[532081.0,1008452.0,1496514.0,2018955.0,2492917.0,3060711.0,3488794.0,4032047.0,4487044.0,5067750.0,5512090.0,6072274.0,6481436.0,7075552.0,7477980.0,8106084.0,8502141.0,9106284.0,9440193.0,10096947.0,10472860.0,11144543.0,11460613.0,12105106.0,12516636.0,13171328.0,13475415.0,14157018.0,14444851.0,15227580.0,15542443.0,16185392.0,16485896.0,17135938.0,17456047.0,18154849.0,18457653.0,19504792.0,19349773.0,20245427.0,20427349.0,21206056.0,21423324.0,22209489.0,22395001.0,23215637.0,23436437.0,24250884.0,24425872.0,25291784.0,25464499.0,26289598.0,26521272.0,27357896.0,27458154.0,28327599.0,28466704.0,29345840.0,29509323.0,30352343.0,30433558.0,31294573.0,31427848.0,32331728.0,32491003.0,33325671.0,33455512.0,34211200.0,34464515.0,35356123.0,35478517.0,36418023.0,36464518.0,37887777.0,37737369.0,38511405.0,38594042.0,39315929.0,39614890.0,40373294.0,40613813.0,40551655.0,41683007.0,41426849.0,42694178.0,42387199.0,44243267.0,43503948.0,44719892.0,44411628.0,45884798.0,45683551.0,46809139.0,47475413.0,47995402.0,47850157.0,49049708.0,48931420.0,50103581.0,49864933.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":11149.810575045563,"lower_bound":11123.904993305516,"upper_bound":11175.13013697076,"unit":"ns"},"mean":{"estimate":11165.516285227179,"lower_bound":11144.72751275745,"upper_bound":11188.182157412017,"unit":"ns"},"median":{"estimate":11163.94604097819,"lower_bound":11114.622598870057,"upper_bound":11206.755179080179,"unit":"ns"},"median_abs_dev":{"estimate":110.46109613826762,"lower_bound":68.76757066318773,"upper_bound":118.48321122031376,"unit":"ns"},"slope":{"estimate":11149.810575045563,"lower_bound":11123.904993305516,"upper_bound":11175.13013697076,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"bldd/100000","report_directory":"/root/fuel-core/target/criterion/reports/bldd/100000","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":[539312.0,1068037.0,1579157.0,2125498.0,2646945.0,3195142.0,3680655.0,4260305.0,4811657.0,5345707.0,5785414.0,6391055.0,6866370.0,7463039.0,7892796.0,8538911.0,8950528.0,9600596.0,9988001.0,10770739.0,11040669.0,11748290.0,12136493.0,12821321.0,13162162.0,13874022.0,14230219.0,14898976.0,15260889.0,16172265.0,16440157.0,17062690.0,17419238.0,18106159.0,18425312.0,19245082.0,19519634.0,20274768.0,20573445.0,21428691.0,21555510.0,22398288.0,22708207.0,23515070.0,23711240.0,24566638.0,24790514.0,25622660.0,25841012.0,26665848.0,26915040.0,27692930.0,27931093.0,28907226.0,28976929.0,29823705.0,30041658.0,30999767.0,31083054.0,32020219.0,32135061.0,33011320.0,33164430.0,34157486.0,34165663.0,35098204.0,35239820.0,36185207.0,36203511.0,37240280.0,37402107.0,38313757.0,38369759.0,39395810.0,39335813.0,40520929.0,40428532.0,41587457.0,41472975.0,42589973.0,42589508.0,42848740.0,43621031.0,44000204.0,44650395.0,45068984.0,45735815.0,45930143.0,46737916.0,47001078.0,47805256.0,48173636.0,48868736.0,48019694.0,49212870.0,49110697.0,50129141.0,50181273.0,51191115.0,51246860.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":15445.107878371682,"lower_bound":15391.093682356019,"upper_bound":15501.183512988782,"unit":"ns"},"mean":{"estimate":15542.777680418007,"lower_bound":15509.559234175642,"upper_bound":15574.8048026669,"unit":"ns"},"median":{"estimate":15515.910388895683,"lower_bound":15494.243490838959,"upper_bound":15640.910873440285,"unit":"ns"},"median_abs_dev":{"estimate":189.9704021789539,"lower_bound":89.17915793232432,"upper_bound":217.51940162590373,"unit":"ns"},"slope":{"estimate":15445.107878371682,"lower_bound":15391.093682356019,"upper_bound":15501.183512988782,"unit":"ns"},"change":null} +{"reason":"group-complete","group_name":"bldd","benchmarks":["bldd/1","bldd/10","bldd/100","bldd/1000","bldd/10000","bldd/19753","bldd/29629","bldd/44444","bldd/66666","bldd/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/bldd"} +{"reason":"benchmark-complete","id":"csiz/1","report_directory":"/root/fuel-core/target/criterion/reports/csiz/1","iteration_count":[1912,3824,5736,7648,9560,11472,13384,15296,17208,19120,21032,22944,24856,26768,28680,30592,32504,34416,36328,38240,40152,42064,43976,45888,47800,49712,51624,53536,55448,57360,59272,61184,63096,65008,66920,68832,70744,72656,74568,76480,78392,80304,82216,84128,86040,87952,89864,91776,93688,95600,97512,99424,101336,103248,105160,107072,108984,110896,112808,114720,116632,118544,120456,122368,124280,126192,128104,130016,131928,133840,135752,137664,139576,141488,143400,145312,147224,149136,151048,152960,154872,156784,158696,160608,162520,164432,166344,168256,170168,172080,173992,175904,177816,179728,181640,183552,185464,187376,189288,191200],"measured_values":[623145.0,1236363.0,1860987.0,2479734.0,3089806.0,3707542.0,4732341.0,4942833.0,5559750.0,6182400.0,6785201.0,7446375.0,8047522.0,9415549.0,9517724.0,9930918.0,10525917.0,11129267.0,12031332.0,12365631.0,12995721.0,13617422.0,14232654.0,14843482.0,15473192.0,16099047.0,16705500.0,17345458.0,17934309.0,18603625.0,19199258.0,19844596.0,20445149.0,21144876.0,21677166.0,23777219.0,22911716.0,23474198.0,24072268.0,24745251.0,25370443.0,26059133.0,26610540.0,27167654.0,28240270.0,28453070.0,29047247.0,29643163.0,30274421.0,30918749.0,31473124.0,32207299.0,32855999.0,33441315.0,34087407.0,34714258.0,36711984.0,36099586.0,36605067.0,37250305.0,37805537.0,38432583.0,39023064.0,39735278.0,40205159.0,40862651.0,41442313.0,42141637.0,42706314.0,43484532.0,43981724.0,44619390.0,46652082.0,45801089.0,46378301.0,47194105.0,47700338.0,48646086.0,48967330.0,49608859.0,50139143.0,50824460.0,51313003.0,52176774.0,52597361.0,53256484.0,53865870.0,54619984.0,55269088.0,55895594.0,56364812.0,57103863.0,57698226.0,58321978.0,58968424.0,59438107.0,60191772.0,60677999.0,61336426.0,61988966.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":324.5699236094065,"lower_bound":324.18864850992327,"upper_bound":325.0784155840344,"unit":"ns"},"mean":{"estimate":325.1797788716669,"lower_bound":324.3286270976104,"upper_bound":326.2432278109841,"unit":"ns"},"median":{"estimate":323.9558715343234,"lower_bound":323.8283261688747,"upper_bound":324.15622108897026,"unit":"ns"},"median_abs_dev":{"estimate":0.7174881802536737,"lower_bound":0.4897949825559797,"upper_bound":0.8644101639963441,"unit":"ns"},"slope":{"estimate":324.5699236094065,"lower_bound":324.18864850992327,"upper_bound":325.0784155840344,"unit":"ns"},"change":{"mean":{"estimate":0.009971916517575563,"lower_bound":0.005558848301570686,"upper_bound":0.014140630750540154,"unit":"%"},"median":{"estimate":0.008618007808498085,"lower_bound":0.007829164200398697,"upper_bound":0.009307816713876704,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"csiz/10","report_directory":"/root/fuel-core/target/criterion/reports/csiz/10","iteration_count":[1861,3722,5583,7444,9305,11166,13027,14888,16749,18610,20471,22332,24193,26054,27915,29776,31637,33498,35359,37220,39081,40942,42803,44664,46525,48386,50247,52108,53969,55830,57691,59552,61413,63274,65135,66996,68857,70718,72579,74440,76301,78162,80023,81884,83745,85606,87467,89328,91189,93050,94911,96772,98633,100494,102355,104216,106077,107938,109799,111660,113521,115382,117243,119104,120965,122826,124687,126548,128409,130270,132131,133992,135853,137714,139575,141436,143297,145158,147019,148880,150741,152602,154463,156324,158185,160046,161907,163768,165629,167490,169351,171212,173073,174934,176795,178656,180517,182378,184239,186100],"measured_values":[677396.0,1224943.0,1998610.0,2664466.0,3351024.0,3988956.0,4662292.0,4960173.0,5550446.0,6146075.0,6798782.0,7368627.0,8006984.0,8627989.0,9232013.0,9868620.0,10534564.0,11070830.0,11754945.0,12286049.0,12951996.0,13554287.0,14185730.0,15052227.0,15464790.0,15950737.0,16638256.0,17240402.0,17890975.0,18430648.0,19133691.0,20098424.0,20499361.0,20927422.0,21606830.0,22140158.0,22845706.0,23392017.0,24110029.0,24627233.0,25304748.0,25786433.0,26580746.0,28015094.0,27782719.0,28352623.0,29016522.0,29532969.0,30230771.0,30710788.0,31467506.0,31997666.0,32778839.0,33246378.0,34291164.0,34468845.0,35244789.0,35683174.0,36335353.0,36924021.0,37606554.0,38060701.0,38899197.0,39372883.0,40088341.0,40617852.0,41500631.0,41844559.0,42553575.0,43233669.0,44069423.0,44424148.0,45172271.0,45778432.0,46351713.0,46743388.0,47608643.0,48087753.0,48732644.0,49252164.0,50014006.0,50445880.0,51139450.0,51941480.0,52408204.0,53003886.0,53603270.0,59315832.0,54974021.0,55460041.0,56169989.0,56712359.0,57532052.0,57881875.0,58642799.0,59466823.0,59798917.0,60340030.0,61118351.0,61498217.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":332.26677532581186,"lower_bound":331.3930946662399,"upper_bound":333.8930690942821,"unit":"ns"},"mean":{"estimate":333.58126350517165,"lower_bound":332.2577136455419,"upper_bound":335.1407621696496,"unit":"ns"},"median":{"estimate":331.4165996375421,"lower_bound":331.1990164240824,"upper_bound":331.6787909087343,"unit":"ns"},"median_abs_dev":{"estimate":1.0370860809481128,"lower_bound":0.7537207961424609,"upper_bound":1.2419041241333388,"unit":"ns"},"slope":{"estimate":332.26677532581186,"lower_bound":331.3930946662399,"upper_bound":333.8930690942821,"unit":"ns"},"change":{"mean":{"estimate":0.04934691776147759,"lower_bound":0.044686535210385084,"upper_bound":0.05473668548894842,"unit":"%"},"median":{"estimate":0.04433334605403738,"lower_bound":0.04333316229368589,"upper_bound":0.04532312525162441,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"csiz/100","report_directory":"/root/fuel-core/target/criterion/reports/csiz/100","iteration_count":[1821,3642,5463,7284,9105,10926,12747,14568,16389,18210,20031,21852,23673,25494,27315,29136,30957,32778,34599,36420,38241,40062,41883,43704,45525,47346,49167,50988,52809,54630,56451,58272,60093,61914,63735,65556,67377,69198,71019,72840,74661,76482,78303,80124,81945,83766,85587,87408,89229,91050,92871,94692,96513,98334,100155,101976,103797,105618,107439,109260,111081,112902,114723,116544,118365,120186,122007,123828,125649,127470,129291,131112,132933,134754,136575,138396,140217,142038,143859,145680,147501,149322,151143,152964,154785,156606,158427,160248,162069,163890,165711,167532,169353,171174,172995,174816,176637,178458,180279,182100],"measured_values":[666474.0,1273689.0,1942934.0,2537586.0,3443200.0,4161967.0,4831060.0,5527639.0,5866956.0,6434449.0,7013097.0,7668894.0,8319017.0,8969273.0,9668680.0,10197596.0,10786710.0,11542053.0,12056431.0,12968027.0,13336010.0,14028843.0,14578251.0,15214524.0,15866304.0,16672066.0,17203433.0,17793635.0,18387069.0,19169228.0,19686755.0,20311036.0,20960235.0,21889134.0,22319932.0,23114843.0,23802488.0,24324703.0,24883214.0,25415254.0,26063918.0,27056452.0,27424549.0,27964331.0,28587996.0,29408161.0,29940803.0,30516243.0,31155256.0,32041550.0,32414864.0,33105879.0,33647063.0,34548996.0,34924213.0,35616054.0,36240002.0,37079223.0,37613151.0,38147825.0,38758020.0,39590542.0,40137473.0,40630253.0,41367256.0,42326088.0,42637506.0,43140608.0,43912624.0,44761376.0,45113511.0,45783444.0,46430908.0,47519161.0,47784676.0,48259872.0,48890651.0,49850934.0,50319539.0,50824826.0,51525979.0,52424947.0,52777966.0,53343066.0,54058260.0,55071329.0,55441143.0,56003231.0,56517216.0,57637633.0,58004800.0,58414486.0,59069717.0,60105552.0,60382207.0,60992564.0,61908701.0,62804891.0,62959031.0,63502245.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":349.85268562662407,"lower_bound":349.5654180052305,"upper_bound":350.1623063072405,"unit":"ns"},"mean":{"estimate":351.51481695053576,"lower_bound":350.4256788368973,"upper_bound":352.83597892525654,"unit":"ns"},"median":{"estimate":349.75307245288786,"lower_bound":349.24513244550315,"upper_bound":350.1333651061194,"unit":"ns"},"median_abs_dev":{"estimate":1.5279251135031429,"lower_bound":0.905403680864687,"upper_bound":1.940218297858789,"unit":"ns"},"slope":{"estimate":349.85268562662407,"lower_bound":349.5654180052305,"upper_bound":350.1623063072405,"unit":"ns"},"change":{"mean":{"estimate":0.023050093143456518,"lower_bound":0.017298806881099433,"upper_bound":0.029049327016688605,"unit":"%"},"median":{"estimate":0.026634736617249244,"lower_bound":0.02463865475282656,"upper_bound":0.02826907725852923,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"csiz/1000","report_directory":"/root/fuel-core/target/criterion/reports/csiz/1000","iteration_count":[1731,3462,5193,6924,8655,10386,12117,13848,15579,17310,19041,20772,22503,24234,25965,27696,29427,31158,32889,34620,36351,38082,39813,41544,43275,45006,46737,48468,50199,51930,53661,55392,57123,58854,60585,62316,64047,65778,67509,69240,70971,72702,74433,76164,77895,79626,81357,83088,84819,86550,88281,90012,91743,93474,95205,96936,98667,100398,102129,103860,105591,107322,109053,110784,112515,114246,115977,117708,119439,121170,122901,124632,126363,128094,129825,131556,133287,135018,136749,138480,140211,141942,143673,145404,147135,148866,150597,152328,154059,155790,157521,159252,160983,162714,164445,166176,167907,169638,171369,173100],"measured_values":[674569.0,1250209.0,2050084.0,2746681.0,3464508.0,4132117.0,4731942.0,5031280.0,5674266.0,6285995.0,6910112.0,7526162.0,8151746.0,9267379.0,9432153.0,10094494.0,10681808.0,11959239.0,11946574.0,12586495.0,13170315.0,13846527.0,14462546.0,15050314.0,15668269.0,16710733.0,16985070.0,17635675.0,18188980.0,18841532.0,19433940.0,20102322.0,20745346.0,21641860.0,22221859.0,22781317.0,23299450.0,24039866.0,24494235.0,25128490.0,25697349.0,26365520.0,27122577.0,27681154.0,28254306.0,28927169.0,29546793.0,30126567.0,30749412.0,31395634.0,32067758.0,32614860.0,33296886.0,33915726.0,34577628.0,35217543.0,35775592.0,36494140.0,37208613.0,37772393.0,38359488.0,38894770.0,39504694.0,40250027.0,40892699.0,41584363.0,42150902.0,42705992.0,43577715.0,43977271.0,44640709.0,45181509.0,45830997.0,46535881.0,47041223.0,47751499.0,48347027.0,48998729.0,49598653.0,50218515.0,50817289.0,51401228.0,52039324.0,52984502.0,53336553.0,54236886.0,54729944.0,55251791.0,55804556.0,56615945.0,57168927.0,57743873.0,58415951.0,59029993.0,59800903.0,60218752.0,61006607.0,61675830.0,62150688.0,62974495.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":363.15057399141193,"lower_bound":362.9793823609603,"upper_bound":363.33749967631405,"unit":"ns"},"mean":{"estimate":365.5618588333059,"lower_bound":364.11311102489077,"upper_bound":367.25912174704064,"unit":"ns"},"median":{"estimate":363.17216022461423,"lower_bound":362.90699017908724,"upper_bound":363.29757262523725,"unit":"ns"},"median_abs_dev":{"estimate":0.7663128200174166,"lower_bound":0.5696315915351242,"upper_bound":1.0381373780185745,"unit":"ns"},"slope":{"estimate":363.15057399141193,"lower_bound":362.9793823609603,"upper_bound":363.33749967631405,"unit":"ns"},"change":{"mean":{"estimate":0.03078792732648994,"lower_bound":0.02560714876601754,"upper_bound":0.03645527756935604,"unit":"%"},"median":{"estimate":0.029893311754025875,"lower_bound":0.028685459215124377,"upper_bound":0.03059779825536008,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"csiz/10000","report_directory":"/root/fuel-core/target/criterion/reports/csiz/10000","iteration_count":[1241,2482,3723,4964,6205,7446,8687,9928,11169,12410,13651,14892,16133,17374,18615,19856,21097,22338,23579,24820,26061,27302,28543,29784,31025,32266,33507,34748,35989,37230,38471,39712,40953,42194,43435,44676,45917,47158,48399,49640,50881,52122,53363,54604,55845,57086,58327,59568,60809,62050,63291,64532,65773,67014,68255,69496,70737,71978,73219,74460,75701,76942,78183,79424,80665,81906,83147,84388,85629,86870,88111,89352,90593,91834,93075,94316,95557,96798,98039,99280,100521,101762,103003,104244,105485,106726,107967,109208,110449,111690,112931,114172,115413,116654,117895,119136,120377,121618,122859,124100],"measured_values":[706792.0,1452579.0,2047141.0,2863188.0,3385126.0,4316535.0,5066709.0,5934837.0,6165342.0,7240223.0,7489629.0,8576170.0,8822187.0,10079025.0,10257153.0,11541580.0,11540632.0,12975919.0,12887931.0,14398083.0,14334525.0,15829788.0,15689475.0,17201518.0,17074229.0,18853992.0,18396650.0,20227930.0,19805242.0,21699906.0,21091188.0,22942402.0,22425778.0,24641172.0,24087080.0,26276226.0,25534768.0,27653928.0,26557336.0,28815019.0,27983959.0,30390925.0,29314325.0,31733481.0,30582280.0,33256925.0,32021946.0,34460485.0,33497545.0,36158931.0,34712045.0,37308462.0,36052635.0,39085486.0,37349001.0,40165892.0,38893356.0,42041810.0,40208409.0,43103553.0,41585099.0,44804962.0,42846319.0,46071645.0,44227046.0,48181565.0,45767483.0,48851386.0,47252772.0,50832547.0,48249384.0,51832950.0,49777244.0,53551572.0,51046410.0,54646417.0,52524346.0,56349345.0,53717393.0,57501780.0,55120441.0,59098138.0,56752266.0,60465465.0,57819717.0,62119984.0,59255161.0,63555111.0,60551311.0,65093076.0,62222493.0,66231763.0,63325773.0,68080181.0,64736954.0,69025626.0,66033786.0,71052920.0,67486381.0,72042859.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":565.6203152093626,"lower_bound":561.3401241290944,"upper_bound":569.8803950741219,"unit":"ns"},"mean":{"estimate":566.0579012577559,"lower_bound":562.8401172325863,"upper_bound":569.2743489454292,"unit":"ns"},"median":{"estimate":576.3407869997313,"lower_bound":550.7087035285597,"upper_bound":579.3851228847703,"unit":"ns"},"median_abs_dev":{"estimate":17.586338926663778,"lower_bound":4.955533594243904,"upper_bound":26.851078646725867,"unit":"ns"},"slope":{"estimate":565.6203152093626,"lower_bound":561.3401241290944,"upper_bound":569.8803950741219,"unit":"ns"},"change":{"mean":{"estimate":0.01042063921653269,"lower_bound":0.0030706739823346046,"upper_bound":0.016190262559333934,"unit":"%"},"median":{"estimate":0.023976206498173225,"lower_bound":-0.02350682609385002,"upper_bound":0.03589810379681935,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"csiz/19753","report_directory":"/root/fuel-core/target/criterion/reports/csiz/19753","iteration_count":[981,1962,2943,3924,4905,5886,6867,7848,8829,9810,10791,11772,12753,13734,14715,15696,16677,17658,18639,19620,20601,21582,22563,23544,24525,25506,26487,27468,28449,29430,30411,31392,32373,33354,34335,35316,36297,37278,38259,39240,40221,41202,42183,43164,44145,45126,46107,47088,48069,49050,50031,51012,51993,52974,53955,54936,55917,56898,57879,58860,59841,60822,61803,62784,63765,64746,65727,66708,67689,68670,69651,70632,71613,72594,73575,74556,75537,76518,77499,78480,79461,80442,81423,82404,83385,84366,85347,86328,87309,88290,89271,90252,91233,92214,93195,94176,95157,96138,97119,98100],"measured_values":[799691.0,1504909.0,2371572.0,3142621.0,3824921.0,4611806.0,5341579.0,6187564.0,6882255.0,7764540.0,8425181.0,9460952.0,9878542.0,10666283.0,11448790.0,12267527.0,12941410.0,13672604.0,14653066.0,15435736.0,16012819.0,16853507.0,17618314.0,18471344.0,19089968.0,19858039.0,20559475.0,21601437.0,22087057.0,22816648.0,23646762.0,24530616.0,25225575.0,25912114.0,26718340.0,27674640.0,28371535.0,28970895.0,29767718.0,31046532.0,31311837.0,32078164.0,32839353.0,33952816.0,34702214.0,35077316.0,35806784.0,36886916.0,37449854.0,38208319.0,38992091.0,40129188.0,40627545.0,41205511.0,41901848.0,42972308.0,43400912.0,44194411.0,45276872.0,45991988.0,46868939.0,47612126.0,48339017.0,49299870.0,49633325.0,50484906.0,51475605.0,52433227.0,52481127.0,53442111.0,54331392.0,55409481.0,55662125.0,56646428.0,57354112.0,58375818.0,58834861.0,59964598.0,60527871.0,61339455.0,61756115.0,63100537.0,63349945.0,64607731.0,65200238.0,65792582.0,66573844.0,67743033.0,68290243.0,68758735.0,69523115.0,70606301.0,71246039.0,71714393.0,72304399.0,73696185.0,73836399.0,74887179.0,75410590.0,76955463.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":780.4734371952874,"lower_bound":779.7063687176111,"upper_bound":781.245513166356,"unit":"ns"},"mean":{"estimate":781.4117533432162,"lower_bound":780.2292242903627,"upper_bound":782.7534950552244,"unit":"ns"},"median":{"estimate":779.9422125162912,"lower_bound":778.927361822683,"upper_bound":781.4041313253707,"unit":"ns"},"median_abs_dev":{"estimate":3.9151238570152533,"lower_bound":3.0282878463192495,"upper_bound":4.886009586389777,"unit":"ns"},"slope":{"estimate":780.4734371952874,"lower_bound":779.7063687176111,"upper_bound":781.245513166356,"unit":"ns"},"change":{"mean":{"estimate":-0.027346683980595143,"lower_bound":-0.029480464423314104,"upper_bound":-0.02513552440633237,"unit":"%"},"median":{"estimate":-0.02824801738456051,"lower_bound":-0.02992037373155143,"upper_bound":-0.026112727280974912,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"csiz/29629","report_directory":"/root/fuel-core/target/criterion/reports/csiz/29629","iteration_count":[821,1642,2463,3284,4105,4926,5747,6568,7389,8210,9031,9852,10673,11494,12315,13136,13957,14778,15599,16420,17241,18062,18883,19704,20525,21346,22167,22988,23809,24630,25451,26272,27093,27914,28735,29556,30377,31198,32019,32840,33661,34482,35303,36124,36945,37766,38587,39408,40229,41050,41871,42692,43513,44334,45155,45976,46797,47618,48439,49260,50081,50902,51723,52544,53365,54186,55007,55828,56649,57470,58291,59112,59933,60754,61575,62396,63217,64038,64859,65680,66501,67322,68143,68964,69785,70606,71427,72248,73069,73890,74711,75532,76353,77174,77995,78816,79637,80458,81279,82100],"measured_values":[846331.0,1606247.0,2382771.0,3202688.0,4102849.0,4801448.0,5679193.0,6521125.0,7293985.0,8036282.0,8706705.0,9784164.0,10379482.0,11196366.0,11879752.0,12770785.0,13507705.0,14463523.0,15059446.0,15999035.0,16659401.0,17585040.0,18445040.0,19146547.0,19843283.0,20955152.0,21573886.0,22646210.0,23178128.0,24153336.0,24739201.0,25748116.0,26360337.0,27372616.0,28017210.0,28925185.0,29703497.0,30570019.0,31068941.0,32090474.0,32674754.0,33785476.0,34258558.0,35333350.0,36086007.0,37021088.0,37614738.0,38544411.0,39187629.0,40249607.0,40719163.0,41940264.0,42523466.0,43546329.0,44082364.0,44903592.0,45562666.0,47015567.0,47212885.0,48285288.0,48630461.0,49901300.0,50204088.0,51462140.0,51805721.0,53154493.0,53446430.0,54588346.0,55025412.0,56479340.0,56813806.0,57762170.0,58155507.0,59475290.0,59794087.0,60968258.0,61354800.0,62837411.0,62887620.0,64268788.0,64580582.0,66242813.0,66456929.0,67560951.0,67818900.0,69313822.0,69419549.0,70726869.0,71151980.0,72741412.0,72562113.0,73864201.0,74129499.0,75728554.0,75806157.0,77088923.0,77342152.0,78865674.0,78957948.0,80337434.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":976.1377218345028,"lower_bound":974.9679693952002,"upper_bound":977.3254936915727,"unit":"ns"},"mean":{"estimate":976.917931846583,"lower_bound":975.4552255051318,"upper_bound":978.6292765281535,"unit":"ns"},"median":{"estimate":976.7120120642654,"lower_bound":974.3626674786846,"upper_bound":978.0859470158343,"unit":"ns"},"median_abs_dev":{"estimate":6.040112014944097,"lower_bound":4.691277543918319,"upper_bound":7.064691834400432,"unit":"ns"},"slope":{"estimate":976.1377218345028,"lower_bound":974.9679693952002,"upper_bound":977.3254936915727,"unit":"ns"},"change":{"mean":{"estimate":-0.03195883134310051,"lower_bound":-0.05684643590392382,"upper_bound":-0.010432774272457949,"unit":"%"},"median":{"estimate":-0.002871068361961382,"lower_bound":-0.006257408767844742,"upper_bound":-0.001504511310702263,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"csiz/44444","report_directory":"/root/fuel-core/target/criterion/reports/csiz/44444","iteration_count":[497,994,1491,1988,2485,2982,3479,3976,4473,4970,5467,5964,6461,6958,7455,7952,8449,8946,9443,9940,10437,10934,11431,11928,12425,12922,13419,13916,14413,14910,15407,15904,16401,16898,17395,17892,18389,18886,19383,19880,20377,20874,21371,21868,22365,22862,23359,23856,24353,24850,25347,25844,26341,26838,27335,27832,28329,28826,29323,29820,30317,30814,31311,31808,32305,32802,33299,33796,34293,34790,35287,35784,36281,36778,37275,37772,38269,38766,39263,39760,40257,40754,41251,41748,42245,42742,43239,43736,44233,44730,45227,45724,46221,46718,47215,47712,48209,48706,49203,49700],"measured_values":[840400.0,1602247.0,2418749.0,3181301.0,4028559.0,4765537.0,5626486.0,6353817.0,7254254.0,8031360.0,9086926.0,9531083.0,10480821.0,11182844.0,12040129.0,12728465.0,13691583.0,14358197.0,15302561.0,15898917.0,16911990.0,17588768.0,18521821.0,19126425.0,20152471.0,20711086.0,21766066.0,22252898.0,23488147.0,23894363.0,25062117.0,25331690.0,26508728.0,27024858.0,28163176.0,28535687.0,29816523.0,30316340.0,31432522.0,31741243.0,33150159.0,33488744.0,34703689.0,34901951.0,36261174.0,37148197.0,37978422.0,38149678.0,39267654.0,39874108.0,41129078.0,41338748.0,42739542.0,43136709.0,44254775.0,44489239.0,45889019.0,46087842.0,47441670.0,47541100.0,49014860.0,49360994.0,50655478.0,50626999.0,52168092.0,52382171.0,53790020.0,53630908.0,54746120.0,55089754.0,56293746.0,56307031.0,58081378.0,58149066.0,59664148.0,59449831.0,61059388.0,61385230.0,62706841.0,62544395.0,64361963.0,64503807.0,65806003.0,65685461.0,67429767.0,67709759.0,69071611.0,68738076.0,70748356.0,70785314.0,72266394.0,71902707.0,73745894.0,73864173.0,75332347.0,74946097.0,76980227.0,77125610.0,78537485.0,78137150.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":1594.1241664558058,"lower_bound":1590.6546610702637,"upper_bound":1597.9021077172736,"unit":"ns"},"mean":{"estimate":1604.53033441357,"lower_bound":1600.9844428621252,"upper_bound":1608.2487875462314,"unit":"ns"},"median":{"estimate":1600.6549656270959,"lower_bound":1598.6606257000128,"upper_bound":1606.0887148286545,"unit":"ns"},"median_abs_dev":{"estimate":21.19530530978607,"lower_bound":9.04221706364705,"upper_bound":25.018237105177704,"unit":"ns"},"slope":{"estimate":1594.1241664558058,"lower_bound":1590.6546610702637,"upper_bound":1597.9021077172736,"unit":"ns"},"change":{"mean":{"estimate":-0.043102689222013324,"lower_bound":-0.051058878709206126,"upper_bound":-0.03495909473578636,"unit":"%"},"median":{"estimate":-0.06905621368479875,"lower_bound":-0.07531218117841842,"upper_bound":-0.005892510364589758,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"csiz/66666","report_directory":"/root/fuel-core/target/criterion/reports/csiz/66666","iteration_count":[421,842,1263,1684,2105,2526,2947,3368,3789,4210,4631,5052,5473,5894,6315,6736,7157,7578,7999,8420,8841,9262,9683,10104,10525,10946,11367,11788,12209,12630,13051,13472,13893,14314,14735,15156,15577,15998,16419,16840,17261,17682,18103,18524,18945,19366,19787,20208,20629,21050,21471,21892,22313,22734,23155,23576,23997,24418,24839,25260,25681,26102,26523,26944,27365,27786,28207,28628,29049,29470,29891,30312,30733,31154,31575,31996,32417,32838,33259,33680,34101,34522,34943,35364,35785,36206,36627,37048,37469,37890,38311,38732,39153,39574,39995,40416,40837,41258,41679,42100],"measured_values":[918720.0,1759642.0,2670279.0,3548740.0,4443947.0,5296893.0,6254979.0,7109914.0,8011548.0,8812489.0,9810566.0,10640938.0,11555075.0,12450763.0,13343057.0,14175115.0,14906391.0,16395660.0,16921457.0,17778771.0,18723519.0,19292611.0,20317063.0,21158781.0,21979877.0,22870165.0,23876611.0,24645856.0,25806345.0,26425764.0,27520112.0,28210693.0,29213728.0,29918516.0,30965414.0,31614362.0,32416347.0,32973147.0,34169425.0,34814669.0,35854962.0,36447591.0,37663230.0,38316552.0,39392706.0,39873892.0,41166809.0,41795613.0,43056423.0,43361369.0,44374754.0,45269005.0,46384565.0,47123776.0,48161710.0,48358943.0,49886644.0,49847323.0,51645484.0,52326420.0,53367703.0,53794328.0,55248821.0,55782694.0,56870521.0,57322597.0,58508990.0,59201949.0,60398656.0,60865478.0,61998171.0,62477477.0,63977660.0,64234108.0,65723752.0,66248421.0,67348298.0,67547146.0,69133260.0,69485145.0,71015775.0,71097347.0,72634476.0,72972679.0,74402095.0,74545555.0,76189465.0,76904496.0,77919545.0,78147679.0,81531256.0,81255396.0,82119320.0,83194606.0,85244076.0,85182743.0,86709610.0,86428084.0,88795623.0,88667912.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":2083.596268898915,"lower_bound":2077.5376255139336,"upper_bound":2089.7968246053465,"unit":"ns"},"mean":{"estimate":2088.0087184637873,"lower_bound":2083.5673540750117,"upper_bound":2092.6889577448155,"unit":"ns"},"median":{"estimate":2081.618758554865,"lower_bound":2079.2094689802325,"upper_bound":2089.836104513064,"unit":"ns"},"median_abs_dev":{"estimate":22.401494523350525,"lower_bound":16.890099012003493,"upper_bound":28.796727214949115,"unit":"ns"},"slope":{"estimate":2083.596268898915,"lower_bound":2077.5376255139336,"upper_bound":2089.7968246053465,"unit":"ns"},"change":{"mean":{"estimate":-0.03743130396663297,"lower_bound":-0.0404113219779352,"upper_bound":-0.034548754092703526,"unit":"%"},"median":{"estimate":-0.03842193833714547,"lower_bound":-0.0427498008072319,"upper_bound":-0.034565786539938914,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"csiz/100000","report_directory":"/root/fuel-core/target/criterion/reports/csiz/100000","iteration_count":[294,588,882,1176,1470,1764,2058,2352,2646,2940,3234,3528,3822,4116,4410,4704,4998,5292,5586,5880,6174,6468,6762,7056,7350,7644,7938,8232,8526,8820,9114,9408,9702,9996,10290,10584,10878,11172,11466,11760,12054,12348,12642,12936,13230,13524,13818,14112,14406,14700,14994,15288,15582,15876,16170,16464,16758,17052,17346,17640,17934,18228,18522,18816,19110,19404,19698,19992,20286,20580,20874,21168,21462,21756,22050,22344,22638,22932,23226,23520,23814,24108,24402,24696,24990,25284,25578,25872,26166,26460,26754,27048,27342,27636,27930,28224,28518,28812,29106,29400],"measured_values":[1056546.0,1840159.0,2728189.0,3771514.0,4670671.0,5394260.0,6404517.0,7226892.0,8206601.0,9019346.0,10089505.0,10804045.0,11851230.0,12644386.0,13662149.0,14413917.0,15492342.0,16165361.0,17330534.0,17935522.0,19086606.0,19766754.0,20866194.0,21558541.0,22818291.0,23381067.0,24433610.0,25091694.0,26380221.0,26891840.0,28228637.0,28731303.0,29791457.0,30234112.0,31578476.0,31983127.0,33561546.0,33923155.0,35284569.0,35671656.0,37071780.0,37384757.0,38778097.0,39174619.0,40717152.0,40972149.0,42398981.0,42755140.0,44161417.0,44481756.0,45818540.0,46304289.0,47807989.0,48059423.0,49649559.0,49853622.0,51955146.0,51630650.0,53359653.0,53407327.0,54959308.0,55396020.0,56669836.0,57115126.0,58527067.0,58747410.0,60423411.0,60548769.0,62174203.0,63242795.0,64581257.0,64057074.0,65876196.0,65947744.0,67713568.0,67696767.0,69560691.0,69694276.0,71225950.0,71392108.0,73015965.0,72998244.0,74652578.0,74674833.0,76684990.0,76526116.0,78540103.0,78262997.0,80067182.0,80080472.0,81971285.0,81569149.0,83696650.0,83359166.0,85627860.0,85503198.0,87412631.0,87174472.0,89114969.0,88722392.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":3048.6060577995054,"lower_bound":3043.00192842402,"upper_bound":3054.3085128587236,"unit":"ns"},"mean":{"estimate":3066.689433072502,"lower_bound":3056.667234638935,"upper_bound":3080.522373741433,"unit":"ns"},"median":{"estimate":3063.264909920012,"lower_bound":3056.0844155844156,"upper_bound":3067.4020724568895,"unit":"ns"},"median_abs_dev":{"estimate":35.80230452229653,"lower_bound":17.25455961556424,"upper_bound":46.44953407131274,"unit":"ns"},"slope":{"estimate":3048.6060577995054,"lower_bound":3043.00192842402,"upper_bound":3054.3085128587236,"unit":"ns"},"change":{"mean":{"estimate":-0.060966312552932056,"lower_bound":-0.06579306810295109,"upper_bound":-0.055798651238771174,"unit":"%"},"median":{"estimate":-0.06062934716606461,"lower_bound":-0.06293371269697579,"upper_bound":-0.05909865894358246,"unit":"%"},"change":"Improved"}} +{"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":"bsiz/1","report_directory":"/root/fuel-core/target/criterion/reports/bsiz/1","iteration_count":[1887,3774,5661,7548,9435,11322,13209,15096,16983,18870,20757,22644,24531,26418,28305,30192,32079,33966,35853,37740,39627,41514,43401,45288,47175,49062,50949,52836,54723,56610,58497,60384,62271,64158,66045,67932,69819,71706,73593,75480,77367,79254,81141,83028,84915,86802,88689,90576,92463,94350,96237,98124,100011,101898,103785,105672,107559,109446,111333,113220,115107,116994,118881,120768,122655,124542,126429,128316,130203,132090,133977,135864,137751,139638,141525,143412,145299,147186,149073,150960,152847,154734,156621,158508,160395,162282,164169,166056,167943,169830,171717,173604,175491,177378,179265,181152,183039,184926,186813,188700],"measured_values":[706417.0,1271798.0,1919385.0,2532715.0,3154736.0,3804528.0,4425980.0,5092239.0,5703233.0,6351499.0,6975610.0,7620478.0,8200019.0,8902053.0,9534069.0,10171824.0,10812180.0,11420545.0,12108560.0,12765109.0,13303273.0,13956057.0,14595329.0,14943949.0,15975679.0,16496980.0,17115625.0,17860210.0,18376276.0,18985088.0,19620291.0,20371534.0,20899702.0,20825510.0,22263151.0,22797981.0,23015706.0,24076688.0,24715586.0,25350411.0,26057162.0,26613409.0,27230156.0,27946573.0,28982125.0,29201437.0,29871675.0,30458680.0,31025954.0,31789429.0,32318773.0,33069285.0,33562625.0,33981106.0,34925092.0,35497106.0,36094495.0,36761180.0,37416682.0,38062270.0,38699955.0,39367799.0,39912356.0,40597466.0,41175843.0,41927459.0,42567673.0,43226698.0,43692251.0,43428538.0,45023136.0,45620466.0,46282654.0,46835295.0,47661963.0,48215161.0,48823583.0,49582228.0,50065237.0,50759105.0,51131101.0,51240422.0,52535677.0,53343036.0,53764966.0,54658458.0,55006836.0,55774427.0,56393845.0,57233496.0,57861300.0,58381365.0,59034358.0,59894386.0,60338218.0,60577334.0,61471916.0,62246993.0,62873271.0,62567824.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":335.74258167050124,"lower_bound":335.2781206439092,"upper_bound":336.1442981924583,"unit":"ns"},"mean":{"estimate":336.23419134336467,"lower_bound":335.5380127558504,"upper_bound":337.2148873956595,"unit":"ns"},"median":{"estimate":336.11988794315255,"lower_bound":335.8772161198632,"upper_bound":336.2901546047326,"unit":"ns"},"median_abs_dev":{"estimate":0.7886201590074345,"lower_bound":0.6054887319929652,"upper_bound":0.9963742496969761,"unit":"ns"},"slope":{"estimate":335.74258167050124,"lower_bound":335.2781206439092,"upper_bound":336.1442981924583,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"bsiz/10","report_directory":"/root/fuel-core/target/criterion/reports/bsiz/10","iteration_count":[1842,3684,5526,7368,9210,11052,12894,14736,16578,18420,20262,22104,23946,25788,27630,29472,31314,33156,34998,36840,38682,40524,42366,44208,46050,47892,49734,51576,53418,55260,57102,58944,60786,62628,64470,66312,68154,69996,71838,73680,75522,77364,79206,81048,82890,84732,86574,88416,90258,92100,93942,95784,97626,99468,101310,103152,104994,106836,108678,110520,112362,114204,116046,117888,119730,121572,123414,125256,127098,128940,130782,132624,134466,136308,138150,139992,141834,143676,145518,147360,149202,151044,152886,154728,156570,158412,160254,162096,163938,165780,167622,169464,171306,173148,174990,176832,178674,180516,182358,184200],"measured_values":[710741.0,1284781.0,1947574.0,2569182.0,3204325.0,3868066.0,4497316.0,5140804.0,5788877.0,6442762.0,7063895.0,7748657.0,8405663.0,9011266.0,9656388.0,10239440.0,10950030.0,11575023.0,12235425.0,12905990.0,13538093.0,14145188.0,14775142.0,15423042.0,16060539.0,16697534.0,17337201.0,18007976.0,18314536.0,19292001.0,19000905.0,20445521.0,21208155.0,21847003.0,22513805.0,23126184.0,23779422.0,24442509.0,25274635.0,25713229.0,26333609.0,26997266.0,27622303.0,28328688.0,28177224.0,29358168.0,30043603.0,30966276.0,31549542.0,32198515.0,32608191.0,33466425.0,34072504.0,34748504.0,35320016.0,35903362.0,36675314.0,37314937.0,37878984.0,38696198.0,39191121.0,39895464.0,40505985.0,41188344.0,41870591.0,42237535.0,43083092.0,43779918.0,44292330.0,45044644.0,45636035.0,46331774.0,47016045.0,47580762.0,48339161.0,48838382.0,49600062.0,50146824.0,50948752.0,51439159.0,52044188.0,52776364.0,53528127.0,54093343.0,54802452.0,55224634.0,55895366.0,56489574.0,57295499.0,57824248.0,59029873.0,59373475.0,60145207.0,60958117.0,60982523.0,61924447.0,62467290.0,63025441.0,63740832.0,63876845.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":349.217945487193,"lower_bound":348.8685512554908,"upper_bound":349.55119670332044,"unit":"ns"},"mean":{"estimate":349.2658148497635,"lower_bound":348.5355412271172,"upper_bound":350.2183889014852,"unit":"ns"},"median":{"estimate":349.1106225117626,"lower_bound":348.96419523292485,"upper_bound":349.3435476736237,"unit":"ns"},"median_abs_dev":{"estimate":0.6404713677062722,"lower_bound":0.5098795225986126,"upper_bound":0.8310941963429116,"unit":"ns"},"slope":{"estimate":349.217945487193,"lower_bound":348.8685512554908,"upper_bound":349.55119670332044,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"bsiz/100","report_directory":"/root/fuel-core/target/criterion/reports/bsiz/100","iteration_count":[1786,3572,5358,7144,8930,10716,12502,14288,16074,17860,19646,21432,23218,25004,26790,28576,30362,32148,33934,35720,37506,39292,41078,42864,44650,46436,48222,50008,51794,53580,55366,57152,58938,60724,62510,64296,66082,67868,69654,71440,73226,75012,76798,78584,80370,82156,83942,85728,87514,89300,91086,92872,94658,96444,98230,100016,101802,103588,105374,107160,108946,110732,112518,114304,116090,117876,119662,121448,123234,125020,126806,128592,130378,132164,133950,135736,137522,139308,141094,142880,144666,146452,148238,150024,151810,153596,155382,157168,158954,160740,162526,164312,166098,167884,169670,171456,173242,175028,176814,178600],"measured_values":[685260.0,1297399.0,1949647.0,2628215.0,3275428.0,3942974.0,4627530.0,5238334.0,5887052.0,6536951.0,7172222.0,7858298.0,8480607.0,9170606.0,9807525.0,10468971.0,11125577.0,11692868.0,12360889.0,13006395.0,13664060.0,14307963.0,15079061.0,15724896.0,16238949.0,16926011.0,17667995.0,18175908.0,18853760.0,19546667.0,20191051.0,20910629.0,21495937.0,22175451.0,22755209.0,23469623.0,24077551.0,24699658.0,25425067.0,26075806.0,26750508.0,27640480.0,27707023.0,28480673.0,29369293.0,30068174.0,30756323.0,31388932.0,31927182.0,32301808.0,33275445.0,33916768.0,34663151.0,34895416.0,35888169.0,36430811.0,37230496.0,37714365.0,38430682.0,39050575.0,39753573.0,40326468.0,41007509.0,41768241.0,42426495.0,42550354.0,43823390.0,44233311.0,44970485.0,45522767.0,46362937.0,46531077.0,47460650.0,47901369.0,49023487.0,49445570.0,50063866.0,50605422.0,51427246.0,51826996.0,52764106.0,53413188.0,54188101.0,53716652.0,55403463.0,56174070.0,56628159.0,57479280.0,58045958.0,58584748.0,59355346.0,59924052.0,60641748.0,61145044.0,61621400.0,62421842.0,63294856.0,63955564.0,64241865.0,64969892.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":364.3951324729672,"lower_bound":363.9932120372816,"upper_bound":364.73713819827896,"unit":"ns"},"mean":{"estimate":365.00264019419825,"lower_bound":364.5656122047159,"upper_bound":365.5346136059954,"unit":"ns"},"median":{"estimate":364.85807975641933,"lower_bound":364.4892483025501,"upper_bound":365.1842928660826,"unit":"ns"},"median_abs_dev":{"estimate":1.1893432489401583,"lower_bound":0.9227340050358075,"upper_bound":1.5174748049207185,"unit":"ns"},"slope":{"estimate":364.3951324729672,"lower_bound":363.9932120372816,"upper_bound":364.73713819827896,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"bsiz/1000","report_directory":"/root/fuel-core/target/criterion/reports/bsiz/1000","iteration_count":[1761,3522,5283,7044,8805,10566,12327,14088,15849,17610,19371,21132,22893,24654,26415,28176,29937,31698,33459,35220,36981,38742,40503,42264,44025,45786,47547,49308,51069,52830,54591,56352,58113,59874,61635,63396,65157,66918,68679,70440,72201,73962,75723,77484,79245,81006,82767,84528,86289,88050,89811,91572,93333,95094,96855,98616,100377,102138,103899,105660,107421,109182,110943,112704,114465,116226,117987,119748,121509,123270,125031,126792,128553,130314,132075,133836,135597,137358,139119,140880,142641,144402,146163,147924,149685,151446,153207,154968,156729,158490,160251,162012,163773,165534,167295,169056,170817,172578,174339,176100],"measured_values":[698948.0,1245029.0,1869461.0,2489935.0,3189201.0,3843079.0,4483579.0,5157936.0,5774156.0,6443297.0,7036841.0,7688809.0,8369319.0,10977810.0,9633637.0,10252074.0,10899134.0,11572963.0,12190255.0,12851304.0,13556428.0,14162641.0,14777262.0,15414483.0,16033289.0,16752715.0,17325179.0,17977997.0,18669188.0,19254032.0,19364498.0,20192099.0,21425075.0,21848447.0,22446639.0,23110708.0,23749489.0,24360369.0,25084087.0,25668382.0,26329195.0,27018644.0,27600800.0,28249351.0,28476425.0,29556497.0,30305814.0,31031900.0,31484583.0,32203353.0,32754502.0,33490357.0,34035859.0,34635908.0,34677647.0,36081026.0,36411530.0,37260023.0,37888911.0,38711504.0,39215472.0,39799788.0,40470542.0,40453234.0,41418696.0,42398301.0,43162364.0,43655951.0,44277183.0,45086257.0,45603420.0,46386585.0,46846845.0,47497951.0,47387438.0,48816580.0,49528486.0,49702346.0,50252398.0,50952783.0,52135452.0,52623315.0,53365381.0,53903936.0,54608293.0,55306104.0,55810563.0,56555220.0,57105419.0,57671123.0,58414198.0,59075539.0,59785725.0,59347285.0,61088697.0,61751336.0,62239639.0,62930131.0,63571803.0,63831864.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":364.12926162615497,"lower_bound":363.6172431459781,"upper_bound":364.5855312340986,"unit":"ns"},"mean":{"estimate":365.01673447749783,"lower_bound":363.6101753935096,"upper_bound":367.1046388396649,"unit":"ns"},"median":{"estimate":364.6407859612344,"lower_bound":364.4744882872651,"upper_bound":364.7528905609187,"unit":"ns"},"median_abs_dev":{"estimate":0.7864684314874142,"lower_bound":0.4934550742020318,"upper_bound":1.2027918525814374,"unit":"ns"},"slope":{"estimate":364.12926162615497,"lower_bound":363.6172431459781,"upper_bound":364.5855312340986,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"bsiz/10000","report_directory":"/root/fuel-core/target/criterion/reports/bsiz/10000","iteration_count":[1235,2470,3705,4940,6175,7410,8645,9880,11115,12350,13585,14820,16055,17290,18525,19760,20995,22230,23465,24700,25935,27170,28405,29640,30875,32110,33345,34580,35815,37050,38285,39520,40755,41990,43225,44460,45695,46930,48165,49400,50635,51870,53105,54340,55575,56810,58045,59280,60515,61750,62985,64220,65455,66690,67925,69160,70395,71630,72865,74100,75335,76570,77805,79040,80275,81510,82745,83980,85215,86450,87685,88920,90155,91390,92625,93860,95095,96330,97565,98800,100035,101270,102505,103740,104975,106210,107445,108680,109915,111150,112385,113620,114855,116090,117325,118560,119795,121030,122265,123500],"measured_values":[721231.0,1445185.0,2061023.0,2870938.0,3468808.0,4324095.0,4853623.0,5711608.0,6315980.0,7268500.0,7810323.0,8686081.0,8938771.0,10087280.0,10605079.0,11520549.0,11889772.0,12953714.0,13297682.0,14361920.0,14538022.0,15770408.0,16287502.0,17262453.0,17349365.0,18913386.0,18783720.0,20100943.0,20125327.0,21564928.0,21478326.0,23098455.0,23026274.0,24612582.0,24347968.0,25812939.0,26254332.0,27446985.0,27080091.0,28770808.0,28391784.0,30375679.0,29991753.0,31453716.0,31392293.0,33300820.0,32946186.0,34386094.0,34161872.0,36049447.0,35231407.0,37610237.0,36882172.0,38421880.0,38062502.0,40149034.0,40163059.0,42599146.0,40975564.0,43267376.0,43027984.0,44647570.0,43014631.0,45988627.0,45388469.0,47536872.0,46303949.0,49073696.0,47904495.0,49576228.0,49536535.0,51751230.0,50917279.0,52459613.0,52338212.0,54411367.0,53902170.0,56366587.0,55331854.0,57315949.0,56235060.0,59279021.0,57662251.0,60182239.0,59175769.0,62437820.0,60589336.0,63169329.0,61728797.0,64303207.0,63260047.0,65758815.0,65030974.0,67812452.0,66099625.0,68940843.0,67185193.0,70652501.0,69482911.0,71536468.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":573.0731590901069,"lower_bound":570.6110589721882,"upper_bound":575.5231055670522,"unit":"ns"},"mean":{"estimate":573.5970262285659,"lower_bound":571.6276283220221,"upper_bound":575.5619345464272,"unit":"ns"},"median":{"estimate":574.7392324602852,"lower_bound":567.5973124300112,"upper_bound":580.1209412955466,"unit":"ns"},"median_abs_dev":{"estimate":13.880572365297551,"lower_bound":8.001303225774913,"upper_bound":14.996947411569039,"unit":"ns"},"slope":{"estimate":573.0731590901069,"lower_bound":570.6110589721882,"upper_bound":575.5231055670522,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"bsiz/19753","report_directory":"/root/fuel-core/target/criterion/reports/bsiz/19753","iteration_count":[966,1932,2898,3864,4830,5796,6762,7728,8694,9660,10626,11592,12558,13524,14490,15456,16422,17388,18354,19320,20286,21252,22218,23184,24150,25116,26082,27048,28014,28980,29946,30912,31878,32844,33810,34776,35742,36708,37674,38640,39606,40572,41538,42504,43470,44436,45402,46368,47334,48300,49266,50232,51198,52164,53130,54096,55062,56028,56994,57960,58926,59892,60858,61824,62790,63756,64722,65688,66654,67620,68586,69552,70518,71484,72450,73416,74382,75348,76314,77280,78246,79212,80178,81144,82110,83076,84042,85008,85974,86940,87906,88872,89838,90804,91770,92736,93702,94668,95634,96600],"measured_values":[782430.0,1529031.0,2273198.0,3118911.0,3870871.0,4606849.0,5400036.0,6163603.0,6882134.0,7710388.0,8414930.0,9213507.0,10055537.0,10759895.0,11552414.0,12409556.0,12969467.0,13926828.0,14590073.0,15160579.0,15860497.0,17009428.0,17470659.0,18400471.0,19154278.0,19918466.0,20622817.0,21572731.0,22080308.0,22588108.0,23234130.0,24136950.0,25077167.0,26204966.0,27011796.0,27934063.0,28090372.0,28685683.0,29492390.0,30677718.0,30875808.0,31882004.0,32794324.0,33902104.0,34300186.0,34844852.0,35897479.0,36910121.0,37178199.0,38470552.0,39107151.0,39443424.0,40261300.0,41057687.0,41572290.0,42786515.0,43202931.0,44255121.0,44863577.0,46172504.0,46396200.0,46893797.0,48322866.0,48833617.0,49990965.0,50795308.0,50514939.0,51460842.0,52240993.0,53356096.0,53929086.0,54790976.0,55458014.0,56868742.0,57438466.0,57668134.0,58061424.0,60158751.0,60631018.0,61901272.0,61709226.0,62274260.0,63000769.0,63883326.0,65275775.0,65449738.0,66395213.0,67289250.0,67009034.0,68062651.0,68702750.0,69643586.0,70326261.0,71819467.0,72748358.0,73713528.0,74255514.0,74982236.0,74984446.0,76584144.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":788.9857934116393,"lower_bound":787.6140255213315,"upper_bound":790.3697197553881,"unit":"ns"},"mean":{"estimate":790.5426105282078,"lower_bound":789.2366101402706,"upper_bound":791.8715914345972,"unit":"ns"},"median":{"estimate":790.3413647786036,"lower_bound":787.8296740334151,"upper_bound":792.464557853621,"unit":"ns"},"median_abs_dev":{"estimate":7.220787387598856,"lower_bound":5.990318144008944,"upper_bound":8.857083723690147,"unit":"ns"},"slope":{"estimate":788.9857934116393,"lower_bound":787.6140255213315,"upper_bound":790.3697197553881,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"bsiz/29629","report_directory":"/root/fuel-core/target/criterion/reports/bsiz/29629","iteration_count":[759,1518,2277,3036,3795,4554,5313,6072,6831,7590,8349,9108,9867,10626,11385,12144,12903,13662,14421,15180,15939,16698,17457,18216,18975,19734,20493,21252,22011,22770,23529,24288,25047,25806,26565,27324,28083,28842,29601,30360,31119,31878,32637,33396,34155,34914,35673,36432,37191,37950,38709,39468,40227,40986,41745,42504,43263,44022,44781,45540,46299,47058,47817,48576,49335,50094,50853,51612,52371,53130,53889,54648,55407,56166,56925,57684,58443,59202,59961,60720,61479,62238,62997,63756,64515,65274,66033,66792,67551,68310,69069,69828,70587,71346,72105,72864,73623,74382,75141,75900],"measured_values":[1292548.0,1663450.0,2448929.0,3237092.0,4074992.0,4834894.0,5713172.0,6438342.0,7383805.0,8111533.0,8964540.0,9711719.0,10599695.0,11224792.0,11979644.0,12740126.0,13738095.0,14394708.0,15382705.0,16082071.0,17202498.0,17841703.0,18607811.0,19165304.0,20027691.0,20636843.0,21832003.0,22323200.0,23249067.0,24085596.0,24869568.0,25889986.0,26512222.0,26995086.0,27995394.0,28819187.0,29837341.0,30136046.0,31518022.0,31933689.0,33464117.0,33750436.0,34946273.0,35075327.0,36154214.0,36650539.0,38227646.0,38172955.0,39285155.0,40329474.0,41708558.0,41557109.0,42996727.0,43705508.0,44170726.0,45089542.0,45803421.0,46604961.0,47495007.0,48520476.0,48933979.0,49858004.0,50628696.0,51433357.0,52985907.0,53148200.0,54096175.0,54311624.0,55740705.0,55755327.0,56820132.0,57371950.0,58981626.0,59078259.0,60878270.0,60997854.0,62354431.0,62551555.0,63248377.0,64311728.0,65757800.0,65503365.0,66609776.0,67072247.0,68403932.0,68648094.0,69747313.0,70445711.0,72025892.0,72048383.0,73772593.0,73398104.0,74721560.0,74878558.0,76096041.0,76507610.0,77940325.0,78195897.0,79822756.0,79927868.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":1058.088085553526,"lower_bound":1056.5125380803954,"upper_bound":1059.7713361291383,"unit":"ns"},"mean":{"estimate":1066.814234792883,"lower_bound":1059.0727089663287,"upper_bound":1080.842626890744,"unit":"ns"},"median":{"estimate":1058.7289848468338,"lower_bound":1057.2117728178664,"upper_bound":1060.8305571240353,"unit":"ns"},"median_abs_dev":{"estimate":9.578604469666356,"lower_bound":7.080609732286632,"upper_bound":10.797203147051627,"unit":"ns"},"slope":{"estimate":1058.088085553526,"lower_bound":1056.5125380803954,"upper_bound":1059.7713361291383,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"bsiz/44444","report_directory":"/root/fuel-core/target/criterion/reports/bsiz/44444","iteration_count":[490,980,1470,1960,2450,2940,3430,3920,4410,4900,5390,5880,6370,6860,7350,7840,8330,8820,9310,9800,10290,10780,11270,11760,12250,12740,13230,13720,14210,14700,15190,15680,16170,16660,17150,17640,18130,18620,19110,19600,20090,20580,21070,21560,22050,22540,23030,23520,24010,24500,24990,25480,25970,26460,26950,27440,27930,28420,28910,29400,29890,30380,30870,31360,31850,32340,32830,33320,33810,34300,34790,35280,35770,36260,36750,37240,37730,38220,38710,39200,39690,40180,40670,41160,41650,42140,42630,43120,43610,44100,44590,45080,45570,46060,46550,47040,47530,48020,48510,49000],"measured_values":[911741.0,1749931.0,2569286.0,3455949.0,4277066.0,5185899.0,5952547.0,6878372.0,7842682.0,8615144.0,9325093.0,10224154.0,10998129.0,12068091.0,12749983.0,13688430.0,14406896.0,15390527.0,16063365.0,17101868.0,17709158.0,18782890.0,19411276.0,20421270.0,21253073.0,22359743.0,22874981.0,23848933.0,24573114.0,25593967.0,26262859.0,27201485.0,27801376.0,29173535.0,29761538.0,30765136.0,31079702.0,32538257.0,33068488.0,34149450.0,34733071.0,35599926.0,36191898.0,38090567.0,38007521.0,38710022.0,39737829.0,40778325.0,41167904.0,41998278.0,42191495.0,43333089.0,43606302.0,44898696.0,46030705.0,47117280.0,47621801.0,48747376.0,49276280.0,50469145.0,50722649.0,51415871.0,51947815.0,53228774.0,53251905.0,54768111.0,55285434.0,56448911.0,56847863.0,58054331.0,58548675.0,59796286.0,60260378.0,62373585.0,62702163.0,64147319.0,64340254.0,65634957.0,64939305.0,66273931.0,66877216.0,67967147.0,68175698.0,69815163.0,70256825.0,71504106.0,71754447.0,73338732.0,73428655.0,74980764.0,75054569.0,76490248.0,76816406.0,78211468.0,78391575.0,79854519.0,80005594.0,81611230.0,81539769.0,82874235.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":1698.1726591773402,"lower_bound":1694.9208629235206,"upper_bound":1701.9545339957535,"unit":"ns"},"mean":{"estimate":1717.6612134241282,"lower_bound":1712.0004113153384,"upper_bound":1723.7328062820486,"unit":"ns"},"median":{"estimate":1717.1977629513344,"lower_bound":1705.0412101682778,"upper_bound":1725.3882921589689,"unit":"ns"},"median_abs_dev":{"estimate":31.187117201419944,"lower_bound":25.897129100403088,"upper_bound":37.46699731899213,"unit":"ns"},"slope":{"estimate":1698.1726591773402,"lower_bound":1694.9208629235206,"upper_bound":1701.9545339957535,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"bsiz/66666","report_directory":"/root/fuel-core/target/criterion/reports/bsiz/66666","iteration_count":[416,832,1248,1664,2080,2496,2912,3328,3744,4160,4576,4992,5408,5824,6240,6656,7072,7488,7904,8320,8736,9152,9568,9984,10400,10816,11232,11648,12064,12480,12896,13312,13728,14144,14560,14976,15392,15808,16224,16640,17056,17472,17888,18304,18720,19136,19552,19968,20384,20800,21216,21632,22048,22464,22880,23296,23712,24128,24544,24960,25376,25792,26208,26624,27040,27456,27872,28288,28704,29120,29536,29952,30368,30784,31200,31616,32032,32448,32864,33280,33696,34112,34528,34944,35360,35776,36192,36608,37024,37440,37856,38272,38688,39104,39520,39936,40352,40768,41184,41600],"measured_values":[1007262.0,1709446.0,2614596.0,3420570.0,4367781.0,5149795.0,5963549.0,6688270.0,7683038.0,8401636.0,9380842.0,10040520.0,11213666.0,11718124.0,12799772.0,13452399.0,14487733.0,15076800.0,16202623.0,16937375.0,17905074.0,18411141.0,19591292.0,20001213.0,21323756.0,21951421.0,22960423.0,23435297.0,24717597.0,25201004.0,26887940.0,26816653.0,28180747.0,28486503.0,30038446.0,30193793.0,31514206.0,31834627.0,33284951.0,33432652.0,35047252.0,35344817.0,36703293.0,36838820.0,38385856.0,38584235.0,40162650.0,40407574.0,41837894.0,41894348.0,43826234.0,43708328.0,45351083.0,45433074.0,47310146.0,46933656.0,48903421.0,48799427.0,50302224.0,50495157.0,52092644.0,51933939.0,53976457.0,53577036.0,55442147.0,55216823.0,57195444.0,57057895.0,58934803.0,58559822.0,61129103.0,60924632.0,62522723.0,62393839.0,64505880.0,63859783.0,65912254.0,65730182.0,67313676.0,66934672.0,69220643.0,68892430.0,71003973.0,70623526.0,72483046.0,71979438.0,74139141.0,73473711.0,75837594.0,75258432.0,78072862.0,76936248.0,79376046.0,78756027.0,81272510.0,80069176.0,82633342.0,81944150.0,84584793.0,83625973.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":2034.7473806424844,"lower_bound":2029.2087230201353,"upper_bound":2040.3407471379894,"unit":"ns"},"mean":{"estimate":2041.304324185667,"lower_bound":2034.1823257194437,"upper_bound":2051.1921937987995,"unit":"ns"},"median":{"estimate":2047.6988318018825,"lower_bound":2023.0431490384615,"upper_bound":2049.8598981900454,"unit":"ns"},"median_abs_dev":{"estimate":30.337142851539824,"lower_bound":17.347076409845517,"upper_bound":36.56163267700775,"unit":"ns"},"slope":{"estimate":2034.7473806424844,"lower_bound":2029.2087230201353,"upper_bound":2040.3407471379894,"unit":"ns"},"change":null} +{"reason":"benchmark-complete","id":"bsiz/100000","report_directory":"/root/fuel-core/target/criterion/reports/bsiz/100000","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":[949548.0,1817013.0,2723978.0,3572336.0,4495761.0,5429541.0,6301204.0,7152167.0,8127418.0,9065998.0,9893206.0,10774059.0,11689295.0,12664003.0,13540741.0,14332594.0,15317109.0,16446162.0,17212147.0,17905816.0,18920466.0,19928452.0,20727945.0,21482433.0,22572562.0,23622606.0,24350542.0,25256716.0,26109915.0,27192130.0,27933179.0,28674878.0,29747647.0,30883822.0,31516325.0,32216066.0,33212033.0,34406020.0,35042085.0,35854373.0,36862629.0,38085727.0,38772802.0,39439330.0,40514750.0,41608482.0,42360432.0,43142904.0,44211716.0,45301273.0,45893622.0,46661017.0,47924765.0,48896040.0,49253449.0,49981571.0,51290920.0,52493768.0,53076238.0,53491435.0,55023410.0,55969752.0,56462224.0,57129898.0,58231988.0,59968889.0,60110502.0,60628706.0,62301423.0,63170503.0,63610417.0,64472146.0,65596828.0,67013118.0,67177706.0,67728146.0,69062379.0,70404071.0,70815456.0,71324664.0,72592468.0,74083965.0,74567030.0,74802017.0,76082572.0,75255131.0,72806421.0,73742680.0,74502444.0,75789593.0,76189933.0,76646523.0,77875988.0,79188754.0,79555772.0,79992264.0,81365473.0,82553156.0,83065430.0,83316568.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":2969.534593803929,"lower_bound":2942.7614045287464,"upper_bound":2998.947710984666,"unit":"ns"},"mean":{"estimate":3022.5502782652275,"lower_bound":3006.6190786488373,"upper_bound":3037.1696583674934,"unit":"ns"},"median":{"estimate":3047.865613890037,"lower_bound":3039.948896367764,"upper_bound":3053.0787592886363,"unit":"ns"},"median_abs_dev":{"estimate":19.489013981684522,"lower_bound":16.710956353371554,"upper_bound":29.052246073372896,"unit":"ns"},"slope":{"estimate":2969.534593803929,"lower_bound":2942.7614045287464,"upper_bound":2998.947710984666,"unit":"ns"},"change":null} +{"reason":"group-complete","group_name":"bsiz","benchmarks":["bsiz/1","bsiz/10","bsiz/100","bsiz/1000","bsiz/10000","bsiz/19753","bsiz/29629","bsiz/44444","bsiz/66666","bsiz/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/bsiz"} +{"reason":"benchmark-complete","id":"bhei/bhei","report_directory":"/root/fuel-core/target/criterion/reports/bhei/bhei","iteration_count":[5719,11438,17157,22876,28595,34314,40033,45752,51471,57190,62909,68628,74347,80066,85785,91504,97223,102942,108661,114380,120099,125818,131537,137256,142975,148694,154413,160132,165851,171570,177289,183008,188727,194446,200165,205884,211603,217322,223041,228760,234479,240198,245917,251636,257355,263074,268793,274512,280231,285950,291669,297388,303107,308826,314545,320264,325983,331702,337421,343140,348859,354578,360297,366016,371735,377454,383173,388892,394611,400330,406049,411768,417487,423206,428925,434644,440363,446082,451801,457520,463239,468958,474677,480396,486115,491834,497553,503272,508991,514710,520429,526148,531867,537586,543305,549024,554743,560462,566181,571900],"measured_values":[166303.0,256605.0,432941.0,516629.0,665273.0,755343.0,950827.0,1120689.0,1187097.0,1421485.0,1483616.0,1528097.0,1773887.0,1806439.0,1925080.0,2220109.0,2304571.0,2313604.0,2481866.0,2566067.0,2782099.0,2939831.0,3119915.0,3182991.0,3465558.0,3660953.0,3720871.0,3683469.0,4133687.0,4240838.0,4306187.0,4067274.0,4475276.0,4680621.0,5101600.0,5207437.0,4884792.0,5562447.0,5130496.0,5529836.0,5377474.0,5923928.0,6048830.0,6393687.0,6123670.0,6452085.0,6185158.0,6298182.0,6493036.0,6589282.0,6715897.0,6830583.0,6992813.0,7727629.0,7448425.0,7319094.0,7965360.0,7843383.0,7751264.0,7789898.0,7908164.0,8315378.0,9280444.0,8650892.0,9557120.0,9457641.0,9076033.0,9077819.0,9298450.0,9494127.0,9406039.0,9576928.0,10029874.0,11073536.0,10399560.0,10268214.0,11148184.0,11011374.0,10786910.0,11217987.0,10971214.0,11235242.0,11933824.0,11330634.0,11533770.0,11482884.0,11752618.0,11757811.0,11922505.0,12562868.0,12104010.0,13263182.0,12675878.0,13074654.0,13363231.0,13330625.0,13502213.0,13901905.0,13777451.0,13680162.0],"unit":"ns","throughput":[],"typical":{"estimate":24.02903509680618,"lower_bound":23.843822651249354,"upper_bound":24.21336028845117,"unit":"ns"},"mean":{"estimate":23.88260958559185,"lower_bound":23.685695342466484,"upper_bound":24.093546326124486,"unit":"ns"},"median":{"estimate":23.714356527077282,"lower_bound":23.586029026053506,"upper_bound":23.972473705768085,"unit":"ns"},"median_abs_dev":{"estimate":0.9798670553279751,"lower_bound":0.8010414860409542,"upper_bound":1.157281214714026,"unit":"ns"},"slope":{"estimate":24.02903509680618,"lower_bound":23.843822651249354,"upper_bound":24.21336028845117,"unit":"ns"},"change":{"mean":{"estimate":0.0010604018013731231,"lower_bound":-0.009827233713768275,"upper_bound":0.011700782193624677,"unit":"%"},"median":{"estimate":0.00392000018390859,"lower_bound":-0.004262547377458642,"upper_bound":0.016747029617316,"unit":"%"},"change":"NoChange"}} +{"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":[5319,10638,15957,21276,26595,31914,37233,42552,47871,53190,58509,63828,69147,74466,79785,85104,90423,95742,101061,106380,111699,117018,122337,127656,132975,138294,143613,148932,154251,159570,164889,170208,175527,180846,186165,191484,196803,202122,207441,212760,218079,223398,228717,234036,239355,244674,249993,255312,260631,265950,271269,276588,281907,287226,292545,297864,303183,308502,313821,319140,324459,329778,335097,340416,345735,351054,356373,361692,367011,372330,377649,382968,388287,393606,398925,404244,409563,414882,420201,425520,430839,436158,441477,446796,452115,457434,462753,468072,473391,478710,484029,489348,494667,499986,505305,510624,515943,521262,526581,531900],"measured_values":[181449.0,308753.0,468636.0,632691.0,791443.0,987543.0,1090802.0,1252004.0,1410124.0,1557344.0,2167638.0,1986313.0,2043299.0,2193037.0,2360148.0,2522650.0,2643409.0,2805412.0,2956373.0,3136976.0,3326080.0,3446448.0,3585257.0,3775638.0,3910363.0,4065987.0,4296017.0,4414682.0,4515990.0,4772364.0,4941775.0,5013027.0,5182091.0,5314266.0,5509000.0,5697603.0,5858355.0,5916982.0,6126965.0,6220167.0,6377029.0,6724176.0,6719935.0,6979631.0,7045844.0,7377777.0,7543369.0,7512943.0,7773893.0,7811500.0,8118373.0,8199810.0,8240788.0,8604195.0,8584790.0,8844269.0,8984248.0,9169160.0,9378778.0,9566466.0,9640249.0,9723459.0,10037294.0,10120557.0,10382585.0,10323252.0,10635091.0,10710046.0,11020834.0,10992899.0,11237566.0,11405517.0,11785866.0,11597444.0,11825890.0,11898760.0,12073837.0,12219855.0,12523039.0,12581326.0,13041172.0,12858324.0,13000753.0,13259573.0,13458097.0,13492774.0,13802572.0,13831256.0,14391712.0,14356396.0,14678778.0,14417070.0,14771666.0,14701243.0,15063936.0,14970029.0,15316438.0,15481081.0,15742052.0,15609242.0],"unit":"ns","throughput":[],"typical":{"estimate":29.705357514360927,"lower_bound":29.63118281524462,"upper_bound":29.78366696945875,"unit":"ns"},"mean":{"estimate":29.77951479138617,"lower_bound":29.630400376795617,"upper_bound":29.986273974897276,"unit":"ns"},"median":{"estimate":29.622021285533044,"lower_bound":29.510635008079227,"upper_bound":29.711763273633956,"unit":"ns"},"median_abs_dev":{"estimate":0.3009195329182968,"lower_bound":0.23772342309843764,"upper_bound":0.3769231904007014,"unit":"ns"},"slope":{"estimate":29.705357514360927,"lower_bound":29.63118281524462,"upper_bound":29.78366696945875,"unit":"ns"},"change":{"mean":{"estimate":-0.036185212693171764,"lower_bound":-0.042471098160860435,"upper_bound":-0.02875310038340064,"unit":"%"},"median":{"estimate":-0.036980573111644266,"lower_bound":-0.042213731209169325,"upper_bound":-0.032426684535468264,"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":[237576.0,154359.0,152232.0,149217.0,149979.0,148245.0,145428.0,147889.0,148534.0,149811.0,149763.0,149930.0,148540.0,149557.0,148240.0,148110.0,179093.0,148064.0,149260.0,146691.0,147863.0,146941.0,145594.0,148938.0,154986.0,152620.0,150082.0,191644.0,150313.0,148672.0,146228.0,150281.0,149260.0,148144.0,148744.0,149137.0,145202.0,149791.0,149329.0,148495.0,147450.0,148949.0,149278.0,149644.0,151182.0,159437.0,151305.0,149714.0,148738.0,147727.0,148911.0,147968.0,150496.0,147790.0,148198.0,147636.0,149587.0,150788.0,160544.0,153399.0,145274.0,150105.0,149481.0,147080.0,149005.0,146861.0,151046.0,148940.0,149614.0,148766.0,147266.0,147226.0,145120.0,150435.0,146745.0,152451.0,146663.0,150035.0,144031.0,150935.0,151820.0,148373.0,149007.0,147121.0,147326.0,150540.0,149984.0,149864.0,149777.0,148961.0,146064.0,149158.0,148615.0,145573.0,146816.0,151323.0,149329.0,164475.0,154389.0,153011.0],"unit":"ns","throughput":[],"typical":{"estimate":151001.28,"lower_bound":149303.90600000002,"upper_bound":153341.51325,"unit":"ns"},"mean":{"estimate":151001.28,"lower_bound":149303.90600000002,"upper_bound":153341.51325,"unit":"ns"},"median":{"estimate":149147.5,"lower_bound":148744.0,"upper_bound":149587.0,"unit":"ns"},"median_abs_dev":{"estimate":1807.2893679141998,"lower_bound":1326.926976442337,"upper_bound":2470.011556148529,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0449469389438526,"lower_bound":0.024638279548611496,"upper_bound":0.06448680307280494,"unit":"%"},"median":{"estimate":0.04058815321286535,"lower_bound":0.03432015944776623,"upper_bound":0.043851140590217996,"unit":"%"},"change":"Regressed"}} +{"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":[239607.0,175920.0,175393.0,168499.0,172663.0,171221.0,171691.0,178061.0,174818.0,170869.0,173052.0,175239.0,169223.0,168505.0,171464.0,177869.0,175210.0,173294.0,173323.0,171399.0,180238.0,178805.0,174603.0,173460.0,172148.0,169231.0,174343.0,172046.0,172671.0,179783.0,175131.0,168493.0,174422.0,173044.0,172582.0,167615.0,175065.0,173509.0,169436.0,172472.0,175045.0,175968.0,173577.0,177860.0,173454.0,173780.0,173333.0,172617.0,171069.0,175178.0,172990.0,176867.0,172264.0,170680.0,173934.0,171682.0,170401.0,174196.0,172306.0,175470.0,166833.0,169388.0,170127.0,170389.0,171419.0,171261.0,169227.0,171015.0,176760.0,170875.0,173390.0,170027.0,179726.0,175431.0,171142.0,174035.0,169713.0,169749.0,172593.0,182701.0,179249.0,172130.0,168690.0,167735.0,188402.0,174240.0,176756.0,184384.0,173572.0,172161.0,172813.0,173421.0,172287.0,172419.0,171322.0,172811.0,175057.0,174313.0,171349.0,172965.0],"unit":"ns","throughput":[],"typical":{"estimate":174009.65,"lower_bound":172829.70974999998,"upper_bound":175692.55325,"unit":"ns"},"mean":{"estimate":174009.65,"lower_bound":172829.70974999998,"upper_bound":175692.55325,"unit":"ns"},"median":{"estimate":172977.5,"lower_bound":172419.0,"upper_bound":173481.5,"unit":"ns"},"median_abs_dev":{"estimate":2779.133650660515,"lower_bound":2085.2768629789352,"upper_bound":3442.5971388816833,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.028100201596905627,"lower_bound":0.01040699774410931,"upper_bound":0.04634527350126628,"unit":"%"},"median":{"estimate":0.04568989750301511,"lower_bound":0.03304832758147147,"upper_bound":0.05518100854129315,"unit":"%"},"change":"Regressed"}} +{"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":[5387,10774,16161,21548,26935,32322,37709,43096,48483,53870,59257,64644,70031,75418,80805,86192,91579,96966,102353,107740,113127,118514,123901,129288,134675,140062,145449,150836,156223,161610,166997,172384,177771,183158,188545,193932,199319,204706,210093,215480,220867,226254,231641,237028,242415,247802,253189,258576,263963,269350,274737,280124,285511,290898,296285,301672,307059,312446,317833,323220,328607,333994,339381,344768,350155,355542,360929,366316,371703,377090,382477,387864,393251,398638,404025,409412,414799,420186,425573,430960,436347,441734,447121,452508,457895,463282,468669,474056,479443,484830,490217,495604,500991,506378,511765,517152,522539,527926,533313,538700],"measured_values":[173066.0,309856.0,464732.0,619279.0,776257.0,927363.0,1105731.0,1246172.0,1393686.0,1550924.0,1715506.0,1891494.0,2034239.0,2263209.0,2376264.0,2488626.0,2644861.0,2831389.0,3005173.0,3109569.0,3262406.0,3525533.0,3629339.0,3809936.0,3917643.0,4072636.0,4212607.0,4374419.0,4504745.0,4677267.0,4915269.0,4986759.0,5142634.0,5479743.0,5500743.0,5621615.0,5761651.0,5903463.0,6133293.0,6265396.0,6531589.0,6654726.0,6805006.0,6924033.0,7049756.0,7194125.0,7404673.0,7474347.0,7636825.0,7846844.0,7982324.0,8188112.0,8324351.0,8452167.0,8628168.0,8818822.0,9063544.0,9010714.0,9203401.0,9384822.0,9758390.0,9647020.0,9834235.0,10022844.0,10328343.0,10293152.0,10549891.0,10662083.0,10779095.0,10926288.0,11624525.0,11401822.0,11428773.0,11507942.0,11741665.0,12151490.0,12032087.0,12222048.0,12555631.0,12599077.0,12733106.0,12791121.0,13013423.0,13137749.0,13366904.0,13379901.0,13642809.0,13886886.0,14086597.0,14024141.0,14551127.0,14436678.0,14567931.0,14788428.0,14893708.0,15113650.0,15197089.0,15337237.0,15789033.0,15627103.0],"unit":"ns","throughput":[],"typical":{"estimate":29.17987241888911,"lower_bound":29.117067318664937,"upper_bound":29.250217623877763,"unit":"ns"},"mean":{"estimate":29.171718607908748,"lower_bound":29.09887001276204,"upper_bound":29.26072324928744,"unit":"ns"},"median":{"estimate":29.079790588387148,"lower_bound":29.043634524535634,"upper_bound":29.129462231943243,"unit":"ns"},"median_abs_dev":{"estimate":0.22458501323220836,"lower_bound":0.1832478818277911,"upper_bound":0.292999594771305,"unit":"ns"},"slope":{"estimate":29.17987241888911,"lower_bound":29.117067318664937,"upper_bound":29.250217623877763,"unit":"ns"},"change":{"mean":{"estimate":-0.0187147243202751,"lower_bound":-0.025285949070698033,"upper_bound":-0.0132770004379598,"unit":"%"},"median":{"estimate":-0.017175738415642128,"lower_bound":-0.02019540865745595,"upper_bound":-0.014388195693474604,"unit":"%"},"change":"Improved"}} +{"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":[291540.0,211285.0,209366.0,207694.0,207546.0,210730.0,210576.0,209479.0,210365.0,211138.0,210407.0,211667.0,213700.0,218264.0,215043.0,214830.0,211867.0,216099.0,211410.0,210695.0,211132.0,210256.0,209944.0,209190.0,210132.0,212053.0,211529.0,211125.0,210766.0,213615.0,243964.0,210505.0,244467.0,212446.0,213257.0,208824.0,211544.0,210147.0,209227.0,209465.0,207612.0,210730.0,218447.0,213192.0,211991.0,212826.0,212098.0,212625.0,210414.0,209306.0,212045.0,212269.0,209748.0,211900.0,210352.0,210674.0,215452.0,211605.0,211241.0,211144.0,206771.0,210438.0,206246.0,208573.0,215111.0,211711.0,209823.0,211157.0,211233.0,209790.0,211853.0,212343.0,210524.0,209423.0,212336.0,212932.0,211614.0,212744.0,211107.0,211172.0,210592.0,209585.0,213723.0,211342.0,213572.0,212575.0,209852.0,211417.0,208356.0,207763.0,213238.0,213130.0,209345.0,217032.0,209715.0,207861.0,212180.0,211343.0,210861.0,217698.0],"unit":"ns","throughput":[],"typical":{"estimate":212810.41,"lower_bound":211311.033,"upper_bound":214931.61325,"unit":"ns"},"mean":{"estimate":212810.41,"lower_bound":211311.033,"upper_bound":214931.61325,"unit":"ns"},"median":{"estimate":211202.5,"lower_bound":210730.0,"upper_bound":211605.0,"unit":"ns"},"median_abs_dev":{"estimate":1854.7325670719147,"lower_bound":1318.0313766002655,"upper_bound":2387.7272576093674,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.004922320187911389,"lower_bound":-0.009560245282028758,"upper_bound":0.019143934008490047,"unit":"%"},"median":{"estimate":0.009128394778586957,"lower_bound":0.0015746537658887227,"upper_bound":0.01553038501310633,"unit":"%"},"change":"NoChange"}} +{"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":[231952.0,169845.0,167550.0,166160.0,164777.0,165626.0,168086.0,163929.0,165434.0,164519.0,164548.0,163353.0,165715.0,165417.0,176378.0,174138.0,167081.0,164422.0,165700.0,175078.0,170420.0,163776.0,165068.0,165216.0,163070.0,165850.0,167255.0,164269.0,165224.0,165858.0,161523.0,164861.0,167001.0,160114.0,165551.0,165036.0,163949.0,163106.0,165894.0,164974.0,166956.0,165173.0,159861.0,162966.0,161132.0,164462.0,162846.0,162606.0,162161.0,164888.0,161100.0,161353.0,164561.0,165285.0,167485.0,167363.0,165062.0,163563.0,161165.0,165883.0,164993.0,164845.0,164134.0,162484.0,163606.0,160217.0,165578.0,163758.0,162692.0,163595.0,166208.0,163984.0,163198.0,158895.0,160295.0,160685.0,161682.0,165643.0,165198.0,163783.0,162868.0,165544.0,164221.0,162903.0,164429.0,164493.0,165919.0,161204.0,168182.0,174611.0,169421.0,165828.0,164510.0,165040.0,165299.0,165220.0,167093.0,161018.0,167596.0,161527.0],"unit":"ns","throughput":[],"typical":{"estimate":165559.93,"lower_bound":164449.89974999998,"upper_bound":167227.2255,"unit":"ns"},"mean":{"estimate":165559.93,"lower_bound":164449.89974999998,"upper_bound":167227.2255,"unit":"ns"},"median":{"estimate":164874.5,"lower_bound":164429.0,"upper_bound":165216.0,"unit":"ns"},"median_abs_dev":{"estimate":1888.8323664665222,"lower_bound":1304.6879768371582,"upper_bound":2867.348349094391,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.020325476322596403,"lower_bound":0.003365469676553064,"upper_bound":0.037103693500841826,"unit":"%"},"median":{"estimate":0.031222929338733163,"lower_bound":0.02311291154340811,"upper_bound":0.03779813744662919,"unit":"%"},"change":"NoChange"}} +{"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":[5552,11104,16656,22208,27760,33312,38864,44416,49968,55520,61072,66624,72176,77728,83280,88832,94384,99936,105488,111040,116592,122144,127696,133248,138800,144352,149904,155456,161008,166560,172112,177664,183216,188768,194320,199872,205424,210976,216528,222080,227632,233184,238736,244288,249840,255392,260944,266496,272048,277600,283152,288704,294256,299808,305360,310912,316464,322016,327568,333120,338672,344224,349776,355328,360880,366432,371984,377536,383088,388640,394192,399744,405296,410848,416400,421952,427504,433056,438608,444160,449712,455264,460816,466368,471920,477472,483024,488576,494128,499680,505232,510784,516336,521888,527440,532992,538544,544096,549648,555200],"measured_values":[159923.0,295449.0,456414.0,593126.0,703686.0,949775.0,978568.0,1220583.0,1230431.0,1487726.0,1562461.0,1963328.0,1915915.0,2261043.0,2233531.0,2452143.0,2807917.0,2904227.0,2837451.0,3123263.0,3204554.0,3570613.0,3414162.0,3899795.0,3662852.0,4138498.0,3915891.0,4230073.0,4198871.0,4713362.0,4436796.0,5055979.0,4873512.0,5565314.0,5166797.0,5944016.0,5491005.0,6042019.0,5669090.0,6520842.0,6154212.0,6915149.0,6196831.0,6995642.0,6465303.0,7314168.0,6988973.0,7243964.0,7563315.0,7979804.0,7338811.0,7972826.0,7576351.0,8143469.0,7827856.0,8620405.0,8298062.0,9207685.0,8423526.0,9262258.0,9612236.0,9605950.0,10099938.0,10222845.0,9613968.0,10453849.0,9914307.0,10885484.0,10132011.0,10631591.0,10084654.0,10932363.0,10583094.0,11969957.0,11158507.0,11804167.0,11715076.0,12308953.0,11465271.0,12556859.0,11747635.0,13050538.0,11955159.0,13487907.0,12278084.0,13377975.0,13106374.0,14535803.0,13243929.0,14054305.0,13870571.0,14726065.0,13437301.0,14783897.0,14928385.0,15546264.0,14012615.0,15123848.0,14442096.0,16050273.0],"unit":"ns","throughput":[],"typical":{"estimate":27.548209912360758,"lower_bound":27.23857703561194,"upper_bound":27.853054513221547,"unit":"ns"},"mean":{"estimate":27.481081206588684,"lower_bound":27.23368662348957,"upper_bound":27.729696193965278,"unit":"ns"},"median":{"estimate":27.42864745125192,"lower_bound":26.898329667829515,"upper_bound":27.906101840661893,"unit":"ns"},"median_abs_dev":{"estimate":1.7188535718744187,"lower_bound":1.2810592281913635,"upper_bound":1.877838354138783,"unit":"ns"},"slope":{"estimate":27.548209912360758,"lower_bound":27.23857703561194,"upper_bound":27.853054513221547,"unit":"ns"},"change":{"mean":{"estimate":0.09089536938125442,"lower_bound":0.07849847800126003,"upper_bound":0.10317940922538872,"unit":"%"},"median":{"estimate":0.09836554305972411,"lower_bound":0.0812419003529441,"upper_bound":0.1196220735164053,"unit":"%"},"change":"Regressed"}} +{"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":[638,1276,1914,2552,3190,3828,4466,5104,5742,6380,7018,7656,8294,8932,9570,10208,10846,11484,12122,12760,13398,14036,14674,15312,15950,16588,17226,17864,18502,19140,19778,20416,21054,21692,22330,22968,23606,24244,24882,25520,26158,26796,27434,28072,28710,29348,29986,30624,31262,31900,32538,33176,33814,34452,35090,35728,36366,37004,37642,38280,38918,39556,40194,40832,41470,42108,42746,43384,44022,44660,45298,45936,46574,47212,47850,48488,49126,49764,50402,51040,51678,52316,52954,53592,54230,54868,55506,56144,56782,57420,58058,58696,59334,59972,60610,61248,61886,62524,63162,63800],"measured_values":[809534.0,1585629.0,2382610.0,3176328.0,4002084.0,4757367.0,5560990.0,6338862.0,7130987.0,7947028.0,8762218.0,9597178.0,10337705.0,11097464.0,11938600.0,12644867.0,13412721.0,14214761.0,14992049.0,15843797.0,16699276.0,17371317.0,18157136.0,18918236.0,19793859.0,20536344.0,21291674.0,22064214.0,22828245.0,23620235.0,24469715.0,25263203.0,26030350.0,26764107.0,27569666.0,28367948.0,29190461.0,29951836.0,30805557.0,31510419.0,32346545.0,33170782.0,33899457.0,35028582.0,35546989.0,36341385.0,37070220.0,37749208.0,38628185.0,39287493.0,40262619.0,40941253.0,41847461.0,42561094.0,43339293.0,44072962.0,44957055.0,45651142.0,47002372.0,47155472.0,48050816.0,48710172.0,49654787.0,50370779.0,51435030.0,51995629.0,52907131.0,53620072.0,54465203.0,55151316.0,55971889.0,56637430.0,57486522.0,58199029.0,59163408.0,59744224.0,60596970.0,61323859.0,62216386.0,62865211.0,63665906.0,64413689.0,65105607.0,65842126.0,66860073.0,67910657.0,68677335.0,69613155.0,70083101.0,70844844.0,71787092.0,72531027.0,73483137.0,74135752.0,74806218.0,75647035.0,76418264.0,77155421.0,78121678.0,78615881.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":1235.0577082124064,"lower_bound":1234.3521926346275,"upper_bound":1235.8013426033801,"unit":"ns"},"mean":{"estimate":1237.5466417520904,"lower_bound":1236.470294618014,"upper_bound":1238.741731480895,"unit":"ns"},"median":{"estimate":1236.2057021346805,"lower_bound":1235.3780912574016,"upper_bound":1236.9912662128575,"unit":"ns"},"median_abs_dev":{"estimate":3.0165971470430106,"lower_bound":2.345487771083837,"upper_bound":4.215121669914565,"unit":"ns"},"slope":{"estimate":1235.0577082124064,"lower_bound":1234.3521926346275,"upper_bound":1235.8013426033801,"unit":"ns"},"change":{"mean":{"estimate":-0.0001572220851063788,"lower_bound":-0.002125559775848815,"upper_bound":0.001513613307205768,"unit":"%"},"median":{"estimate":0.0005462786281973386,"lower_bound":-0.0005125790583786582,"upper_bound":0.0014856024194551676,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"croo/10","report_directory":"/root/fuel-core/target/criterion/reports/croo/10","iteration_count":[633,1266,1899,2532,3165,3798,4431,5064,5697,6330,6963,7596,8229,8862,9495,10128,10761,11394,12027,12660,13293,13926,14559,15192,15825,16458,17091,17724,18357,18990,19623,20256,20889,21522,22155,22788,23421,24054,24687,25320,25953,26586,27219,27852,28485,29118,29751,30384,31017,31650,32283,32916,33549,34182,34815,35448,36081,36714,37347,37980,38613,39246,39879,40512,41145,41778,42411,43044,43677,44310,44943,45576,46209,46842,47475,48108,48741,49374,50007,50640,51273,51906,52539,53172,53805,54438,55071,55704,56337,56970,57603,58236,58869,59502,60135,60768,61401,62034,62667,63300],"measured_values":[836896.0,1623179.0,2377328.0,3185918.0,4009665.0,4804845.0,5554229.0,6364981.0,7142040.0,7978356.0,8953437.0,9521383.0,10278077.0,11091538.0,11911001.0,12643404.0,13409543.0,14308589.0,14989356.0,15877688.0,16604810.0,17421005.0,18198969.0,19009860.0,19742301.0,20648038.0,21288544.0,22162326.0,22926457.0,23778100.0,24665720.0,25360674.0,26103149.0,26974423.0,27697716.0,28491759.0,29230861.0,30207119.0,30728020.0,31770796.0,32415109.0,33276762.0,33954963.0,34826338.0,35502757.0,36467980.0,37096950.0,37973388.0,38693509.0,39672852.0,40289513.0,41229348.0,41790523.0,42805075.0,43333312.0,44433588.0,45045686.0,45917012.0,46542455.0,47849248.0,48184055.0,49109077.0,49740669.0,51161293.0,51758422.0,52567726.0,53123421.0,54137564.0,54834116.0,55689813.0,56155017.0,57237523.0,57670190.0,58664715.0,59314447.0,60356085.0,60748241.0,61778202.0,62396774.0,63316659.0,63861251.0,65089212.0,65571808.0,66669002.0,67209745.0,68218979.0,68858033.0,69749783.0,70303016.0,71290613.0,71833293.0,72837891.0,73316585.0,74555086.0,75002197.0,76124026.0,76718472.0,77761776.0,78336172.0,79199145.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":1250.9566156547749,"lower_bound":1250.113022618484,"upper_bound":1251.8355376155835,"unit":"ns"},"mean":{"estimate":1252.885221311367,"lower_bound":1251.292048567362,"upper_bound":1254.9163844208492,"unit":"ns"},"median":{"estimate":1251.2683497387288,"lower_bound":1250.2645797502964,"upper_bound":1252.2729773882024,"unit":"ns"},"median_abs_dev":{"estimate":4.226706342188976,"lower_bound":3.2258628924314006,"upper_bound":5.223500874885153,"unit":"ns"},"slope":{"estimate":1250.9566156547749,"lower_bound":1250.113022618484,"upper_bound":1251.8355376155835,"unit":"ns"},"change":{"mean":{"estimate":0.003333303595946635,"lower_bound":0.0009556430497419283,"upper_bound":0.005594686397091664,"unit":"%"},"median":{"estimate":0.002999999972129297,"lower_bound":0.0020444983404475092,"upper_bound":0.005009966293978133,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"croo/100","report_directory":"/root/fuel-core/target/criterion/reports/croo/100","iteration_count":[518,1036,1554,2072,2590,3108,3626,4144,4662,5180,5698,6216,6734,7252,7770,8288,8806,9324,9842,10360,10878,11396,11914,12432,12950,13468,13986,14504,15022,15540,16058,16576,17094,17612,18130,18648,19166,19684,20202,20720,21238,21756,22274,22792,23310,23828,24346,24864,25382,25900,26418,26936,27454,27972,28490,29008,29526,30044,30562,31080,31598,32116,32634,33152,33670,34188,34706,35224,35742,36260,36778,37296,37814,38332,38850,39368,39886,40404,40922,41440,41958,42476,42994,43512,44030,44548,45066,45584,46102,46620,47138,47656,48174,48692,49210,49728,50246,50764,51282,51800],"measured_values":[863481.0,1633975.0,2457542.0,3280874.0,4125413.0,4919770.0,5736759.0,6573395.0,7365454.0,8220760.0,9007128.0,9831902.0,10715615.0,11498733.0,12284012.0,13098200.0,13910182.0,14732648.0,15581413.0,16346534.0,17237559.0,18044562.0,18837602.0,19646499.0,20437638.0,21509333.0,22039122.0,22842947.0,23578145.0,24383128.0,25382827.0,26175320.0,26998621.0,27826512.0,28646561.0,29454805.0,30277512.0,31104408.0,31927770.0,32814542.0,33576351.0,34334003.0,35143010.0,35968058.0,36907302.0,37657295.0,38632438.0,39316149.0,40158564.0,40924740.0,41722945.0,42690095.0,43439440.0,44203875.0,45021438.0,45840879.0,46620949.0,47487202.0,48310107.0,49695650.0,49920507.0,50638338.0,51535329.0,52322605.0,53277215.0,54093588.0,54680957.0,55435434.0,56430419.0,57095814.0,58214941.0,58925717.0,59716381.0,60503323.0,61386180.0,62194150.0,62889727.0,63731776.0,64703051.0,65389551.0,66305707.0,67149368.0,67934237.0,68624042.0,69465462.0,70309314.0,71134734.0,71962003.0,72695463.0,73554687.0,74340305.0,75181883.0,76073726.0,76769968.0,77657868.0,78658880.0,79247662.0,80278844.0,80968271.0,81708024.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":1579.2517551163864,"lower_bound":1578.6404877745276,"upper_bound":1579.9820153372605,"unit":"ns"},"mean":{"estimate":1581.201175648562,"lower_bound":1579.7100366584857,"upper_bound":1583.3709041052236,"unit":"ns"},"median":{"estimate":1580.0710577924865,"lower_bound":1579.420907920908,"upper_bound":1580.335063324194,"unit":"ns"},"median_abs_dev":{"estimate":2.729633627416376,"lower_bound":1.8401932160923722,"upper_bound":3.308514425815368,"unit":"ns"},"slope":{"estimate":1579.2517551163864,"lower_bound":1578.6404877745276,"upper_bound":1579.9820153372605,"unit":"ns"},"change":{"mean":{"estimate":0.006506336566934445,"lower_bound":0.003425499599783916,"upper_bound":0.009391467963917887,"unit":"%"},"median":{"estimate":0.00914150407919645,"lower_bound":0.006707685273449843,"upper_bound":0.011500679783033419,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"croo/1000","report_directory":"/root/fuel-core/target/criterion/reports/croo/1000","iteration_count":[193,386,579,772,965,1158,1351,1544,1737,1930,2123,2316,2509,2702,2895,3088,3281,3474,3667,3860,4053,4246,4439,4632,4825,5018,5211,5404,5597,5790,5983,6176,6369,6562,6755,6948,7141,7334,7527,7720,7913,8106,8299,8492,8685,8878,9071,9264,9457,9650,9843,10036,10229,10422,10615,10808,11001,11194,11387,11580,11773,11966,12159,12352,12545,12738,12931,13124,13317,13510,13703,13896,14089,14282,14475,14668,14861,15054,15247,15440,15633,15826,16019,16212,16405,16598,16791,16984,17177,17370,17563,17756,17949,18142,18335,18528,18721,18914,19107,19300],"measured_values":[975850.0,1865226.0,2799105.0,3758785.0,4662734.0,5602135.0,6526960.0,7459265.0,8390888.0,9332598.0,10261183.0,11212711.0,12121969.0,13068249.0,14016761.0,14951128.0,15910632.0,16801027.0,17735779.0,18641219.0,19616375.0,20560033.0,21450172.0,22422015.0,23340014.0,24262117.0,25241463.0,26565654.0,27057882.0,28025274.0,28939827.0,29858519.0,30838209.0,31854278.0,32765374.0,33659519.0,34550350.0,35486228.0,36431827.0,37445165.0,38697848.0,39704057.0,40195204.0,41216038.0,42011221.0,42990024.0,43946166.0,44890431.0,45760375.0,46741555.0,47629697.0,48585834.0,49498047.0,50484573.0,51314512.0,52260742.0,53429036.0,54257920.0,55045602.0,56018209.0,57059616.0,58013049.0,58876927.0,59770411.0,60888243.0,61664548.0,62568136.0,63453539.0,64827423.0,65499547.0,66287750.0,67293067.0,68194651.0,69271543.0,70006310.0,71073884.0,71892473.0,72877255.0,73949543.0,74747309.0,75738893.0,76755045.0,77464886.0,78453230.0,79474409.0,80362438.0,81229588.0,82125590.0,83158941.0,84166872.0,85011554.0,85842584.0,86929594.0,87829408.0,88795584.0,89778473.0,90575993.0,91585781.0,92512426.0,93319445.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":4842.707401983567,"lower_bound":4841.191137898938,"upper_bound":4844.424414078324,"unit":"ns"},"mean":{"estimate":4845.094270562779,"lower_bound":4841.176738011672,"upper_bound":4850.65912459422,"unit":"ns"},"median":{"estimate":4841.02361498605,"lower_bound":4838.941074875546,"upper_bound":4841.818433035014,"unit":"ns"},"median_abs_dev":{"estimate":6.2617045325907,"lower_bound":4.628797941235021,"upper_bound":7.8623588257704276,"unit":"ns"},"slope":{"estimate":4842.707401983567,"lower_bound":4841.191137898938,"upper_bound":4844.424414078324,"unit":"ns"},"change":{"mean":{"estimate":-0.005483768764512176,"lower_bound":-0.009184089381321116,"upper_bound":-0.0030374566588374846,"unit":"%"},"median":{"estimate":-0.003744416437685194,"lower_bound":-0.004788977414846296,"upper_bound":-0.0032790799267722326,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"croo/10000","report_directory":"/root/fuel-core/target/criterion/reports/croo/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":[1041299.0,1992054.0,2982067.0,3976411.0,4972496.0,5966366.0,6960230.0,7981082.0,8946985.0,9972490.0,10934961.0,11953941.0,12925182.0,13948461.0,14967993.0,15901023.0,17010361.0,17956772.0,18915651.0,19902601.0,20933351.0,21903238.0,23068144.0,23880485.0,24879666.0,25851830.0,26867038.0,27923090.0,28852529.0,29911904.0,30939556.0,31858053.0,32828972.0,33887095.0,34819451.0,35804600.0,36803405.0,37838140.0,38795981.0,39837159.0,40813407.0,41795398.0,42830685.0,43757515.0,44814902.0,45765379.0,46774936.0,47905747.0,48848954.0,49770749.0,50844933.0,51896723.0,52836539.0,53804419.0,54760994.0,55741320.0,56773485.0,57964578.0,58734609.0,60161442.0,60772891.0,61758333.0,62719687.0,63677021.0,64890286.0,65750483.0,66842025.0,67650289.0,68751387.0,69715902.0,70674387.0,71635006.0,72677191.0,73646104.0,74649280.0,75651819.0,76661729.0,77678429.0,78753282.0,79633961.0,80613873.0,81704076.0,82660968.0,83621023.0,84592717.0,85806351.0,86795901.0,87878628.0,88669444.0,89559503.0,90749946.0,91560115.0,92594365.0,93749236.0,94559579.0,95535203.0,96530583.0,97540971.0,98538488.0,99545331.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":39842.57530261564,"lower_bound":39831.29247081239,"upper_bound":39855.17087209473,"unit":"ns"},"mean":{"estimate":39859.24495138195,"lower_bound":39831.98286606182,"upper_bound":39902.92652090269,"unit":"ns"},"median":{"estimate":39822.842303082194,"lower_bound":39816.5992,"upper_bound":39837.159,"unit":"ns"},"median_abs_dev":{"estimate":40.84142346736565,"lower_bound":29.0959102473118,"upper_bound":57.672904547901915,"unit":"ns"},"slope":{"estimate":39842.57530261564,"lower_bound":39831.29247081239,"upper_bound":39855.17087209473,"unit":"ns"},"change":{"mean":{"estimate":-0.000786376537982969,"lower_bound":-0.004478545291527833,"upper_bound":0.001812404275559709,"unit":"%"},"median":{"estimate":0.0019162145813276243,"lower_bound":0.0015215352941830356,"upper_bound":0.002350420844769552,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"croo/19753","report_directory":"/root/fuel-core/target/criterion/reports/croo/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":[1086905.0,2058604.0,3079579.0,4136645.0,5143391.0,6164077.0,7189470.0,8243591.0,9242371.0,10277944.0,11353236.0,12323020.0,13349498.0,14425739.0,15405306.0,16459644.0,17483179.0,18584406.0,19548228.0,20568344.0,21574060.0,22636879.0,23684089.0,24681072.0,25901813.0,26769021.0,27793688.0,28761699.0,29816632.0,31345128.0,31899771.0,32925387.0,33972094.0,35003936.0,36040275.0,37147437.0,38323049.0,39076692.0,40165309.0,41111607.0,42315814.0,43221901.0,44223963.0,45260330.0,46282035.0,47374773.0,48303842.0,49412326.0,50382598.0,51401963.0,52443289.0,53483767.0,54494456.0,55751333.0,56577909.0,57667207.0,58641358.0,60008978.0,60734687.0,61805145.0,62806220.0,63850191.0,64790477.0,66118957.0,66909752.0,67964592.0,68845161.0,69926708.0,70975597.0,72038040.0,73038550.0,74117853.0,75060014.0,76305260.0,77118195.0,78175048.0,79234604.0,80213741.0,81351651.0,82308378.0,83257552.0,84395246.0,85372893.0,86404258.0,87406146.0,89044016.0,89561513.0,90669528.0,91617933.0,92821902.0,93633390.0,94621160.0,95719258.0,96755846.0,97842080.0,98733697.0,99913154.0,100859011.0,101863939.0,102829111.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":79187.53123256528,"lower_bound":79160.88162314921,"upper_bound":79219.44238222232,"unit":"ns"},"mean":{"estimate":79236.72907054044,"lower_bound":79166.4395242234,"upper_bound":79346.44659013822,"unit":"ns"},"median":{"estimate":79149.51527318836,"lower_bound":79128.19685314686,"upper_bound":79178.27635327635,"unit":"ns"},"median_abs_dev":{"estimate":75.216512633112,"lower_bound":60.09288706680076,"upper_bound":102.14758985694233,"unit":"ns"},"slope":{"estimate":79187.53123256528,"lower_bound":79160.88162314921,"upper_bound":79219.44238222232,"unit":"ns"},"change":{"mean":{"estimate":0.0014294631739115715,"lower_bound":-0.0006199867498061608,"upper_bound":0.003318714011472412,"unit":"%"},"median":{"estimate":0.0015581767055894424,"lower_bound":0.0012171887930858224,"upper_bound":0.002093406829053457,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"croo/29629","report_directory":"/root/fuel-core/target/criterion/reports/croo/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":[1105165.0,2151160.0,3178457.0,4240944.0,5359102.0,6360986.0,7449594.0,8508385.0,9540181.0,10599366.0,11715504.0,12721753.0,13805090.0,14842230.0,15899076.0,16990717.0,18049302.0,19107173.0,20138171.0,21231228.0,22340465.0,23320326.0,24407268.0,25470258.0,26494099.0,27646588.0,28705623.0,29736802.0,30763994.0,31827216.0,32859366.0,33950538.0,35038581.0,36066869.0,37243610.0,38191452.0,39384835.0,40363050.0,41358524.0,42452998.0,43480424.0,44585709.0,45688115.0,46668648.0,47752756.0,48816449.0,49876054.0,50947091.0,52420685.0,53023363.0,54191057.0,55182880.0,56494250.0,57330934.0,58352444.0,59483635.0,60584150.0,61674658.0,62578492.0,63689976.0,64887818.0,65772145.0,66858662.0,67907457.0,68973314.0,70075372.0,71213407.0,72242750.0,73188492.0,74287721.0,75506043.0,76702095.0,77476564.0,78550114.0,79674057.0,80793421.0,81890997.0,82814734.0,83832194.0,84944747.0,86019299.0,86998212.0,88087358.0,89313392.0,90356171.0,91255770.0,92407155.0,93378851.0,94416421.0,95545550.0,96619491.0,97646196.0,98722260.0,99993014.0,100894789.0,101925523.0,102927119.0,103957685.0,105038666.0,106125791.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":117987.31795051147,"lower_bound":117957.81646903927,"upper_bound":118019.96386364225,"unit":"ns"},"mean":{"estimate":118051.74121702963,"lower_bound":117968.38392406606,"upper_bound":118173.52039062978,"unit":"ns"},"median":{"estimate":117943.75705705705,"lower_bound":117915.57273982058,"upper_bound":117970.6810290404,"unit":"ns"},"median_abs_dev":{"estimate":111.86603969577696,"lower_bound":77.85648120857508,"upper_bound":161.54351477510082,"unit":"ns"},"slope":{"estimate":117987.31795051147,"lower_bound":117957.81646903927,"upper_bound":118019.96386364225,"unit":"ns"},"change":{"mean":{"estimate":0.002075679602584257,"lower_bound":0.0007368571006543202,"upper_bound":0.003412978182574271,"unit":"%"},"median":{"estimate":0.0024524889770149993,"lower_bound":0.0018557798497047528,"upper_bound":0.002992799306129834,"unit":"%"},"change":"NoChange"}} +{"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":[1119088.0,2134171.0,3201669.0,4268506.0,5362884.0,6460918.0,7525149.0,8603198.0,9647569.0,10762013.0,11771654.0,12805506.0,13877538.0,14970803.0,16012154.0,17218909.0,18143266.0,19290748.0,20380887.0,21372334.0,22414685.0,23505679.0,24603713.0,25640839.0,26714193.0,27834890.0,28846474.0,29931548.0,30981731.0,32051544.0,33206055.0,34214650.0,35300816.0,36318599.0,37371954.0,38480345.0,39518626.0,40644551.0,41928027.0,42726869.0,43826312.0,44889035.0,45980872.0,47179767.0,48256661.0,49250868.0,50253546.0,51218257.0,52330269.0,53284122.0,54318796.0,55368243.0,56381021.0,57447522.0,58554383.0,59564533.0,60595831.0,61810600.0,62774891.0,63856419.0,64863127.0,65992442.0,67134794.0,68265078.0,69141623.0,70208929.0,71307821.0,72360940.0,73382482.0,74464741.0,75498744.0,76673937.0,77672048.0,78742248.0,79769445.0,80870934.0,82154309.0,82996332.0,84106962.0,85141977.0,86151855.0,87277655.0,88304008.0,89430229.0,90616752.0,91562680.0,92524964.0,93862450.0,94783610.0,95827518.0,96839805.0,98071784.0,98903245.0,100191248.0,101088082.0,102640535.0,103212952.0,104604646.0,105552057.0,106477653.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":177563.66345253927,"lower_bound":177496.76096253804,"upper_bound":177640.03538875596,"unit":"ns"},"mean":{"estimate":177956.8044151133,"lower_bound":177789.36064957143,"upper_bound":178185.8304973058,"unit":"ns"},"median":{"estimate":177844.37673611112,"lower_bound":177610.9708994709,"upper_bound":177961.6857142857,"unit":"ns"},"median_abs_dev":{"estimate":600.735519915733,"lower_bound":437.89309710068596,"upper_bound":734.8826546003107,"unit":"ns"},"slope":{"estimate":177563.66345253927,"lower_bound":177496.76096253804,"upper_bound":177640.03538875596,"unit":"ns"},"change":{"mean":{"estimate":0.0005354401046242518,"lower_bound":-0.001313634367544261,"upper_bound":0.0021898194577472715,"unit":"%"},"median":{"estimate":0.0012386020586883095,"lower_bound":-0.00010493305172697391,"upper_bound":0.002081591723291254,"unit":"%"},"change":"NoChange"}} +{"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":[1143512.0,2127637.0,3191711.0,4254332.0,5344766.0,6382058.0,7444311.0,8506934.0,9656229.0,10727945.0,11731987.0,12994680.0,14026797.0,15021291.0,15988804.0,17075166.0,18161882.0,19264568.0,20380942.0,21429340.0,22333569.0,23425609.0,24556908.0,25528847.0,26732343.0,27774174.0,28772802.0,29837700.0,30845368.0,32568911.0,33003587.0,34096852.0,35132885.0,36259809.0,37254604.0,38495601.0,39445503.0,40475922.0,41625529.0,42606351.0,43645701.0,44734164.0,45823328.0,46972352.0,48008527.0,49024255.0,50025252.0,51187274.0,52279038.0,53238607.0,54357364.0,55370162.0,56432028.0,57493907.0,58616533.0,59626471.0,60750465.0,61769787.0,62810405.0,63900746.0,65160542.0,66234844.0,67152842.0,68141028.0,69274589.0,70257650.0,71305633.0,72397373.0,73495635.0,74698976.0,75642485.0,76602657.0,77754709.0,78773408.0,79818279.0,81081126.0,81995449.0,83188477.0,84122093.0,85252988.0,86251994.0,87295241.0,88367711.0,89416884.0,90435408.0,91697680.0,92817780.0,93731096.0,94721325.0,95894037.0,96831551.0,97942947.0,98894616.0,100122536.0,101028235.0,102147641.0,103294314.0,104275525.0,105648117.0,106779473.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":266335.6230271908,"lower_bound":266254.1403299076,"upper_bound":266426.70743635634,"unit":"ns"},"mean":{"estimate":266780.776697936,"lower_bound":266460.286467284,"upper_bound":267262.5424680464,"unit":"ns"},"median":{"estimate":266288.74656750576,"lower_bound":266209.85802469135,"upper_bound":266436.16847826086,"unit":"ns"},"median_abs_dev":{"estimate":343.0283545046408,"lower_bound":243.52882594943586,"upper_bound":511.02724140883987,"unit":"ns"},"slope":{"estimate":266335.6230271908,"lower_bound":266254.1403299076,"upper_bound":266426.70743635634,"unit":"ns"},"change":{"mean":{"estimate":0.002254274593971317,"lower_bound":0.0008531080700654282,"upper_bound":0.004179755322955064,"unit":"%"},"median":{"estimate":0.0010774482516322514,"lower_bound":0.0007082131715738793,"upper_bound":0.0017198050743994064,"unit":"%"},"change":"NoChange"}} +{"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":[1253352.0,2391238.0,3615466.0,4783301.0,6007896.0,7201533.0,8403257.0,9565183.0,10790634.0,11957821.0,13179189.0,14376006.0,15543748.0,16768026.0,17933964.0,19190116.0,20442335.0,21551103.0,22743160.0,23972094.0,25196243.0,26459147.0,27498164.0,28749117.0,29945692.0,31548546.0,32649015.0,33726164.0,34917905.0,36146255.0,37086408.0,38297762.0,39561576.0,40702143.0,41866554.0,43093583.0,44286592.0,45646757.0,46698489.0,47884504.0,49053263.0,50300536.0,51465648.0,52813789.0,53881195.0,55081689.0,56250477.0,57572178.0,58640990.0,59983220.0,61022918.0,62206734.0,63437262.0,64761245.0,65808186.0,67494126.0,68274517.0,69374596.0,70693660.0,72127247.0,73000918.0,74204405.0,75528563.0,76709709.0,77820910.0,79009769.0,80220819.0,81422221.0,82589757.0,83857756.0,84967899.0,86219422.0,87570821.0,88423724.0,89808184.0,90918716.0,92182655.0,93248488.0,94417017.0,95619533.0,97162733.0,98029812.0,99407507.0,100772082.0,101745057.0,102925532.0,104028255.0,105284420.0,106482944.0,107602512.0,108835709.0,109980478.0,111362652.0,112337116.0,114033965.0,114896741.0,116028472.0,117167412.0,118633411.0,119539221.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":399082.45375991333,"lower_bound":398943.96688802226,"upper_bound":399237.8505530972,"unit":"ns"},"mean":{"estimate":399562.0946734923,"lower_bound":399232.9647910974,"upper_bound":400034.1335248143,"unit":"ns"},"median":{"estimate":399088.0448717949,"lower_bound":398978.30630630633,"upper_bound":399210.6031746032,"unit":"ns"},"median_abs_dev":{"estimate":554.6729362011336,"lower_bound":387.4728555210872,"upper_bound":811.8501532505926,"unit":"ns"},"slope":{"estimate":399082.45375991333,"lower_bound":398943.96688802226,"upper_bound":399237.8505530972,"unit":"ns"},"change":{"mean":{"estimate":0.002701752622886966,"lower_bound":0.0007768215413550062,"upper_bound":0.004346196488671519,"unit":"%"},"median":{"estimate":0.002618749158692202,"lower_bound":0.0022137576527803127,"upper_bound":0.0030041838152301548,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"croo","benchmarks":["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":[5704,11408,17112,22816,28520,34224,39928,45632,51336,57040,62744,68448,74152,79856,85560,91264,96968,102672,108376,114080,119784,125488,131192,136896,142600,148304,154008,159712,165416,171120,176824,182528,188232,193936,199640,205344,211048,216752,222456,228160,233864,239568,245272,250976,256680,262384,268088,273792,279496,285200,290904,296608,302312,308016,313720,319424,325128,330832,336536,342240,347944,353648,359352,365056,370760,376464,382168,387872,393576,399280,404984,410688,416392,422096,427800,433504,439208,444912,450616,456320,462024,467728,473432,479136,484840,490544,496248,501952,507656,513360,519064,524768,530472,536176,541880,547584,553288,558992,564696,570400],"measured_values":[151823.0,249702.0,431151.0,581841.0,613314.0,775964.0,901729.0,1017825.0,1178003.0,1328414.0,1591147.0,1621231.0,1729239.0,1865583.0,2040938.0,2185534.0,2169436.0,2322164.0,2449537.0,2559489.0,2706339.0,2855114.0,2886605.0,3278449.0,3255295.0,3438789.0,3615081.0,3558975.0,3713165.0,3770974.0,4123706.0,4078851.0,4437578.0,4566919.0,4352879.0,4528246.0,4779917.0,4954363.0,4925130.0,5394391.0,5308597.0,5506857.0,5477273.0,5639565.0,5720947.0,6015395.0,6437962.0,6104590.0,6187077.0,6639620.0,7230364.0,7453316.0,7261059.0,6939661.0,7491910.0,7865172.0,7900063.0,8152928.0,8148463.0,8403188.0,8411811.0,8618561.0,8110138.0,8952467.0,9541129.0,8368670.0,9104270.0,9647346.0,8936483.0,9354488.0,9103504.0,9485579.0,9370117.0,9872086.0,9765659.0,9929537.0,10025541.0,10041783.0,10641430.0,10407474.0,10815058.0,12132055.0,10876393.0,11079530.0,10985571.0,10875997.0,11984569.0,11356115.0,12396231.0,12285243.0,12594919.0,12207671.0,12394972.0,12422188.0,12566009.0,12639593.0,13433221.0,13008042.0,12622667.0,13040266.0],"unit":"ns","throughput":[],"typical":{"estimate":23.372274411585305,"lower_bound":23.164869492419502,"upper_bound":23.59347398405886,"unit":"ns"},"mean":{"estimate":23.296710129667005,"lower_bound":23.1042384447131,"upper_bound":23.497374007450404,"unit":"ns"},"median":{"estimate":23.110389151862243,"lower_bound":22.828155680224405,"upper_bound":23.341016233065673,"unit":"ns"},"median_abs_dev":{"estimate":0.9426130241798389,"lower_bound":0.674412306839203,"upper_bound":1.1818936784811522,"unit":"ns"},"slope":{"estimate":23.372274411585305,"lower_bound":23.164869492419502,"upper_bound":23.59347398405886,"unit":"ns"},"change":{"mean":{"estimate":-0.07961808007641102,"lower_bound":-0.08891787605536375,"upper_bound":-0.07039153210300028,"unit":"%"},"median":{"estimate":-0.08549615804344946,"lower_bound":-0.09705648002225302,"upper_bound":-0.07475563100079652,"unit":"%"},"change":"Improved"}} +{"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":[4949,9898,14847,19796,24745,29694,34643,39592,44541,49490,54439,59388,64337,69286,74235,79184,84133,89082,94031,98980,103929,108878,113827,118776,123725,128674,133623,138572,143521,148470,153419,158368,163317,168266,173215,178164,183113,188062,193011,197960,202909,207858,212807,217756,222705,227654,232603,237552,242501,247450,252399,257348,262297,267246,272195,277144,282093,287042,291991,296940,301889,306838,311787,316736,321685,326634,331583,336532,341481,346430,351379,356328,361277,366226,371175,376124,381073,386022,390971,395920,400869,405818,410767,415716,420665,425614,430563,435512,440461,445410,450359,455308,460257,465206,470155,475104,480053,485002,489951,494900],"measured_values":[159047.0,248824.0,371775.0,511415.0,697874.0,764845.0,921355.0,1127301.0,1152824.0,1261261.0,1401098.0,1563747.0,1632282.0,1745910.0,1837291.0,2309613.0,2214191.0,2345101.0,2400532.0,2641740.0,2568041.0,2901573.0,3056149.0,3200110.0,3246483.0,3292328.0,3377354.0,3549302.0,3530188.0,3817247.0,3864467.0,4088806.0,4082743.0,4196486.0,4270106.0,4793073.0,5064442.0,5208582.0,5090299.0,5408148.0,5195880.0,5247440.0,5315991.0,5682117.0,5534631.0,5882742.0,5758500.0,6299780.0,6056538.0,6578303.0,6513045.0,6830809.0,6698007.0,6928817.0,6939059.0,7472564.0,7273714.0,7478314.0,7359649.0,7804525.0,7736332.0,7903649.0,7869345.0,8658254.0,8722317.0,8801036.0,8524949.0,9257947.0,9134355.0,9028234.0,8856023.0,9427226.0,9492297.0,9704680.0,9321755.0,9909452.0,9626511.0,10254946.0,10087641.0,10724023.0,10557236.0,10742467.0,10657960.0,11202755.0,10612669.0,12655331.0,10923593.0,11565859.0,11220542.0,11701342.0,11481719.0,12190674.0,12352129.0,12419402.0,12092462.0,12844445.0,12267792.0,12680869.0,12399133.0,13406581.0],"unit":"ns","throughput":[],"typical":{"estimate":26.20905242875886,"lower_bound":25.990738506089514,"upper_bound":26.449242115151808,"unit":"ns"},"mean":{"estimate":26.163816050770617,"lower_bound":25.95606107933038,"upper_bound":26.3950233697095,"unit":"ns"},"median":{"estimate":25.93661169452737,"lower_bound":25.7477020743549,"upper_bound":26.317746900740495,"unit":"ns"},"median_abs_dev":{"estimate":0.9470024683787219,"lower_bound":0.7486082065519395,"upper_bound":1.1162957161957108,"unit":"ns"},"slope":{"estimate":26.20905242875886,"lower_bound":25.990738506089514,"upper_bound":26.449242115151808,"unit":"ns"},"change":{"mean":{"estimate":0.040534264447033896,"lower_bound":0.02951325680321087,"upper_bound":0.051357274796099306,"unit":"%"},"median":{"estimate":0.035573071679793955,"lower_bound":0.026074460000243826,"upper_bound":0.05084674054511806,"unit":"%"},"change":"Regressed"}} +{"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":[213896.0,168018.0,166351.0,164393.0,168867.0,162743.0,166330.0,171576.0,164739.0,165916.0,169810.0,162197.0,165066.0,174885.0,166098.0,167643.0,164101.0,162147.0,167177.0,170930.0,166690.0,172009.0,164587.0,162463.0,166325.0,167350.0,163681.0,165795.0,167950.0,166673.0,165076.0,164315.0,165577.0,169781.0,174297.0,167813.0,170259.0,165453.0,168004.0,166353.0,163738.0,164857.0,163962.0,167153.0,167752.0,167121.0,166723.0,169959.0,166828.0,165350.0,171952.0,167535.0,167165.0,168685.0,167943.0,166176.0,166457.0,166915.0,169147.0,166749.0,168805.0,165476.0,167931.0,169241.0,167122.0,164736.0,162111.0,165680.0,164401.0,165318.0,166692.0,165002.0,160999.0,163936.0,166321.0,163802.0,169160.0,162531.0,162698.0,170006.0,166659.0,167154.0,169880.0,166666.0,165252.0,166461.0,165640.0,167158.0,166735.0,165282.0,169769.0,168372.0,165447.0,175602.0,164634.0,166367.0,174621.0,169090.0,175576.0,166306.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":167401.4,"lower_bound":166501.91975,"upper_bound":168621.533,"unit":"ns"},"mean":{"estimate":167401.4,"lower_bound":166501.91975,"upper_bound":168621.533,"unit":"ns"},"median":{"estimate":166669.5,"lower_bound":166315.5,"upper_bound":167137.0,"unit":"ns"},"median_abs_dev":{"estimate":2232.0542603731155,"lower_bound":1742.054969072342,"upper_bound":3079.360145330429,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.03644966085347501,"lower_bound":0.009392580645908297,"upper_bound":0.0571769396358469,"unit":"%"},"median":{"estimate":0.052027116589975275,"lower_bound":0.04827920840120603,"upper_bound":0.055472420063646055,"unit":"%"},"change":"NoChange"}} +{"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":[173215.0,167702.0,165262.0,164445.0,159872.0,159822.0,164027.0,162211.0,162131.0,168487.0,166585.0,166757.0,164531.0,207348.0,187954.0,167868.0,168175.0,163661.0,163206.0,164866.0,166690.0,162288.0,165149.0,163979.0,160437.0,162136.0,156972.0,162564.0,165418.0,158208.0,162655.0,162480.0,163255.0,163231.0,164754.0,164723.0,163268.0,164316.0,165033.0,161190.0,157881.0,158013.0,166419.0,167618.0,167314.0,166019.0,159383.0,158887.0,163601.0,164236.0,164291.0,164163.0,163913.0,165559.0,175180.0,160177.0,162641.0,164775.0,163303.0,163298.0,162959.0,164358.0,160418.0,161889.0,163958.0,162882.0,163244.0,163707.0,159407.0,157784.0,163140.0,163092.0,162153.0,163198.0,158748.0,157301.0,163051.0,164250.0,162375.0,162109.0,160371.0,163280.0,162768.0,163423.0,163094.0,163695.0,167905.0,160717.0,164415.0,165002.0,161237.0,164530.0,166195.0,162840.0,164264.0,160013.0,163087.0,167165.0,161255.0,162302.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":164111.23,"lower_bound":163120.16725,"upper_bound":165364.84,"unit":"ns"},"mean":{"estimate":164111.23,"lower_bound":163120.16725,"upper_bound":165364.84,"unit":"ns"},"median":{"estimate":163289.0,"lower_bound":163090.5,"upper_bound":163992.5,"unit":"ns"},"median_abs_dev":{"estimate":1958.514565229416,"lower_bound":1543.386572599411,"upper_bound":2957.0456475019455,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.012051031755815567,"lower_bound":0.0000966045239001035,"upper_bound":0.02333505549008444,"unit":"%"},"median":{"estimate":0.012560188759390689,"lower_bound":0.007275731735138624,"upper_bound":0.020315071860405043,"unit":"%"},"change":"NoChange"}} +{"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":[258235.0,166534.0,166870.0,165024.0,165483.0,164704.0,164422.0,160185.0,163183.0,159514.0,164096.0,164259.0,165033.0,167385.0,163862.0,164692.0,167640.0,166093.0,168025.0,162278.0,164230.0,164329.0,158803.0,165456.0,164212.0,178350.0,171179.0,165822.0,163575.0,162765.0,161512.0,164405.0,158316.0,163960.0,159805.0,159795.0,164232.0,165277.0,164809.0,158901.0,159713.0,164885.0,161895.0,163446.0,161381.0,162325.0,164431.0,162118.0,163560.0,165273.0,173616.0,168171.0,165815.0,162858.0,160441.0,162849.0,161012.0,163704.0,162776.0,165020.0,165221.0,160163.0,177037.0,164853.0,164383.0,163553.0,165578.0,165155.0,166458.0,165582.0,165722.0,162948.0,162627.0,157669.0,165267.0,165629.0,164626.0,160251.0,160252.0,163249.0,163139.0,162840.0,163769.0,162558.0,164845.0,162689.0,163811.0,163123.0,158671.0,166167.0,163309.0,165100.0,162874.0,163683.0,158840.0,163550.0,166152.0,163792.0,164113.0,165485.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":164972.72,"lower_bound":163561.94675,"upper_bound":167238.26775,"unit":"ns"},"mean":{"estimate":164972.72,"lower_bound":163561.94675,"upper_bound":167238.26775,"unit":"ns"},"median":{"estimate":164104.5,"lower_bound":163560.0,"upper_bound":164524.0,"unit":"ns"},"median_abs_dev":{"estimate":1977.7883648872375,"lower_bound":1544.8691725730896,"upper_bound":2495.9570556879044,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.036712281799605284,"lower_bound":0.026031685025465146,"upper_bound":0.050714304016505736,"unit":"%"},"median":{"estimate":0.03286055506078345,"lower_bound":0.028168906712120717,"upper_bound":0.03801644022425377,"unit":"%"},"change":"Regressed"}} +{"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":[283488.0,170158.0,165248.0,167818.0,168637.0,163500.0,166678.0,167641.0,169814.0,165148.0,170199.0,166822.0,173915.0,169179.0,177747.0,169650.0,170381.0,171931.0,166866.0,168302.0,169891.0,165555.0,168711.0,168420.0,169951.0,170939.0,169527.0,173746.0,172911.0,166858.0,167708.0,168946.0,167792.0,171440.0,170503.0,169450.0,167147.0,170300.0,171888.0,165111.0,165678.0,172786.0,173200.0,165967.0,168781.0,171772.0,169528.0,168337.0,168275.0,168333.0,173643.0,165504.0,175204.0,171870.0,170809.0,171498.0,171342.0,170816.0,168914.0,167616.0,168343.0,169663.0,169011.0,169624.0,168178.0,164507.0,163988.0,174049.0,169208.0,168411.0,173573.0,184487.0,174796.0,169183.0,282447.0,166508.0,167187.0,167973.0,162991.0,166257.0,165800.0,168719.0,163749.0,163891.0,170027.0,167878.0,171245.0,168481.0,169313.0,167045.0,168465.0,173106.0,168892.0,167686.0,167169.0,167597.0,171690.0,168153.0,172838.0,173304.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":171552.21,"lower_bound":168999.14549999998,"upper_bound":175144.61875,"unit":"ns"},"mean":{"estimate":171552.21,"lower_bound":168999.14549999998,"upper_bound":175144.61875,"unit":"ns"},"median":{"estimate":168930.0,"lower_bound":168381.5,"upper_bound":169624.0,"unit":"ns"},"median_abs_dev":{"estimate":2714.640551805496,"lower_bound":1868.075966835022,"upper_bound":3504.866337776184,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.047242448673419535,"lower_bound":0.02964039138522376,"upper_bound":0.07065963564754271,"unit":"%"},"median":{"estimate":0.03795002872442077,"lower_bound":0.03153533831823774,"upper_bound":0.044461590691645236,"unit":"%"},"change":"Regressed"}} +{"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":[251821.0,206520.0,198797.0,196798.0,200948.0,201961.0,199193.0,198569.0,200060.0,201693.0,200102.0,200221.0,200366.0,200695.0,201997.0,202109.0,202218.0,201503.0,201787.0,202301.0,197017.0,198711.0,196330.0,200034.0,201365.0,201343.0,203187.0,202004.0,201744.0,202549.0,202764.0,197062.0,202183.0,204484.0,198821.0,200448.0,197988.0,205068.0,201481.0,201881.0,201021.0,202024.0,202084.0,200755.0,204106.0,204851.0,202454.0,196237.0,230645.0,202148.0,229316.0,202567.0,202551.0,202574.0,201628.0,202264.0,200438.0,202206.0,203675.0,205263.0,200834.0,228326.0,199795.0,200512.0,202820.0,207968.0,204888.0,202508.0,200823.0,199124.0,197153.0,206319.0,205812.0,201421.0,204513.0,201957.0,201054.0,201730.0,199284.0,203167.0,201404.0,198699.0,201432.0,202973.0,202085.0,198208.0,200129.0,203260.0,197452.0,198874.0,201185.0,202896.0,200898.0,201728.0,201061.0,203414.0,203997.0,202934.0,199968.0,201934.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":202794.69,"lower_bound":201551.56900000002,"upper_bound":204347.35125,"unit":"ns"},"mean":{"estimate":202794.69,"lower_bound":201551.56900000002,"upper_bound":204347.35125,"unit":"ns"},"median":{"estimate":201737.0,"lower_bound":201365.0,"upper_bound":202084.0,"unit":"ns"},"median_abs_dev":{"estimate":1824.3392676115036,"lower_bound":1299.4988769292831,"upper_bound":2441.842156648636,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.014878518662943652,"lower_bound":0.0051802339055128325,"upper_bound":0.02537133370393927,"unit":"%"},"median":{"estimate":0.017034856169148682,"lower_bound":0.011221125424681455,"upper_bound":0.021171563981042585,"unit":"%"},"change":"NoChange"}} +{"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":[297187.0,243376.0,255764.0,249270.0,245688.0,242384.0,242140.0,241564.0,243221.0,240802.0,239383.0,239344.0,238963.0,238253.0,243544.0,241186.0,236315.0,240456.0,234480.0,240919.0,241971.0,240590.0,236029.0,239217.0,251362.0,239348.0,237397.0,239742.0,239742.0,240481.0,240592.0,241684.0,241200.0,239732.0,240988.0,240453.0,236164.0,239606.0,239479.0,237413.0,238954.0,238192.0,240049.0,240356.0,239753.0,244368.0,238449.0,239708.0,239068.0,237407.0,236966.0,240934.0,243719.0,240435.0,239798.0,240344.0,241126.0,239191.0,238845.0,258388.0,242840.0,239372.0,241158.0,238358.0,243067.0,241463.0,241650.0,239970.0,235351.0,238093.0,236981.0,240928.0,239197.0,237427.0,238131.0,241315.0,238830.0,237265.0,240171.0,240603.0,237275.0,244176.0,240105.0,242089.0,236321.0,237704.0,242801.0,240861.0,240076.0,240762.0,239178.0,238651.0,241319.0,240145.0,239837.0,239860.0,268997.0,236497.0,240203.0,238614.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":241311.2,"lower_bound":240111.0595,"upper_bound":242891.22025,"unit":"ns"},"mean":{"estimate":241311.2,"lower_bound":240111.0595,"upper_bound":242891.22025,"unit":"ns"},"median":{"estimate":240090.5,"lower_bound":239725.0,"upper_bound":240523.0,"unit":"ns"},"median_abs_dev":{"estimate":1833.9761674404144,"lower_bound":1423.2959747314453,"upper_bound":2563.41535449028,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.004721968808617527,"lower_bound":-0.041959256349627244,"upper_bound":0.018432569701380977,"unit":"%"},"median":{"estimate":0.013146956430003076,"lower_bound":0.00978438962340844,"upper_bound":0.016978812993623495,"unit":"%"},"change":"NoChange"}} +{"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":[355565.0,277091.0,282132.0,283893.0,280069.0,277759.0,276498.0,277626.0,274028.0,277042.0,277671.0,278651.0,274899.0,278687.0,278774.0,280777.0,277137.0,286161.0,274205.0,279661.0,274832.0,281477.0,278672.0,279711.0,275989.0,281275.0,279263.0,280410.0,280376.0,278321.0,281132.0,280845.0,275133.0,280155.0,277293.0,276298.0,279259.0,280166.0,279098.0,279382.0,275965.0,276209.0,273475.0,279825.0,319015.0,280302.0,279235.0,274186.0,279436.0,276519.0,278657.0,280627.0,277537.0,281491.0,279890.0,274097.0,277124.0,277778.0,274737.0,278659.0,280262.0,278938.0,278855.0,279189.0,277456.0,274183.0,278229.0,274279.0,309090.0,277047.0,277897.0,272663.0,280216.0,280275.0,273753.0,278435.0,277824.0,281739.0,275966.0,280157.0,279155.0,280555.0,278682.0,277001.0,319198.0,295033.0,282588.0,281800.0,275964.0,277491.0,276291.0,276108.0,270925.0,275018.0,276287.0,272736.0,273315.0,277061.0,276561.0,276973.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":280073.72,"lower_bound":278291.70975000004,"upper_bound":282340.89225000003,"unit":"ns"},"mean":{"estimate":280073.72,"lower_bound":278291.70975000004,"upper_bound":282340.89225000003,"unit":"ns"},"median":{"estimate":278543.0,"lower_bound":277537.0,"upper_bound":279098.0,"unit":"ns"},"median_abs_dev":{"estimate":2662.7495527267456,"lower_bound":2207.591360807419,"upper_bound":3521.9347699731547,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.02274904441042569,"lower_bound":0.013986812384858778,"upper_bound":0.03232252832418709,"unit":"%"},"median":{"estimate":0.021145632847584972,"lower_bound":0.01673450098729168,"upper_bound":0.024394495732706467,"unit":"%"},"change":"Regressed"}} +{"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":[405892.0,335703.0,335652.0,335332.0,335875.0,334621.0,333026.0,334390.0,361174.0,334431.0,338159.0,335720.0,336200.0,329755.0,329079.0,334612.0,330889.0,334268.0,334895.0,334839.0,334306.0,361833.0,334123.0,338229.0,335214.0,337562.0,332717.0,334147.0,334764.0,338243.0,334966.0,338151.0,334754.0,334453.0,329110.0,365966.0,333815.0,346314.0,333674.0,339566.0,334727.0,336850.0,334657.0,335782.0,333967.0,335462.0,329781.0,333434.0,334496.0,335038.0,336028.0,334530.0,333403.0,334929.0,335232.0,334325.0,359008.0,343675.0,329580.0,330520.0,333433.0,333643.0,330946.0,334586.0,334213.0,335692.0,334754.0,336951.0,334431.0,334294.0,335571.0,330282.0,334412.0,352171.0,332758.0,335006.0,335020.0,334257.0,331003.0,338235.0,334066.0,334455.0,330853.0,329059.0,332501.0,335420.0,335607.0,336476.0,336648.0,336231.0,334427.0,329189.0,333546.0,333307.0,334020.0,336838.0,339462.0,332193.0,338400.0,332204.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":336584.03,"lower_bound":334992.6295,"upper_bound":338606.2745,"unit":"ns"},"mean":{"estimate":336584.03,"lower_bound":334992.6295,"upper_bound":338606.2745,"unit":"ns"},"median":{"estimate":334639.0,"lower_bound":334421.5,"upper_bound":335006.0,"unit":"ns"},"median_abs_dev":{"estimate":1657.5467705726624,"lower_bound":1211.284178495407,"upper_bound":2508.5591554641724,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.023461583066727076,"lower_bound":0.016861344082056907,"upper_bound":0.030661588369793064,"unit":"%"},"median":{"estimate":0.022119933902876365,"lower_bound":0.01988899731641869,"upper_bound":0.024380768254220753,"unit":"%"},"change":"Regressed"}} +{"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":[476572.0,421082.0,415647.0,419674.0,417441.0,416630.0,421929.0,422160.0,418880.0,419190.0,418599.0,419665.0,417887.0,420066.0,474228.0,421936.0,418282.0,421660.0,421054.0,421429.0,421148.0,419080.0,422609.0,421262.0,419075.0,413934.0,414648.0,415400.0,419109.0,420124.0,417840.0,418629.0,430441.0,417850.0,422468.0,420435.0,417976.0,415297.0,421658.0,421857.0,418673.0,421318.0,419571.0,419819.0,415985.0,418128.0,419733.0,421789.0,421993.0,419398.0,420042.0,418759.0,419701.0,417762.0,426936.0,421235.0,425121.0,421024.0,419291.0,419486.0,418648.0,418142.0,422005.0,420801.0,419489.0,415025.0,418596.0,414547.0,414702.0,414283.0,417524.0,417454.0,415503.0,420522.0,416824.0,419201.0,421139.0,416504.0,420342.0,424234.0,419056.0,418355.0,417994.0,417266.0,420025.0,419059.0,416223.0,419205.0,418461.0,418307.0,416969.0,420836.0,419189.0,417809.0,415202.0,413205.0,418796.0,419326.0,417447.0,415629.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":420244.59,"lower_bound":418877.10975,"upper_bound":422088.5565,"unit":"ns"},"mean":{"estimate":420244.59,"lower_bound":418877.10975,"upper_bound":422088.5565,"unit":"ns"},"median":{"estimate":419149.0,"lower_bound":418648.0,"upper_bound":419577.0,"unit":"ns"},"median_abs_dev":{"estimate":2475.200656056404,"lower_bound":1699.8008698225021,"upper_bound":3068.2406455278397,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.008741175861459949,"lower_bound":0.001572753354696174,"upper_bound":0.014967202865652255,"unit":"%"},"median":{"estimate":0.012226928705631135,"lower_bound":0.009593030959327287,"upper_bound":0.014115683286160197,"unit":"%"},"change":"NoChange"}} +{"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":[572448.0,551720.0,549469.0,547357.0,546610.0,547293.0,549083.0,550429.0,550585.0,546923.0,551761.0,546776.0,548204.0,546490.0,544156.0,542657.0,549472.0,550792.0,553389.0,554485.0,551127.0,551059.0,549294.0,549744.0,551261.0,549446.0,546144.0,550112.0,545927.0,551048.0,550435.0,548305.0,544472.0,553815.0,555292.0,550735.0,549931.0,549460.0,543429.0,549233.0,550833.0,551275.0,546029.0,551686.0,548096.0,551017.0,551317.0,549241.0,545572.0,550164.0,551178.0,549393.0,544354.0,544182.0,545539.0,548010.0,548359.0,548612.0,547163.0,549736.0,550226.0,548509.0,548691.0,549253.0,546907.0,544455.0,546989.0,549297.0,563340.0,550615.0,551004.0,548450.0,548860.0,549465.0,549684.0,556202.0,544806.0,622302.0,543581.0,546640.0,549244.0,550490.0,548064.0,548124.0,551233.0,546823.0,550151.0,547210.0,548048.0,544487.0,548150.0,543275.0,548017.0,551799.0,546919.0,574686.0,547347.0,551175.0,548365.0,549085.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":550140.92,"lower_bound":548760.27,"upper_bound":552055.04475,"unit":"ns"},"mean":{"estimate":550140.92,"lower_bound":548760.27,"upper_bound":552055.04475,"unit":"ns"},"median":{"estimate":549242.5,"lower_bound":548365.0,"upper_bound":549572.0,"unit":"ns"},"median_abs_dev":{"estimate":2743.5512512922287,"lower_bound":1922.1908658742905,"upper_bound":3132.7337443828583,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.010780668660040238,"lower_bound":0.006818954208188755,"upper_bound":0.015043664311693574,"unit":"%"},"median":{"estimate":0.010783370109112678,"lower_bound":0.007925904991907151,"upper_bound":0.012369430371358533,"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":[167,334,501,668,835,1002,1169,1336,1503,1670,1837,2004,2171,2338,2505,2672,2839,3006,3173,3340,3507,3674,3841,4008,4175,4342,4509,4676,4843,5010,5177,5344,5511,5678,5845,6012,6179,6346,6513,6680,6847,7014,7181,7348,7515,7682,7849,8016,8183,8350,8517,8684,8851,9018,9185,9352,9519,9686,9853,10020,10187,10354,10521,10688,10855,11022,11189,11356,11523,11690,11857,12024,12191,12358,12525,12692,12859,13026,13193,13360,13527,13694,13861,14028,14195,14362,14529,14696,14863,15030,15197,15364,15531,15698,15865,16032,16199,16366,16533,16700],"measured_values":[966215.0,1863883.0,2804173.0,3745217.0,4672859.0,5602730.0,6537117.0,7488246.0,8425959.0,9360005.0,10283668.0,11236827.0,12132215.0,13065309.0,14029507.0,14982634.0,15942757.0,16804966.0,17870603.0,18722067.0,19634391.0,20549604.0,21515234.0,22452756.0,23350860.0,24265794.0,25605381.0,26191221.0,27109675.0,27979963.0,29080205.0,29953043.0,30953722.0,31938750.0,32678668.0,33780619.0,34570877.0,35449554.0,36522792.0,37509719.0,38353105.0,39180698.0,40299416.0,41405875.0,42071961.0,43019477.0,44042780.0,45228566.0,45921749.0,46952144.0,47864904.0,48804376.0,49861143.0,50380328.0,51498272.0,53124975.0,53763879.0,54415051.0,55504754.0,56457272.0,57817141.0,58240677.0,59331373.0,60285041.0,61170492.0,62238005.0,63017080.0,64250456.0,65153337.0,65616186.0,66941068.0,67971760.0,68689668.0,69463168.0,70815769.0,71907721.0,72553315.0,73156729.0,74294976.0,75514148.0,76322317.0,77009514.0,78280887.0,79163930.0,79986679.0,80687417.0,81937469.0,82958047.0,83968451.0,84739861.0,85864203.0,86796884.0,87706131.0,88567852.0,88765654.0,90044322.0,90880499.0,91620803.0,92627836.0,93602740.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":5629.918539088514,"lower_bound":5624.52470419012,"upper_bound":5635.119893869252,"unit":"ns"},"mean":{"estimate":5621.513215866155,"lower_bound":5616.170353456803,"upper_bound":5627.421384018133,"unit":"ns"},"median":{"estimate":5616.626536699328,"lower_bound":5607.675725472132,"upper_bound":5623.977958276994,"unit":"ns"},"median_abs_dev":{"estimate":27.239270320901056,"lower_bound":20.201638442782755,"upper_bound":32.99087472962765,"unit":"ns"},"slope":{"estimate":5629.918539088514,"lower_bound":5624.52470419012,"upper_bound":5635.119893869252,"unit":"ns"},"change":{"mean":{"estimate":0.08705368705625927,"lower_bound":0.08505257011922002,"upper_bound":0.08908472237388691,"unit":"%"},"median":{"estimate":0.08656588112797725,"lower_bound":0.08484272324794406,"upper_bound":0.08922710060410166,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"srwq/10","report_directory":"/root/fuel-core/target/criterion/reports/srwq/10","iteration_count":[18,36,54,72,90,108,126,144,162,180,198,216,234,252,270,288,306,324,342,360,378,396,414,432,450,468,486,504,522,540,558,576,594,612,630,648,666,684,702,720,738,756,774,792,810,828,846,864,882,900,918,936,954,972,990,1008,1026,1044,1062,1080,1098,1116,1134,1152,1170,1188,1206,1224,1242,1260,1278,1296,1314,1332,1350,1368,1386,1404,1422,1440,1458,1476,1494,1512,1530,1548,1566,1584,1602,1620,1638,1656,1674,1692,1710,1728,1746,1764,1782,1800],"measured_values":[1060482.0,2028259.0,3038654.0,4046873.0,5022398.0,6045974.0,7133836.0,7978837.0,9145151.0,10080021.0,11087528.0,12134270.0,13104924.0,14205706.0,15117945.0,15968983.0,16840661.0,18177621.0,19271264.0,20284510.0,21242191.0,22245771.0,23338807.0,24286860.0,25235259.0,25935968.0,27219852.0,28363286.0,29341264.0,29990940.0,31391663.0,32313438.0,32772993.0,34282849.0,35470646.0,36487748.0,37483166.0,38314771.0,39260250.0,40535396.0,41302335.0,42506368.0,43181425.0,43820022.0,45600618.0,46446335.0,47776697.0,48098290.0,49062915.0,50449685.0,51441505.0,52675699.0,53530705.0,54508847.0,55650077.0,56308611.0,57638067.0,58612926.0,59431554.0,60030967.0,61392227.0,62599206.0,63553413.0,64513783.0,65699562.0,66074593.0,67825868.0,68903420.0,69646329.0,70520793.0,71658937.0,72027055.0,73900079.0,74737846.0,75359791.0,76915965.0,77698670.0,78770328.0,80016285.0,80799329.0,82003902.0,82933550.0,82584006.0,84133158.0,85523243.0,87065733.0,87499104.0,88789917.0,89988866.0,90978902.0,92221402.0,92811324.0,93771962.0,94525861.0,96057356.0,97050446.0,98019708.0,98706136.0,99893122.0,100737970.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":56033.44788532585,"lower_bound":55976.274173694146,"upper_bound":56084.55494092433,"unit":"ns"},"mean":{"estimate":56064.002576117564,"lower_bound":55989.764221663136,"upper_bound":56148.82506891629,"unit":"ns"},"median":{"estimate":56093.54299127318,"lower_bound":56045.485507246376,"upper_bound":56153.471794871795,"unit":"ns"},"median_abs_dev":{"estimate":195.2875074557408,"lower_bound":158.2351916079343,"upper_bound":270.3381324693496,"unit":"ns"},"slope":{"estimate":56033.44788532585,"lower_bound":55976.274173694146,"upper_bound":56084.55494092433,"unit":"ns"},"change":{"mean":{"estimate":0.11813558187604833,"lower_bound":0.11567567256518896,"upper_bound":0.12063077289327852,"unit":"%"},"median":{"estimate":0.11928640615198627,"lower_bound":0.11718614769474045,"upper_bound":0.12105619272715029,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"srwq/100","report_directory":"/root/fuel-core/target/criterion/reports/srwq/100","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":[1157996.0,2224141.0,3326921.0,4501213.0,5566003.0,6679878.0,7703109.0,8855487.0,10026164.0,11258154.0,12286947.0,13502909.0,14540725.0,15658934.0,16874179.0,17770932.0,18759374.0,19744338.0,20971437.0,22514920.0,23474667.0,24690827.0,25760116.0,26912982.0,28069756.0,28872079.0,29756869.0,31413355.0,32542817.0,33132311.0,35172731.0,35484477.0,36918571.0,38135700.0,39686913.0,39874115.0,41271131.0,42454614.0,43469359.0,44059064.0,45396629.0,46336147.0,47794062.0,48443543.0,49951993.0,50926567.0,51891836.0,53328615.0,54277407.0,55752532.0,56611272.0,57700380.0,59262035.0,60598196.0,61531563.0,61801939.0,63267481.0,64399048.0,66026587.0,67192656.0,67482157.0,69500365.0,69829577.0,71582888.0,72690580.0,73734642.0,74181356.0,75885679.0,76500207.0,78383696.0,79449975.0,80100614.0,81186497.0,81793429.0,83588257.0,85293024.0,86564631.0,86941401.0,88003890.0,89391923.0,91469723.0,91425738.0,92991618.0,93644878.0,95054013.0,96333937.0,97283440.0,100221990.0,99637045.0,100269945.0,101515693.0,102994547.0,104364728.0,105288534.0,106673702.0,107476665.0,108630147.0,109925696.0,110323143.0,111503553.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":558465.8181867888,"lower_bound":557679.3671631769,"upper_bound":559272.8298391748,"unit":"ns"},"mean":{"estimate":557892.573581659,"lower_bound":557063.3152241015,"upper_bound":558775.6032510861,"unit":"ns"},"median":{"estimate":557880.7333952812,"lower_bound":557177.3621794872,"upper_bound":559191.2827205883,"unit":"ns"},"median_abs_dev":{"estimate":3977.053252284855,"lower_bound":2771.262392618452,"upper_bound":4716.95596076047,"unit":"ns"},"slope":{"estimate":558465.8181867888,"lower_bound":557679.3671631769,"upper_bound":559272.8298391748,"unit":"ns"},"change":{"mean":{"estimate":0.11385990412229963,"lower_bound":0.11177642357685985,"upper_bound":0.11595775247683351,"unit":"%"},"median":{"estimate":0.11380913531266179,"lower_bound":0.11228062761417414,"upper_bound":0.11666347698285207,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"srwq/1000","report_directory":"/root/fuel-core/target/criterion/reports/srwq/1000","iteration_count":[10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10],"measured_values":[53881427.0,53606724.0,53811307.0,54117821.0,54298685.0,53971466.0,53720316.0,53897942.0,53413336.0,53235630.0,53882551.0,53935291.0,53843872.0,54232146.0,54852416.0,53917841.0,54262178.0,54084025.0,54123954.0,53687225.0,53702921.0,53669344.0,53647414.0,54019203.0,54204476.0,53761443.0,53837669.0,53742221.0,53672197.0,53328731.0,53638723.0,54339472.0,54288416.0,53923448.0,53792706.0,53441273.0,54417759.0,53627559.0,54116457.0,53476972.0,54107150.0,53348137.0,53795148.0,53760700.0,53417999.0,53810915.0,53913838.0,54049895.0,54235247.0,53465742.0,53465871.0,54613012.0,54006236.0,54293579.0,53835826.0,53742441.0,53766548.0,53221909.0,53491465.0,54265600.0,54016881.0,53880003.0,53860569.0,53864950.0,53825928.0,54018691.0,53861960.0,53415494.0,54050208.0,54531351.0,54196854.0,53952610.0,54200588.0,54118863.0,53850564.0,54165562.0,54111461.0,54119629.0,53906764.0,54081838.0,53762743.0,54121685.0,54206863.0,54220930.0,54027109.0,53901982.0,54301295.0,54193509.0,54478753.0,54239964.0,54135684.0,54279758.0,54049165.0,54157085.0,54098214.0,54184413.0,54152266.0,53441854.0,54119745.0,54216675.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":5394352.275,"lower_bound":5388265.409825,"upper_bound":5400415.547,"unit":"ns"},"mean":{"estimate":5394352.275,"lower_bound":5388265.409825,"upper_bound":5400415.547,"unit":"ns"},"median":{"estimate":5394395.05,"lower_bound":5387318.85,"upper_bound":5406586.65,"unit":"ns"},"median_abs_dev":{"estimate":29892.1065393093,"lower_bound":24355.937390595955,"upper_bound":37424.678095578594,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.05599848207840985,"lower_bound":0.05469061617469599,"upper_bound":0.05723702335820074,"unit":"%"},"median":{"estimate":0.05549527220098316,"lower_bound":0.05412472109377209,"upper_bound":0.05765515181724923,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"srwq/10000","report_directory":"/root/fuel-core/target/criterion/reports/srwq/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":[52551742.0,52553063.0,52580133.0,52601451.0,52760422.0,52423354.0,52741133.0,52551103.0,52706030.0,52839528.0,52599257.0,51925639.0,52938523.0,53083486.0,52830553.0,52395183.0,52747027.0,52560959.0,52623340.0,52705134.0,52918589.0,52888827.0,52910117.0,52782913.0,52827117.0,52728619.0,52932392.0,52547256.0,52939351.0,52704629.0,51927997.0,52741725.0,53026663.0,52871223.0,52410343.0,52658380.0,52850277.0,52952867.0,52563647.0,52879744.0,52627302.0,53080169.0,52618117.0,52831791.0,52633792.0,52414212.0,52290683.0,52876727.0,53116156.0,52870537.0,52671892.0,52823604.0,52764535.0,52386629.0,52666604.0,52776932.0,52577178.0,52735440.0,52522016.0,52810033.0,52695184.0,52762904.0,52373221.0,52812333.0,53046750.0,51894485.0,52586095.0,52624451.0,52471102.0,52349559.0,52144570.0,52501866.0,52289118.0,52090810.0,52508459.0,52456981.0,52357946.0,52237352.0,52715203.0,52541504.0,52444725.0,51898251.0,52851859.0,52705012.0,52932625.0,52610074.0,52414398.0,52222719.0,52705834.0,52214234.0,52729292.0,52084153.0,52595266.0,52348739.0,51972315.0,52564566.0,52536580.0,52491994.0,52533996.0,52425345.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":52606159.55,"lower_bound":52552157.90875,"upper_bound":52658425.782000005,"unit":"ns"},"mean":{"estimate":52606159.55,"lower_bound":52552157.90875,"upper_bound":52658425.782000005,"unit":"ns"},"median":{"estimate":52623895.5,"lower_bound":52564566.0,"upper_bound":52705423.0,"unit":"ns"},"median_abs_dev":{"estimate":270802.815592289,"lower_bound":186780.16858398914,"upper_bound":315242.267203331,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.02651715459020032,"lower_bound":0.02512604679561232,"upper_bound":0.02807222452423444,"unit":"%"},"median":{"estimate":0.027043666578151937,"lower_bound":0.02584261260552423,"upper_bound":0.029441985060094655,"unit":"%"},"change":"Regressed"}} +{"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":[529611832.0,527555710.0,528872603.0,529287311.0,527190808.0,525614435.0,527215715.0,528876431.0,528031849.0,529218952.0,526830267.0,527393133.0,527479644.0,528417526.0,524875654.0,524728016.0,529086934.0,526587803.0,525679639.0,523311723.0,523250185.0,526020151.0,525897831.0,526188784.0,525435170.0,525079202.0,525642591.0,525498556.0,523749905.0,527920368.0,522989547.0,525852853.0,524299495.0,527166601.0,525392000.0,529174845.0,527129527.0,529475256.0,529566161.0,529795376.0,528675543.0,529941280.0,534559071.0,530324459.0,529594087.0,530158851.0,527112538.0,526746781.0,526115456.0,525186418.0,525416385.0,529663952.0,530714609.0,526585251.0,527322572.0,528506750.0,526659572.0,527776659.0,529230082.0,529217613.0,529535464.0,531018641.0,528387722.0,528713993.0,526778302.0,524536152.0,523371634.0,524305097.0,527365461.0,527241123.0,525616869.0,524918084.0,529628387.0,529560436.0,529667135.0,535597110.0,526553563.0,527849914.0,529239437.0,530596555.0,531026303.0,530968104.0,531255529.0,529617908.0,529824166.0,530713658.0,531883555.0,532051572.0,531889196.0,533574995.0,528288416.0,528536543.0,525478154.0,528234028.0,525604301.0,525377737.0,528807675.0,527737912.0,529939315.0,528277618.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":527904660.82,"lower_bound":527429083.72375,"upper_bound":528388707.16775,"unit":"ns"},"mean":{"estimate":527904660.82,"lower_bound":527429083.72375,"upper_bound":528388707.16775,"unit":"ns"},"median":{"estimate":527885141.0,"lower_bound":527215715.0,"upper_bound":528675543.0,"unit":"ns"},"median_abs_dev":{"estimate":2576768.3911532164,"lower_bound":1907997.9363262653,"upper_bound":3050995.783933997,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.027070452700754588,"lower_bound":0.025853563516812294,"upper_bound":0.028354223492176596,"unit":"%"},"median":{"estimate":0.02735515379488529,"lower_bound":0.025666640217087977,"upper_bound":0.029206281858678462,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"srwq","benchmarks":["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":[371,742,1113,1484,1855,2226,2597,2968,3339,3710,4081,4452,4823,5194,5565,5936,6307,6678,7049,7420,7791,8162,8533,8904,9275,9646,10017,10388,10759,11130,11501,11872,12243,12614,12985,13356,13727,14098,14469,14840,15211,15582,15953,16324,16695,17066,17437,17808,18179,18550,18921,19292,19663,20034,20405,20776,21147,21518,21889,22260,22631,23002,23373,23744,24115,24486,24857,25228,25599,25970,26341,26712,27083,27454,27825,28196,28567,28938,29309,29680,30051,30422,30793,31164,31535,31906,32277,32648,33019,33390,33761,34132,34503,34874,35245,35616,35987,36358,36729,37100],"measured_values":[964654.0,1800940.0,2639117.0,3671416.0,4654726.0,5584937.0,6520400.0,7231728.0,8190832.0,9099320.0,9809275.0,10810560.0,11786277.0,12810030.0,13653484.0,14742438.0,15001278.0,16065394.0,17133991.0,18330739.0,19239526.0,20017726.0,20745527.0,22096862.0,22983218.0,23552629.0,24507200.0,25685940.0,26383401.0,27193324.0,28352673.0,28517433.0,29748616.0,30932602.0,31806955.0,32813581.0,33550327.0,34548129.0,34798254.0,36499960.0,37216552.0,37573774.0,38750613.0,40044160.0,40991241.0,40838699.0,42559793.0,43368332.0,44120798.0,44599910.0,45506399.0,45937200.0,47402791.0,48400716.0,49311354.0,50681618.0,51008685.0,51144747.0,53030682.0,53191944.0,54254887.0,55246643.0,56133482.0,57527666.0,58728132.0,59508598.0,60723903.0,62282091.0,62232220.0,62624452.0,64481448.0,64986414.0,65579362.0,66816823.0,66807679.0,68226324.0,68575848.0,68975737.0,70310630.0,70546149.0,71809462.0,73151211.0,74658019.0,74168062.0,75765920.0,76663701.0,77876267.0,79480577.0,77748248.0,80052100.0,81060848.0,82554855.0,82841397.0,83666312.0,84795907.0,84269449.0,86229127.0,88804183.0,88106680.0,89110661.0],"unit":"ns","throughput":[],"typical":{"estimate":2411.2432900189083,"lower_bound":2405.4456438724883,"upper_bound":2417.378410859449,"unit":"ns"},"mean":{"estimate":2428.5302460818402,"lower_bound":2421.6163211184435,"upper_bound":2435.812143909197,"unit":"ns"},"median":{"estimate":2427.695417789758,"lower_bound":2414.6894588603764,"upper_bound":2434.551155265778,"unit":"ns"},"median_abs_dev":{"estimate":36.62351249681059,"lower_bound":26.715914889579018,"upper_bound":40.70944676153968,"unit":"ns"},"slope":{"estimate":2411.2432900189083,"lower_bound":2405.4456438724883,"upper_bound":2417.378410859449,"unit":"ns"},"change":{"mean":{"estimate":2.791858730977607,"lower_bound":2.776395652242701,"upper_bound":2.8068173851076264,"unit":"%"},"median":{"estimate":2.786970877718367,"lower_bound":2.765547827545637,"upper_bound":2.810764900961636,"unit":"%"},"change":"Regressed"}} +{"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":[1979,3958,5937,7916,9895,11874,13853,15832,17811,19790,21769,23748,25727,27706,29685,31664,33643,35622,37601,39580,41559,43538,45517,47496,49475,51454,53433,55412,57391,59370,61349,63328,65307,67286,69265,71244,73223,75202,77181,79160,81139,83118,85097,87076,89055,91034,93013,94992,96971,98950,100929,102908,104887,106866,108845,110824,112803,114782,116761,118740,120719,122698,124677,126656,128635,130614,132593,134572,136551,138530,140509,142488,144467,146446,148425,150404,152383,154362,156341,158320,160299,162278,164257,166236,168215,170194,172173,174152,176131,178110,180089,182068,184047,186026,188005,189984,191963,193942,195921,197900],"measured_values":[1011230.0,2033708.0,2958789.0,3944767.0,4926717.0,5943272.0,6901868.0,7884170.0,8865670.0,9855542.0,10868673.0,11833998.0,12851143.0,13833053.0,14789278.0,15827374.0,16792643.0,17825128.0,18736701.0,19742045.0,20713264.0,21728505.0,22715178.0,23711391.0,25055090.0,25667257.0,26674777.0,27617891.0,28629641.0,29643521.0,30580839.0,31763885.0,32544820.0,33541210.0,34523929.0,35538209.0,36525396.0,37521259.0,38530894.0,39657015.0,40466688.0,41495458.0,42481298.0,43427409.0,44420388.0,45420765.0,46391564.0,47420952.0,48417241.0,49333097.0,50725165.0,51393907.0,52317390.0,53291140.0,54274077.0,55291620.0,56274217.0,57254804.0,58303080.0,59394691.0,60214268.0,61367702.0,62867326.0,63553567.0,64376145.0,65281929.0,66297333.0,67515693.0,68284114.0,69585667.0,70412568.0,71051312.0,72082611.0,73100169.0,74170682.0,74985293.0,76113237.0,76968804.0,77953600.0,79057605.0,79917126.0,81345324.0,81957287.0,82884520.0,83909449.0,84876194.0,85945900.0,86844189.0,87832608.0,88861093.0,89797579.0,90890709.0,92098057.0,92789294.0,93756500.0,94831138.0,95728583.0,96934899.0,97690572.0,98674433.0],"unit":"ns","throughput":[{"per_iteration":2,"unit":"bytes"}],"typical":{"estimate":499.35426224059586,"lower_bound":499.12052364386363,"upper_bound":499.62317188044983,"unit":"ns"},"mean":{"estimate":499.5813523584352,"lower_bound":499.19257260774765,"upper_bound":500.0622353127314,"unit":"ns"},"median":{"estimate":498.9267078763103,"lower_bound":498.7976584324082,"upper_bound":499.18337950782063,"unit":"ns"},"median_abs_dev":{"estimate":0.5293886859021492,"lower_bound":0.436580108671043,"upper_bound":0.8328943267280845,"unit":"ns"},"slope":{"estimate":499.35426224059586,"lower_bound":499.12052364386363,"upper_bound":499.62317188044983,"unit":"ns"},"change":{"mean":{"estimate":-0.006722576270687064,"lower_bound":-0.012393925422047895,"upper_bound":-0.0032755142476121953,"unit":"%"},"median":{"estimate":-0.004331782287004704,"lower_bound":-0.004845009631054054,"upper_bound":-0.0036129603103058905,"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":[1984,3968,5952,7936,9920,11904,13888,15872,17856,19840,21824,23808,25792,27776,29760,31744,33728,35712,37696,39680,41664,43648,45632,47616,49600,51584,53568,55552,57536,59520,61504,63488,65472,67456,69440,71424,73408,75392,77376,79360,81344,83328,85312,87296,89280,91264,93248,95232,97216,99200,101184,103168,105152,107136,109120,111104,113088,115072,117056,119040,121024,123008,124992,126976,128960,130944,132928,134912,136896,138880,140864,142848,144832,146816,148800,150784,152768,154752,156736,158720,160704,162688,164672,166656,168640,170624,172608,174592,176576,178560,180544,182528,184512,186496,188480,190464,192448,194432,196416,198400],"measured_values":[1063734.0,1973772.0,2964881.0,3951191.0,4934855.0,5952902.0,6906045.0,7921897.0,8877536.0,9863222.0,10882444.0,11841356.0,12832522.0,13831094.0,14828730.0,15821604.0,16780250.0,17795751.0,18743611.0,19796054.0,20738789.0,21779348.0,22751412.0,23688660.0,24749131.0,25692811.0,26683981.0,27730049.0,28661471.0,29630345.0,30612672.0,31624386.0,32618826.0,33579342.0,34596449.0,35575510.0,36685427.0,37570022.0,38502263.0,39863892.0,40571644.0,41501922.0,42467086.0,43432056.0,44430995.0,45471225.0,46394714.0,47500243.0,48370965.0,49396211.0,50483103.0,51452877.0,52355161.0,53362696.0,54279734.0,55304049.0,56257635.0,57331836.0,58314880.0,59250433.0,60649812.0,61240978.0,62237873.0,63192949.0,64204599.0,65211763.0,66168218.0,67235267.0,68198562.0,69285091.0,70096989.0,71104749.0,72087004.0,73303831.0,74472969.0,75076583.0,76113956.0,76982506.0,78128178.0,79109434.0,79979916.0,81002271.0,81987803.0,82933833.0,83973720.0,84951618.0,85923552.0,87235316.0,88152025.0,88869950.0,89875545.0,90849071.0,91856906.0,92918086.0,93794352.0,94840602.0,95885163.0,96740314.0,98254895.0,98776704.0],"unit":"ns","throughput":[{"per_iteration":4,"unit":"bytes"}],"typical":{"estimate":498.2037011073068,"lower_bound":498.0141297280533,"upper_bound":498.4214962025314,"unit":"ns"},"mean":{"estimate":498.57057857535546,"lower_bound":498.07114770093125,"upper_bound":499.43017726845903,"unit":"ns"},"median":{"estimate":497.9453521925403,"lower_bound":497.86410022112386,"upper_bound":498.1318884408602,"unit":"ns"},"median_abs_dev":{"estimate":0.44756981724813566,"lower_bound":0.3663633398351469,"upper_bound":0.6525048519785145,"unit":"ns"},"slope":{"estimate":498.2037011073068,"lower_bound":498.0141297280533,"upper_bound":498.4214962025314,"unit":"ns"},"change":{"mean":{"estimate":-0.004755055657640672,"lower_bound":-0.007299030490604102,"upper_bound":-0.0024324503646787486,"unit":"%"},"median":{"estimate":-0.0033427377274751757,"lower_bound":-0.0037507464534453083,"upper_bound":-0.0029439796933504736,"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":[3421,6842,10263,13684,17105,20526,23947,27368,30789,34210,37631,41052,44473,47894,51315,54736,58157,61578,64999,68420,71841,75262,78683,82104,85525,88946,92367,95788,99209,102630,106051,109472,112893,116314,119735,123156,126577,129998,133419,136840,140261,143682,147103,150524,153945,157366,160787,164208,167629,171050,174471,177892,181313,184734,188155,191576,194997,198418,201839,205260,208681,212102,215523,218944,222365,225786,229207,232628,236049,239470,242891,246312,249733,253154,256575,259996,263417,266838,270259,273680,277101,280522,283943,287364,290785,294206,297627,301048,304469,307890,311311,314732,318153,321574,324995,328416,331837,335258,338679,342100],"measured_values":[1024437.0,1979166.0,2962167.0,3940928.0,4928581.0,5951866.0,6907130.0,7901895.0,8877024.0,9877052.0,10891978.0,11849411.0,12869406.0,13825566.0,14817847.0,15823972.0,16806415.0,17856826.0,18778453.0,19807457.0,20790718.0,21778492.0,22840065.0,23723194.0,24702259.0,26029020.0,26701584.0,27649647.0,28642547.0,29686689.0,30627145.0,31656831.0,32822064.0,33841156.0,34733631.0,35797440.0,36614008.0,37568935.0,38621746.0,39574106.0,40547508.0,41535865.0,42477733.0,43568062.0,44517828.0,45460443.0,46436182.0,47488183.0,48593812.0,49389633.0,50449494.0,51396571.0,52655107.0,53369066.0,54375037.0,55384730.0,56529955.0,57426382.0,58328498.0,59333183.0,60349910.0,61334112.0,62255910.0,63297060.0,64282539.0,65296264.0,66301345.0,67245617.0,68448136.0,69210154.0,70185379.0,71165065.0,72510193.0,73205584.0,74255026.0,75157284.0,76154167.0,77078968.0,78104189.0,79089916.0,80426766.0,81125009.0,82014013.0,83090674.0,84154074.0,85207585.0,86101524.0,87184038.0,88030132.0,89039719.0,90006926.0,90996451.0,91965433.0,92963807.0,93985754.0,94865620.0,96100809.0,96916907.0,97900844.0,98805879.0],"unit":"ns","throughput":[{"per_iteration":8,"unit":"bytes"}],"typical":{"estimate":289.2290886594058,"lower_bound":289.1450408276575,"upper_bound":289.3238211285283,"unit":"ns"},"mean":{"estimate":289.3387851933469,"lower_bound":289.14800415492107,"upper_bound":289.60655014720345,"unit":"ns"},"median":{"estimate":289.1013911640099,"lower_bound":289.0709241680641,"upper_bound":289.1844044235296,"unit":"ns"},"median_abs_dev":{"estimate":0.34005775172125907,"lower_bound":0.22564447744140279,"upper_bound":0.43781269914274323,"unit":"ns"},"slope":{"estimate":289.2290886594058,"lower_bound":289.1450408276575,"upper_bound":289.3238211285283,"unit":"ns"},"change":{"mean":{"estimate":-0.008719461278989371,"lower_bound":-0.011011175297317127,"upper_bound":-0.007009810319391585,"unit":"%"},"median":{"estimate":-0.007328286446403487,"lower_bound":-0.007780751430878604,"upper_bound":-0.006913177761752598,"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":[3421,6842,10263,13684,17105,20526,23947,27368,30789,34210,37631,41052,44473,47894,51315,54736,58157,61578,64999,68420,71841,75262,78683,82104,85525,88946,92367,95788,99209,102630,106051,109472,112893,116314,119735,123156,126577,129998,133419,136840,140261,143682,147103,150524,153945,157366,160787,164208,167629,171050,174471,177892,181313,184734,188155,191576,194997,198418,201839,205260,208681,212102,215523,218944,222365,225786,229207,232628,236049,239470,242891,246312,249733,253154,256575,259996,263417,266838,270259,273680,277101,280522,283943,287364,290785,294206,297627,301048,304469,307890,311311,314732,318153,321574,324995,328416,331837,335258,338679,342100],"measured_values":[1012365.0,2030551.0,2962449.0,3954025.0,4963440.0,5955097.0,6971086.0,7964164.0,8937925.0,9996453.0,10919200.0,11939700.0,12900587.0,13833830.0,14829460.0,15853319.0,16785940.0,17808961.0,18785514.0,19784741.0,20821436.0,21771610.0,22747139.0,23703847.0,24739266.0,25718372.0,26700266.0,27673251.0,28689196.0,29662536.0,30795560.0,31635623.0,32620526.0,33615898.0,34671689.0,35622327.0,36580812.0,37570852.0,38603307.0,39541804.0,40548742.0,41542808.0,42533543.0,43512459.0,44487119.0,45514290.0,46782975.0,47480623.0,48579313.0,49418348.0,50475527.0,51601233.0,52423960.0,53454902.0,54596082.0,55397735.0,56633287.0,57641496.0,58477091.0,59448415.0,60337975.0,61348728.0,62352911.0,63294446.0,64324481.0,65364552.0,66435804.0,67259387.0,68261464.0,69227147.0,70548613.0,71230271.0,72234379.0,73177895.0,74120605.0,75241210.0,76154980.0,77176538.0,78551938.0,79546517.0,80076692.0,81139426.0,82183998.0,83262121.0,84142845.0,86247514.0,86109065.0,87105635.0,88056797.0,89327894.0,90003958.0,91103251.0,91841317.0,92985128.0,94081021.0,94973136.0,96010303.0,96880294.0,97853152.0,98975902.0],"unit":"ns","throughput":[{"per_iteration":16,"unit":"bytes"}],"typical":{"estimate":289.46315942435535,"lower_bound":289.29446072963805,"upper_bound":289.6844715921173,"unit":"ns"},"mean":{"estimate":289.6291886331782,"lower_bound":289.4179366658705,"upper_bound":289.8873643789789,"unit":"ns"},"median":{"estimate":289.2430295272109,"lower_bound":289.16845011901285,"upper_bound":289.32416810060363,"unit":"ns"},"median_abs_dev":{"estimate":0.3518313509058373,"lower_bound":0.22540250021949684,"upper_bound":0.48667634135488846,"unit":"ns"},"slope":{"estimate":289.46315942435535,"lower_bound":289.29446072963805,"upper_bound":289.6844715921173,"unit":"ns"},"change":{"mean":{"estimate":-0.007979222443289968,"lower_bound":-0.011143854429377032,"upper_bound":-0.005937930345072298,"unit":"%"},"median":{"estimate":-0.0073352555767467464,"lower_bound":-0.007666045636688157,"upper_bound":-0.006999914225262471,"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":[3414,6828,10242,13656,17070,20484,23898,27312,30726,34140,37554,40968,44382,47796,51210,54624,58038,61452,64866,68280,71694,75108,78522,81936,85350,88764,92178,95592,99006,102420,105834,109248,112662,116076,119490,122904,126318,129732,133146,136560,139974,143388,146802,150216,153630,157044,160458,163872,167286,170700,174114,177528,180942,184356,187770,191184,194598,198012,201426,204840,208254,211668,215082,218496,221910,225324,228738,232152,235566,238980,242394,245808,249222,252636,256050,259464,262878,266292,269706,273120,276534,279948,283362,286776,290190,293604,297018,300432,303846,307260,310674,314088,317502,320916,324330,327744,331158,334572,337986,341400],"measured_values":[1043430.0,1974036.0,2962495.0,3988154.0,4970334.0,5918732.0,6909787.0,7897980.0,8882113.0,9933887.0,10945621.0,11925952.0,12909825.0,13896858.0,14920978.0,15899749.0,16887404.0,17908124.0,18868591.0,19906431.0,20878731.0,21854882.0,22882641.0,23857575.0,24803430.0,25838809.0,26784317.0,27623024.0,28699505.0,29648153.0,30595914.0,31615235.0,32578801.0,33553568.0,34598635.0,35534779.0,36514554.0,37577282.0,38526734.0,39515754.0,40539395.0,41450850.0,42429415.0,43465086.0,44480027.0,45584801.0,46457358.0,47411390.0,48376467.0,49746207.0,50417032.0,51363217.0,52358404.0,53393274.0,54322182.0,55300789.0,56303547.0,57331165.0,58295053.0,59316296.0,60271230.0,61222225.0,62266872.0,63396010.0,64224080.0,65151329.0,66364693.0,67317253.0,68208324.0,69162785.0,70149153.0,71066561.0,72158065.0,73075067.0,74138920.0,75517577.0,76105491.0,77103065.0,78293694.0,79000885.0,80357756.0,81023220.0,81947315.0,82966214.0,83947440.0,84991128.0,85927868.0,86955509.0,88023489.0,88930905.0,89946371.0,90988612.0,91954571.0,92994695.0,93872604.0,94815826.0,95829254.0,96826615.0,97845445.0,98901756.0],"unit":"ns","throughput":[{"per_iteration":32,"unit":"bytes"}],"typical":{"estimate":289.5758334214189,"lower_bound":289.48933451005473,"upper_bound":289.67638373202817,"unit":"ns"},"mean":{"estimate":289.9769635462931,"lower_bound":289.70437551130794,"upper_bound":290.37329395284064,"unit":"ns"},"median":{"estimate":289.50586520489856,"lower_bound":289.41211213229997,"upper_bound":289.55707230295394,"unit":"ns"},"median_abs_dev":{"estimate":0.379293907435163,"lower_bound":0.2494430009951988,"upper_bound":0.5926599930949694,"unit":"ns"},"slope":{"estimate":289.5758334214189,"lower_bound":289.48933451005473,"upper_bound":289.67638373202817,"unit":"ns"},"change":{"mean":{"estimate":-0.00691383209148666,"lower_bound":-0.009902801048426998,"upper_bound":-0.004753655456731118,"unit":"%"},"median":{"estimate":-0.006310235013923915,"lower_bound":-0.006754603339107712,"upper_bound":-0.006058167075739362,"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":[1810,3620,5430,7240,9050,10860,12670,14480,16290,18100,19910,21720,23530,25340,27150,28960,30770,32580,34390,36200,38010,39820,41630,43440,45250,47060,48870,50680,52490,54300,56110,57920,59730,61540,63350,65160,66970,68780,70590,72400,74210,76020,77830,79640,81450,83260,85070,86880,88690,90500,92310,94120,95930,97740,99550,101360,103170,104980,106790,108600,110410,112220,114030,115840,117650,119460,121270,123080,124890,126700,128510,130320,132130,133940,135750,137560,139370,141180,142990,144800,146610,148420,150230,152040,153850,155660,157470,159280,161090,162900,164710,166520,168330,170140,171950,173760,175570,177380,179190,181000],"measured_values":[1092088.0,1970479.0,2960261.0,3947428.0,4935225.0,5923186.0,6906590.0,7919868.0,8879522.0,9867602.0,10857051.0,11867237.0,12825564.0,13813358.0,14860627.0,15817097.0,16802337.0,17769593.0,18779556.0,19765260.0,20781437.0,21734129.0,22797446.0,23711993.0,24695077.0,25654280.0,26671980.0,27656952.0,28743960.0,29607458.0,30618612.0,31635864.0,33046676.0,33577553.0,34646628.0,35553315.0,36535659.0,37558258.0,38542074.0,39497224.0,40504584.0,41470415.0,42490356.0,43442120.0,44587833.0,45559559.0,46428321.0,47444439.0,48378888.0,49420227.0,50384238.0,51366389.0,52541719.0,53439252.0,54328190.0,55757635.0,56272374.0,57321659.0,58519261.0,59264998.0,60323219.0,61206902.0,62345103.0,63237453.0,64228567.0,65211402.0,66348134.0,67206910.0,68180137.0,69256141.0,70194675.0,71541679.0,72151467.0,73264293.0,74109661.0,75036032.0,76043615.0,77135472.0,78092735.0,79075804.0,79984258.0,81016904.0,82156817.0,82979145.0,84383639.0,84984281.0,85948088.0,88087179.0,88111975.0,89136073.0,89954196.0,90940732.0,91859485.0,92985412.0,93821748.0,95221421.0,95807083.0,96743283.0,97743410.0,98739999.0],"unit":"ns","throughput":[{"per_iteration":64,"unit":"bytes"}],"typical":{"estimate":546.4413115060331,"lower_bound":546.1169463819127,"upper_bound":546.8644283128084,"unit":"ns"},"mean":{"estimate":546.8319982703944,"lower_bound":546.0746831820833,"upper_bound":548.1560109648146,"unit":"ns"},"median":{"estimate":545.924514052366,"lower_bound":545.7740945365255,"upper_bound":546.0636522244839,"unit":"ns"},"median_abs_dev":{"estimate":0.6202330743069729,"lower_bound":0.40441161219159727,"upper_bound":0.8425647373904812,"unit":"ns"},"slope":{"estimate":546.4413115060331,"lower_bound":546.1169463819127,"upper_bound":546.8644283128084,"unit":"ns"},"change":{"mean":{"estimate":-0.002586411904828112,"lower_bound":-0.004916604043245353,"upper_bound":0.00016518893548435567,"unit":"%"},"median":{"estimate":-0.0033240071749963684,"lower_bound":-0.0036945753927476455,"upper_bound":-0.0030157766549980813,"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":[1236,2472,3708,4944,6180,7416,8652,9888,11124,12360,13596,14832,16068,17304,18540,19776,21012,22248,23484,24720,25956,27192,28428,29664,30900,32136,33372,34608,35844,37080,38316,39552,40788,42024,43260,44496,45732,46968,48204,49440,50676,51912,53148,54384,55620,56856,58092,59328,60564,61800,63036,64272,65508,66744,67980,69216,70452,71688,72924,74160,75396,76632,77868,79104,80340,81576,82812,84048,85284,86520,87756,88992,90228,91464,92700,93936,95172,96408,97644,98880,100116,101352,102588,103824,105060,106296,107532,108768,110004,111240,112476,113712,114948,116184,117420,118656,119892,121128,122364,123600],"measured_values":[1084681.0,2025951.0,3024584.0,3977237.0,4937047.0,5924348.0,6968812.0,7957993.0,8946336.0,9960614.0,10951643.0,11931326.0,12919115.0,13907641.0,14923634.0,15911236.0,16897091.0,17918227.0,18878683.0,19836507.0,20744004.0,21783836.0,22771595.0,23703601.0,24712317.0,25703616.0,26695063.0,27714887.0,28665686.0,29660014.0,30645510.0,31694513.0,32589576.0,33633606.0,34622989.0,35581687.0,36566569.0,37561714.0,38536930.0,39647634.0,40609288.0,41625229.0,42632832.0,43478569.0,44578832.0,45452627.0,46439167.0,47731396.0,48443859.0,49465539.0,50452597.0,51376822.0,52658748.0,53442634.0,54403535.0,55355795.0,56408593.0,57339996.0,58322198.0,59392480.0,60380177.0,61474308.0,62325618.0,63351468.0,64217995.0,65232015.0,66271477.0,67240743.0,68201674.0,69446479.0,70291336.0,71412799.0,72223614.0,73135443.0,74250054.0,75192479.0,76345877.0,77075464.0,78158384.0,79067415.0,80073940.0,81090754.0,82054520.0,83111025.0,84180266.0,85073566.0,85969466.0,87355727.0,88137353.0,89044076.0,90039352.0,90938010.0,91952882.0,92951126.0,93934752.0,94960473.0,95915771.0,96894570.0,98056573.0,99093030.0],"unit":"ns","throughput":[{"per_iteration":128,"unit":"bytes"}],"typical":{"estimate":800.5733868985362,"lower_bound":800.3410375412777,"upper_bound":800.8291470927514,"unit":"ns"},"mean":{"estimate":802.1787293737153,"lower_bound":801.0017360540279,"upper_bound":804.0360818742096,"unit":"ns"},"median":{"estimate":800.4495179020462,"lower_bound":800.1888414095968,"upper_bound":800.8630157766991,"unit":"ns"},"median_abs_dev":{"estimate":1.1948406045336484,"lower_bound":0.8831493603650673,"upper_bound":1.7420125587000495,"unit":"ns"},"slope":{"estimate":800.5733868985362,"lower_bound":800.3410375412777,"upper_bound":800.8291470927514,"unit":"ns"},"change":{"mean":{"estimate":0.00011012185123493445,"lower_bound":-0.0022210449770013406,"upper_bound":0.002693623146372401,"unit":"%"},"median":{"estimate":-0.0008036158774699098,"lower_bound":-0.00123586620148608,"upper_bound":-0.00019280342534011563,"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":[765,1530,2295,3060,3825,4590,5355,6120,6885,7650,8415,9180,9945,10710,11475,12240,13005,13770,14535,15300,16065,16830,17595,18360,19125,19890,20655,21420,22185,22950,23715,24480,25245,26010,26775,27540,28305,29070,29835,30600,31365,32130,32895,33660,34425,35190,35955,36720,37485,38250,39015,39780,40545,41310,42075,42840,43605,44370,45135,45900,46665,47430,48195,48960,49725,50490,51255,52020,52785,53550,54315,55080,55845,56610,57375,58140,58905,59670,60435,61200,61965,62730,63495,64260,65025,65790,66555,67320,68085,68850,69615,70380,71145,71910,72675,73440,74205,74970,75735,76500],"measured_values":[1055872.0,1975367.0,2992434.0,3952214.0,4968496.0,5985984.0,6942769.0,8045799.0,8894093.0,9926228.0,10899048.0,11858995.0,12847632.0,13860538.0,14879014.0,15867124.0,16885521.0,17818771.0,18831374.0,19792932.0,20780948.0,21923642.0,22794951.0,23715662.0,24790098.0,25848593.0,26680944.0,27699316.0,28712142.0,29719485.0,30665927.0,31652276.0,32666109.0,33628467.0,34617163.0,35603619.0,36602772.0,37609882.0,38595730.0,39578220.0,40584896.0,41571214.0,42522599.0,43572294.0,44554634.0,45483026.0,46515076.0,47633196.0,48480797.0,49611790.0,50500141.0,51497215.0,52434839.0,53395337.0,54450949.0,55397947.0,56387259.0,57381630.0,58374693.0,59320277.0,60343425.0,61364496.0,62335939.0,63298672.0,64290477.0,65474302.0,66615338.0,67322895.0,68391730.0,69296650.0,70262505.0,71244619.0,72250129.0,73369862.0,74257901.0,75198058.0,76338793.0,77189009.0,78193412.0,79402737.0,80314623.0,81184441.0,82134988.0,83106027.0,84061651.0,85100714.0,86124012.0,87119983.0,88053745.0,89003037.0,90221063.0,91026794.0,92154506.0,93119270.0,93996765.0,94997123.0,95973354.0,96968008.0,97992437.0,98946698.0],"unit":"ns","throughput":[{"per_iteration":256,"unit":"bytes"}],"typical":{"estimate":1294.112468026785,"lower_bound":1293.8079281106645,"upper_bound":1294.454896258326,"unit":"ns"},"mean":{"estimate":1295.5118585746836,"lower_bound":1294.218102618006,"upper_bound":1297.5718612092976,"unit":"ns"},"median":{"estimate":1293.765706772976,"lower_bound":1293.5045501997095,"upper_bound":1294.0728947976497,"unit":"ns"},"median_abs_dev":{"estimate":1.0232434830700368,"lower_bound":0.7431395647196534,"upper_bound":1.684431168779049,"unit":"ns"},"slope":{"estimate":1294.112468026785,"lower_bound":1293.8079281106645,"upper_bound":1294.454896258326,"unit":"ns"},"change":{"mean":{"estimate":-0.0005025767157434968,"lower_bound":-0.003585269323835901,"upper_bound":0.0019366424542778691,"unit":"%"},"median":{"estimate":0.001490689434975545,"lower_bound":0.0009212522950645674,"upper_bound":0.0018311725143793645,"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":[426,852,1278,1704,2130,2556,2982,3408,3834,4260,4686,5112,5538,5964,6390,6816,7242,7668,8094,8520,8946,9372,9798,10224,10650,11076,11502,11928,12354,12780,13206,13632,14058,14484,14910,15336,15762,16188,16614,17040,17466,17892,18318,18744,19170,19596,20022,20448,20874,21300,21726,22152,22578,23004,23430,23856,24282,24708,25134,25560,25986,26412,26838,27264,27690,28116,28542,28968,29394,29820,30246,30672,31098,31524,31950,32376,32802,33228,33654,34080,34506,34932,35358,35784,36210,36636,37062,37488,37914,38340,38766,39192,39618,40044,40470,40896,41322,41748,42174,42600],"measured_values":[1066113.0,1973978.0,2962195.0,3949511.0,4936309.0,5925900.0,6909735.0,7926493.0,8969674.0,9926900.0,10978352.0,11929552.0,12949582.0,13851653.0,14808693.0,15879932.0,16922507.0,18022448.0,18841150.0,19840240.0,20788236.0,21856910.0,23018772.0,23750869.0,24711680.0,25667055.0,26710551.0,27757523.0,28659678.0,29673404.0,30706545.0,31619165.0,32607443.0,33653453.0,34588000.0,35570540.0,36558648.0,37547264.0,38561171.0,39557966.0,40560899.0,41549147.0,42479637.0,43499016.0,44529955.0,45498450.0,46489973.0,47560042.0,48508395.0,49545630.0,50381586.0,51424766.0,52481698.0,53365169.0,54325550.0,55345811.0,56404689.0,57322544.0,58303529.0,59326625.0,60354997.0,61272568.0,62224474.0,63312391.0,64229845.0,65417473.0,66335163.0,67361337.0,68177964.0,69261246.0,70267129.0,71172199.0,72398863.0,73117695.0,74159072.0,75203070.0,76134816.0,77449936.0,78134573.0,79399678.0,80237649.0,81068840.0,82083088.0,83024356.0,83999793.0,85054947.0,86098914.0,87012289.0,87955784.0,88934539.0,89966392.0,91062896.0,92136869.0,92855989.0,94065092.0,94839526.0,95884788.0,96866104.0,97874469.0,98842270.0],"unit":"ns","throughput":[{"per_iteration":512,"unit":"bytes"}],"typical":{"estimate":2322.0278255979897,"lower_bound":2321.3582557526747,"upper_bound":2322.787714135186,"unit":"ns"},"mean":{"estimate":2325.1701116798313,"lower_bound":2322.491855685151,"upper_bound":2329.473616996276,"unit":"ns"},"median":{"estimate":2321.5538487063222,"lower_bound":2320.7457631970683,"upper_bound":2322.5440979208583,"unit":"ns"},"median_abs_dev":{"estimate":3.0637606781525406,"lower_bound":2.218289083394686,"upper_bound":4.18144084906445,"unit":"ns"},"slope":{"estimate":2322.0278255979897,"lower_bound":2321.3582557526747,"upper_bound":2322.787714135186,"unit":"ns"},"change":{"mean":{"estimate":-0.001111669338081045,"lower_bound":-0.0034973224299261777,"upper_bound":0.0014036821002601785,"unit":"%"},"median":{"estimate":-0.00029809717330986363,"lower_bound":-0.0009656619131621635,"upper_bound":0.00029137571709769716,"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":[232,464,696,928,1160,1392,1624,1856,2088,2320,2552,2784,3016,3248,3480,3712,3944,4176,4408,4640,4872,5104,5336,5568,5800,6032,6264,6496,6728,6960,7192,7424,7656,7888,8120,8352,8584,8816,9048,9280,9512,9744,9976,10208,10440,10672,10904,11136,11368,11600,11832,12064,12296,12528,12760,12992,13224,13456,13688,13920,14152,14384,14616,14848,15080,15312,15544,15776,16008,16240,16472,16704,16936,17168,17400,17632,17864,18096,18328,18560,18792,19024,19256,19488,19720,19952,20184,20416,20648,20880,21112,21344,21576,21808,22040,22272,22504,22736,22968,23200],"measured_values":[1035890.0,1980144.0,2967078.0,3957003.0,4948246.0,5934145.0,6928897.0,7941349.0,8901376.0,9891456.0,10881689.0,11898534.0,12859889.0,13875773.0,14837464.0,15862703.0,16844136.0,17831574.0,18820536.0,19810782.0,20828621.0,21789853.0,22751026.0,23768149.0,24758221.0,25719570.0,26762840.0,27726000.0,28805272.0,29751874.0,30784329.0,31870185.0,32667257.0,33687540.0,34678317.0,35636067.0,36627560.0,37671035.0,38606201.0,39625087.0,40637700.0,41698287.0,42560555.0,43578816.0,44568481.0,45586330.0,46544861.0,47548781.0,48525644.0,49571058.0,50506704.0,51517374.0,52568651.0,53560525.0,54570485.0,55485204.0,56466008.0,57485640.0,58385858.0,59437221.0,60422544.0,61384098.0,62344605.0,63390619.0,64387383.0,65339697.0,66329338.0,67376654.0,68309405.0,69471678.0,70490327.0,71358836.0,72293285.0,73284960.0,74331815.0,75348988.0,76253480.0,77482321.0,78296009.0,79213281.0,80295355.0,81247316.0,82687092.0,83358761.0,84247289.0,85207582.0,86167782.0,87186028.0,88119226.0,89137640.0,90135062.0,91116931.0,92105039.0,93185681.0,94272237.0,95093428.0,96060790.0,97049913.0,98149054.0,99057067.0],"unit":"ns","throughput":[{"per_iteration":1024,"unit":"bytes"}],"typical":{"estimate":4271.451948133182,"lower_bound":4270.321772429467,"upper_bound":4272.823709411148,"unit":"ns"},"mean":{"estimate":4272.625191187448,"lower_bound":4269.922414247144,"upper_bound":4277.160518836054,"unit":"ns"},"median":{"estimate":4269.670714798851,"lower_bound":4269.044061302682,"upper_bound":4270.628608660786,"unit":"ns"},"median_abs_dev":{"estimate":3.6308203853560705,"lower_bound":2.3842220589648027,"upper_bound":4.482877024897327,"unit":"ns"},"slope":{"estimate":4271.451948133182,"lower_bound":4270.321772429467,"upper_bound":4272.823709411148,"unit":"ns"},"change":{"mean":{"estimate":0.0004941821286834625,"lower_bound":-0.0007977564014736593,"upper_bound":0.0017979233084461357,"unit":"%"},"median":{"estimate":0.0008167200634554561,"lower_bound":0.0004211819411938933,"upper_bound":0.0011313195453768188,"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":[122,244,366,488,610,732,854,976,1098,1220,1342,1464,1586,1708,1830,1952,2074,2196,2318,2440,2562,2684,2806,2928,3050,3172,3294,3416,3538,3660,3782,3904,4026,4148,4270,4392,4514,4636,4758,4880,5002,5124,5246,5368,5490,5612,5734,5856,5978,6100,6222,6344,6466,6588,6710,6832,6954,7076,7198,7320,7442,7564,7686,7808,7930,8052,8174,8296,8418,8540,8662,8784,8906,9028,9150,9272,9394,9516,9638,9760,9882,10004,10126,10248,10370,10492,10614,10736,10858,10980,11102,11224,11346,11468,11590,11712,11834,11956,12078,12200],"measured_values":[1038802.0,1990995.0,2982329.0,3978658.0,5028979.0,5994758.0,7018028.0,8012556.0,9005551.0,10029704.0,10995243.0,12017930.0,13042494.0,14009593.0,15037397.0,16058143.0,17027016.0,18047683.0,18904898.0,20056809.0,21025761.0,22020555.0,22908123.0,23900341.0,24922391.0,25867253.0,26911537.0,28152785.0,28912563.0,29865132.0,30862441.0,31884077.0,32850485.0,33905006.0,34839518.0,35835990.0,36938979.0,38030408.0,38990229.0,39999906.0,40838514.0,41886785.0,42826235.0,43824217.0,44851641.0,45782840.0,46802025.0,47772760.0,48851415.0,49763681.0,50865638.0,51784156.0,52860906.0,53747136.0,54742946.0,55742722.0,56732868.0,57868487.0,58774998.0,59870892.0,60733675.0,61742162.0,62730378.0,63708538.0,64706164.0,65750727.0,66718194.0,67823374.0,68675524.0,69733973.0,70659197.0,71713893.0,72676919.0,73879305.0,74837400.0,75634104.0,76654329.0,77679797.0,78615128.0,79670450.0,80749929.0,81610081.0,82715949.0,83672580.0,84725782.0,85867619.0,86782661.0,87662104.0,88630124.0,89618972.0,90577243.0,91653492.0,92572065.0,93572605.0,94689231.0,95564238.0,96713711.0,97740016.0,98588947.0,99570017.0],"unit":"ns","throughput":[{"per_iteration":2048,"unit":"bytes"}],"typical":{"estimate":8166.518200621628,"lower_bound":8164.619058743464,"upper_bound":8168.609175898527,"unit":"ns"},"mean":{"estimate":8178.169963647824,"lower_bound":8171.639211285692,"upper_bound":8187.038125634219,"unit":"ns"},"median":{"estimate":8165.355243880876,"lower_bound":8162.697982345523,"upper_bound":8170.591751509923,"unit":"ns"},"median_abs_dev":{"estimate":10.348154468585673,"lower_bound":6.884758125496402,"upper_bound":16.439581807230947,"unit":"ns"},"slope":{"estimate":8166.518200621628,"lower_bound":8164.619058743464,"upper_bound":8168.609175898527,"unit":"ns"},"change":{"mean":{"estimate":0.0015780774830393973,"lower_bound":0.00022727476857136735,"upper_bound":0.003091947533130304,"unit":"%"},"median":{"estimate":0.0007841947726578979,"lower_bound":0.00030652731230518406,"upper_bound":0.0015101432546635873,"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":[62,124,186,248,310,372,434,496,558,620,682,744,806,868,930,992,1054,1116,1178,1240,1302,1364,1426,1488,1550,1612,1674,1736,1798,1860,1922,1984,2046,2108,2170,2232,2294,2356,2418,2480,2542,2604,2666,2728,2790,2852,2914,2976,3038,3100,3162,3224,3286,3348,3410,3472,3534,3596,3658,3720,3782,3844,3906,3968,4030,4092,4154,4216,4278,4340,4402,4464,4526,4588,4650,4712,4774,4836,4898,4960,5022,5084,5146,5208,5270,5332,5394,5456,5518,5580,5642,5704,5766,5828,5890,5952,6014,6076,6138,6200],"measured_values":[1047546.0,1988965.0,2965475.0,3983243.0,4941251.0,5928709.0,7001346.0,8000810.0,9014859.0,9915529.0,10926364.0,11887454.0,12875415.0,13834563.0,14826056.0,15984561.0,16800037.0,17816921.0,18774539.0,19819137.0,20786920.0,21797792.0,22758375.0,23721136.0,24762047.0,25721603.0,26709490.0,27698882.0,28715923.0,29702646.0,30666039.0,31650313.0,32614148.0,33939877.0,34646709.0,35632216.0,36596008.0,37592265.0,38605221.0,39591733.0,40574769.0,41593321.0,42521454.0,43668221.0,44532076.0,45653977.0,46533948.0,47576476.0,48510902.0,49465629.0,50484728.0,51413633.0,52460505.0,53419703.0,54407055.0,55364609.0,56411424.0,57399080.0,58503562.0,59367990.0,60335106.0,61378088.0,62299651.0,63457456.0,64373023.0,65406841.0,66322334.0,67288556.0,68559471.0,69289436.0,70227841.0,71244471.0,72254791.0,73227458.0,74424337.0,75236589.0,76397338.0,77342684.0,78224726.0,79350067.0,80134932.0,81120757.0,82162873.0,83098591.0,84091370.0,85128466.0,86216152.0,87022928.0,88234878.0,89286776.0,90203376.0,91057538.0,91996077.0,93037775.0,93970540.0,94986915.0,96009852.0,96940861.0,97955048.0,98969643.0],"unit":"ns","throughput":[{"per_iteration":4096,"unit":"bytes"}],"typical":{"estimate":15969.234952973873,"lower_bound":15964.997805604628,"upper_bound":15973.859958669827,"unit":"ns"},"mean":{"estimate":15985.430829511832,"lower_bound":15970.398162886366,"upper_bound":16008.371383717802,"unit":"ns"},"median":{"estimate":15964.400110159628,"lower_bound":15961.199640631978,"upper_bound":15966.22534562212,"unit":"ns"},"median_abs_dev":{"estimate":14.204568482255985,"lower_bound":10.42729327896723,"upper_bound":21.403578579048776,"unit":"ns"},"slope":{"estimate":15969.234952973873,"lower_bound":15964.997805604628,"upper_bound":15973.859958669827,"unit":"ns"},"change":{"mean":{"estimate":0.0016743283430955547,"lower_bound":-0.00045954737342741213,"upper_bound":0.003393494093038257,"unit":"%"},"median":{"estimate":0.0013032662412377771,"lower_bound":0.0010053792023649866,"upper_bound":0.0016033264623174226,"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":[32,64,96,128,160,192,224,256,288,320,352,384,416,448,480,512,544,576,608,640,672,704,736,768,800,832,864,896,928,960,992,1024,1056,1088,1120,1152,1184,1216,1248,1280,1312,1344,1376,1408,1440,1472,1504,1536,1568,1600,1632,1664,1696,1728,1760,1792,1824,1856,1888,1920,1952,1984,2016,2048,2080,2112,2144,2176,2208,2240,2272,2304,2336,2368,2400,2432,2464,2496,2528,2560,2592,2624,2656,2688,2720,2752,2784,2816,2848,2880,2912,2944,2976,3008,3040,3072,3104,3136,3168,3200],"measured_values":[1056749.0,2019126.0,3031221.0,4039964.0,5049326.0,6088008.0,7068507.0,8079650.0,9120995.0,10098928.0,11137708.0,12119520.0,13129180.0,14167894.0,15149490.0,16185857.0,17196182.0,18205742.0,19217771.0,20226417.0,21211446.0,22273652.0,23256272.0,24265400.0,25309481.0,26288070.0,27320003.0,28303359.0,29310699.0,30394830.0,31330983.0,32340046.0,33353133.0,34471638.0,35406167.0,36467069.0,37393342.0,38400432.0,39601138.0,40451087.0,41832997.0,42469612.0,43525399.0,44454505.0,45460709.0,46531798.0,47480307.0,48518574.0,49554828.0,50538796.0,51615297.0,52623410.0,53603500.0,54656016.0,55594976.0,56603068.0,57642061.0,58624486.0,59677185.0,60675838.0,62042085.0,62630535.0,63692798.0,64698483.0,65681035.0,66743826.0,67731663.0,68748814.0,69726236.0,70985490.0,71845059.0,72839093.0,73830714.0,74853381.0,76375914.0,76816863.0,77881940.0,78895273.0,79843939.0,80910618.0,81901589.0,82846790.0,83955681.0,84892306.0,85904530.0,87009696.0,88297781.0,88939752.0,89972631.0,90979916.0,91959125.0,93056283.0,93979746.0,95015638.0,96150211.0,97133143.0,98240275.0,99406702.0,100109384.0,101062942.0],"unit":"ns","throughput":[{"per_iteration":8192,"unit":"bytes"}],"typical":{"estimate":31613.70516477021,"lower_bound":31602.419796929513,"upper_bound":31626.935803282242,"unit":"ns"},"mean":{"estimate":31624.89579426396,"lower_bound":31603.189888501496,"upper_bound":31659.406509278495,"unit":"ns"},"median":{"estimate":31599.799016955265,"lower_bound":31590.754669361526,"upper_bound":31606.45056423611,"unit":"ns"},"median_abs_dev":{"estimate":26.104235501797195,"lower_bound":19.920958447579693,"upper_bound":34.202888053116084,"unit":"ns"},"slope":{"estimate":31613.70516477021,"lower_bound":31602.419796929513,"upper_bound":31626.935803282242,"unit":"ns"},"change":{"mean":{"estimate":0.0005742021232810757,"lower_bound":-0.0021288379500483887,"upper_bound":0.0027173387278786594,"unit":"%"},"median":{"estimate":0.002505037943539845,"lower_bound":0.0019618874722613366,"upper_bound":0.002763831276701767,"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":[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":[1095386.0,2009893.0,3017046.0,4022988.0,5025940.0,6059639.0,7037189.0,8041956.0,9047046.0,10080781.0,11055973.0,12063685.0,13097372.0,14071548.0,15079610.0,16111626.0,17586738.0,18245187.0,19315460.0,20262402.0,21251005.0,22147219.0,23176655.0,24155150.0,25290598.0,26193007.0,27171191.0,28219902.0,29180735.0,30214179.0,31220284.0,32253179.0,33428634.0,34235755.0,35286352.0,36250107.0,37223854.0,38244438.0,39240288.0,40286616.0,41276711.0,42333534.0,43295178.0,44286752.0,45337404.0,46298251.0,47418194.0,48443212.0,49620815.0,50409552.0,51483266.0,52332906.0,53353719.0,54401943.0,55332735.0,56333589.0,57381617.0,58315510.0,59412035.0,60403049.0,61378341.0,62423027.0,63449378.0,64421344.0,65374064.0,66581129.0,67658470.0,68601076.0,69448990.0,70512947.0,71461334.0,72466222.0,73476223.0,74483260.0,75509941.0,76582126.0,77462892.0,78499794.0,79596941.0,80706607.0,81697705.0,82552306.0,83555089.0,84790721.0,85564712.0,86625394.0,87826062.0,88588472.0,89611745.0,90738182.0,91705031.0,92815614.0,93605018.0,94635563.0,95698706.0,96594991.0,97631731.0,98662962.0,99642775.0,100668165.0],"unit":"ns","throughput":[{"per_iteration":16384,"unit":"bytes"}],"typical":{"estimate":62956.720492832865,"lower_bound":62940.12198715036,"upper_bound":62975.09350539964,"unit":"ns"},"mean":{"estimate":63036.03848319261,"lower_bound":62952.82034933132,"upper_bound":63172.75103540119,"unit":"ns"},"median":{"estimate":62925.694670698926,"lower_bound":62917.79591490964,"upper_bound":62946.82450396825,"unit":"ns"},"median_abs_dev":{"estimate":63.27880548296758,"lower_bound":43.410726472268756,"upper_bound":91.64675113457506,"unit":"ns"},"slope":{"estimate":62956.720492832865,"lower_bound":62940.12198715036,"upper_bound":62975.09350539964,"unit":"ns"},"change":{"mean":{"estimate":0.0042520070274882915,"lower_bound":0.0019031214609934015,"upper_bound":0.006854294834229729,"unit":"%"},"median":{"estimate":0.003629836606983128,"lower_bound":0.0033200525850347606,"upper_bound":0.004050091498583785,"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":[1090517.0,2026953.0,3035824.0,4050635.0,5063755.0,6073882.0,7088309.0,8154398.0,9170281.0,10214634.0,11222239.0,12234568.0,13191282.0,14178177.0,15213409.0,16199937.0,17241412.0,18225393.0,19293092.0,20250893.0,21291991.0,22278437.0,23438298.0,24355651.0,25355375.0,26353998.0,27396585.0,28417429.0,29391542.0,30377987.0,31447222.0,32432696.0,33441349.0,34513815.0,35471390.0,36483285.0,37635456.0,38534660.0,39703414.0,40557891.0,41540644.0,42585713.0,43573415.0,44639427.0,45620348.0,46608804.0,47672747.0,48659177.0,49680051.0,50685808.0,51872392.0,52715420.0,53749635.0,54706106.0,55803929.0,56962533.0,57799827.0,59276437.0,60130161.0,60899885.0,61827126.0,62863693.0,63883148.0,64882429.0,65932250.0,66917061.0,67906712.0,68972570.0,69992446.0,70934001.0,71949407.0,73013251.0,74143848.0,75164651.0,76003359.0,77038686.0,78110757.0,79032915.0,80078536.0,81089936.0,82066880.0,83216146.0,84095707.0,85177735.0,86354086.0,87511871.0,88269504.0,89195643.0,90271867.0,91186565.0,92292446.0,93242997.0,94264618.0,95324090.0,96277414.0,97450397.0,98463017.0,99380320.0,100380002.0,101393304.0],"unit":"ns","throughput":[{"per_iteration":32768,"unit":"bytes"}],"typical":{"estimate":126792.89105696764,"lower_bound":126757.54842290923,"upper_bound":126834.10171719916,"unit":"ns"},"mean":{"estimate":126910.18172651927,"lower_bound":126779.28235232021,"upper_bound":127129.28443522063,"unit":"ns"},"median":{"estimate":126743.30141369047,"lower_bound":126719.75961538461,"upper_bound":126775.08823529411,"unit":"ns"},"median_abs_dev":{"estimate":107.53503697130542,"lower_bound":80.98906010062636,"upper_bound":146.57551428337365,"unit":"ns"},"slope":{"estimate":126792.89105696764,"lower_bound":126757.54842290923,"upper_bound":126834.10171719916,"unit":"ns"},"change":{"mean":{"estimate":0.0037817208643016187,"lower_bound":0.0020945361100484505,"upper_bound":0.005904304127419571,"unit":"%"},"median":{"estimate":0.0033075096587049657,"lower_bound":0.0030201708578883046,"upper_bound":0.0036245941094262693,"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":[1033782.0,2031991.0,3050382.0,4094045.0,5082713.0,6097245.0,7115529.0,8130095.0,9175288.0,10171609.0,11179915.0,12228970.0,13213911.0,14363247.0,15334439.0,16263633.0,17336908.0,18294323.0,19380571.0,20358390.0,21374059.0,22387878.0,23549412.0,24479622.0,25440556.0,26429352.0,27501525.0,28486979.0,29499822.0,30521518.0,31569187.0,32581943.0,33568907.0,34604462.0,35599402.0,36643878.0,37664989.0,38646979.0,39694335.0,40714735.0,41925984.0,42777533.0,43767268.0,44775573.0,45767993.0,46784943.0,47975905.0,48889993.0,49937693.0,50938118.0,51920970.0,52908757.0,53902745.0,54944360.0,56017187.0,56984734.0,58014881.0,59010169.0,60057672.0,61064991.0,62055979.0,63128561.0,64231802.0,65336540.0,66234092.0,67182296.0,68339970.0,69227832.0,70183911.0,71256249.0,72275276.0,73293632.0,74279979.0,75330512.0,76282572.0,77352034.0,78349137.0,79473916.0,80509299.0,81373008.0,82447771.0,83509003.0,84361058.0,85403563.0,86458796.0,87464797.0,88537248.0,89526886.0,90520741.0,91647531.0,92596070.0,93702028.0,94581847.0,96293280.0,96577043.0,97758216.0,98663030.0,99619388.0,100669120.0,101853104.0],"unit":"ns","throughput":[{"per_iteration":65536,"unit":"bytes"}],"typical":{"estimate":254495.18678070046,"lower_bound":254409.74558804385,"upper_bound":254609.48650935263,"unit":"ns"},"mean":{"estimate":254574.06064618978,"lower_bound":254470.46198611904,"upper_bound":254697.932039696,"unit":"ns"},"median":{"estimate":254449.17282388662,"lower_bound":254383.4897260274,"upper_bound":254483.23928571428,"unit":"ns"},"median_abs_dev":{"estimate":258.2224156883683,"lower_bound":178.611177510832,"upper_bound":306.0941892013258,"unit":"ns"},"slope":{"estimate":254495.18678070046,"lower_bound":254409.74558804385,"upper_bound":254609.48650935263,"unit":"ns"},"change":{"mean":{"estimate":0.0018936847534194445,"lower_bound":0.00013444254939325466,"upper_bound":0.0031364269720770485,"unit":"%"},"median":{"estimate":0.0033573553252157495,"lower_bound":0.0025978964062569397,"upper_bound":0.0036564756729409176,"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":[1137127.0,2063858.0,3079031.0,4067513.0,5084225.0,6130411.0,7115475.0,8133815.0,9181346.0,10168276.0,11214324.0,12201886.0,13219541.0,14265868.0,15313172.0,16322362.0,17284200.0,18329190.0,19317398.0,20391655.0,21352635.0,22396776.0,23437500.0,24432089.0,25476086.0,26469481.0,27478603.0,28473242.0,29632087.0,30562215.0,31584167.0,32595646.0,33587728.0,34656167.0,35641019.0,36629032.0,37743800.0,38722924.0,39710810.0,40695759.0,41774051.0,42729226.0,43765875.0,44802924.0,45813958.0,46821714.0,47872988.0,48860860.0,49846914.0,50952120.0,51908579.0,52923524.0,54053863.0,55054519.0,55944886.0,57020358.0,58008054.0,59057284.0,60100592.0,61030726.0,62109069.0,63147449.0,64102801.0,65298518.0,66176178.0,67159576.0,68432765.0,69364293.0,70504079.0,71353645.0,72384201.0,73260926.0,74421276.0,75378912.0,76329790.0,77409605.0,78338014.0,79443113.0,80403948.0,81432143.0,82516618.0,83566872.0,84557071.0,85443827.0,86492993.0,87623588.0,88527789.0,89599711.0,90565790.0,91688863.0,92566182.0,93639338.0,94862544.0,95708872.0,96783066.0,97772557.0,98827156.0,99743600.0,100809169.0,101896985.0],"unit":"ns","throughput":[{"per_iteration":131072,"unit":"bytes"}],"typical":{"estimate":509220.3786626275,"lower_bound":509110.16121475416,"upper_bound":509338.71032704477,"unit":"ns"},"mean":{"estimate":509901.7141677329,"lower_bound":509173.38120229536,"upper_bound":511205.23973521765,"unit":"ns"},"median":{"estimate":509119.32680250786,"lower_bound":509015.16746794875,"upper_bound":509306.96875,"unit":"ns"},"median_abs_dev":{"estimate":540.0329220791524,"lower_bound":416.09991123376585,"upper_bound":684.3536092186853,"unit":"ns"},"slope":{"estimate":509220.3786626275,"lower_bound":509110.16121475416,"upper_bound":509338.71032704477,"unit":"ns"},"change":{"mean":{"estimate":0.002932736050255791,"lower_bound":0.0007482057355566175,"upper_bound":0.00620212213003338,"unit":"%"},"median":{"estimate":0.002504120093050677,"lower_bound":0.0021642403445540914,"upper_bound":0.003016152952553419,"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":[1155075.0,2086146.0,3131766.0,4173945.0,5219105.0,6212798.0,7508168.0,8149361.0,9168619.0,10214067.0,11204372.0,12221481.0,13270411.0,14263290.0,15305179.0,16327947.0,17400080.0,18335931.0,19383225.0,20374423.0,21422219.0,22410326.0,23461578.0,24478906.0,25465230.0,26562646.0,27528371.0,28796826.0,29587057.0,30564189.0,31658629.0,32626370.0,33702191.0,34695106.0,35713851.0,36863719.0,37749304.0,38768376.0,39784820.0,40818360.0,41799953.0,42843095.0,43938953.0,44856865.0,46326582.0,46970953.0,47931944.0,49052425.0,49942804.0,50985281.0,51976115.0,53195935.0,54035525.0,55174777.0,56050669.0,57133074.0,58144434.0,59131344.0,60212744.0,61145963.0,62188691.0,63386810.0,64647429.0,65256207.0,66270789.0,67316853.0,68315154.0,69354133.0,70393832.0,71433238.0,72401429.0,73452776.0,74546558.0,75431323.0,76629817.0,77639750.0,78986088.0,79561130.0,80579505.0,81591998.0,82667444.0,83697978.0,84811148.0,85683031.0,86695995.0,87661648.0,88768440.0,89755126.0,91162614.0,91733020.0,92824404.0,93798468.0,94819773.0,95909411.0,97141653.0,97963157.0,98900213.0,99978699.0,101360938.0,101977814.0],"unit":"ns","throughput":[{"per_iteration":262144,"unit":"bytes"}],"typical":{"estimate":1020695.8716802128,"lower_bound":1020301.9372636809,"upper_bound":1021139.6462184897,"unit":"ns"},"mean":{"estimate":1023520.3860465279,"lower_bound":1021199.9150494884,"upper_bound":1026942.9516548595,"unit":"ns"},"median":{"estimate":1020173.5906432748,"lower_bound":1019993.7341772151,"upper_bound":1020361.3197044334,"unit":"ns"},"median_abs_dev":{"estimate":986.0783333751438,"lower_bound":719.1273870992511,"upper_bound":1522.1429292428024,"unit":"ns"},"slope":{"estimate":1020695.8716802128,"lower_bound":1020301.9372636809,"upper_bound":1021139.6462184897,"unit":"ns"},"change":{"mean":{"estimate":0.00402569718229806,"lower_bound":-0.0007289727442449073,"upper_bound":0.008098438874614826,"unit":"%"},"median":{"estimate":0.0031524332208916483,"lower_bound":0.0027296384396423017,"upper_bound":0.003354681940266113,"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":[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":[51094990.0,50971677.0,51022576.0,51112563.0,51025951.0,51020705.0,51029740.0,51003907.0,50976911.0,50995113.0,51070215.0,51027529.0,50971792.0,50979232.0,51061117.0,51377216.0,50997764.0,51030370.0,51025632.0,51054800.0,51178110.0,51024129.0,51036271.0,51169362.0,51124962.0,51004280.0,51087445.0,51006054.0,51029062.0,50999076.0,51063393.0,50970395.0,51029301.0,51123945.0,51061593.0,51012773.0,51032732.0,50969946.0,51037307.0,50979309.0,51063884.0,50976163.0,51057522.0,51088172.0,51069897.0,50979523.0,51002482.0,51003030.0,51006792.0,51061382.0,51058228.0,50976467.0,51032722.0,51005520.0,50998905.0,51023582.0,51262390.0,50976432.0,50996143.0,50991622.0,51022825.0,51165095.0,51254970.0,51046394.0,51068392.0,51231600.0,50996775.0,50988703.0,51216180.0,51028920.0,51030271.0,50992357.0,51200677.0,51117298.0,51005837.0,51228788.0,50993397.0,51052098.0,50998553.0,51025652.0,50988791.0,51023193.0,51134062.0,51042950.0,50998571.0,50995314.0,51020679.0,50960385.0,50964766.0,51053942.0,51030500.0,51121388.0,51000146.0,51029075.0,51194933.0,51058902.0,50967231.0,50998722.0,50994887.0,50967597.0],"unit":"ns","throughput":[{"per_iteration":524288,"unit":"bytes"}],"typical":{"estimate":2041852.3675999995,"lower_bound":2041276.54328,"upper_bound":2042479.9276400001,"unit":"ns"},"mean":{"estimate":2041852.3675999995,"lower_bound":2041276.54328,"upper_bound":2042479.9276400001,"unit":"ns"},"median":{"estimate":2041032.06,"lower_bound":2040510.92,"upper_bound":2041261.8399999999,"unit":"ns"},"median_abs_dev":{"estimate":1901.4344662427902,"lower_bound":1473.7340258356733,"upper_bound":2271.174143278599,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.003015227738161874,"lower_bound":0.002617307024577331,"upper_bound":0.0034088146823560038,"unit":"%"},"median":{"estimate":0.002901657008284264,"lower_bound":0.002602097597615982,"upper_bound":0.0033233671614225635,"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":[13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13],"measured_values":[54139638.0,53313957.0,53350102.0,53317533.0,53492035.0,53345515.0,53652621.0,53286120.0,53735381.0,53343036.0,53416141.0,53286265.0,53367827.0,53307462.0,53397717.0,53340639.0,53372159.0,53334603.0,53402888.0,53370397.0,53550945.0,53307677.0,53345631.0,53521290.0,53921936.0,53733949.0,53908369.0,53319919.0,53290811.0,53355379.0,53341640.0,53283047.0,53355158.0,53410902.0,53313912.0,53345453.0,53321848.0,53317448.0,53342563.0,53322604.0,53315555.0,53324210.0,53317588.0,53288769.0,53361958.0,53776801.0,53345088.0,53289903.0,53388598.0,53313424.0,53311900.0,53288451.0,53318646.0,53529567.0,53506675.0,53315911.0,53519726.0,53310213.0,53653116.0,53287611.0,53394483.0,53338687.0,53381841.0,53349912.0,53773984.0,53285789.0,53581187.0,53313451.0,53334822.0,53300950.0,53291946.0,53318626.0,53398523.0,53319628.0,53286607.0,53487660.0,53305467.0,53335863.0,53284582.0,53345909.0,53312704.0,53624646.0,53289483.0,53760070.0,53347092.0,53318281.0,53314561.0,53326378.0,53318461.0,53313321.0,53311973.0,53431560.0,53284888.0,53324325.0,53423628.0,53307668.0,53308587.0,53309852.0,53312564.0,53336361.0],"unit":"ns","throughput":[{"per_iteration":1048576,"unit":"bytes"}],"typical":{"estimate":4107425.0361538474,"lower_bound":4105171.6466538464,"upper_bound":4109937.760576923,"unit":"ns"},"mean":{"estimate":4107425.0361538474,"lower_bound":4105171.6466538464,"upper_bound":4109937.760576923,"unit":"ns"},"median":{"estimate":4102718.653846154,"lower_bound":4101434.3076923075,"upper_bound":4103501.153846154,"unit":"ns"},"median_abs_dev":{"estimate":3155.657020899258,"lower_bound":2182.5012074068104,"upper_bound":5297.728867485344,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0036152089087202466,"lower_bound":0.0029521591049832987,"upper_bound":0.004303602593196647,"unit":"%"},"median":{"estimate":0.0027726245301500363,"lower_bound":0.002412970160713368,"upper_bound":0.0031522080578065825,"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":[7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7],"measured_values":[57583156.0,57407427.0,57389475.0,57425196.0,57419428.0,57846273.0,57409773.0,57391452.0,57395607.0,57472143.0,57426491.0,57400685.0,57369628.0,57447925.0,57408682.0,57397205.0,57424388.0,57390962.0,57406959.0,57365264.0,57383058.0,57702544.0,57412283.0,57822496.0,57471128.0,57424767.0,57401245.0,57984206.0,57455408.0,57395801.0,57436113.0,57444345.0,57481332.0,57610982.0,57440113.0,57519431.0,57422948.0,57390863.0,57405852.0,57493944.0,57817946.0,57418752.0,57366127.0,57428801.0,57397910.0,57385676.0,57403524.0,57428529.0,57413911.0,57412871.0,57399052.0,57423728.0,57410604.0,57395625.0,57425310.0,57371575.0,57475513.0,57824944.0,57384795.0,57469608.0,57379623.0,57425885.0,57421632.0,57384156.0,57397333.0,57421578.0,57420799.0,57453241.0,57534300.0,57391713.0,57579934.0,57394392.0,57425624.0,57398112.0,57471883.0,57793733.0,57437941.0,57424265.0,57372026.0,57393026.0,57431603.0,57369961.0,57396140.0,57430087.0,57612194.0,57415033.0,57450615.0,57399983.0,57428626.0,57570765.0,57582851.0,57703392.0,57850515.0,57421507.0,57480659.0,57426375.0,57425882.0,57401957.0,57453518.0,57369889.0],"unit":"ns","throughput":[{"per_iteration":2097152,"unit":"bytes"}],"typical":{"estimate":8209249.324285715,"lower_bound":8206011.014714285,"upper_bound":8212903.162357141,"unit":"ns"},"mean":{"estimate":8209249.324285715,"lower_bound":8206011.014714285,"upper_bound":8212903.162357141,"unit":"ns"},"median":{"estimate":8203334.0,"lower_bound":8201838.714285715,"upper_bound":8203767.857142857,"unit":"ns"},"median_abs_dev":{"estimate":5804.8024969444505,"lower_bound":3924.7598303212885,"upper_bound":7085.980674199484,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.003092325222375125,"lower_bound":0.0025877201771671134,"upper_bound":0.0035775058650657607,"unit":"%"},"median":{"estimate":0.002830219850497251,"lower_bound":0.0026050952520253468,"upper_bound":0.0029744754404743556,"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":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],"measured_values":[65822748.0,65660739.0,65650071.0,65618080.0,65651991.0,65617840.0,65667773.0,65692081.0,65754168.0,65662554.0,65678134.0,65679038.0,65992869.0,65624598.0,66102334.0,65631972.0,65646179.0,65674868.0,65616557.0,65659134.0,65656440.0,65686587.0,65617377.0,65894545.0,65688129.0,65681346.0,65697321.0,65613388.0,66014899.0,65768795.0,66084199.0,65712670.0,65657416.0,65639799.0,65642864.0,65646502.0,65597886.0,65901885.0,65700063.0,65683906.0,65627430.0,65646530.0,65742710.0,65640775.0,65677923.0,66070888.0,65624559.0,65638769.0,65647474.0,65608722.0,65619826.0,65689903.0,65655200.0,65583711.0,65823025.0,65672119.0,65622253.0,65672075.0,65627014.0,65701295.0,66102548.0,65655136.0,65664195.0,65673891.0,65624083.0,65618781.0,65654169.0,65690642.0,65620933.0,65650369.0,65709693.0,65619952.0,65623334.0,65706267.0,65666755.0,66036598.0,65653368.0,65618335.0,65622016.0,65682725.0,65590625.0,65621567.0,65736834.0,65613715.0,65608403.0,65681199.0,65625123.0,65629443.0,65649750.0,65847225.0,66127481.0,65664774.0,65713495.0,65657591.0,65681930.0,65653028.0,65614276.0,65660425.0,65660168.0,65635773.0],"unit":"ns","throughput":[{"per_iteration":4194304,"unit":"bytes"}],"typical":{"estimate":16424621.4025,"lower_bound":16418912.3000625,"upper_bound":16430972.22775,"unit":"ns"},"mean":{"estimate":16424621.4025,"lower_bound":16418912.3000625,"upper_bound":16430972.22775,"unit":"ns"},"median":{"estimate":16414590.625,"lower_bound":16412592.25,"upper_bound":16418018.75,"unit":"ns"},"median_abs_dev":{"estimate":12142.308459430933,"lower_bound":8947.476941775532,"upper_bound":14955.356584489346,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.003145779798783943,"lower_bound":0.002704355593541885,"upper_bound":0.0036152921709744603,"unit":"%"},"median":{"estimate":0.0029317238041668414,"lower_bound":0.002676414277519496,"upper_bound":0.003194403711737341,"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":[72729759.0,72469211.0,72484622.0,72355826.0,72338054.0,72330797.0,72525690.0,72396300.0,72403926.0,72382397.0,72463811.0,72521856.0,72333528.0,72398082.0,72373198.0,72511424.0,72547563.0,72427234.0,72339984.0,72331972.0,72342881.0,72366635.0,72323230.0,72379348.0,72354328.0,72524424.0,72352140.0,72387034.0,72326641.0,72625845.0,72561813.0,72338100.0,72332075.0,72359432.0,72249549.0,72314114.0,72494123.0,72420725.0,72371002.0,72375328.0,72378291.0,72360032.0,72318670.0,72534667.0,72414043.0,72376596.0,72349675.0,72264768.0,72364411.0,72321271.0,72381301.0,72272553.0,72385509.0,72361099.0,72368303.0,72350935.0,72203506.0,72777434.0,72326432.0,72679340.0,72348453.0,72346643.0,72374022.0,72316246.0,72381516.0,72548968.0,72361673.0,72185516.0,72313336.0,72354503.0,72529169.0,72734727.0,72419181.0,72352015.0,72340992.0,72324413.0,72442637.0,72330664.0,72498093.0,72351202.0,72382042.0,72365989.0,72329446.0,72313895.0,72438807.0,72641732.0,72358000.0,72394889.0,72175217.0,72298202.0,72261005.0,72372030.0,72282056.0,72435110.0,72344003.0,72338694.0,72369579.0,72347701.0,72451961.0,72578590.0],"unit":"ns","throughput":[{"per_iteration":8388608,"unit":"bytes"}],"typical":{"estimate":36197928.77,"lower_bound":36187603.89425,"upper_bound":36208930.140125,"unit":"ns"},"mean":{"estimate":36197928.77,"lower_bound":36187603.89425,"upper_bound":36208930.140125,"unit":"ns"},"median":{"estimate":36183156.0,"lower_bound":36176991.5,"upper_bound":36189145.5,"unit":"ns"},"median_abs_dev":{"estimate":26877.3136228323,"lower_bound":18743.640439733874,"upper_bound":38152.857072651386,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0023084684202065997,"lower_bound":0.001907527446306695,"upper_bound":0.0027350661081723127,"unit":"%"},"median":{"estimate":0.002247020209443118,"lower_bound":0.0019629525057900388,"upper_bound":0.0024588591758512024,"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":[73603768.0,72280567.0,72415338.0,72332761.0,72371670.0,72442257.0,72368894.0,72364551.0,72347413.0,72423600.0,72553657.0,72371763.0,72440813.0,72388292.0,72370752.0,72377209.0,72360022.0,72425654.0,72366192.0,72473997.0,72387029.0,72328125.0,72345027.0,72351415.0,72672381.0,72368343.0,72424583.0,72354656.0,72373938.0,72382842.0,72313598.0,72512322.0,72439374.0,72437017.0,72414751.0,72270697.0,72311933.0,72479856.0,72479598.0,72294580.0,72517116.0,72263966.0,72439283.0,72420429.0,72332436.0,72418391.0,72354536.0,72290195.0,72572591.0,72379430.0,72356080.0,72679459.0,72663112.0,72432187.0,72444349.0,72443417.0,72393730.0,72399727.0,72472610.0,72384503.0,72867776.0,72338776.0,72371802.0,72356721.0,72410104.0,72424969.0,72650443.0,72389245.0,72547265.0,72412024.0,72365612.0,72374667.0,72397068.0,72489457.0,72445673.0,72351292.0,72346624.0,72401721.0,72330789.0,72614568.0,72405126.0,72422395.0,72357761.0,72439939.0,72338782.0,72429180.0,72338412.0,72433692.0,72338710.0,72275654.0,72397660.0,72449204.0,72281054.0,72473975.0,72412017.0,72479574.0,72374230.0,72320859.0,72320434.0,72352243.0],"unit":"ns","throughput":[{"per_iteration":16777216,"unit":"bytes"}],"typical":{"estimate":72422062.79,"lower_bound":72396069.38575001,"upper_bound":72455604.59075001,"unit":"ns"},"mean":{"estimate":72422062.79,"lower_bound":72396069.38575001,"upper_bound":72455604.59075001,"unit":"ns"},"median":{"estimate":72391487.5,"lower_bound":72373016.0,"upper_bound":72414751.0,"unit":"ns"},"median_abs_dev":{"estimate":65929.73822951317,"lower_bound":51864.79412421586,"upper_bound":83544.50851678848,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0027636860177526756,"lower_bound":0.002235342690505815,"upper_bound":0.0033379025627199464,"unit":"%"},"median":{"estimate":0.0026361003794426185,"lower_bound":0.0022330978203040862,"upper_bound":0.0032006185617350358,"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":[145364470.0,144997101.0,145110190.0,145723668.0,145191984.0,145165703.0,145046896.0,145604648.0,145267457.0,145385094.0,146006465.0,145402163.0,145293195.0,145285841.0,145164637.0,145282357.0,145122642.0,145920123.0,145563675.0,145119049.0,145153951.0,145348435.0,145009089.0,145065037.0,145825942.0,145530271.0,145246433.0,145209239.0,145103652.0,145229126.0,145256072.0,145776158.0,145180053.0,145160443.0,145174332.0,145206561.0,145052982.0,145157739.0,145407702.0,145561138.0,145039319.0,145277133.0,145143097.0,144976237.0,145327256.0,145498160.0,145039548.0,145064251.0,145210891.0,144974125.0,145115029.0,145274815.0,145552340.0,145006751.0,145018776.0,145059550.0,145261952.0,145255198.0,145720327.0,145095918.0,145416220.0,145226578.0,145354090.0,145064287.0,145195476.0,145346942.0,144949738.0,145121344.0,145060274.0,146423448.0,145552759.0,145123772.0,146142037.0,145278335.0,144985518.0,145173576.0,145307848.0,145310120.0,145266863.0,145460083.0,145079519.0,145081913.0,145080187.0,145559080.0,144852769.0,145154551.0,145463808.0,144984997.0,145163215.0,145203865.0,145113280.0,145172193.0,145291472.0,145192933.0,145025408.0,145219024.0,145046373.0,145208313.0,144860896.0,145275197.0],"unit":"ns","throughput":[{"per_iteration":33554432,"unit":"bytes"}],"typical":{"estimate":145263706.87,"lower_bound":145214222.31925,"upper_bound":145317425.99725002,"unit":"ns"},"mean":{"estimate":145263706.87,"lower_bound":145214222.31925,"upper_bound":145317425.99725002,"unit":"ns"},"median":{"estimate":145205213.0,"lower_bound":145164459.0,"upper_bound":145256072.0,"unit":"ns"},"median_abs_dev":{"estimate":184084.06053185463,"lower_bound":132474.0141481161,"upper_bound":233646.63635194302,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0036131659933444915,"lower_bound":0.0031664978878755135,"upper_bound":0.004058816815355154,"unit":"%"},"median":{"estimate":0.0034288704641223244,"lower_bound":0.002949461778870822,"upper_bound":0.0038897414884837556,"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":[229,458,687,916,1145,1374,1603,1832,2061,2290,2519,2748,2977,3206,3435,3664,3893,4122,4351,4580,4809,5038,5267,5496,5725,5954,6183,6412,6641,6870,7099,7328,7557,7786,8015,8244,8473,8702,8931,9160,9389,9618,9847,10076,10305,10534,10763,10992,11221,11450,11679,11908,12137,12366,12595,12824,13053,13282,13511,13740,13969,14198,14427,14656,14885,15114,15343,15572,15801,16030,16259,16488,16717,16946,17175,17404,17633,17862,18091,18320,18549,18778,19007,19236,19465,19694,19923,20152,20381,20610,20839,21068,21297,21526,21755,21984,22213,22442,22671,22900],"measured_values":[1012465.0,1993226.0,2965198.0,3952853.0,4943414.0,5955603.0,6918053.0,7906024.0,8893010.0,9925148.0,10899198.0,11858243.0,12873641.0,13861910.0,14823898.0,15838772.0,16800394.0,17816753.0,18774881.0,19789581.0,20751107.0,21769664.0,22804919.0,23762286.0,25169082.0,25720617.0,26709296.0,27670415.0,28683772.0,29669477.0,30689390.0,31651005.0,32749586.0,33657494.0,34584535.0,35628195.0,36615526.0,37659724.0,38746633.0,39732049.0,40546431.0,41560076.0,42551067.0,43558989.0,44522349.0,45524721.0,46500175.0,47543467.0,48450415.0,49590445.0,50580945.0,51943170.0,52454858.0,53392335.0,54459564.0,55364234.0,56412090.0,57363304.0,58380976.0,59463115.0,60396531.0,61352624.0,62389436.0,63294187.0,64332877.0,65275357.0,66262400.0,67735971.0,68265198.0,69218105.0,70240176.0,71385914.0,72216599.0,73228151.0,75036746.0,76989617.0,76377422.0,77310570.0,78190890.0,79135688.0,80170187.0,81566971.0,82097989.0,83118542.0,84049063.0,85122794.0,86112776.0,87070554.0,88057933.0,89078283.0,90011338.0,90988134.0,92482783.0,92973741.0,93978241.0,94939855.0,95988933.0,96982691.0,98057570.0,98959200.0],"unit":"ns","throughput":[{"per_iteration":2,"unit":"bytes"}],"typical":{"estimate":4326.049444007426,"lower_bound":4322.667700893553,"upper_bound":4330.681540650477,"unit":"ns"},"mean":{"estimate":4326.425767587505,"lower_bound":4323.251139279131,"upper_bound":4330.2976727819105,"unit":"ns"},"median":{"estimate":4321.279993393204,"lower_bound":4320.575648405452,"upper_bound":4322.075960968246,"unit":"ns"},"median_abs_dev":{"estimate":3.795927034589667,"lower_bound":2.8417424640213325,"upper_bound":5.342648131958645,"unit":"ns"},"slope":{"estimate":4326.049444007426,"lower_bound":4322.667700893553,"upper_bound":4330.681540650477,"unit":"ns"},"change":{"mean":{"estimate":0.0002696235921315626,"lower_bound":-0.0016867983058408641,"upper_bound":0.001803386860633038,"unit":"%"},"median":{"estimate":0.0005955714796650469,"lower_bound":0.00023997649469597617,"upper_bound":0.0008511595797617844,"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":[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":[1100768.0,2031931.0,3046239.0,4060429.0,5075797.0,6091609.0,7103332.0,7989354.0,9003700.0,9965979.0,10932919.0,11900251.0,12909639.0,13957842.0,14978015.0,15979478.0,16958268.0,17978813.0,18862049.0,19964909.0,20815169.0,21831371.0,22850884.0,23820157.0,24803167.0,25768261.0,26787656.0,27806832.0,28770781.0,29761185.0,30783695.0,31715011.0,32732768.0,33771543.0,35156206.0,35714116.0,36697596.0,37729161.0,38682124.0,39723426.0,40664760.0,41688333.0,42677318.0,43638644.0,44650209.0,45650177.0,46669429.0,47599670.0,48645314.0,49639526.0,50633156.0,51568528.0,52590078.0,53605576.0,54564614.0,55576974.0,56990206.0,57543350.0,58547650.0,59492629.0,60540733.0,61510155.0,62830470.0,63510033.0,64543197.0,65651113.0,66605977.0,67512126.0,68503299.0,69465920.0,70520089.0,71520156.0,72977797.0,73468104.0,74395662.0,75409985.0,76432525.0,77389455.0,78438409.0,79664147.0,80502166.0,81365218.0,82408193.0,83404145.0,84716310.0,85413798.0,86353393.0,87270932.0,88319081.0,89248109.0,90388782.0,91351931.0,92454448.0,93212368.0,94320178.0,95796343.0,96319975.0,97260132.0,98223714.0,99278954.0],"unit":"ns","throughput":[{"per_iteration":4,"unit":"bytes"}],"typical":{"estimate":6534.459116221913,"lower_bound":6531.694558862643,"upper_bound":6537.710928727783,"unit":"ns"},"mean":{"estimate":6552.18237360786,"lower_bound":6539.83803488237,"upper_bound":6569.985462338353,"unit":"ns"},"median":{"estimate":6531.606628864361,"lower_bound":6529.648300438596,"upper_bound":6532.674832026875,"unit":"ns"},"median_abs_dev":{"estimate":6.742225705145954,"lower_bound":4.6424986061808555,"upper_bound":9.752321537388342,"unit":"ns"},"slope":{"estimate":6534.459116221913,"lower_bound":6531.694558862643,"upper_bound":6537.710928727783,"unit":"ns"},"change":{"mean":{"estimate":0.0010779807070953051,"lower_bound":-0.0017445257907036074,"upper_bound":0.004344293763036863,"unit":"%"},"median":{"estimate":0.0001698337648681214,"lower_bound":-0.0001947325328648386,"upper_bound":0.00046792793543692923,"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":[71,142,213,284,355,426,497,568,639,710,781,852,923,994,1065,1136,1207,1278,1349,1420,1491,1562,1633,1704,1775,1846,1917,1988,2059,2130,2201,2272,2343,2414,2485,2556,2627,2698,2769,2840,2911,2982,3053,3124,3195,3266,3337,3408,3479,3550,3621,3692,3763,3834,3905,3976,4047,4118,4189,4260,4331,4402,4473,4544,4615,4686,4757,4828,4899,4970,5041,5112,5183,5254,5325,5396,5467,5538,5609,5680,5751,5822,5893,5964,6035,6106,6177,6248,6319,6390,6461,6532,6603,6674,6745,6816,6887,6958,7029,7100],"measured_values":[1082197.0,1998573.0,2999070.0,4026674.0,4995163.0,6025389.0,6994399.0,7992625.0,8990916.0,10054330.0,11020372.0,11989278.0,13012171.0,13989800.0,14985880.0,16012458.0,16984184.0,18081724.0,18983305.0,20011353.0,20980369.0,22008698.0,23020543.0,24002616.0,24971372.0,26000043.0,27003058.0,27971755.0,28996646.0,30029482.0,31149794.0,32093101.0,32996389.0,33988861.0,34978281.0,35993926.0,37062493.0,37991761.0,38991657.0,39997731.0,40994634.0,42034044.0,43215895.0,44046711.0,44986291.0,46039872.0,47053490.0,48051853.0,49048676.0,50054574.0,51025892.0,52182774.0,52979950.0,54123368.0,55118084.0,56043383.0,56999857.0,58091557.0,59009886.0,59970081.0,61004271.0,62040427.0,63191235.0,64028831.0,65008532.0,66037732.0,67018611.0,68067637.0,68988591.0,70064952.0,71185911.0,71991165.0,72984274.0,74059074.0,74989925.0,76013021.0,77021301.0,78012690.0,79039167.0,80122084.0,81028753.0,82018876.0,83215823.0,84343592.0,85012486.0,86030735.0,87045656.0,88027321.0,89100698.0,89981008.0,91065147.0,92034740.0,93026373.0,93984814.0,95280738.0,96012148.0,97003188.0,98036036.0,98994605.0,100066806.0],"unit":"ns","throughput":[{"per_iteration":8,"unit":"bytes"}],"typical":{"estimate":14094.472353238687,"lower_bound":14091.020359773169,"upper_bound":14098.45560327554,"unit":"ns"},"mean":{"estimate":14106.22682465,"lower_bound":14091.6095179087,"upper_bound":14132.00814680398,"unit":"ns"},"median":{"estimate":14089.193248012203,"lower_bound":14086.35579631636,"upper_bound":14092.502112676057,"unit":"ns"},"median_abs_dev":{"estimate":11.58923030799691,"lower_bound":9.149744771404544,"upper_bound":15.685233812441261,"unit":"ns"},"slope":{"estimate":14094.472353238687,"lower_bound":14091.020359773169,"upper_bound":14098.45560327554,"unit":"ns"},"change":{"mean":{"estimate":0.000699235624517458,"lower_bound":-0.001362262429211147,"upper_bound":0.003026712111180751,"unit":"%"},"median":{"estimate":0.0010329087496288025,"lower_bound":0.0006494669031975597,"upper_bound":0.0013854431147981572,"unit":"%"},"change":"NoChange"}} +{"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":[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":[1061923.0,1989550.0,2981786.0,4002548.0,5005861.0,5994367.0,6956358.0,7949567.0,8941947.0,9964341.0,10964518.0,11922891.0,12971114.0,13908035.0,14931788.0,15897782.0,16891035.0,17915193.0,19032591.0,19872628.0,20907698.0,21858553.0,22905369.0,23945434.0,24927556.0,25975607.0,26941965.0,27907299.0,28976166.0,29835776.0,30829591.0,31850654.0,32815646.0,33809745.0,34842733.0,35807673.0,36767277.0,37841220.0,38804990.0,39771758.0,40843067.0,41933891.0,42775704.0,43748222.0,44825964.0,45774625.0,46734218.0,47804755.0,48772710.0,49720806.0,50874929.0,52061860.0,52806113.0,53723546.0,54731498.0,55696990.0,56757711.0,57688963.0,58679625.0,59668355.0,60708189.0,61630920.0,62674636.0,63746207.0,64639787.0,65708689.0,66737841.0,67680862.0,68792672.0,69705736.0,70603402.0,71604215.0,72619842.0,73587660.0,74629616.0,75613241.0,77119522.0,77663310.0,78688576.0,79631479.0,80582295.0,81802175.0,82594290.0,83593655.0,84550022.0,85583729.0,86506605.0,87567191.0,88552481.0,89601437.0,90548449.0,91621927.0,92761003.0,93727321.0,94580001.0,95478069.0,96541473.0,97499212.0,98510034.0,99556583.0],"unit":"ns","throughput":[{"per_iteration":16,"unit":"bytes"}],"typical":{"estimate":29280.3480780431,"lower_bound":29271.812227102928,"upper_bound":29290.541051560598,"unit":"ns"},"mean":{"estimate":29303.745825589056,"lower_bound":29276.56607855471,"upper_bound":29349.28734037143,"unit":"ns"},"median":{"estimate":29269.444103804315,"lower_bound":29263.394255576728,"upper_bound":29279.68181372549,"unit":"ns"},"median_abs_dev":{"estimate":31.890573504990545,"lower_bound":24.424587186568584,"upper_bound":42.041293073617354,"unit":"ns"},"slope":{"estimate":29280.3480780431,"lower_bound":29271.812227102928,"upper_bound":29290.541051560598,"unit":"ns"},"change":{"mean":{"estimate":0.00040672755384463244,"lower_bound":-0.0018984285416920098,"upper_bound":0.0023679811544928806,"unit":"%"},"median":{"estimate":0.000733665610889167,"lower_bound":0.0002565998566639305,"upper_bound":0.0011727495192641602,"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":[17,34,51,68,85,102,119,136,153,170,187,204,221,238,255,272,289,306,323,340,357,374,391,408,425,442,459,476,493,510,527,544,561,578,595,612,629,646,663,680,697,714,731,748,765,782,799,816,833,850,867,884,901,918,935,952,969,986,1003,1020,1037,1054,1071,1088,1105,1122,1139,1156,1173,1190,1207,1224,1241,1258,1275,1292,1309,1326,1343,1360,1377,1394,1411,1428,1445,1462,1479,1496,1513,1530,1547,1564,1581,1598,1615,1632,1649,1666,1683,1700],"measured_values":[1174222.0,2222457.0,3367056.0,4448874.0,5240504.0,6260961.0,7333689.0,8415981.0,9421276.0,10434125.0,11506909.0,12520393.0,13590536.0,14604553.0,15651002.0,16720212.0,17767869.0,18834652.0,19852497.0,20897120.0,21939580.0,22953250.0,24025710.0,25069069.0,26083838.0,27183003.0,28198249.0,29314230.0,30251731.0,31306349.0,32395231.0,33417556.0,34459652.0,35528776.0,36578245.0,37651501.0,38632956.0,39725083.0,40774052.0,41748269.0,42795834.0,43898564.0,45126366.0,46152798.0,47009405.0,48146538.0,49094138.0,50289281.0,51205766.0,52252657.0,53263019.0,54365808.0,55380621.0,56526707.0,57457194.0,58479150.0,59577762.0,60557551.0,61686225.0,62647870.0,63697594.0,64957616.0,65811940.0,66828319.0,67952597.0,68939399.0,69938835.0,71043187.0,72056487.0,73076347.0,74188563.0,75212672.0,76210077.0,77309583.0,78312235.0,79628485.0,80452040.0,81439905.0,82647516.0,83549593.0,84652194.0,86004361.0,87590709.0,88032098.0,88807247.0,89941316.0,90969944.0,92037445.0,92987576.0,94078528.0,95053062.0,96069949.0,97234900.0,98157085.0,99297675.0,100248197.0,101452364.0,102594607.0,103551919.0,104403821.0],"unit":"ns","throughput":[{"per_iteration":32,"unit":"bytes"}],"typical":{"estimate":61496.30099253297,"lower_bound":61470.71737644077,"upper_bound":61529.12408253164,"unit":"ns"},"mean":{"estimate":61687.967425726034,"lower_bound":61518.723068792,"upper_bound":61914.66245682864,"unit":"ns"},"median":{"estimate":61465.4916290194,"lower_bound":61451.54438502674,"upper_bound":61482.58263305322,"unit":"ns"},"median_abs_dev":{"estimate":61.427072117974944,"lower_bound":48.465104054735356,"upper_bound":83.68127942230669,"unit":"ns"},"slope":{"estimate":61496.30099253297,"lower_bound":61470.71737644077,"upper_bound":61529.12408253164,"unit":"ns"},"change":{"mean":{"estimate":0.00111786417192139,"lower_bound":-0.0027390676101429895,"upper_bound":0.00504336326282136,"unit":"%"},"median":{"estimate":0.0001968937299892115,"lower_bound":-0.0001246756260447901,"upper_bound":0.0005057853744663277,"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":[1063571.0,2065907.0,3102249.0,4134628.0,5089140.0,6082350.0,7063160.0,8071944.0,9080702.0,10118920.0,11095462.0,12138971.0,13145671.0,14151358.0,15135438.0,16169625.0,17191917.0,18188995.0,19168815.0,20236000.0,21192167.0,22342272.0,23262351.0,24290805.0,25254168.0,26260756.0,27310286.0,28254366.0,29316622.0,30298419.0,31310846.0,32318400.0,33370042.0,34337528.0,35400337.0,36355439.0,37360763.0,38401862.0,39459793.0,40417683.0,41396434.0,42412788.0,43472056.0,44463321.0,45541541.0,46583074.0,47479054.0,48527394.0,49592214.0,50719729.0,51523968.0,52844375.0,53500793.0,54565660.0,55576069.0,56597940.0,57591105.0,58546627.0,59647017.0,60627425.0,62130872.0,62771129.0,63657886.0,64651990.0,65635227.0,66653066.0,67860920.0,68665042.0,69708943.0,70703761.0,71713269.0,72737212.0,73733987.0,74790721.0,75809160.0,76765052.0,77817836.0,78789800.0,79819142.0,80948289.0,81874725.0,83015511.0,83794762.0,85069368.0,85832190.0,86960890.0,88052434.0,88924826.0,89940788.0,91162664.0,91952978.0,93060040.0,93929385.0,94957809.0,95921856.0,96971956.0,97993990.0,98983368.0,100013361.0,101012591.0],"unit":"ns","throughput":[{"per_iteration":64,"unit":"bytes"}],"typical":{"estimate":126349.98007536575,"lower_bound":126314.31058269607,"upper_bound":126391.38717050363,"unit":"ns"},"mean":{"estimate":126512.98811909508,"lower_bound":126374.76625010911,"upper_bound":126695.65210919439,"unit":"ns"},"median":{"estimate":126309.32293771044,"lower_bound":126280.9149484536,"upper_bound":126338.12792207793,"unit":"ns"},"median_abs_dev":{"estimate":123.27917937851012,"lower_bound":81.45411989127315,"upper_bound":160.99583379340123,"unit":"ns"},"slope":{"estimate":126349.98007536575,"lower_bound":126314.31058269607,"upper_bound":126391.38717050363,"unit":"ns"},"change":{"mean":{"estimate":0.0003675773217399758,"lower_bound":-0.001654504038744675,"upper_bound":0.002248392600567139,"unit":"%"},"median":{"estimate":0.0003852396885855036,"lower_bound":0.00005117662342790652,"upper_bound":0.0007715554758187526,"unit":"%"},"change":"NoChange"}} +{"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":[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":[1296874.0,2438540.0,3659607.0,4890930.0,6099709.0,7318724.0,8566142.0,9757337.0,10978822.0,12226209.0,13448873.0,14636423.0,15885218.0,17075913.0,18324689.0,19571614.0,20881262.0,22002036.0,23190718.0,24457968.0,25648878.0,27038198.0,28084454.0,29340255.0,30550548.0,31754091.0,32961530.0,34210725.0,35635854.0,36767889.0,37861565.0,39062474.0,40527237.0,41568611.0,42752019.0,44180492.0,45172333.0,46409987.0,47832577.0,48848201.0,50079177.0,51373670.0,52508968.0,53784032.0,54930490.0,56198315.0,57392068.0,58627472.0,59863751.0,61040364.0,62409176.0,63619874.0,64802225.0,66047343.0,67150132.0,68500387.0,69609992.0,70809439.0,72074983.0,73270743.0,74465810.0,75803474.0,76897640.0,78164208.0,79336576.0,80747065.0,81868772.0,83021852.0,84257654.0,85461252.0,86649639.0,87966014.0,89114926.0,90466356.0,91554453.0,92820486.0,94153723.0,95348778.0,96440591.0,97822476.0,98883237.0,100153215.0,101421876.0,102604390.0,103937500.0,105001984.0,106388106.0,107505596.0,108647695.0,109923389.0,111113315.0,112371533.0,113513865.0,114838789.0,116011095.0,117451122.0,118645388.0,119702801.0,120873494.0,122107000.0],"unit":"ns","throughput":[{"per_iteration":128,"unit":"bytes"}],"typical":{"estimate":244346.04510240874,"lower_bound":244299.19818939632,"upper_bound":244397.32752507125,"unit":"ns"},"mean":{"estimate":244545.55518943604,"lower_bound":244341.1697137905,"upper_bound":244891.0182199691,"unit":"ns"},"median":{"estimate":244287.3047985154,"lower_bound":244254.33771929826,"upper_bound":244345.26944444445,"unit":"ns"},"median_abs_dev":{"estimate":206.9745706961817,"lower_bound":156.3826019714215,"upper_bound":288.5687502376754,"unit":"ns"},"slope":{"estimate":244346.04510240874,"lower_bound":244299.19818939632,"upper_bound":244397.32752507125,"unit":"ns"},"change":{"mean":{"estimate":0.00020456678086233637,"lower_bound":-0.004096173536616284,"upper_bound":0.0030400042640483004,"unit":"%"},"median":{"estimate":0.0014896393975487587,"lower_bound":0.001239111744349847,"upper_bound":0.0018149044572155493,"unit":"%"},"change":"NoChange"}} +{"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":[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":[1515126.0,2884431.0,4281321.0,5711689.0,7134867.0,8559921.0,10139596.0,11536695.0,12982340.0,14349731.0,15804529.0,17211102.0,18548399.0,20005550.0,21460916.0,22828971.0,24339044.0,25711270.0,27108882.0,28564835.0,29985992.0,31416816.0,32988622.0,34326324.0,35913153.0,37156076.0,38552610.0,40013301.0,41406875.0,42858542.0,44258866.0,45716136.0,47121144.0,48593520.0,49966781.0,51532487.0,52971476.0,54300952.0,55701466.0,57158469.0,58762979.0,60073980.0,61424335.0,63031646.0,64517577.0,65716852.0,67265517.0,68610284.0,70108679.0,71514238.0,72834581.0,74291684.0,75777035.0,77170182.0,78567215.0,79961339.0,81465167.0,82985780.0,84383624.0,85705831.0,87123832.0,88635930.0,90023138.0,91440325.0,93111579.0,94330776.0,95725520.0,97104534.0,98684332.0,100146577.0,101432774.0,102853632.0,104614193.0,105909530.0,107367991.0,108641776.0,110017605.0,111488720.0,113051546.0,114275030.0,115685865.0,117149492.0,118541085.0,120009225.0,121457357.0,122884205.0,124633905.0,125879092.0,127194448.0,128609733.0,130014543.0,131438019.0,132807678.0,134301969.0,135912295.0,137099457.0,138573089.0,140115757.0,141393048.0,142885291.0],"unit":"ns","throughput":[{"per_iteration":256,"unit":"bytes"}],"typical":{"estimate":476469.7180523127,"lower_bound":476368.5810195242,"upper_bound":476584.5942134593,"unit":"ns"},"mean":{"estimate":476995.92587894737,"lower_bound":476547.4295167542,"upper_bound":477700.55024445144,"unit":"ns"},"median":{"estimate":476321.59702380956,"lower_bound":476237.55587447376,"upper_bound":476427.2900955254,"unit":"ns"},"median_abs_dev":{"estimate":457.86216928338985,"lower_bound":298.1731612310139,"upper_bound":623.180573027262,"unit":"ns"},"slope":{"estimate":476469.7180523127,"lower_bound":476368.5810195242,"upper_bound":476584.5942134593,"unit":"ns"},"change":{"mean":{"estimate":0.0010729436420520155,"lower_bound":-0.0009760188350145166,"upper_bound":0.0029193984787850126,"unit":"%"},"median":{"estimate":0.0009969457702130313,"lower_bound":0.0005890150174236726,"upper_bound":0.0012037041400245752,"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":[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":[2139458.0,3928893.0,5889474.0,7853989.0,9808126.0,11559722.0,13504784.0,15363082.0,17302651.0,19164305.0,21107033.0,23059807.0,24939686.0,26861114.0,28777153.0,30697159.0,32609809.0,34550237.0,36532855.0,38435580.0,40271219.0,42191166.0,44134321.0,46108109.0,47965163.0,49855338.0,51796230.0,53744925.0,55658328.0,57634914.0,59538323.0,61412477.0,63290643.0,65209212.0,67158379.0,69039502.0,70961195.0,72955975.0,74791015.0,76741927.0,78689261.0,80571660.0,82599457.0,84514792.0,86376268.0,88323378.0,90151936.0,92101056.0,93985553.0,96084758.0,97853861.0,99850442.0,101610836.0,103650122.0,105659480.0,107454098.0,109327893.0,111271837.0,113197376.0,115152825.0,117171610.0,119052599.0,121203245.0,123068441.0,124806993.0,126644226.0,128707659.0,130704219.0,132419943.0,134324442.0,136353838.0,138226671.0,140060290.0,141965987.0,143981563.0,145835059.0,147757309.0,149892261.0,151654542.0,153473573.0,155424595.0,157874434.0,159343076.0,161294328.0,163296523.0,165003414.0,166960972.0,168866500.0,170880266.0,172812050.0,174756967.0,176609511.0,178491262.0,180463498.0,182427653.0,184424340.0,186117603.0,188274064.0,189953530.0,191882054.0],"unit":"ns","throughput":[{"per_iteration":512,"unit":"bytes"}],"typical":{"estimate":959898.5619521206,"lower_bound":959733.5910735447,"upper_bound":960083.0228335148,"unit":"ns"},"mean":{"estimate":961841.7424811658,"lower_bound":960133.7695194122,"upper_bound":964552.1290739747,"unit":"ns"},"median":{"estimate":959676.8963560334,"lower_bound":959452.4031620553,"upper_bound":959927.238486842,"unit":"ns"},"median_abs_dev":{"estimate":671.2163833869519,"lower_bound":506.6805243747786,"upper_bound":943.6112874193727,"unit":"ns"},"slope":{"estimate":959898.5619521206,"lower_bound":959733.5910735447,"upper_bound":960083.0228335148,"unit":"ns"},"change":{"mean":{"estimate":-0.002718288348473319,"lower_bound":-0.0067834099367408765,"upper_bound":0.0013720072994962153,"unit":"%"},"median":{"estimate":-0.0009297582342044919,"lower_bound":-0.0012243026069110874,"upper_bound":-0.0005974539070271456,"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":[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":[2071648.0,3937064.0,5902280.0,7861030.0,9914737.0,11876880.0,13840695.0,15839669.0,17778107.0,19797184.0,21672350.0,23614589.0,25557248.0,27575774.0,29515357.0,31479939.0,33442939.0,35437522.0,37403281.0,39372989.0,41310091.0,43268396.0,45266041.0,47369837.0,49295226.0,51127773.0,53122673.0,55085346.0,57122320.0,59062626.0,61217738.0,62881855.0,64883042.0,66816192.0,68839677.0,70726271.0,72709838.0,74690469.0,76627754.0,78677212.0,80628458.0,82555577.0,84567164.0,86725598.0,88524738.0,90402768.0,92390489.0,94356418.0,96358902.0,98298161.0,100376999.0,102417555.0,104152450.0,106181216.0,108367107.0,110157806.0,112086038.0,113994259.0,116019794.0,117893479.0,120218083.0,121899172.0,124444162.0,125855575.0,127894215.0,129730870.0,131779946.0,133805196.0,135673653.0,137604165.0,139894635.0,141597505.0,143474173.0,145477449.0,147479829.0,149412367.0,151416721.0,153668397.0,155303953.0,157306220.0,160671280.0,161387756.0,163467094.0,165463502.0,167420393.0,169109508.0,171056720.0,173208883.0,175178089.0,177465394.0,179020994.0,180932646.0,182892316.0,184932965.0,187023694.0,188727162.0,190695291.0,192652826.0,194736928.0,196772029.0],"unit":"ns","throughput":[{"per_iteration":1024,"unit":"bytes"}],"typical":{"estimate":1967697.6934417023,"lower_bound":1967043.7160017274,"upper_bound":1968550.6644493672,"unit":"ns"},"mean":{"estimate":1969368.113686142,"lower_bound":1967784.8490387881,"upper_bound":1971874.1258639388,"unit":"ns"},"median":{"estimate":1967125.4345238097,"lower_bound":1966584.0430107526,"upper_bound":1967603.3076923077,"unit":"ns"},"median_abs_dev":{"estimate":1831.0915933621661,"lower_bound":1284.805388123384,"upper_bound":2512.5470692798626,"unit":"ns"},"slope":{"estimate":1967697.6934417023,"lower_bound":1967043.7160017274,"upper_bound":1968550.6644493672,"unit":"ns"},"change":{"mean":{"estimate":-0.0008878597286042789,"lower_bound":-0.004272178951165342,"upper_bound":0.001467887568374343,"unit":"%"},"median":{"estimate":0.00018527258570788518,"lower_bound":-0.00017111795667235086,"upper_bound":0.0005139305229098223,"unit":"%"},"change":"NoChange"}} +{"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":[13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13],"measured_values":[52075701.0,51553157.0,51559615.0,51583202.0,51595211.0,51562455.0,51561809.0,51652445.0,51589105.0,51531160.0,51553267.0,51804809.0,51587942.0,51614292.0,51532753.0,51584508.0,51559909.0,51525824.0,51809651.0,51552863.0,51619481.0,51529113.0,51586716.0,51581008.0,51644339.0,51734755.0,51561810.0,51596828.0,51619209.0,51583685.0,51715299.0,51615378.0,51622572.0,51579228.0,51527454.0,51562282.0,51683501.0,51527096.0,51598008.0,51602030.0,51541817.0,51527867.0,51809732.0,51583478.0,51623006.0,51517193.0,51631911.0,51600905.0,51563738.0,51648816.0,51617412.0,51594115.0,51566980.0,51588629.0,51534656.0,51632468.0,51648215.0,51567057.0,51566642.0,51638835.0,51552434.0,51529821.0,51557973.0,51614258.0,51557955.0,51531010.0,51539257.0,51846667.0,51620853.0,51716868.0,51561754.0,51670668.0,51819872.0,51674124.0,51533368.0,51612275.0,51556529.0,51974892.0,51687064.0,51599931.0,51581413.0,51626259.0,51611416.0,51658336.0,51748330.0,51670826.0,51604710.0,51625066.0,51776025.0,51619527.0,51565332.0,51565535.0,51635213.0,51559238.0,51581114.0,51534735.0,51578664.0,51559933.0,51555199.0,51554743.0],"unit":"ns","throughput":[{"per_iteration":2048,"unit":"bytes"}],"typical":{"estimate":3970347.7915384634,"lower_bound":3969038.358307692,"upper_bound":3971799.6859807693,"unit":"ns"},"mean":{"estimate":3970347.7915384634,"lower_bound":3969038.358307692,"upper_bound":3971799.6859807693,"unit":"ns"},"median":{"estimate":3968329.653846154,"lower_bound":3967632.923076923,"upper_bound":3969704.653846154,"unit":"ns"},"median_abs_dev":{"estimate":3799.390524855239,"lower_bound":3132.7907674588223,"upper_bound":5181.173700323339,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0006644190313325193,"lower_bound":0.00010764798964532643,"upper_bound":0.001195692790894559,"unit":"%"},"median":{"estimate":0.0008080644259351732,"lower_bound":0.00032103998727106564,"upper_bound":0.00138544406961838,"unit":"%"},"change":"NoChange"}} +{"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":[7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7],"measured_values":[56234787.0,55996821.0,55944404.0,55952957.0,55933177.0,55909355.0,55936470.0,55913185.0,55944822.0,55880923.0,55906024.0,56084654.0,56099506.0,55937322.0,55933255.0,55935585.0,56027771.0,55876297.0,55915320.0,55914347.0,55854988.0,56009387.0,55919253.0,55907750.0,55953608.0,55929502.0,55940882.0,55934808.0,55992523.0,55899257.0,56144387.0,55993118.0,55910071.0,55918684.0,55964554.0,55888404.0,55896286.0,55892271.0,56423830.0,56051309.0,55969529.0,55989556.0,56008479.0,56138149.0,55981723.0,56009268.0,56003513.0,56007129.0,56150378.0,56030028.0,55910659.0,55904923.0,55963159.0,55892124.0,55913444.0,55952571.0,55928889.0,55971698.0,55902068.0,55947014.0,55950136.0,55913680.0,55942883.0,55912257.0,56027260.0,55901525.0,56126357.0,55947359.0,55941226.0,55924195.0,55920641.0,55936194.0,55889246.0,55939684.0,55916862.0,55902536.0,55912833.0,55898996.0,55931518.0,55920196.0,55968208.0,55913051.0,55992805.0,56022745.0,56153703.0,55994760.0,55905277.0,56037691.0,55897647.0,55946303.0,55950254.0,55887645.0,55966153.0,55894095.0,56001501.0,55897477.0,55919673.0,55971698.0,55904566.0,55944133.0],"unit":"ns","throughput":[{"per_iteration":4096,"unit":"bytes"}],"typical":{"estimate":7994573.034285716,"lower_bound":7992409.655035714,"upper_bound":7997030.4802857125,"unit":"ns"},"mean":{"estimate":7994573.034285716,"lower_bound":7992409.655035714,"upper_bound":7997030.4802857125,"unit":"ns"},"median":{"estimate":7991214.714285715,"lower_bound":7989549.785714285,"upper_bound":7992653.571428572,"unit":"ns"},"median_abs_dev":{"estimate":6954.87647652626,"lower_bound":4902.110912970923,"upper_bound":9239.351235968923,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0005225853098862476,"lower_bound":0.00010187812548160813,"upper_bound":0.0009318291674893176,"unit":"%"},"median":{"estimate":0.0006763422172122446,"lower_bound":0.00038269642402924967,"upper_bound":0.0009193802477573954,"unit":"%"},"change":"NoChange"}} +{"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":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],"measured_values":[64324175.0,64183060.0,64108579.0,64307612.0,64150730.0,64081355.0,64115124.0,64080278.0,64366627.0,64189735.0,64039008.0,64103378.0,64100390.0,64098166.0,64087733.0,64105788.0,64106452.0,64142761.0,64078641.0,64120223.0,64073348.0,64123058.0,64106278.0,64213130.0,64295239.0,64161137.0,64050808.0,64436055.0,64110120.0,64107368.0,64125202.0,64127772.0,64119762.0,64508535.0,64283157.0,64072397.0,64087628.0,64136697.0,64117397.0,64204539.0,64244074.0,64104242.0,64079250.0,64105015.0,64100628.0,64113433.0,64087338.0,64128434.0,64076155.0,64093472.0,64156321.0,64068089.0,64077492.0,64168538.0,64071291.0,64254900.0,64124868.0,64290616.0,64121852.0,64077399.0,64154760.0,64122207.0,64137099.0,64193175.0,64234406.0,64374710.0,64128643.0,64134308.0,64091827.0,64123310.0,64384897.0,64323042.0,64158615.0,64117155.0,64066438.0,64065155.0,64109671.0,64145597.0,64136351.0,64110077.0,64082536.0,64241577.0,64133175.0,64084542.0,64052410.0,64281354.0,64230999.0,64132549.0,64069024.0,64184031.0,64107298.0,64060581.0,64137458.0,64121706.0,64161639.0,64173570.0,64090577.0,64091068.0,64172970.0,64054544.0],"unit":"ns","throughput":[{"per_iteration":8192,"unit":"bytes"}],"typical":{"estimate":16037169.75,"lower_bound":16032994.137062501,"upper_bound":16041682.7071875,"unit":"ns"},"mean":{"estimate":16037169.75,"lower_bound":16032994.137062501,"upper_bound":16041682.7071875,"unit":"ns"},"median":{"estimate":16030444.75,"lower_bound":16027332.0,"upper_bound":16033137.25,"unit":"ns"},"median_abs_dev":{"estimate":13228.12761515379,"lower_bound":9222.883786261082,"upper_bound":17089.744571596384,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0002197028209043328,"lower_bound":-0.00023512325535629812,"upper_bound":0.0006878819447164395,"unit":"%"},"median":{"estimate":0.0005684372437035901,"lower_bound":0.00015546752540386853,"upper_bound":0.0007631297812360494,"unit":"%"},"change":"NoChange"}} +{"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":[64260830.0,64173702.0,64215910.0,64257372.0,64158658.0,64161564.0,64322641.0,64542116.0,64186058.0,64317089.0,64188279.0,64144548.0,64142539.0,64203516.0,64248582.0,64084628.0,64185227.0,64176061.0,64206285.0,64158788.0,64170187.0,64286276.0,64382507.0,64265867.0,64138529.0,64153064.0,64358998.0,64134276.0,64159363.0,64197441.0,64373728.0,64189641.0,64217107.0,64255246.0,64167082.0,64392205.0,64200730.0,64174532.0,64416800.0,64210467.0,64186780.0,64290460.0,64198599.0,64137415.0,64169838.0,64199373.0,64196320.0,64151683.0,64173822.0,64169585.0,64201600.0,64178677.0,64216902.0,64128234.0,64408747.0,64188054.0,64176838.0,64198428.0,64213430.0,64133802.0,64180414.0,64351802.0,64215300.0,64187438.0,64163040.0,64236258.0,64170460.0,64326372.0,64186988.0,64392970.0,64299434.0,64203959.0,64230719.0,64160959.0,64220130.0,64199070.0,64234271.0,64167798.0,64183065.0,64158343.0,64175760.0,64183621.0,64168913.0,64247302.0,64310633.0,64436820.0,64160867.0,64131964.0,64304610.0,64185253.0,64150224.0,64177327.0,64202529.0,64161175.0,64202778.0,64175945.0,64126839.0,64200838.0,64197971.0,64131161.0],"unit":"ns","throughput":[{"per_iteration":16384,"unit":"bytes"}],"typical":{"estimate":32107991.73,"lower_bound":32100491.787125003,"upper_bound":32116034.684125002,"unit":"ns"},"mean":{"estimate":32107991.73,"lower_bound":32100491.787125003,"upper_bound":32116034.684125002,"unit":"ns"},"median":{"estimate":32094480.0,"lower_bound":32091008.75,"upper_bound":32100419.0,"unit":"ns"},"median_abs_dev":{"estimate":20655.21218329668,"lower_bound":14298.768653646126,"upper_bound":29476.311376690865,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0000531420443262709,"lower_bound":-0.0004120017959896637,"upper_bound":0.0002946226585011423,"unit":"%"},"median":{"estimate":-0.00003963141290475036,"lower_bound":-0.0004571667470218252,"upper_bound":0.00022247084197024591,"unit":"%"},"change":"NoChange"}} +{"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":[64878247.0,64704338.0,64598166.0,64856363.0,64772653.0,64688144.0,64664610.0,64551515.0,64713466.0,64585894.0,64627773.0,64708262.0,64670367.0,64623997.0,64673593.0,64581490.0,64616013.0,64657054.0,64697549.0,64653644.0,64737160.0,64613088.0,64579544.0,64791299.0,64695756.0,64577744.0,64581267.0,64649856.0,64647370.0,64681419.0,64631549.0,64646806.0,64585540.0,64521773.0,64553722.0,64795068.0,64629391.0,64565374.0,64586759.0,64637527.0,64660515.0,64567912.0,64704419.0,64719002.0,65032187.0,64754739.0,64753426.0,64551145.0,64602279.0,64599128.0,65062042.0,64692899.0,64593004.0,64667747.0,64587782.0,64654668.0,64700745.0,64644776.0,64790964.0,64662369.0,64712863.0,64641697.0,64657372.0,64561721.0,64656985.0,64662363.0,64802365.0,64671513.0,64698810.0,64593103.0,64503646.0,64765739.0,64677355.0,64669295.0,64560645.0,64649707.0,64615430.0,64650500.0,64610869.0,64486029.0,64675867.0,64767265.0,64706940.0,64660413.0,64592232.0,64689517.0,64624386.0,64598417.0,64662103.0,64623041.0,64529065.0,64648508.0,64700303.0,64761144.0,64637836.0,64579524.0,64623420.0,64813766.0,64640217.0,64508924.0],"unit":"ns","throughput":[{"per_iteration":32768,"unit":"bytes"}],"typical":{"estimate":64661237.93,"lower_bound":64643702.415,"upper_bound":64680175.819,"unit":"ns"},"mean":{"estimate":64661237.93,"lower_bound":64643702.415,"upper_bound":64680175.819,"unit":"ns"},"median":{"estimate":64652072.0,"lower_bound":64637836.0,"upper_bound":64663486.5,"unit":"ns"},"median_abs_dev":{"estimate":75656.33535683155,"lower_bound":54989.63302373886,"upper_bound":89311.8224143982,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0002441914792820077,"lower_bound":-0.0008228567322679374,"upper_bound":0.0002528110365548119,"unit":"%"},"median":{"estimate":0.000290562331251909,"lower_bound":-0.00032625496091476247,"upper_bound":0.0005672747546663359,"unit":"%"},"change":"NoChange"}} +{"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":[141193074.0,138131820.0,138170348.0,137715289.0,137619835.0,137635515.0,137895567.0,137437761.0,137804210.0,137671322.0,137408453.0,137978646.0,140875942.0,137892715.0,137590392.0,137572896.0,137836823.0,137792820.0,138000078.0,140658054.0,137646365.0,137653007.0,137376160.0,137419116.0,137556599.0,137480267.0,137634833.0,138964695.0,137918890.0,137591684.0,137598675.0,137952914.0,140664616.0,137645418.0,137612546.0,137739145.0,137616481.0,137742185.0,137547039.0,137558204.0,137548898.0,137507676.0,137705399.0,137829140.0,137883440.0,140794101.0,137625366.0,137555912.0,137538128.0,137644874.0,137735591.0,137754750.0,137656227.0,138152565.0,137707045.0,137845222.0,137961234.0,141117016.0,137653971.0,137479559.0,137674707.0,137504964.0,137805629.0,137789548.0,137857764.0,137881999.0,138009960.0,140796647.0,137642794.0,137550652.0,137485084.0,137668656.0,137618427.0,137557595.0,137483697.0,138021667.0,140825213.0,137625663.0,137672138.0,137574253.0,137522775.0,137370985.0,138639203.0,137611346.0,137538437.0,137807150.0,137765072.0,137638205.0,137885109.0,140957710.0,137606935.0,137575844.0,137670543.0,137994545.0,137533089.0,137749342.0,137431688.0,137965829.0,137988888.0,137586211.0],"unit":"ns","throughput":[{"per_iteration":65536,"unit":"bytes"}],"typical":{"estimate":138003824.76,"lower_bound":137832281.0945,"upper_bound":138197164.58499998,"unit":"ns"},"mean":{"estimate":138003824.76,"lower_bound":137832281.0945,"upper_bound":138197164.58499998,"unit":"ns"},"median":{"estimate":137670932.5,"lower_bound":137638205.0,"upper_bound":137749342.0,"unit":"ns"},"median_abs_dev":{"estimate":197246.58309817314,"lower_bound":143765.49554765224,"upper_bound":274411.46392822266,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0010700302754858004,"lower_bound":-0.0008043698909943913,"upper_bound":0.003081551196867338,"unit":"%"},"median":{"estimate":0.001506206537515764,"lower_bound":0.0009907285136543376,"upper_bound":0.002244807434317669,"unit":"%"},"change":"NoChange"}} +{"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":[280131860.0,280153772.0,279569193.0,280213532.0,280159266.0,281384596.0,279933049.0,280185963.0,279154506.0,280431460.0,279723385.0,279890992.0,280438328.0,279786212.0,279934558.0,280170054.0,280099477.0,279969033.0,279963390.0,280205486.0,279989667.0,279680669.0,280574943.0,280128342.0,280075700.0,278925133.0,279922575.0,278438696.0,279748809.0,277728889.0,278745232.0,280049280.0,280296784.0,280129629.0,281345543.0,280073032.0,279762207.0,280065578.0,279824369.0,279935415.0,279816546.0,280202577.0,280533849.0,280321618.0,278985631.0,278164312.0,279773650.0,279962425.0,280244570.0,279988095.0,279998153.0,279762578.0,277948704.0,280080687.0,280358547.0,280377369.0,279822959.0,280458992.0,280496814.0,280697708.0,279826736.0,280412505.0,280936198.0,280053803.0,279918273.0,279719116.0,279996579.0,279708336.0,279896334.0,280023645.0,279829416.0,280163811.0,280150173.0,280830223.0,278974398.0,280024682.0,280226671.0,280777020.0,280311508.0,281001132.0,280389596.0,279766386.0,279889738.0,280017204.0,280013074.0,280800369.0,280062205.0,280214606.0,279932620.0,280008229.0,280276180.0,280232569.0,279960960.0,279958379.0,280269640.0,278868889.0,279578324.0,279858253.0,280154193.0,280277760.0],"unit":"ns","throughput":[{"per_iteration":131072,"unit":"bytes"}],"typical":{"estimate":279982441.21,"lower_bound":279864078.2115,"upper_bound":280093962.18275,"unit":"ns"},"mean":{"estimate":279982441.21,"lower_bound":279864078.2115,"upper_bound":280093962.18275,"unit":"ns"},"median":{"estimate":280024163.5,"lower_bound":279963390.0,"upper_bound":280128342.0,"unit":"ns"},"median_abs_dev":{"estimate":299271.70028686523,"lower_bound":227785.17735600471,"upper_bound":383286.48951530433,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0003178125035185886,"lower_bound":-0.00030359122507592207,"upper_bound":0.0009292095101834985,"unit":"%"},"median":{"estimate":0.0005171727213559851,"lower_bound":0.00019922097898340604,"upper_bound":0.000981763869792207,"unit":"%"},"change":"NoChange"}} +{"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":[563879387.0,563790381.0,563851559.0,564134602.0,564255286.0,563412549.0,564200588.0,564215825.0,563932144.0,563845608.0,564092436.0,563868538.0,564530409.0,564459102.0,564732558.0,564067740.0,563535113.0,564347994.0,563598432.0,563987858.0,563991221.0,563825081.0,564674243.0,563611012.0,563942385.0,563693231.0,563681368.0,563906645.0,564673666.0,564161564.0,563662615.0,563936617.0,564053181.0,564390526.0,563590260.0,564556712.0,564146230.0,563687821.0,564163746.0,563710212.0,564324886.0,563481658.0,564273918.0,564145090.0,563766267.0,564003719.0,564018244.0,564552211.0,563592236.0,564232788.0,563787285.0,564210408.0,564346629.0,564310786.0,564177506.0,563674676.0,564379167.0,563961784.0,564317235.0,563867982.0,564151706.0,564020331.0,564339030.0,564282116.0,564161905.0,564045192.0,563450845.0,564380019.0,564047258.0,563428038.0,564369195.0,564064719.0,564048937.0,563440412.0,564192726.0,564599914.0,563909539.0,564433333.0,564018986.0,564064845.0,563525540.0,564162539.0,564343452.0,563553422.0,564179723.0,563902217.0,564155710.0,563919680.0,564103158.0,563687688.0,564405417.0,564001616.0,563619415.0,564460901.0,563694761.0,564728059.0,563729024.0,564342434.0,564029082.0,564876083.0],"unit":"ns","throughput":[{"per_iteration":262144,"unit":"bytes"}],"typical":{"estimate":564050898.87,"lower_bound":563986232.0047499,"upper_bound":564115554.5407499,"unit":"ns"},"mean":{"estimate":564050898.87,"lower_bound":563986232.0047499,"upper_bound":564115554.5407499,"unit":"ns"},"median":{"estimate":564051059.0,"lower_bound":563991221.0,"upper_bound":564151706.0,"unit":"ns"},"median_abs_dev":{"estimate":363818.1727409363,"lower_bound":252608.34871530533,"upper_bound":455134.71124224307,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0005746702277118487,"lower_bound":-0.00038736080686567747,"upper_bound":0.0011489437780258626,"unit":"%"},"median":{"estimate":0.001164249510063886,"lower_bound":0.0009033644553926301,"upper_bound":0.0014221759888179974,"unit":"%"},"change":"NoChange"}} +{"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":[1157989640.0,1159477939.0,1160213937.0,1159174931.0,1159536254.0,1160182283.0,1159860580.0,1160826535.0,1160789700.0,1159512076.0,1159922837.0,1159801988.0,1160858219.0,1158965921.0,1160347340.0,1160082381.0,1159717223.0,1159732436.0,1159484595.0,1160368368.0,1159763702.0,1160716964.0,1159829344.0,1161156005.0,1159869184.0,1160116040.0,1161884567.0,1159876323.0,1159496985.0,1159761339.0,1160248166.0,1160562070.0,1159867366.0,1160493332.0,1159711819.0,1159519374.0,1159647241.0,1159808198.0,1159297151.0,1160712434.0,1161274435.0,1159855002.0,1159919344.0,1159892260.0,1160733028.0,1160571331.0,1159379511.0,1159785514.0,1159625532.0,1159563700.0,1159504854.0,1159703818.0,1159966046.0,1164827637.0,1159731232.0,1159632937.0,1159539596.0,1160224360.0,1160276709.0,1158637849.0,1158960317.0,1160275622.0,1158784911.0,1158772857.0,1159594648.0,1159838363.0,1162740386.0,1159886404.0,1159664562.0,1160077749.0,1159908125.0,1159790962.0,1159344903.0,1160634858.0,1160569490.0,1158764742.0,1159430775.0,1159688300.0,1159875159.0,1159675416.0,1159907883.0,1159876279.0,1159545771.0,1159993343.0,1160443593.0,1160003756.0,1159594954.0,1159350675.0,1159769808.0,1160114383.0,1159286654.0,1159175360.0,1160115578.0,1161140291.0,1159726622.0,1159907965.0,1159627730.0,1159969361.0,1159920084.0,1159901331.0],"unit":"ns","throughput":[{"per_iteration":524288,"unit":"bytes"}],"typical":{"estimate":1159954774.52,"lower_bound":1159806499.7535002,"upper_bound":1160123124.46375,"unit":"ns"},"mean":{"estimate":1159954774.52,"lower_bound":1159806499.7535002,"upper_bound":1160123124.46375,"unit":"ns"},"median":{"estimate":1159857791.0,"lower_bound":1159748069.0,"upper_bound":1159907883.0,"unit":"ns"},"median_abs_dev":{"estimate":449310.0763231516,"lower_bound":298050.0379085541,"upper_bound":551327.0392119884,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0012717629499952032,"lower_bound":0.0011081819542601123,"upper_bound":0.0014449728003691875,"unit":"%"},"median":{"estimate":0.0012160625507771083,"lower_bound":0.0010241407597061105,"upper_bound":0.0013226791574227174,"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":[2339743368.0,2341442320.0,2332889910.0,2336995691.0,2337101662.0,2337804256.0,2335464721.0,2339232205.0,2336287008.0,2340739403.0,2334050702.0,2342093536.0,2335286911.0,2340530538.0,2334853678.0,2338354354.0,2334788367.0,2339252538.0,2334242244.0,2338332993.0,2335917189.0,2337347285.0,2334212722.0,2338119955.0,2335828734.0,2340451890.0,2334940439.0,2338362932.0,2335568080.0,2337798742.0,2334324961.0,2338522937.0,2334316580.0,2338681879.0,2334573713.0,2338463780.0,2334940016.0,2339415285.0,2336116862.0,2338801576.0,2335145765.0,2338254490.0,2334757769.0,2340390036.0,2337064629.0,2339512612.0,2334274928.0,2338539362.0,2336185462.0,2339033009.0,2335675644.0,2337655179.0,2335859196.0,2338235203.0,2335836742.0,2339471552.0,2340024266.0,2337800058.0,2336040306.0,2337284404.0,2334457980.0,2338746748.0,2335886788.0,2339531304.0,2335921171.0,2337885092.0,2334852747.0,2338914538.0,2334640929.0,2337716707.0,2334534585.0,2339142478.0,2334942461.0,2339142506.0,2334320709.0,2339230289.0,2336760181.0,2337832706.0,2337098343.0,2339608977.0,2336511151.0,2340248687.0,2335315809.0,2338276801.0,2335108141.0,2338069520.0,2333842395.0,2337668097.0,2335284065.0,2339541174.0,2336352850.0,2339505842.0,2335769350.0,2338563621.0,2336322148.0,2338108366.0,2336041419.0,2338015040.0,2334764253.0,2339050655.0],"unit":"ns","throughput":[{"per_iteration":1048576,"unit":"bytes"}],"typical":{"estimate":2337167591.97,"lower_bound":2336770881.7894998,"upper_bound":2337566890.023,"unit":"ns"},"mean":{"estimate":2337167591.97,"lower_bound":2336770881.7894998,"upper_bound":2337566890.023,"unit":"ns"},"median":{"estimate":2337315844.5,"lower_bound":2336253805.0,"upper_bound":2338015040.0,"unit":"ns"},"median_abs_dev":{"estimate":2558949.0220695734,"lower_bound":2027026.0103905953,"upper_bound":2945999.536398053,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0013795908027918191,"lower_bound":0.0011402697633443204,"upper_bound":0.0016268765812048778,"unit":"%"},"median":{"estimate":0.0012000725591627681,"lower_bound":0.0007099526942582202,"upper_bound":0.0020510528916586335,"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_61888","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_61888","iteration_count":[18,36,54,72,90,108,126,144,162,180,198,216,234,252,270,288,306,324,342,360,378,396,414,432,450,468,486,504,522,540,558,576,594,612,630,648,666,684,702,720,738,756,774,792,810,828,846,864,882,900,918,936,954,972,990,1008,1026,1044,1062,1080,1098,1116,1134,1152,1170,1188,1206,1224,1242,1260,1278,1296,1314,1332,1350,1368,1386,1404,1422,1440,1458,1476,1494,1512,1530,1548,1566,1584,1602,1620,1638,1656,1674,1692,1710,1728,1746,1764,1782,1800],"measured_values":[1173525.0,2076593.0,3116680.0,4179311.0,5220287.0,6283482.0,7324199.0,8377123.0,9404922.0,10470254.0,11501721.0,12580872.0,13494402.0,14538225.0,15685399.0,16726629.0,17704989.0,18820961.0,19728307.0,20789976.0,21830936.0,22879746.0,23927266.0,24909946.0,25995897.0,27034626.0,28094183.0,29079019.0,30217225.0,31225734.0,32231064.0,33320036.0,34366629.0,35392736.0,36452790.0,37889215.0,38515212.0,39573033.0,40625368.0,41653579.0,42723334.0,43722234.0,44765923.0,45773722.0,46804500.0,47971785.0,49005449.0,50031291.0,51061684.0,52107812.0,53154030.0,54186810.0,55172192.0,56225377.0,57416032.0,58216207.0,59724686.0,60324472.0,61375163.0,62359691.0,63460209.0,64503876.0,65610949.0,66607555.0,67605368.0,68687623.0,69731360.0,70760908.0,71939839.0,72876588.0,74009641.0,75293747.0,76070923.0,77030195.0,77991525.0,79043100.0,80082804.0,81148434.0,82141382.0,83143355.0,84270543.0,85337240.0,86295638.0,87749408.0,88462760.0,89374810.0,90432555.0,91483495.0,92637669.0,93616350.0,94547157.0,95759405.0,96706907.0,97704995.0,99090745.0,99800123.0,100732733.0,101840352.0,102903279.0,104009133.0],"unit":"ns","throughput":[{"per_iteration":61888,"unit":"bytes"}],"typical":{"estimate":57818.294093230215,"lower_bound":57797.0076767024,"upper_bound":57842.93988392796,"unit":"ns"},"mean":{"estimate":57932.574041857486,"lower_bound":57838.54856036978,"upper_bound":58097.14138162056,"unit":"ns"},"median":{"estimate":57822.899087893864,"lower_bound":57797.45469877892,"upper_bound":57841.07394248253,"unit":"ns"},"median_abs_dev":{"estimate":100.79069336489083,"lower_bound":66.33506964247114,"upper_bound":115.60799581671469,"unit":"ns"},"slope":{"estimate":57818.294093230215,"lower_bound":57797.0076767024,"upper_bound":57842.93988392796,"unit":"ns"},"change":{"mean":{"estimate":-0.009051403354042975,"lower_bound":-0.013034364839369374,"upper_bound":-0.005174646351118123,"unit":"%"},"median":{"estimate":-0.00888186902162924,"lower_bound":-0.009641879230093076,"upper_bound":-0.008406862026134942,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_62400","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_62400","iteration_count":[18,36,54,72,90,108,126,144,162,180,198,216,234,252,270,288,306,324,342,360,378,396,414,432,450,468,486,504,522,540,558,576,594,612,630,648,666,684,702,720,738,756,774,792,810,828,846,864,882,900,918,936,954,972,990,1008,1026,1044,1062,1080,1098,1116,1134,1152,1170,1188,1206,1224,1242,1260,1278,1296,1314,1332,1350,1368,1386,1404,1422,1440,1458,1476,1494,1512,1530,1548,1566,1584,1602,1620,1638,1656,1674,1692,1710,1728,1746,1764,1782,1800],"measured_values":[1148561.0,2079317.0,3115913.0,4179411.0,5190347.0,6227052.0,7269119.0,8333020.0,9375967.0,10381738.0,11448817.0,12461253.0,13505523.0,14571490.0,15576689.0,16645176.0,17684911.0,18718496.0,19726150.0,20823037.0,21866849.0,22961161.0,23938304.0,24922379.0,25993719.0,27031065.0,28058241.0,29135451.0,30203646.0,31162545.0,32327465.0,33304015.0,34341068.0,35387868.0,36421028.0,37435178.0,38465676.0,39513794.0,40558885.0,41653204.0,42631625.0,43701633.0,44836836.0,45793166.0,46818275.0,47807958.0,48911523.0,49876207.0,50959836.0,52017773.0,53168110.0,54138706.0,55179762.0,56335581.0,57256809.0,58228715.0,59290635.0,60286723.0,61381709.0,62479161.0,63510652.0,64521413.0,65944694.0,66607753.0,67586974.0,68740599.0,69707267.0,70724978.0,72185310.0,73239967.0,73916492.0,75012861.0,76009688.0,77272981.0,78066768.0,79264909.0,80217368.0,81199892.0,82314051.0,83416973.0,84504535.0,85558015.0,86189661.0,87255717.0,88273795.0,89265873.0,90463240.0,91385590.0,92505317.0,93316888.0,94269890.0,95402680.0,96514250.0,97463376.0,98439465.0,99479584.0,100622507.0,101965983.0,102761627.0,103627303.0],"unit":"ns","throughput":[{"per_iteration":62400,"unit":"bytes"}],"typical":{"estimate":57772.006696057666,"lower_bound":57735.14425620578,"upper_bound":57812.14279992591,"unit":"ns"},"mean":{"estimate":57854.85868131432,"lower_bound":57777.39130525068,"upper_bound":57989.61437834805,"unit":"ns"},"median":{"estimate":57799.27945176815,"lower_bound":57770.33641975309,"upper_bound":57819.23003472222,"unit":"ns"},"median_abs_dev":{"estimate":90.66921270813997,"lower_bound":63.00077177040391,"upper_bound":127.12289704867516,"unit":"ns"},"slope":{"estimate":57772.006696057666,"lower_bound":57735.14425620578,"upper_bound":57812.14279992591,"unit":"ns"},"change":{"mean":{"estimate":-0.013438435670409143,"lower_bound":-0.017287051997994272,"upper_bound":-0.010085506481177745,"unit":"%"},"median":{"estimate":-0.010965347874236975,"lower_bound":-0.01176736659313049,"upper_bound":-0.010398375109644697,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_63424","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_63424","iteration_count":[18,36,54,72,90,108,126,144,162,180,198,216,234,252,270,288,306,324,342,360,378,396,414,432,450,468,486,504,522,540,558,576,594,612,630,648,666,684,702,720,738,756,774,792,810,828,846,864,882,900,918,936,954,972,990,1008,1026,1044,1062,1080,1098,1116,1134,1152,1170,1188,1206,1224,1242,1260,1278,1296,1314,1332,1350,1368,1386,1404,1422,1440,1458,1476,1494,1512,1530,1548,1566,1584,1602,1620,1638,1656,1674,1692,1710,1728,1746,1764,1782,1800],"measured_values":[1112526.0,2072480.0,3104338.0,4138807.0,5208020.0,6242597.0,7344932.0,8338798.0,9365331.0,10434572.0,11469940.0,12514398.0,13580982.0,14619708.0,15571130.0,16723628.0,17672648.0,18674350.0,19820252.0,20853810.0,21893630.0,22934735.0,23962721.0,24887138.0,25929888.0,26958938.0,28054052.0,29033126.0,30053135.0,31104031.0,32196504.0,33197631.0,34208546.0,35279933.0,36388663.0,37413361.0,38394805.0,39459912.0,40462646.0,41562058.0,42508729.0,43727906.0,44667605.0,45755018.0,46675333.0,47913485.0,48757278.0,49769591.0,50883458.0,51845623.0,52964228.0,53972299.0,54972059.0,56036643.0,57042145.0,58109485.0,59186213.0,60175893.0,61108060.0,62163097.0,63257521.0,64325025.0,65364432.0,66528095.0,67327496.0,68488306.0,69464086.0,70592500.0,71521286.0,72605333.0,73562898.0,74634422.0,76311414.0,76679450.0,77785416.0,78851934.0,80018832.0,81125962.0,81903375.0,83021167.0,84022650.0,86120453.0,86091366.0,87077457.0,88437028.0,89800290.0,90550441.0,91269238.0,92560132.0,93334360.0,94420197.0,95325492.0,96459485.0,97735653.0,98644889.0,99753455.0,100867147.0,101921478.0,102949563.0,104005039.0],"unit":"ns","throughput":[{"per_iteration":63424,"unit":"bytes"}],"typical":{"estimate":57702.76631775118,"lower_bound":57668.100698445254,"upper_bound":57742.58838318812,"unit":"ns"},"mean":{"estimate":57761.070507577155,"lower_bound":57697.19391928435,"upper_bound":57861.6523441024,"unit":"ns"},"median":{"estimate":57658.150400641025,"lower_bound":57639.699748837906,"upper_bound":57712.10739413249,"unit":"ns"},"median_abs_dev":{"estimate":101.96513460074031,"lower_bound":69.43553137256598,"upper_bound":145.1870808757163,"unit":"ns"},"slope":{"estimate":57702.76631775118,"lower_bound":57668.100698445254,"upper_bound":57742.58838318812,"unit":"ns"},"change":{"mean":{"estimate":-0.011651783714776598,"lower_bound":-0.0140972753211103,"upper_bound":-0.009440294790365256,"unit":"%"},"median":{"estimate":-0.011284376142207342,"lower_bound":-0.012225706976413897,"upper_bound":-0.010385863628493586,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_65472","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_65472","iteration_count":[17,34,51,68,85,102,119,136,153,170,187,204,221,238,255,272,289,306,323,340,357,374,391,408,425,442,459,476,493,510,527,544,561,578,595,612,629,646,663,680,697,714,731,748,765,782,799,816,833,850,867,884,901,918,935,952,969,986,1003,1020,1037,1054,1071,1088,1105,1122,1139,1156,1173,1190,1207,1224,1241,1258,1275,1292,1309,1326,1343,1360,1377,1394,1411,1428,1445,1462,1479,1496,1513,1530,1547,1564,1581,1598,1615,1632,1649,1666,1683,1700],"measured_values":[1041026.0,1973064.0,2987070.0,3952027.0,4935475.0,5955149.0,6913274.0,7899415.0,8892517.0,9871450.0,10919190.0,11853525.0,12838922.0,13849157.0,14812716.0,15826591.0,16814433.0,17800546.0,18763041.0,19771265.0,20794261.0,21755752.0,22745872.0,23696658.0,24715743.0,25701875.0,26661656.0,27736684.0,28687875.0,29771163.0,30730508.0,31657218.0,32591092.0,33769664.0,34683808.0,35621623.0,36583008.0,37604339.0,38667932.0,39541575.0,40541209.0,41518063.0,42481512.0,43495018.0,44469318.0,45488959.0,46447741.0,47461856.0,48398190.0,49445272.0,50404206.0,51363394.0,52397359.0,53345662.0,54511619.0,55307313.0,56316234.0,57368480.0,58457882.0,59348456.0,60222719.0,61315230.0,62239659.0,63268191.0,64246649.0,65251246.0,66235833.0,67225747.0,68208662.0,69266489.0,70235855.0,71216780.0,72136969.0,73287330.0,74190884.0,75106496.0,76208317.0,77128808.0,78184837.0,79097468.0,80060831.0,81121132.0,81976964.0,82949227.0,84052326.0,85031107.0,86111470.0,86958389.0,87974921.0,88856430.0,89695177.0,90706360.0,91633805.0,92706643.0,93741307.0,94734582.0,95724056.0,96893137.0,97770818.0,98777154.0],"unit":"ns","throughput":[{"per_iteration":65472,"unit":"bytes"}],"typical":{"estimate":58131.894017854815,"lower_bound":58112.12560233724,"upper_bound":58152.41449215853,"unit":"ns"},"mean":{"estimate":58189.85211627072,"lower_bound":58145.65818802271,"upper_bound":58262.409255294864,"unit":"ns"},"median":{"estimate":58151.76490479588,"lower_bound":58140.19131719673,"upper_bound":58164.03921568627,"unit":"ns"},"median_abs_dev":{"estimate":61.025032887571975,"lower_bound":46.87710290046448,"upper_bound":82.44486162454986,"unit":"ns"},"slope":{"estimate":58131.894017854815,"lower_bound":58112.12560233724,"upper_bound":58152.41449215853,"unit":"ns"},"change":{"mean":{"estimate":-0.012983147865363698,"lower_bound":-0.018504939279231542,"upper_bound":-0.009435034575257607,"unit":"%"},"median":{"estimate":-0.010185432338957967,"lower_bound":-0.010581889073061235,"upper_bound":-0.009876466109401627,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_69568","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_69568","iteration_count":[17,34,51,68,85,102,119,136,153,170,187,204,221,238,255,272,289,306,323,340,357,374,391,408,425,442,459,476,493,510,527,544,561,578,595,612,629,646,663,680,697,714,731,748,765,782,799,816,833,850,867,884,901,918,935,952,969,986,1003,1020,1037,1054,1071,1088,1105,1122,1139,1156,1173,1190,1207,1224,1241,1258,1275,1292,1309,1326,1343,1360,1377,1394,1411,1428,1445,1462,1479,1496,1513,1530,1547,1564,1581,1598,1615,1632,1649,1666,1683,1700],"measured_values":[1042085.0,1988646.0,2976833.0,3967769.0,5015396.0,5951726.0,6946361.0,7932181.0,8925061.0,9945559.0,10917662.0,11899482.0,12919910.0,13883942.0,14871767.0,15893017.0,16860751.0,17879022.0,18839757.0,19888010.0,20857041.0,21879002.0,22862402.0,23800823.0,24814791.0,25808457.0,26809245.0,27770190.0,28889154.0,29808050.0,30811391.0,31885048.0,32765436.0,33793675.0,34860152.0,35797175.0,36952438.0,37742728.0,38705857.0,39706731.0,40709018.0,41694017.0,42710616.0,43700180.0,44683215.0,45705062.0,46675687.0,47685735.0,49003747.0,49688619.0,50686417.0,51617333.0,52806821.0,53914505.0,54771421.0,55595033.0,56780990.0,57581523.0,58563661.0,59529957.0,60609176.0,61519052.0,62555122.0,63523693.0,64537340.0,65470150.0,66598790.0,67516677.0,68655224.0,69508875.0,70559041.0,71401606.0,72637196.0,73237035.0,74185373.0,75175963.0,76207247.0,77117506.0,78216247.0,79335025.0,80344758.0,81260946.0,82243174.0,83373691.0,84323937.0,85197820.0,86370475.0,87148713.0,88140310.0,89365805.0,90233913.0,91087444.0,92052890.0,93098777.0,94610504.0,95304477.0,96203203.0,97180082.0,98176093.0,99110720.0],"unit":"ns","throughput":[{"per_iteration":69568,"unit":"bytes"}],"typical":{"estimate":58365.45919696798,"lower_bound":58338.939260276275,"upper_bound":58395.24338707559,"unit":"ns"},"mean":{"estimate":58437.356365289896,"lower_bound":58389.74493057765,"upper_bound":58508.661964033774,"unit":"ns"},"median":{"estimate":58397.619094405,"lower_bound":58382.40624326654,"upper_bound":58409.02287581699,"unit":"ns"},"median_abs_dev":{"estimate":92.84209590285835,"lower_bound":70.78803777806009,"upper_bound":106.78347526684786,"unit":"ns"},"slope":{"estimate":58365.45919696798,"lower_bound":58338.939260276275,"upper_bound":58395.24338707559,"unit":"ns"},"change":{"mean":{"estimate":-0.07001720204073203,"lower_bound":-0.12425684521023231,"upper_bound":-0.024979040919876645,"unit":"%"},"median":{"estimate":-0.012890515886389897,"lower_bound":-0.013474537225734329,"upper_bound":-0.012559220095883394,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_77760","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_77760","iteration_count":[17,34,51,68,85,102,119,136,153,170,187,204,221,238,255,272,289,306,323,340,357,374,391,408,425,442,459,476,493,510,527,544,561,578,595,612,629,646,663,680,697,714,731,748,765,782,799,816,833,850,867,884,901,918,935,952,969,986,1003,1020,1037,1054,1071,1088,1105,1122,1139,1156,1173,1190,1207,1224,1241,1258,1275,1292,1309,1326,1343,1360,1377,1394,1411,1428,1445,1462,1479,1496,1513,1530,1547,1564,1581,1598,1615,1632,1649,1666,1683,1700],"measured_values":[1087077.0,2016624.0,3022372.0,4027460.0,5060130.0,6039935.0,7048046.0,8052553.0,9059605.0,10095623.0,11078760.0,12152676.0,13123649.0,14133627.0,15117938.0,16208927.0,17364119.0,18199735.0,19143831.0,20180677.0,21181647.0,22157495.0,23417791.0,24199079.0,25209121.0,26407536.0,27275148.0,28256173.0,29319645.0,30297086.0,31283725.0,32241986.0,33292184.0,34284410.0,35292395.0,36263344.0,37313796.0,38287614.0,39277883.0,40267981.0,41283506.0,42372826.0,43294917.0,44338328.0,45310337.0,46409751.0,47392227.0,48355490.0,49368699.0,50350068.0,51427488.0,52524551.0,53502469.0,54447365.0,55410333.0,56526875.0,57503281.0,58476470.0,59511071.0,60454076.0,61421724.0,62538288.0,63467228.0,64490301.0,65483094.0,66502585.0,67600384.0,68655326.0,69794901.0,70754339.0,71578948.0,72542498.0,73585719.0,74561828.0,75585235.0,76585646.0,77548039.0,78600559.0,79580059.0,80738762.0,81638327.0,82609687.0,83579813.0,84432718.0,85559165.0,86389749.0,87416275.0,88499789.0,89664151.0,90646883.0,91536161.0,92361232.0,93670905.0,94803450.0,95436148.0,96467841.0,97509876.0,98494529.0,99412571.0,100894755.0],"unit":"ns","throughput":[{"per_iteration":77760,"unit":"bytes"}],"typical":{"estimate":59249.10773615904,"lower_bound":59221.841130292014,"upper_bound":59278.00917711483,"unit":"ns"},"mean":{"estimate":59354.58829822463,"lower_bound":59287.31828227105,"upper_bound":59465.10195007168,"unit":"ns"},"median":{"estimate":59276.62772882433,"lower_bound":59266.74673202614,"upper_bound":59312.90347759227,"unit":"ns"},"median_abs_dev":{"estimate":73.64185446580262,"lower_bound":60.20915444664608,"upper_bound":101.23905722293021,"unit":"ns"},"slope":{"estimate":59249.10773615904,"lower_bound":59221.841130292014,"upper_bound":59278.00917711483,"unit":"ns"},"change":{"mean":{"estimate":-0.017621824652264584,"lower_bound":-0.019435671595323653,"upper_bound":-0.015457116190101183,"unit":"%"},"median":{"estimate":-0.017593490484325236,"lower_bound":-0.01853972874030463,"upper_bound":-0.016823118492872435,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_94144","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_94144","iteration_count":[17,34,51,68,85,102,119,136,153,170,187,204,221,238,255,272,289,306,323,340,357,374,391,408,425,442,459,476,493,510,527,544,561,578,595,612,629,646,663,680,697,714,731,748,765,782,799,816,833,850,867,884,901,918,935,952,969,986,1003,1020,1037,1054,1071,1088,1105,1122,1139,1156,1173,1190,1207,1224,1241,1258,1275,1292,1309,1326,1343,1360,1377,1394,1411,1428,1445,1462,1479,1496,1513,1530,1547,1564,1581,1598,1615,1632,1649,1666,1683,1700],"measured_values":[1287844.0,2126197.0,3170084.0,4173297.0,5239062.0,6256950.0,7299622.0,8372484.0,9543510.0,10428339.0,11466602.0,12535700.0,13548399.0,14592538.0,15666215.0,16680646.0,17743790.0,18811917.0,19844732.0,20884535.0,21953167.0,22997573.0,23982171.0,25061661.0,26102810.0,27119097.0,28128107.0,29225466.0,30272438.0,31306464.0,32323917.0,34376820.0,38019555.0,35475830.0,36574794.0,37606933.0,38607648.0,39643556.0,40805532.0,41770486.0,42807856.0,44202713.0,44831697.0,46022321.0,47137862.0,47957611.0,49053998.0,50068888.0,51115364.0,52636624.0,53238060.0,59290365.0,55305674.0,56319170.0,57403536.0,58573043.0,59446882.0,60482575.0,61528639.0,62630758.0,63998940.0,65077862.0,65762079.0,66853297.0,67817422.0,68657667.0,69698903.0,70706708.0,71714846.0,72733860.0,73832553.0,74892690.0,75874320.0,77042115.0,78383402.0,79106706.0,80293663.0,81166946.0,82194434.0,83186507.0,84386028.0,85227695.0,86359249.0,87352244.0,88634648.0,89758094.0,91116292.0,91849393.0,92823160.0,93921808.0,94998453.0,96061651.0,97101018.0,98126270.0,99081772.0,100018751.0,101446472.0,102239991.0,103294631.0,104218349.0],"unit":"ns","throughput":[{"per_iteration":94144,"unit":"bytes"}],"typical":{"estimate":61423.34829753388,"lower_bound":61340.068931616,"upper_bound":61548.087804555566,"unit":"ns"},"mean":{"estimate":61693.307632601296,"lower_bound":61428.72541044537,"upper_bound":62070.88961596999,"unit":"ns"},"median":{"estimate":61383.88479467259,"lower_bound":61358.93137254902,"upper_bound":61403.52047715637,"unit":"ns"},"median_abs_dev":{"estimate":89.06024373136461,"lower_bound":65.32988999566557,"upper_bound":137.98457620060333,"unit":"ns"},"slope":{"estimate":61423.34829753388,"lower_bound":61340.068931616,"upper_bound":61548.087804555566,"unit":"ns"},"change":{"mean":{"estimate":-0.008442014976623113,"lower_bound":-0.013161877486508029,"upper_bound":-0.0018038549247524848,"unit":"%"},"median":{"estimate":-0.011890841924668272,"lower_bound":-0.012789305830746445,"upper_bound":-0.011041163227371587,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_126912","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_126912","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":[1078897.0,2053517.0,3079813.0,4105591.0,5133115.0,6160177.0,7183229.0,8238926.0,9298649.0,10328520.0,11359262.0,12321835.0,13406636.0,14373736.0,15403474.0,16453064.0,17455797.0,18512210.0,19543113.0,20567421.0,21583411.0,22581188.0,23633444.0,24714595.0,25674985.0,26724986.0,27747976.0,28865740.0,29794687.0,31344668.0,31969748.0,32922042.0,33977200.0,35037864.0,36002856.0,37094512.0,38143161.0,39079713.0,40415458.0,41140576.0,42148389.0,43186230.0,44345089.0,45318198.0,46458410.0,47331874.0,48342693.0,49374736.0,50461390.0,51373590.0,52370584.0,53457479.0,54435227.0,55495161.0,56528012.0,57565173.0,58611843.0,59623157.0,60707643.0,61696413.0,62660308.0,63884874.0,64908657.0,65804634.0,66833584.0,67916887.0,68887555.0,69930789.0,70949090.0,71958684.0,73015862.0,74062459.0,75097377.0,76196801.0,77354317.0,78469861.0,79528304.0,80389531.0,81460890.0,82386559.0,83392654.0,84394087.0,85424837.0,86443979.0,87996218.0,88637469.0,89724348.0,90685602.0,91725774.0,92586939.0,93590899.0,94558169.0,95611943.0,96642652.0,97757274.0,98659063.0,99776945.0,100876055.0,102069404.0,103040065.0],"unit":"ns","throughput":[{"per_iteration":126912,"unit":"bytes"}],"typical":{"estimate":64342.08993442441,"lower_bound":64316.66116199131,"upper_bound":64370.03443226216,"unit":"ns"},"mean":{"estimate":64359.091194223685,"lower_bound":64306.26557351205,"upper_bound":64437.286983683014,"unit":"ns"},"median":{"estimate":64289.64475945017,"lower_bound":64272.15382922535,"upper_bound":64316.216404291976,"unit":"ns"},"median_abs_dev":{"estimate":103.49234391671814,"lower_bound":66.30569542209928,"upper_bound":143.5106052094345,"unit":"ns"},"slope":{"estimate":64342.08993442441,"lower_bound":64316.66116199131,"upper_bound":64370.03443226216,"unit":"ns"},"change":{"mean":{"estimate":-0.016903365351103705,"lower_bound":-0.01910189311780975,"upper_bound":-0.014851465755660464,"unit":"%"},"median":{"estimate":-0.015830312315920136,"lower_bound":-0.01661217329304243,"upper_bound":-0.015174092906614423,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_192448","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_192448","iteration_count":[14,28,42,56,70,84,98,112,126,140,154,168,182,196,210,224,238,252,266,280,294,308,322,336,350,364,378,392,406,420,434,448,462,476,490,504,518,532,546,560,574,588,602,616,630,644,658,672,686,700,714,728,742,756,770,784,798,812,826,840,854,868,882,896,910,924,938,952,966,980,994,1008,1022,1036,1050,1064,1078,1092,1106,1120,1134,1148,1162,1176,1190,1204,1218,1232,1246,1260,1274,1288,1302,1316,1330,1344,1358,1372,1386,1400],"measured_values":[1111099.0,2009658.0,3040339.0,4024168.0,5022499.0,6026819.0,7026638.0,8030682.0,9064337.0,10034025.0,11055329.0,12072480.0,13047853.0,14060297.0,15085229.0,16063513.0,17127562.0,18069847.0,19133795.0,20075401.0,21104211.0,22095744.0,23142013.0,24120367.0,25094674.0,26162019.0,27169532.0,28166280.0,29143841.0,30111637.0,31179938.0,32186189.0,33200095.0,34200023.0,35330444.0,36180751.0,37314196.0,38292040.0,39244366.0,40186546.0,41192571.0,42233696.0,43189903.0,44230284.0,45329205.0,46265105.0,47363713.0,48247386.0,49254022.0,50225941.0,51247388.0,52297763.0,53284992.0,54254455.0,55312814.0,56273252.0,57429218.0,58370771.0,59292771.0,60359191.0,61281587.0,62307798.0,63328187.0,64298392.0,65307133.0,66310667.0,67352172.0,68362337.0,69316411.0,70348350.0,71468185.0,72496001.0,73527243.0,74351709.0,75396848.0,76355879.0,77474722.0,78492103.0,79343520.0,80403307.0,81409977.0,82371749.0,83368304.0,84525812.0,85457355.0,86558553.0,87455355.0,88427070.0,89412791.0,90395967.0,91413320.0,92424228.0,93428857.0,94434762.0,95430000.0,96629502.0,98007877.0,98712964.0,99540793.0,100704292.0],"unit":"ns","throughput":[{"per_iteration":192448,"unit":"bytes"}],"typical":{"estimate":71825.86468238721,"lower_bound":71802.22631916453,"upper_bound":71853.79368441018,"unit":"ns"},"mean":{"estimate":71899.28345658652,"lower_bound":71808.81666929001,"upper_bound":72063.15977787595,"unit":"ns"},"median":{"estimate":71797.78562317784,"lower_bound":71783.01573849878,"upper_bound":71819.45848339336,"unit":"ns"},"median_abs_dev":{"estimate":69.86103468319727,"lower_bound":49.18271045035588,"upper_bound":92.09247075239038,"unit":"ns"},"slope":{"estimate":71825.86468238721,"lower_bound":71802.22631916453,"upper_bound":71853.79368441018,"unit":"ns"},"change":{"mean":{"estimate":-0.015044982927020722,"lower_bound":-0.018155992929487847,"upper_bound":-0.012064632411604898,"unit":"%"},"median":{"estimate":-0.015288520014586804,"lower_bound":-0.01576828434099742,"upper_bound":-0.014862137808332232,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"vm_initialization","benchmarks":["vm_initialization/vm_initialization_with_tx_size_928","vm_initialization/vm_initialization_with_tx_size_16800","vm_initialization/vm_initialization_with_tx_size_65952","vm_initialization/vm_initialization_with_tx_size_1440","vm_initialization/vm_initialization_with_tx_size_8608","vm_initialization/vm_initialization_with_tx_size_2464","vm_initialization/vm_initialization_with_tx_size_33184","vm_initialization/vm_initialization_with_tx_size_4512","vm_initialization/vm_initialization_with_tx_size_61888","vm_initialization/vm_initialization_with_tx_size_62400","vm_initialization/vm_initialization_with_tx_size_63424","vm_initialization/vm_initialization_with_tx_size_65472","vm_initialization/vm_initialization_with_tx_size_69568","vm_initialization/vm_initialization_with_tx_size_77760","vm_initialization/vm_initialization_with_tx_size_94144","vm_initialization/vm_initialization_with_tx_size_126912","vm_initialization/vm_initialization_with_tx_size_192448"],"report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization"} diff --git a/bin/fuel-core/chainspec/local-testnet/chain_config.json b/bin/fuel-core/chainspec/local-testnet/chain_config.json index 8d49c4e96c8..e6325f21e1b 100644 --- a/bin/fuel-core/chainspec/local-testnet/chain_config.json +++ b/bin/fuel-core/chainspec/local-testnet/chain_config.json @@ -45,23 +45,23 @@ "addi": 2, "and": 2, "andi": 2, - "bal": 29, + "bal": 274, "bhei": 2, "bhsh": 2, - "burn": 19976, + "burn": 7566, "cb": 2, "cfsi": 2, "div": 2, "divi": 2, - "eck1": 1907, - "ecr1": 26135, + "eck1": 1489, + "ecr1": 20513, "eq": 2, "exp": 2, "expi": 2, - "flag": 2, + "flag": 1, "gm": 2, "gt": 2, - "gtf": 13, + "gtf": 3, "ji": 2, "jmp": 2, "jne": 2, @@ -74,219 +74,219 @@ "jnef": 2, "jneb": 2, "lb": 2, - "log": 102, + "log": 80, "lt": 2, "lw": 2, - "mint": 18042, + "mint": 6566, "mlog": 2, "mod": 2, "modi": 2, "move": 2, - "movi": 2, - "mroo": 4, + "movi": 1, + "mroo": 3, "mul": 2, "muli": 2, "mldv": 3, "noop": 1, "not": 2, - "or": 2, + "or": 1, "ori": 2, - "poph": 3, - "popl": 3, - "pshh": 5, - "pshl": 5, - "ret_contract": 53, - "rvrt_contract": 52, + "poph": 2, + "popl": 2, + "pshh": 3073, + "pshl": 3016, + "ret_contract": 43, + "rvrt_contract": 39, "sb": 2, "sll": 2, "slli": 2, "srl": 2, "srli": 2, - "srw": 177, + "srw": 237, "sub": 2, "subi": 2, "sw": 2, - "sww": 17302, - "time": 35, - "tr": 27852, - "tro": 19718, + "sww": 5708, + "time": 106, + "tr": 9253, + "tro": 7199, "wdcm": 2, "wqcm": 2, - "wdop": 3, + "wdop": 2, "wqop": 3, "wdml": 3, "wqml": 3, - "wddv": 4, - "wqdv": 5, - "wdmd": 8, - "wqmd": 12, - "wdam": 7, - "wqam": 8, - "wdmm": 8, - "wqmm": 8, + "wddv": 3, + "wqdv": 4, + "wdmd": 6, + "wqmd": 9, + "wdam": 6, + "wqam": 6, + "wdmm": 6, + "wqmm": 6, "xor": 2, "xori": 2, "aloc": { "LightOperation": { "base": 2, - "units_per_gas": 15 + "units_per_gas": 35 } }, "bsiz": { "LightOperation": { - "base": 17, - "units_per_gas": 790 + "base": 25, + "units_per_gas": 564 } }, "bldd": { "LightOperation": { - "base": 15, - "units_per_gas": 272 + "base": 33, + "units_per_gas": 130 } }, "cfe": { "LightOperation": { "base": 10, - "units_per_gas": 1818181 + "units_per_gas": 62 } }, "cfei": { "LightOperation": { - "base": 2, - "units_per_gas": 1000000 + "base": 10, + "units_per_gas": 66 } }, "call": { "LightOperation": { - "base": 13513, - "units_per_gas": 7 + "base": 6934, + "units_per_gas": 14 } }, "ccp": { "LightOperation": { - "base": 34, - "units_per_gas": 39 + "base": 21, + "units_per_gas": 155 } }, "croo": { "LightOperation": { - "base": 91, - "units_per_gas": 3 + "base": 69, + "units_per_gas": 4 } }, "csiz": { "LightOperation": { - "base": 31, - "units_per_gas": 438 + "base": 25, + "units_per_gas": 580 } }, "ed19": { "LightOperation": { - "base": 3000, - "units_per_gas": 214 + "base": 3232, + "units_per_gas": 7 } }, "k256": { "LightOperation": { - "base": 27, - "units_per_gas": 5 + "base": 21, + "units_per_gas": 6 } }, "ldc": { "LightOperation": { - "base": 43, - "units_per_gas": 102 + "base": 84, + "units_per_gas": 113 } }, "logd": { "LightOperation": { - "base": 363, - "units_per_gas": 4 + "base": 278, + "units_per_gas": 5 } }, "mcl": { "LightOperation": { "base": 2, - "units_per_gas": 1041 + "units_per_gas": 1282 } }, "mcli": { "LightOperation": { "base": 2, - "units_per_gas": 1025 + "units_per_gas": 1250 } }, "mcp": { "LightOperation": { - "base": 4, - "units_per_gas": 325 + "base": 3, + "units_per_gas": 385 } }, "mcpi": { "LightOperation": { - "base": 8, - "units_per_gas": 511 + "base": 7, + "units_per_gas": 585 } }, "meq": { "LightOperation": { - "base": 3, - "units_per_gas": 940 + "base": 2, + "units_per_gas": 1234 } }, "retd_contract": { "LightOperation": { - "base": 305, - "units_per_gas": 4 + "base": 227, + "units_per_gas": 5 } }, "s256": { "LightOperation": { - "base": 31, - "units_per_gas": 4 + "base": 25, + "units_per_gas": 5 } }, "scwq": { "HeavyOperation": { - "base": 16346, - "gas_per_unit": 17163 + "base": 5666, + "gas_per_unit": 6628 } }, "smo": { "LightOperation": { - "base": 40860, - "units_per_gas": 2 + "base": 14635, + "units_per_gas": 3 } }, "srwq": { "HeavyOperation": { - "base": 187, - "gas_per_unit": 179 + "base": 245, + "gas_per_unit": 243 } }, "swwq": { "HeavyOperation": { - "base": 17046, - "gas_per_unit": 16232 + "base": 5661, + "gas_per_unit": 5776 } }, "contract_root": { "LightOperation": { - "base": 31, - "units_per_gas": 2 + "base": 24, + "units_per_gas": 3 } }, "state_root": { "HeavyOperation": { - "base": 236, - "gas_per_unit": 122 + "base": 189, + "gas_per_unit": 96 } }, "new_storage_per_byte": 63, "vm_initialization": { "LightOperation": { - "base": 3957, - "units_per_gas": 48 + "base": 3127, + "units_per_gas": 61 } } }