diff --git a/Cargo.lock b/Cargo.lock
index c2e4da817f04..6b99ec576aa4 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3319,7 +3319,9 @@ dependencies = [
"polkadot-primitives",
"polkadot-runtime-common",
"smallvec",
+ "sp-core",
"sp-runtime",
+ "sp-weights",
]
[[package]]
@@ -6992,7 +6994,9 @@ dependencies = [
"polkadot-primitives",
"polkadot-runtime-common",
"smallvec",
+ "sp-core",
"sp-runtime",
+ "sp-weights",
]
[[package]]
@@ -8192,7 +8196,9 @@ dependencies = [
"polkadot-primitives",
"polkadot-runtime-common",
"smallvec",
+ "sp-core",
"sp-runtime",
+ "sp-weights",
]
[[package]]
@@ -11112,7 +11118,9 @@ dependencies = [
"polkadot-primitives",
"polkadot-runtime-common",
"smallvec",
+ "sp-core",
"sp-runtime",
+ "sp-weights",
]
[[package]]
@@ -12351,7 +12359,9 @@ dependencies = [
"polkadot-primitives",
"polkadot-runtime-common",
"smallvec",
+ "sp-core",
"sp-runtime",
+ "sp-weights",
]
[[package]]
diff --git a/runtime/kusama/constants/Cargo.toml b/runtime/kusama/constants/Cargo.toml
index 095ea84d94b2..38ce4475056c 100644
--- a/runtime/kusama/constants/Cargo.toml
+++ b/runtime/kusama/constants/Cargo.toml
@@ -11,9 +11,13 @@ frame-support = { git = "https://github.com/paritytech/substrate", default-featu
primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false }
runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.33" }
+sp-weights = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.33" }
+sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.33" }
[features]
default = ["std"]
std = [
- "sp-runtime/std"
+ "sp-core/std",
+ "sp-runtime/std",
+ "sp-weights/std"
]
diff --git a/runtime/kusama/constants/src/weights/block_weights.rs b/runtime/kusama/constants/src/weights/block_weights.rs
index a96b7bfc11de..546c6426d826 100644
--- a/runtime/kusama/constants/src/weights/block_weights.rs
+++ b/runtime/kusama/constants/src/weights/block_weights.rs
@@ -1,28 +1,26 @@
-// This file is part of Substrate.
+// Copyright 2017-2022 Parity Technologies (UK) Ltd.
+// This file is part of Polkadot.
-// Copyright (C) 2022 Parity Technologies (UK) Ltd.
-// SPDX-License-Identifier: Apache-2.0
+// Polkadot is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
+// Polkadot is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+// You should have received a copy of the GNU General Public License
+// along with Polkadot. If not, see .
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-08-19 (Y/M/D)
-//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-16 (Y/M/D)
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//!
//! SHORT-NAME: `block`, LONG-NAME: `BlockExecution`, RUNTIME: `Development`
//! WARMUPS: `10`, REPEAT: `100`
//! WEIGHT-PATH: `runtime/kusama/constants/src/weights/`
-//! WEIGHT-METRIC: `Average`, WEIGHT-MUL: `1`, WEIGHT-ADD: `0`
+//! WEIGHT-METRIC: `Average`, WEIGHT-MUL: `1.0`, WEIGHT-ADD: `0`
// Executed Command:
// ./target/production/polkadot
@@ -34,32 +32,31 @@
// --weight-path=runtime/kusama/constants/src/weights/
// --warmup=10
// --repeat=100
+// --header=./file_header.txt
-use frame_support::{
- parameter_types,
- weights::{constants::WEIGHT_PER_NANOS, Weight},
-};
+use sp_core::parameter_types;
+use sp_weights::{constants::WEIGHT_PER_NANOS, Weight};
parameter_types! {
/// Time to execute an empty block.
- /// Calculated by multiplying the *Average* with `1` and adding `0`.
+ /// Calculated by multiplying the *Average* with `1.0` and adding `0`.
///
/// Stats nanoseconds:
- /// Min, Max: 6_094_385, 6_351_993
- /// Average: 6_192_341
- /// Median: 6_193_838
- /// Std-Dev: 63893.84
+ /// Min, Max: 6_665_440, 6_986_371
+ /// Average: 6_731_894
+ /// Median: 6_723_700
+ /// Std-Dev: 49280.83
///
/// Percentiles nanoseconds:
- /// 99th: 6_332_047
- /// 95th: 6_308_225
- /// 75th: 6_236_204
- pub const BlockExecutionWeight: Weight = WEIGHT_PER_NANOS.saturating_mul(6_192_341);
+ /// 99th: 6_876_251
+ /// 95th: 6_811_463
+ /// 75th: 6_751_221
+ pub const BlockExecutionWeight: Weight = WEIGHT_PER_NANOS.saturating_mul(6_731_894);
}
#[cfg(test)]
mod test_weights {
- use frame_support::weights::constants;
+ use sp_weights::constants;
/// Checks that the weight exists and is sane.
// NOTE: If this test fails but you are sure that the generated values are fine,
diff --git a/runtime/kusama/constants/src/weights/extrinsic_weights.rs b/runtime/kusama/constants/src/weights/extrinsic_weights.rs
index dfa623b6c72a..0de0c399f783 100644
--- a/runtime/kusama/constants/src/weights/extrinsic_weights.rs
+++ b/runtime/kusama/constants/src/weights/extrinsic_weights.rs
@@ -1,27 +1,26 @@
-// This file is part of Substrate.
+// Copyright 2017-2022 Parity Technologies (UK) Ltd.
+// This file is part of Polkadot.
-// Copyright (C) 2022 Parity Technologies (UK) Ltd.
-// SPDX-License-Identifier: Apache-2.0
+// Polkadot is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
+// Polkadot is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+// You should have received a copy of the GNU General Public License
+// along with Polkadot. If not, see .
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-04-20 (Y/M/D)
+//! DATE: 2022-11-16 (Y/M/D)
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//!
//! SHORT-NAME: `extrinsic`, LONG-NAME: `ExtrinsicBase`, RUNTIME: `Development`
//! WARMUPS: `10`, REPEAT: `100`
//! WEIGHT-PATH: `runtime/kusama/constants/src/weights/`
-//! WEIGHT-METRIC: `Average`, WEIGHT-MUL: `1`, WEIGHT-ADD: `0`
+//! WEIGHT-METRIC: `Average`, WEIGHT-MUL: `1.0`, WEIGHT-ADD: `0`
// Executed Command:
// ./target/production/polkadot
@@ -33,32 +32,31 @@
// --weight-path=runtime/kusama/constants/src/weights/
// --warmup=10
// --repeat=100
+// --header=./file_header.txt
-use frame_support::{
- parameter_types,
- weights::{constants::WEIGHT_PER_NANOS, Weight},
-};
+use sp_core::parameter_types;
+use sp_weights::{constants::WEIGHT_PER_NANOS, Weight};
parameter_types! {
/// Time to execute a NO-OP extrinsic, for example `System::remark`.
- /// Calculated by multiplying the *Average* with `1` and adding `0`.
+ /// Calculated by multiplying the *Average* with `1.0` and adding `0`.
///
- /// Stats [NS]:
- /// Min, Max: 85_946, 88_408
- /// Average: 86_309
- /// Median: 86_213
- /// Std-Dev: 345.03
+ /// Stats nanoseconds:
+ /// Min, Max: 94_359, 96_436
+ /// Average: 94_889
+ /// Median: 94_839
+ /// Std-Dev: 369.49
///
- /// Percentiles [NS]:
- /// 99th: 87_527
- /// 95th: 86_901
- /// 75th: 86_308
- pub const ExtrinsicBaseWeight: Weight = WEIGHT_PER_NANOS.saturating_mul(86_309);
+ /// Percentiles nanoseconds:
+ /// 99th: 96_279
+ /// 95th: 95_584
+ /// 75th: 95_005
+ pub const ExtrinsicBaseWeight: Weight = WEIGHT_PER_NANOS.saturating_mul(94_889);
}
#[cfg(test)]
mod test_weights {
- use frame_support::weights::constants;
+ use sp_weights::constants;
/// Checks that the weight exists and is sane.
// NOTE: If this test fails but you are sure that the generated values are fine,
diff --git a/runtime/kusama/src/weights/frame_benchmarking_baseline.rs b/runtime/kusama/src/weights/frame_benchmarking_baseline.rs
index 174c8859a41e..adf6d21c8ad5 100644
--- a/runtime/kusama/src/weights/frame_benchmarking_baseline.rs
+++ b/runtime/kusama/src/weights/frame_benchmarking_baseline.rs
@@ -16,8 +16,8 @@
//! Autogenerated weights for `frame_benchmarking::baseline`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-15, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
@@ -38,7 +38,7 @@
#![allow(unused_parens)]
#![allow(unused_imports)]
-use frame_support::{traits::Get, weights::{Weight}};
+use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData;
/// Weight functions for `frame_benchmarking::baseline`.
@@ -46,46 +46,54 @@ pub struct WeightInfo(PhantomData);
impl frame_benchmarking::baseline::WeightInfo for WeightInfo {
/// The range of component `i` is `[0, 1000000]`.
fn addition(_i: u32, ) -> Weight {
- Weight::from_ref_time(114_000 as u64)
+ // Minimum execution time: 102 nanoseconds.
+ Weight::from_ref_time(153_256 as u64)
}
/// The range of component `i` is `[0, 1000000]`.
fn subtraction(_i: u32, ) -> Weight {
- Weight::from_ref_time(125_000 as u64)
+ // Minimum execution time: 104 nanoseconds.
+ Weight::from_ref_time(159_150 as u64)
}
/// The range of component `i` is `[0, 1000000]`.
fn multiplication(_i: u32, ) -> Weight {
- Weight::from_ref_time(116_000 as u64)
+ // Minimum execution time: 106 nanoseconds.
+ Weight::from_ref_time(155_325 as u64)
}
/// The range of component `i` is `[0, 1000000]`.
fn division(_i: u32, ) -> Weight {
- Weight::from_ref_time(115_000 as u64)
+ // Minimum execution time: 102 nanoseconds.
+ Weight::from_ref_time(148_483 as u64)
}
/// The range of component `i` is `[0, 100]`.
fn hashing(i: u32, ) -> Weight {
- Weight::from_ref_time(19_441_790_000 as u64)
- // Standard Error: 126_000
- .saturating_add(Weight::from_ref_time(115_000 as u64).saturating_mul(i as u64))
+ // Minimum execution time: 19_966_061 nanoseconds.
+ Weight::from_ref_time(20_167_025_347 as u64)
+ // Standard Error: 298_405
+ .saturating_add(Weight::from_ref_time(1_324_681 as u64).saturating_mul(i as u64))
}
- /// The range of component `i` is `[1, 100]`.
+ /// The range of component `i` is `[0, 100]`.
fn sr25519_verification(i: u32, ) -> Weight {
- Weight::from_ref_time(0 as u64)
- // Standard Error: 35_000
- .saturating_add(Weight::from_ref_time(47_909_000 as u64).saturating_mul(i as u64))
+ // Minimum execution time: 136 nanoseconds.
+ Weight::from_ref_time(174_000 as u64)
+ // Standard Error: 17_607
+ .saturating_add(Weight::from_ref_time(47_209_113 as u64).saturating_mul(i as u64))
}
// Storage: Skipped Metadata (r:0 w:0)
/// The range of component `i` is `[0, 1000]`.
fn storage_read(i: u32, ) -> Weight {
- Weight::from_ref_time(0 as u64)
- // Standard Error: 7_000
- .saturating_add(Weight::from_ref_time(1_998_000 as u64).saturating_mul(i as u64))
+ // Minimum execution time: 145 nanoseconds.
+ Weight::from_ref_time(154_000 as u64)
+ // Standard Error: 4_008
+ .saturating_add(Weight::from_ref_time(1_977_799 as u64).saturating_mul(i as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(i as u64)))
}
// Storage: Skipped Metadata (r:0 w:0)
/// The range of component `i` is `[0, 1000]`.
fn storage_write(i: u32, ) -> Weight {
- Weight::from_ref_time(0 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(338_000 as u64).saturating_mul(i as u64))
+ // Minimum execution time: 109 nanoseconds.
+ Weight::from_ref_time(128_000 as u64)
+ // Standard Error: 804
+ .saturating_add(Weight::from_ref_time(325_284 as u64).saturating_mul(i as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(i as u64)))
}
}
diff --git a/runtime/kusama/src/weights/frame_election_provider_support.rs b/runtime/kusama/src/weights/frame_election_provider_support.rs
index 3b1691b5b770..255bda05e015 100644
--- a/runtime/kusama/src/weights/frame_election_provider_support.rs
+++ b/runtime/kusama/src/weights/frame_election_provider_support.rs
@@ -16,8 +16,8 @@
//! Autogenerated weights for `frame_election_provider_support`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-15, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
@@ -38,7 +38,7 @@
#![allow(unused_parens)]
#![allow(unused_imports)]
-use frame_support::{traits::Get, weights::{Weight}};
+use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData;
/// Weight functions for `frame_election_provider_support`.
@@ -48,20 +48,22 @@ impl frame_election_provider_support::WeightInfo for We
/// The range of component `t` is `[500, 1000]`.
/// The range of component `d` is `[5, 16]`.
fn phragmen(v: u32, _t: u32, d: u32, ) -> Weight {
- Weight::from_ref_time(0 as u64)
- // Standard Error: 56_000
- .saturating_add(Weight::from_ref_time(13_944_000 as u64).saturating_mul(v as u64))
- // Standard Error: 4_876_000
- .saturating_add(Weight::from_ref_time(2_223_649_000 as u64).saturating_mul(d as u64))
+ // Minimum execution time: 5_474_633 nanoseconds.
+ Weight::from_ref_time(5_525_752_000 as u64)
+ // Standard Error: 135_558
+ .saturating_add(Weight::from_ref_time(5_545_241 as u64).saturating_mul(v as u64))
+ // Standard Error: 13_859_031
+ .saturating_add(Weight::from_ref_time(1_538_596_617 as u64).saturating_mul(d as u64))
}
/// The range of component `v` is `[1000, 2000]`.
/// The range of component `t` is `[500, 1000]`.
/// The range of component `d` is `[5, 16]`.
fn phragmms(v: u32, _t: u32, d: u32, ) -> Weight {
- Weight::from_ref_time(0 as u64)
- // Standard Error: 79_000
- .saturating_add(Weight::from_ref_time(14_480_000 as u64).saturating_mul(v as u64))
- // Standard Error: 6_844_000
- .saturating_add(Weight::from_ref_time(2_525_332_000 as u64).saturating_mul(d as u64))
+ // Minimum execution time: 4_309_239 nanoseconds.
+ Weight::from_ref_time(4_353_424_000 as u64)
+ // Standard Error: 145_409
+ .saturating_add(Weight::from_ref_time(5_482_164 as u64).saturating_mul(v as u64))
+ // Standard Error: 14_866_111
+ .saturating_add(Weight::from_ref_time(1_765_233_611 as u64).saturating_mul(d as u64))
}
}
diff --git a/runtime/kusama/src/weights/frame_system.rs b/runtime/kusama/src/weights/frame_system.rs
index 022c09e7752b..dd8aeed0d219 100644
--- a/runtime/kusama/src/weights/frame_system.rs
+++ b/runtime/kusama/src/weights/frame_system.rs
@@ -16,8 +16,8 @@
//! Autogenerated weights for `frame_system`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-15, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
@@ -38,7 +38,7 @@
#![allow(unused_parens)]
#![allow(unused_imports)]
-use frame_support::{traits::Get, weights::{Weight}};
+use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData;
/// Weight functions for `frame_system`.
@@ -46,45 +46,51 @@ pub struct WeightInfo(PhantomData);
impl frame_system::WeightInfo for WeightInfo {
/// The range of component `b` is `[0, 3932160]`.
fn remark(b: u32, ) -> Weight {
- Weight::from_ref_time(882_000 as u64)
+ // Minimum execution time: 3_661 nanoseconds.
+ Weight::from_ref_time(3_719_000 as u64)
// Standard Error: 0
- .saturating_add(Weight::from_ref_time(1_000 as u64).saturating_mul(b as u64))
+ .saturating_add(Weight::from_ref_time(411 as u64).saturating_mul(b as u64))
}
/// The range of component `b` is `[0, 3932160]`.
fn remark_with_event(b: u32, ) -> Weight {
- Weight::from_ref_time(0 as u64)
+ // Minimum execution time: 12_500 nanoseconds.
+ Weight::from_ref_time(12_792_000 as u64)
// Standard Error: 0
- .saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(b as u64))
+ .saturating_add(Weight::from_ref_time(1_770 as u64).saturating_mul(b as u64))
}
// Storage: System Digest (r:1 w:1)
// Storage: unknown [0x3a686561707061676573] (r:0 w:1)
fn set_heap_pages() -> Weight {
- Weight::from_ref_time(7_344_000 as u64)
+ // Minimum execution time: 8_514 nanoseconds.
+ Weight::from_ref_time(8_736_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Skipped Metadata (r:0 w:0)
- /// The range of component `i` is `[1, 1000]`.
+ /// The range of component `i` is `[0, 1000]`.
fn set_storage(i: u32, ) -> Weight {
- Weight::from_ref_time(0 as u64)
- // Standard Error: 2_000
- .saturating_add(Weight::from_ref_time(610_000 as u64).saturating_mul(i as u64))
+ // Minimum execution time: 3_377 nanoseconds.
+ Weight::from_ref_time(3_436_000 as u64)
+ // Standard Error: 1_938
+ .saturating_add(Weight::from_ref_time(603_404 as u64).saturating_mul(i as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(i as u64)))
}
// Storage: Skipped Metadata (r:0 w:0)
- /// The range of component `i` is `[1, 1000]`.
+ /// The range of component `i` is `[0, 1000]`.
fn kill_storage(i: u32, ) -> Weight {
- Weight::from_ref_time(0 as u64)
- // Standard Error: 1_000
- .saturating_add(Weight::from_ref_time(454_000 as u64).saturating_mul(i as u64))
+ // Minimum execution time: 3_660 nanoseconds.
+ Weight::from_ref_time(3_741_000 as u64)
+ // Standard Error: 927
+ .saturating_add(Weight::from_ref_time(434_412 as u64).saturating_mul(i as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(i as u64)))
}
// Storage: Skipped Metadata (r:0 w:0)
- /// The range of component `p` is `[1, 1000]`.
+ /// The range of component `p` is `[0, 1000]`.
fn kill_prefix(p: u32, ) -> Weight {
- Weight::from_ref_time(0 as u64)
- // Standard Error: 1_000
- .saturating_add(Weight::from_ref_time(978_000 as u64).saturating_mul(p as u64))
+ // Minimum execution time: 4_929 nanoseconds.
+ Weight::from_ref_time(5_084_000 as u64)
+ // Standard Error: 1_255
+ .saturating_add(Weight::from_ref_time(978_082 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(p as u64)))
}
}
diff --git a/runtime/kusama/src/weights/pallet_bags_list.rs b/runtime/kusama/src/weights/pallet_bags_list.rs
index e753f72a62ea..de0700d07983 100644
--- a/runtime/kusama/src/weights/pallet_bags_list.rs
+++ b/runtime/kusama/src/weights/pallet_bags_list.rs
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_bags_list`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-15, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
@@ -38,7 +38,7 @@
#![allow(unused_parens)]
#![allow(unused_imports)]
-use frame_support::{traits::Get, weights::{Weight}};
+use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData;
/// Weight functions for `pallet_bags_list`.
@@ -49,7 +49,8 @@ impl pallet_bags_list::WeightInfo for WeightInfo {
// Storage: VoterList ListNodes (r:4 w:4)
// Storage: VoterList ListBags (r:1 w:1)
fn rebag_non_terminal() -> Weight {
- Weight::from_ref_time(61_057_000 as u64)
+ // Minimum execution time: 62_727 nanoseconds.
+ Weight::from_ref_time(64_215_000 as u64)
.saturating_add(T::DbWeight::get().reads(7 as u64))
.saturating_add(T::DbWeight::get().writes(5 as u64))
}
@@ -58,7 +59,8 @@ impl pallet_bags_list::WeightInfo for WeightInfo {
// Storage: VoterList ListNodes (r:3 w:3)
// Storage: VoterList ListBags (r:2 w:2)
fn rebag_terminal() -> Weight {
- Weight::from_ref_time(59_674_000 as u64)
+ // Minimum execution time: 61_907 nanoseconds.
+ Weight::from_ref_time(64_148_000 as u64)
.saturating_add(T::DbWeight::get().reads(7 as u64))
.saturating_add(T::DbWeight::get().writes(5 as u64))
}
@@ -68,7 +70,8 @@ impl pallet_bags_list::WeightInfo for WeightInfo {
// Storage: VoterList CounterForListNodes (r:1 w:1)
// Storage: VoterList ListBags (r:1 w:1)
fn put_in_front_of() -> Weight {
- Weight::from_ref_time(60_844_000 as u64)
+ // Minimum execution time: 61_775 nanoseconds.
+ Weight::from_ref_time(62_422_000 as u64)
.saturating_add(T::DbWeight::get().reads(10 as u64))
.saturating_add(T::DbWeight::get().writes(6 as u64))
}
diff --git a/runtime/kusama/src/weights/pallet_balances.rs b/runtime/kusama/src/weights/pallet_balances.rs
index adfee6ac8b23..1787c8d3822d 100644
--- a/runtime/kusama/src/weights/pallet_balances.rs
+++ b/runtime/kusama/src/weights/pallet_balances.rs
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_balances`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-15, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
@@ -38,7 +38,7 @@
#![allow(unused_parens)]
#![allow(unused_imports)]
-use frame_support::{traits::Get, weights::{Weight}};
+use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData;
/// Weight functions for `pallet_balances`.
@@ -46,43 +46,50 @@ pub struct WeightInfo(PhantomData);
impl pallet_balances::WeightInfo for WeightInfo {
// Storage: System Account (r:1 w:1)
fn transfer() -> Weight {
- Weight::from_ref_time(39_458_000 as u64)
+ // Minimum execution time: 40_902 nanoseconds.
+ Weight::from_ref_time(41_638_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: System Account (r:1 w:1)
fn transfer_keep_alive() -> Weight {
- Weight::from_ref_time(28_773_000 as u64)
+ // Minimum execution time: 30_093 nanoseconds.
+ Weight::from_ref_time(30_732_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: System Account (r:1 w:1)
fn set_balance_creating() -> Weight {
- Weight::from_ref_time(22_414_000 as u64)
+ // Minimum execution time: 23_901 nanoseconds.
+ Weight::from_ref_time(24_238_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: System Account (r:1 w:1)
fn set_balance_killing() -> Weight {
- Weight::from_ref_time(25_136_000 as u64)
+ // Minimum execution time: 26_402 nanoseconds.
+ Weight::from_ref_time(27_026_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: System Account (r:2 w:2)
fn force_transfer() -> Weight {
- Weight::from_ref_time(39_681_000 as u64)
+ // Minimum execution time: 40_328 nanoseconds.
+ Weight::from_ref_time(41_242_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: System Account (r:1 w:1)
fn transfer_all() -> Weight {
- Weight::from_ref_time(33_651_000 as u64)
+ // Minimum execution time: 35_401 nanoseconds.
+ Weight::from_ref_time(36_122_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: System Account (r:1 w:1)
fn force_unreserve() -> Weight {
- Weight::from_ref_time(19_448_000 as u64)
+ // Minimum execution time: 20_178 nanoseconds.
+ Weight::from_ref_time(20_435_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
diff --git a/runtime/kusama/src/weights/pallet_bounties.rs b/runtime/kusama/src/weights/pallet_bounties.rs
index e4c633dc6114..cf34a99e51a3 100644
--- a/runtime/kusama/src/weights/pallet_bounties.rs
+++ b/runtime/kusama/src/weights/pallet_bounties.rs
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_bounties`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-15, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
@@ -38,7 +38,7 @@
#![allow(unused_parens)]
#![allow(unused_imports)]
-use frame_support::{traits::Get, weights::{Weight}};
+use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData;
/// Weight functions for `pallet_bounties`.
@@ -50,43 +50,49 @@ impl pallet_bounties::WeightInfo for WeightInfo {
// Storage: Bounties Bounties (r:0 w:1)
/// The range of component `d` is `[0, 16384]`.
fn propose_bounty(d: u32, ) -> Weight {
- Weight::from_ref_time(28_877_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(1_000 as u64).saturating_mul(d as u64))
+ // Minimum execution time: 29_047 nanoseconds.
+ Weight::from_ref_time(30_003_353 as u64)
+ // Standard Error: 5
+ .saturating_add(Weight::from_ref_time(809 as u64).saturating_mul(d as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(4 as u64))
}
// Storage: Bounties Bounties (r:1 w:1)
// Storage: Bounties BountyApprovals (r:1 w:1)
fn approve_bounty() -> Weight {
- Weight::from_ref_time(11_971_000 as u64)
+ // Minimum execution time: 11_505 nanoseconds.
+ Weight::from_ref_time(11_831_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Bounties Bounties (r:1 w:1)
fn propose_curator() -> Weight {
- Weight::from_ref_time(11_213_000 as u64)
+ // Minimum execution time: 11_422 nanoseconds.
+ Weight::from_ref_time(11_716_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Bounties Bounties (r:1 w:1)
// Storage: System Account (r:1 w:1)
fn unassign_curator() -> Weight {
- Weight::from_ref_time(39_351_000 as u64)
+ // Minimum execution time: 40_028 nanoseconds.
+ Weight::from_ref_time(40_648_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Bounties Bounties (r:1 w:1)
// Storage: System Account (r:1 w:1)
fn accept_curator() -> Weight {
- Weight::from_ref_time(27_149_000 as u64)
+ // Minimum execution time: 27_639 nanoseconds.
+ Weight::from_ref_time(28_480_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Bounties Bounties (r:1 w:1)
// Storage: ChildBounties ParentChildBounties (r:1 w:0)
fn award_bounty() -> Weight {
- Weight::from_ref_time(23_870_000 as u64)
+ // Minimum execution time: 24_826 nanoseconds.
+ Weight::from_ref_time(25_281_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
@@ -95,7 +101,8 @@ impl pallet_bounties::WeightInfo for WeightInfo {
// Storage: ChildBounties ChildrenCuratorFees (r:1 w:1)
// Storage: Bounties BountyDescriptions (r:0 w:1)
fn claim_bounty() -> Weight {
- Weight::from_ref_time(67_658_000 as u64)
+ // Minimum execution time: 67_233 nanoseconds.
+ Weight::from_ref_time(68_242_000 as u64)
.saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(6 as u64))
}
@@ -104,7 +111,8 @@ impl pallet_bounties::WeightInfo for WeightInfo {
// Storage: System Account (r:1 w:1)
// Storage: Bounties BountyDescriptions (r:0 w:1)
fn close_bounty_proposed() -> Weight {
- Weight::from_ref_time(41_915_000 as u64)
+ // Minimum execution time: 43_779 nanoseconds.
+ Weight::from_ref_time(44_285_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
@@ -113,24 +121,27 @@ impl pallet_bounties::WeightInfo for WeightInfo {
// Storage: System Account (r:2 w:2)
// Storage: Bounties BountyDescriptions (r:0 w:1)
fn close_bounty_active() -> Weight {
- Weight::from_ref_time(51_843_000 as u64)
+ // Minimum execution time: 52_893 nanoseconds.
+ Weight::from_ref_time(53_583_000 as u64)
.saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().writes(4 as u64))
}
// Storage: Bounties Bounties (r:1 w:1)
fn extend_bounty_expiry() -> Weight {
- Weight::from_ref_time(19_980_000 as u64)
+ // Minimum execution time: 21_030 nanoseconds.
+ Weight::from_ref_time(21_691_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Bounties BountyApprovals (r:1 w:1)
- // Storage: Bounties Bounties (r:1 w:1)
- // Storage: System Account (r:2 w:2)
- /// The range of component `b` is `[1, 100]`.
+ // Storage: Bounties Bounties (r:2 w:2)
+ // Storage: System Account (r:4 w:4)
+ /// The range of component `b` is `[0, 100]`.
fn spend_funds(b: u32, ) -> Weight {
- Weight::from_ref_time(9_229_000 as u64)
- // Standard Error: 23_000
- .saturating_add(Weight::from_ref_time(25_764_000 as u64).saturating_mul(b as u64))
+ // Minimum execution time: 7_438 nanoseconds.
+ Weight::from_ref_time(18_396_001 as u64)
+ // Standard Error: 26_725
+ .saturating_add(Weight::from_ref_time(24_975_270 as u64).saturating_mul(b as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().reads((3 as u64).saturating_mul(b as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
diff --git a/runtime/kusama/src/weights/pallet_child_bounties.rs b/runtime/kusama/src/weights/pallet_child_bounties.rs
index 861d7bf92ebf..ae6ecf0808b4 100644
--- a/runtime/kusama/src/weights/pallet_child_bounties.rs
+++ b/runtime/kusama/src/weights/pallet_child_bounties.rs
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_child_bounties`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-15, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
@@ -38,7 +38,7 @@
#![allow(unused_parens)]
#![allow(unused_imports)]
-use frame_support::{traits::Get, weights::{Weight}};
+use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData;
/// Weight functions for `pallet_child_bounties`.
@@ -52,9 +52,10 @@ impl pallet_child_bounties::WeightInfo for WeightInfo Weight {
- Weight::from_ref_time(51_114_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(1_000 as u64).saturating_mul(d as u64))
+ // Minimum execution time: 51_699 nanoseconds.
+ Weight::from_ref_time(53_278_250 as u64)
+ // Standard Error: 11
+ .saturating_add(Weight::from_ref_time(814 as u64).saturating_mul(d as u64))
.saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(6 as u64))
}
@@ -62,7 +63,8 @@ impl pallet_child_bounties::WeightInfo for WeightInfo Weight {
- Weight::from_ref_time(18_300_000 as u64)
+ // Minimum execution time: 19_296 nanoseconds.
+ Weight::from_ref_time(19_776_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -70,7 +72,8 @@ impl pallet_child_bounties::WeightInfo for WeightInfo Weight {
- Weight::from_ref_time(32_067_000 as u64)
+ // Minimum execution time: 34_816 nanoseconds.
+ Weight::from_ref_time(35_312_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -78,14 +81,16 @@ impl pallet_child_bounties::WeightInfo for WeightInfo Weight {
- Weight::from_ref_time(43_720_000 as u64)
+ // Minimum execution time: 46_811 nanoseconds.
+ Weight::from_ref_time(47_562_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Bounties Bounties (r:1 w:0)
// Storage: ChildBounties ChildBounties (r:1 w:1)
fn award_child_bounty() -> Weight {
- Weight::from_ref_time(27_081_000 as u64)
+ // Minimum execution time: 29_189 nanoseconds.
+ Weight::from_ref_time(29_476_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
@@ -94,7 +99,8 @@ impl pallet_child_bounties::WeightInfo for WeightInfo Weight {
- Weight::from_ref_time(65_901_000 as u64)
+ // Minimum execution time: 69_129 nanoseconds.
+ Weight::from_ref_time(70_082_000 as u64)
.saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(6 as u64))
}
@@ -105,7 +111,8 @@ impl pallet_child_bounties::WeightInfo for WeightInfo Weight {
- Weight::from_ref_time(50_101_000 as u64)
+ // Minimum execution time: 52_958 nanoseconds.
+ Weight::from_ref_time(54_430_000 as u64)
.saturating_add(T::DbWeight::get().reads(6 as u64))
.saturating_add(T::DbWeight::get().writes(6 as u64))
}
@@ -116,7 +123,8 @@ impl pallet_child_bounties::WeightInfo for WeightInfo Weight {
- Weight::from_ref_time(61_510_000 as u64)
+ // Minimum execution time: 62_510 nanoseconds.
+ Weight::from_ref_time(64_138_000 as u64)
.saturating_add(T::DbWeight::get().reads(7 as u64))
.saturating_add(T::DbWeight::get().writes(7 as u64))
}
diff --git a/runtime/kusama/src/weights/pallet_collective_council.rs b/runtime/kusama/src/weights/pallet_collective_council.rs
index 8fe7d12e04b5..5fb745f5397c 100644
--- a/runtime/kusama/src/weights/pallet_collective_council.rs
+++ b/runtime/kusama/src/weights/pallet_collective_council.rs
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_collective`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-15, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
@@ -27,6 +27,7 @@
// --chain=kusama-dev
// --steps=50
// --repeat=20
+// --pallet=pallet_collective
// --extrinsic=*
// --execution=wasm
// --wasm-execution=compiled
@@ -37,7 +38,7 @@
#![allow(unused_parens)]
#![allow(unused_imports)]
-use frame_support::{traits::Get, weights::{Weight}};
+use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData;
/// Weight functions for `pallet_collective`.
@@ -45,20 +46,21 @@ pub struct WeightInfo(PhantomData);
impl pallet_collective::WeightInfo for WeightInfo {
// Storage: Council Members (r:1 w:1)
// Storage: Council Proposals (r:1 w:0)
- // Storage: Council Voting (r:100 w:100)
// Storage: Council Prime (r:0 w:1)
- /// The range of component `m` is `[1, 100]`.
- /// The range of component `n` is `[1, 100]`.
- /// The range of component `p` is `[1, 100]`.
- /// The range of component `m` is `[1, 100]`.
- /// The range of component `n` is `[1, 100]`.
- /// The range of component `p` is `[1, 100]`.
+ // Storage: Council Voting (r:100 w:100)
+ /// The range of component `m` is `[0, 100]`.
+ /// The range of component `n` is `[0, 100]`.
+ /// The range of component `p` is `[0, 100]`.
+ /// The range of component `m` is `[0, 100]`.
+ /// The range of component `n` is `[0, 100]`.
+ /// The range of component `p` is `[0, 100]`.
fn set_members(m: u32, _n: u32, p: u32, ) -> Weight {
- Weight::from_ref_time(0 as u64)
- // Standard Error: 9_000
- .saturating_add(Weight::from_ref_time(9_709_000 as u64).saturating_mul(m as u64))
- // Standard Error: 9_000
- .saturating_add(Weight::from_ref_time(11_829_000 as u64).saturating_mul(p as u64))
+ // Minimum execution time: 16_447 nanoseconds.
+ Weight::from_ref_time(16_856_000 as u64)
+ // Standard Error: 46_757
+ .saturating_add(Weight::from_ref_time(5_281_186 as u64).saturating_mul(m as u64))
+ // Standard Error: 46_757
+ .saturating_add(Weight::from_ref_time(7_500_991 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(p as u64)))
.saturating_add(T::DbWeight::get().writes(2 as u64))
@@ -70,11 +72,12 @@ impl pallet_collective::WeightInfo for WeightInfo {
/// The range of component `b` is `[1, 1024]`.
/// The range of component `m` is `[1, 100]`.
fn execute(b: u32, m: u32, ) -> Weight {
- Weight::from_ref_time(18_472_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(b as u64))
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(13_000 as u64).saturating_mul(m as u64))
+ // Minimum execution time: 19_949 nanoseconds.
+ Weight::from_ref_time(19_368_834 as u64)
+ // Standard Error: 22
+ .saturating_add(Weight::from_ref_time(1_917 as u64).saturating_mul(b as u64))
+ // Standard Error: 229
+ .saturating_add(Weight::from_ref_time(13_967 as u64).saturating_mul(m as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
}
// Storage: Council Members (r:1 w:0)
@@ -84,11 +87,12 @@ impl pallet_collective::WeightInfo for WeightInfo {
/// The range of component `b` is `[1, 1024]`.
/// The range of component `m` is `[1, 100]`.
fn propose_execute(b: u32, m: u32, ) -> Weight {
- Weight::from_ref_time(20_282_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(b as u64))
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(21_000 as u64).saturating_mul(m as u64))
+ // Minimum execution time: 22_295 nanoseconds.
+ Weight::from_ref_time(21_517_404 as u64)
+ // Standard Error: 26
+ .saturating_add(Weight::from_ref_time(1_856 as u64).saturating_mul(b as u64))
+ // Standard Error: 271
+ .saturating_add(Weight::from_ref_time(22_820 as u64).saturating_mul(m as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
}
// Storage: Council Members (r:1 w:0)
@@ -103,13 +107,14 @@ impl pallet_collective::WeightInfo for WeightInfo {
/// The range of component `m` is `[2, 100]`.
/// The range of component `p` is `[1, 100]`.
fn propose_proposed(b: u32, m: u32, p: u32, ) -> Weight {
- Weight::from_ref_time(27_141_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(3_000 as u64).saturating_mul(b as u64))
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(22_000 as u64).saturating_mul(m as u64))
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(102_000 as u64).saturating_mul(p as u64))
+ // Minimum execution time: 27_745 nanoseconds.
+ Weight::from_ref_time(28_146_412 as u64)
+ // Standard Error: 71
+ .saturating_add(Weight::from_ref_time(3_378 as u64).saturating_mul(b as u64))
+ // Standard Error: 749
+ .saturating_add(Weight::from_ref_time(22_179 as u64).saturating_mul(m as u64))
+ // Standard Error: 739
+ .saturating_add(Weight::from_ref_time(108_349 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().writes(4 as u64))
}
@@ -118,9 +123,10 @@ impl pallet_collective::WeightInfo for WeightInfo {
/// The range of component `m` is `[5, 100]`.
/// The range of component `m` is `[5, 100]`.
fn vote(m: u32, ) -> Weight {
- Weight::from_ref_time(26_680_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(37_000 as u64).saturating_mul(m as u64))
+ // Minimum execution time: 27_772 nanoseconds.
+ Weight::from_ref_time(28_486_180 as u64)
+ // Standard Error: 376
+ .saturating_add(Weight::from_ref_time(38_162 as u64).saturating_mul(m as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
@@ -133,11 +139,12 @@ impl pallet_collective::WeightInfo for WeightInfo {
/// The range of component `m` is `[4, 100]`.
/// The range of component `p` is `[1, 100]`.
fn close_early_disapproved(m: u32, p: u32, ) -> Weight {
- Weight::from_ref_time(30_379_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(26_000 as u64).saturating_mul(m as u64))
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(85_000 as u64).saturating_mul(p as u64))
+ // Minimum execution time: 30_430 nanoseconds.
+ Weight::from_ref_time(32_906_376 as u64)
+ // Standard Error: 538
+ .saturating_add(Weight::from_ref_time(20_866 as u64).saturating_mul(m as u64))
+ // Standard Error: 525
+ .saturating_add(Weight::from_ref_time(84_112 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
@@ -152,13 +159,14 @@ impl pallet_collective::WeightInfo for WeightInfo {
/// The range of component `m` is `[4, 100]`.
/// The range of component `p` is `[1, 100]`.
fn close_early_approved(b: u32, m: u32, p: u32, ) -> Weight {
- Weight::from_ref_time(40_122_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(1_000 as u64).saturating_mul(b as u64))
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(26_000 as u64).saturating_mul(m as u64))
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(89_000 as u64).saturating_mul(p as u64))
+ // Minimum execution time: 41_328 nanoseconds.
+ Weight::from_ref_time(41_331_557 as u64)
+ // Standard Error: 60
+ .saturating_add(Weight::from_ref_time(1_828 as u64).saturating_mul(b as u64))
+ // Standard Error: 645
+ .saturating_add(Weight::from_ref_time(26_460 as u64).saturating_mul(m as u64))
+ // Standard Error: 628
+ .saturating_add(Weight::from_ref_time(96_432 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
@@ -172,11 +180,12 @@ impl pallet_collective::WeightInfo for WeightInfo {
/// The range of component `m` is `[4, 100]`.
/// The range of component `p` is `[1, 100]`.
fn close_disapproved(m: u32, p: u32, ) -> Weight {
- Weight::from_ref_time(32_590_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(29_000 as u64).saturating_mul(m as u64))
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(85_000 as u64).saturating_mul(p as u64))
+ // Minimum execution time: 33_541 nanoseconds.
+ Weight::from_ref_time(34_963_525 as u64)
+ // Standard Error: 517
+ .saturating_add(Weight::from_ref_time(26_814 as u64).saturating_mul(m as u64))
+ // Standard Error: 505
+ .saturating_add(Weight::from_ref_time(84_716 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
@@ -192,13 +201,14 @@ impl pallet_collective::WeightInfo for WeightInfo {
/// The range of component `m` is `[4, 100]`.
/// The range of component `p` is `[1, 100]`.
fn close_approved(b: u32, m: u32, p: u32, ) -> Weight {
- Weight::from_ref_time(42_120_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(1_000 as u64).saturating_mul(b as u64))
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(27_000 as u64).saturating_mul(m as u64))
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(91_000 as u64).saturating_mul(p as u64))
+ // Minimum execution time: 42_833 nanoseconds.
+ Weight::from_ref_time(44_229_039 as u64)
+ // Standard Error: 67
+ .saturating_add(Weight::from_ref_time(1_742 as u64).saturating_mul(b as u64))
+ // Standard Error: 713
+ .saturating_add(Weight::from_ref_time(22_234 as u64).saturating_mul(m as u64))
+ // Standard Error: 695
+ .saturating_add(Weight::from_ref_time(96_563 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
@@ -208,9 +218,10 @@ impl pallet_collective::WeightInfo for WeightInfo {
/// The range of component `p` is `[1, 100]`.
/// The range of component `p` is `[1, 100]`.
fn disapprove_proposal(p: u32, ) -> Weight {
- Weight::from_ref_time(21_325_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(87_000 as u64).saturating_mul(p as u64))
+ // Minimum execution time: 19_172 nanoseconds.
+ Weight::from_ref_time(22_273_247 as u64)
+ // Standard Error: 664
+ .saturating_add(Weight::from_ref_time(95_163 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
diff --git a/runtime/kusama/src/weights/pallet_collective_technical_committee.rs b/runtime/kusama/src/weights/pallet_collective_technical_committee.rs
index 149a26d54b0e..4d0711063214 100644
--- a/runtime/kusama/src/weights/pallet_collective_technical_committee.rs
+++ b/runtime/kusama/src/weights/pallet_collective_technical_committee.rs
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_collective`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-15, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
@@ -27,6 +27,7 @@
// --chain=kusama-dev
// --steps=50
// --repeat=20
+// --pallet=pallet_collective
// --extrinsic=*
// --execution=wasm
// --wasm-execution=compiled
@@ -37,7 +38,7 @@
#![allow(unused_parens)]
#![allow(unused_imports)]
-use frame_support::{traits::Get, weights::{Weight}};
+use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData;
/// Weight functions for `pallet_collective`.
@@ -45,20 +46,21 @@ pub struct WeightInfo(PhantomData);
impl pallet_collective::WeightInfo for WeightInfo {
// Storage: TechnicalCommittee Members (r:1 w:1)
// Storage: TechnicalCommittee Proposals (r:1 w:0)
- // Storage: TechnicalCommittee Voting (r:100 w:100)
// Storage: TechnicalCommittee Prime (r:0 w:1)
- /// The range of component `m` is `[1, 100]`.
- /// The range of component `n` is `[1, 100]`.
- /// The range of component `p` is `[1, 100]`.
- /// The range of component `m` is `[1, 100]`.
- /// The range of component `n` is `[1, 100]`.
- /// The range of component `p` is `[1, 100]`.
+ // Storage: TechnicalCommittee Voting (r:100 w:100)
+ /// The range of component `m` is `[0, 100]`.
+ /// The range of component `n` is `[0, 100]`.
+ /// The range of component `p` is `[0, 100]`.
+ /// The range of component `m` is `[0, 100]`.
+ /// The range of component `n` is `[0, 100]`.
+ /// The range of component `p` is `[0, 100]`.
fn set_members(m: u32, _n: u32, p: u32, ) -> Weight {
- Weight::from_ref_time(0 as u64)
- // Standard Error: 9_000
- .saturating_add(Weight::from_ref_time(9_293_000 as u64).saturating_mul(m as u64))
- // Standard Error: 9_000
- .saturating_add(Weight::from_ref_time(11_556_000 as u64).saturating_mul(p as u64))
+ // Minimum execution time: 16_808 nanoseconds.
+ Weight::from_ref_time(17_190_000 as u64)
+ // Standard Error: 46_506
+ .saturating_add(Weight::from_ref_time(5_338_165 as u64).saturating_mul(m as u64))
+ // Standard Error: 46_506
+ .saturating_add(Weight::from_ref_time(7_515_702 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(p as u64)))
.saturating_add(T::DbWeight::get().writes(2 as u64))
@@ -70,11 +72,12 @@ impl pallet_collective::WeightInfo for WeightInfo {
/// The range of component `b` is `[1, 1024]`.
/// The range of component `m` is `[1, 100]`.
fn execute(b: u32, m: u32, ) -> Weight {
- Weight::from_ref_time(18_967_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(b as u64))
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(13_000 as u64).saturating_mul(m as u64))
+ // Minimum execution time: 20_545 nanoseconds.
+ Weight::from_ref_time(19_860_961 as u64)
+ // Standard Error: 18
+ .saturating_add(Weight::from_ref_time(1_865 as u64).saturating_mul(b as u64))
+ // Standard Error: 190
+ .saturating_add(Weight::from_ref_time(13_602 as u64).saturating_mul(m as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
}
// Storage: TechnicalCommittee Members (r:1 w:0)
@@ -84,11 +87,12 @@ impl pallet_collective::WeightInfo for WeightInfo {
/// The range of component `b` is `[1, 1024]`.
/// The range of component `m` is `[1, 100]`.
fn propose_execute(b: u32, m: u32, ) -> Weight {
- Weight::from_ref_time(20_872_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(b as u64))
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(21_000 as u64).saturating_mul(m as u64))
+ // Minimum execution time: 23_052 nanoseconds.
+ Weight::from_ref_time(22_008_528 as u64)
+ // Standard Error: 21
+ .saturating_add(Weight::from_ref_time(1_839 as u64).saturating_mul(b as u64))
+ // Standard Error: 225
+ .saturating_add(Weight::from_ref_time(21_080 as u64).saturating_mul(m as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
}
// Storage: TechnicalCommittee Members (r:1 w:0)
@@ -103,13 +107,14 @@ impl pallet_collective::WeightInfo for WeightInfo {
/// The range of component `m` is `[2, 100]`.
/// The range of component `p` is `[1, 100]`.
fn propose_proposed(b: u32, m: u32, p: u32, ) -> Weight {
- Weight::from_ref_time(28_426_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(3_000 as u64).saturating_mul(b as u64))
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(21_000 as u64).saturating_mul(m as u64))
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(104_000 as u64).saturating_mul(p as u64))
+ // Minimum execution time: 28_562 nanoseconds.
+ Weight::from_ref_time(29_261_959 as u64)
+ // Standard Error: 70
+ .saturating_add(Weight::from_ref_time(3_503 as u64).saturating_mul(b as u64))
+ // Standard Error: 733
+ .saturating_add(Weight::from_ref_time(21_047 as u64).saturating_mul(m as u64))
+ // Standard Error: 724
+ .saturating_add(Weight::from_ref_time(113_937 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().writes(4 as u64))
}
@@ -118,9 +123,10 @@ impl pallet_collective::WeightInfo for WeightInfo {
/// The range of component `m` is `[5, 100]`.
/// The range of component `m` is `[5, 100]`.
fn vote(m: u32, ) -> Weight {
- Weight::from_ref_time(28_138_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(38_000 as u64).saturating_mul(m as u64))
+ // Minimum execution time: 29_024 nanoseconds.
+ Weight::from_ref_time(30_114_505 as u64)
+ // Standard Error: 450
+ .saturating_add(Weight::from_ref_time(39_180 as u64).saturating_mul(m as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
@@ -133,11 +139,12 @@ impl pallet_collective::WeightInfo for WeightInfo {
/// The range of component `m` is `[4, 100]`.
/// The range of component `p` is `[1, 100]`.
fn close_early_disapproved(m: u32, p: u32, ) -> Weight {
- Weight::from_ref_time(31_287_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(26_000 as u64).saturating_mul(m as u64))
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(84_000 as u64).saturating_mul(p as u64))
+ // Minimum execution time: 32_178 nanoseconds.
+ Weight::from_ref_time(33_614_789 as u64)
+ // Standard Error: 472
+ .saturating_add(Weight::from_ref_time(22_479 as u64).saturating_mul(m as u64))
+ // Standard Error: 461
+ .saturating_add(Weight::from_ref_time(83_882 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
@@ -152,13 +159,14 @@ impl pallet_collective::WeightInfo for WeightInfo {
/// The range of component `m` is `[4, 100]`.
/// The range of component `p` is `[1, 100]`.
fn close_early_approved(b: u32, m: u32, p: u32, ) -> Weight {
- Weight::from_ref_time(40_722_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(1_000 as u64).saturating_mul(b as u64))
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(26_000 as u64).saturating_mul(m as u64))
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(90_000 as u64).saturating_mul(p as u64))
+ // Minimum execution time: 41_635 nanoseconds.
+ Weight::from_ref_time(42_323_834 as u64)
+ // Standard Error: 55
+ .saturating_add(Weight::from_ref_time(1_697 as u64).saturating_mul(b as u64))
+ // Standard Error: 591
+ .saturating_add(Weight::from_ref_time(24_790 as u64).saturating_mul(m as u64))
+ // Standard Error: 576
+ .saturating_add(Weight::from_ref_time(96_009 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
@@ -172,11 +180,12 @@ impl pallet_collective::WeightInfo for WeightInfo {
/// The range of component `m` is `[4, 100]`.
/// The range of component `p` is `[1, 100]`.
fn close_disapproved(m: u32, p: u32, ) -> Weight {
- Weight::from_ref_time(33_303_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(30_000 as u64).saturating_mul(m as u64))
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(85_000 as u64).saturating_mul(p as u64))
+ // Minimum execution time: 34_682 nanoseconds.
+ Weight::from_ref_time(35_559_148 as u64)
+ // Standard Error: 495
+ .saturating_add(Weight::from_ref_time(27_860 as u64).saturating_mul(m as u64))
+ // Standard Error: 483
+ .saturating_add(Weight::from_ref_time(83_712 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
@@ -192,13 +201,14 @@ impl pallet_collective::WeightInfo for WeightInfo {
/// The range of component `m` is `[4, 100]`.
/// The range of component `p` is `[1, 100]`.
fn close_approved(b: u32, m: u32, p: u32, ) -> Weight {
- Weight::from_ref_time(42_826_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(1_000 as u64).saturating_mul(b as u64))
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(26_000 as u64).saturating_mul(m as u64))
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(93_000 as u64).saturating_mul(p as u64))
+ // Minimum execution time: 43_702 nanoseconds.
+ Weight::from_ref_time(44_643_929 as u64)
+ // Standard Error: 62
+ .saturating_add(Weight::from_ref_time(1_639 as u64).saturating_mul(b as u64))
+ // Standard Error: 660
+ .saturating_add(Weight::from_ref_time(23_244 as u64).saturating_mul(m as u64))
+ // Standard Error: 643
+ .saturating_add(Weight::from_ref_time(98_321 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
@@ -208,9 +218,10 @@ impl pallet_collective::WeightInfo for WeightInfo {
/// The range of component `p` is `[1, 100]`.
/// The range of component `p` is `[1, 100]`.
fn disapprove_proposal(p: u32, ) -> Weight {
- Weight::from_ref_time(21_772_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(90_000 as u64).saturating_mul(p as u64))
+ // Minimum execution time: 20_059 nanoseconds.
+ Weight::from_ref_time(22_842_572 as u64)
+ // Standard Error: 625
+ .saturating_add(Weight::from_ref_time(97_244 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
diff --git a/runtime/kusama/src/weights/pallet_conviction_voting.rs b/runtime/kusama/src/weights/pallet_conviction_voting.rs
index fbbb0d6529b5..b8050dcf2c3e 100644
--- a/runtime/kusama/src/weights/pallet_conviction_voting.rs
+++ b/runtime/kusama/src/weights/pallet_conviction_voting.rs
@@ -16,22 +16,21 @@
//! Autogenerated weights for `pallet_conviction_voting`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-09-16, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm3`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-15, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
-// /home/benchbot/cargo_target_dir/production/polkadot
+// ./target/production/polkadot
// benchmark
// pallet
+// --chain=kusama-dev
// --steps=50
// --repeat=20
+// --pallet=pallet_conviction_voting
// --extrinsic=*
// --execution=wasm
// --wasm-execution=compiled
-// --heap-pages=4096
-// --pallet=pallet_conviction_voting
-// --chain=kusama-dev
// --header=./file_header.txt
// --output=./runtime/kusama/src/weights/
@@ -39,7 +38,7 @@
#![allow(unused_parens)]
#![allow(unused_imports)]
-use frame_support::{traits::Get, weights::{Weight}};
+use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData;
/// Weight functions for `pallet_conviction_voting`.
@@ -49,11 +48,12 @@ impl pallet_conviction_voting::WeightInfo for WeightInf
// Storage: ConvictionVoting VotingFor (r:1 w:1)
// Storage: ConvictionVoting ClassLocksFor (r:1 w:1)
// Storage: Balances Locks (r:1 w:1)
- // Storage: Scheduler Agenda (r:2 w:2)
+ // Storage: Scheduler Agenda (r:1 w:1)
fn vote_new() -> Weight {
- Weight::from_ref_time(5_652_326_000 as u64)
- .saturating_add(T::DbWeight::get().reads(6 as u64))
- .saturating_add(T::DbWeight::get().writes(6 as u64))
+ // Minimum execution time: 129_807 nanoseconds.
+ Weight::from_ref_time(133_007_000 as u64)
+ .saturating_add(T::DbWeight::get().reads(5 as u64))
+ .saturating_add(T::DbWeight::get().writes(5 as u64))
}
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
// Storage: ConvictionVoting VotingFor (r:1 w:1)
@@ -61,7 +61,8 @@ impl pallet_conviction_voting::WeightInfo for WeightInf
// Storage: Balances Locks (r:1 w:1)
// Storage: Scheduler Agenda (r:2 w:2)
fn vote_existing() -> Weight {
- Weight::from_ref_time(509_859_000 as u64)
+ // Minimum execution time: 154_191 nanoseconds.
+ Weight::from_ref_time(156_774_000 as u64)
.saturating_add(T::DbWeight::get().reads(6 as u64))
.saturating_add(T::DbWeight::get().writes(6 as u64))
}
@@ -69,14 +70,16 @@ impl pallet_conviction_voting::WeightInfo for WeightInf
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
// Storage: Scheduler Agenda (r:2 w:2)
fn remove_vote() -> Weight {
- Weight::from_ref_time(486_638_000 as u64)
+ // Minimum execution time: 128_599 nanoseconds.
+ Weight::from_ref_time(131_816_000 as u64)
.saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().writes(4 as u64))
}
// Storage: ConvictionVoting VotingFor (r:1 w:1)
// Storage: Referenda ReferendumInfoFor (r:1 w:0)
fn remove_other_vote() -> Weight {
- Weight::from_ref_time(74_517_000 as u64)
+ // Minimum execution time: 71_872 nanoseconds.
+ Weight::from_ref_time(73_800_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
@@ -87,12 +90,13 @@ impl pallet_conviction_voting::WeightInfo for WeightInf
// Storage: Scheduler Agenda (r:2 w:2)
/// The range of component `r` is `[0, 512]`.
fn delegate(r: u32, ) -> Weight {
- Weight::from_ref_time(78_376_000 as u64)
- // Standard Error: 2_253_708
- .saturating_add(Weight::from_ref_time(221_428_037 as u64).saturating_mul(r as u64))
- .saturating_add(T::DbWeight::get().reads(4 as u64))
+ // Minimum execution time: 77_152 nanoseconds.
+ Weight::from_ref_time(706_169_111 as u64)
+ // Standard Error: 59_459
+ .saturating_add(Weight::from_ref_time(26_675_761 as u64).saturating_mul(r as u64))
+ .saturating_add(T::DbWeight::get().reads(6 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64)))
- .saturating_add(T::DbWeight::get().writes(4 as u64))
+ .saturating_add(T::DbWeight::get().writes(6 as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(r as u64)))
}
// Storage: ConvictionVoting VotingFor (r:2 w:2)
@@ -100,19 +104,21 @@ impl pallet_conviction_voting::WeightInfo for WeightInf
// Storage: Scheduler Agenda (r:2 w:2)
/// The range of component `r` is `[0, 512]`.
fn undelegate(r: u32, ) -> Weight {
- Weight::from_ref_time(55_946_000 as u64)
- // Standard Error: 2_268_396
- .saturating_add(Weight::from_ref_time(221_648_859 as u64).saturating_mul(r as u64))
- .saturating_add(T::DbWeight::get().reads(2 as u64))
+ // Minimum execution time: 57_429 nanoseconds.
+ Weight::from_ref_time(678_011_885 as u64)
+ // Standard Error: 59_201
+ .saturating_add(Weight::from_ref_time(26_729_943 as u64).saturating_mul(r as u64))
+ .saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64)))
- .saturating_add(T::DbWeight::get().writes(2 as u64))
+ .saturating_add(T::DbWeight::get().writes(4 as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(r as u64)))
}
// Storage: ConvictionVoting VotingFor (r:1 w:1)
// Storage: ConvictionVoting ClassLocksFor (r:1 w:1)
// Storage: Balances Locks (r:1 w:1)
fn unlock() -> Weight {
- Weight::from_ref_time(93_068_000 as u64)
+ // Minimum execution time: 91_278 nanoseconds.
+ Weight::from_ref_time(93_505_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
diff --git a/runtime/kusama/src/weights/pallet_democracy.rs b/runtime/kusama/src/weights/pallet_democracy.rs
index b9b4127c597e..87865759d494 100644
--- a/runtime/kusama/src/weights/pallet_democracy.rs
+++ b/runtime/kusama/src/weights/pallet_democracy.rs
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_democracy`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-10-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm2`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-15, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
@@ -32,7 +32,7 @@
// --execution=wasm
// --wasm-execution=compiled
// --header=./file_header.txt
-// --output=./runtime/kusama/src/weights
+// --output=./runtime/kusama/src/weights/
#![cfg_attr(rustfmt, rustfmt_skip)]
#![allow(unused_parens)]
@@ -49,13 +49,15 @@ impl pallet_democracy::WeightInfo for WeightInfo {
// Storage: Democracy Blacklist (r:1 w:0)
// Storage: Democracy DepositOf (r:0 w:1)
fn propose() -> Weight {
- Weight::from_ref_time(42_340_000 as u64)
+ // Minimum execution time: 43_480 nanoseconds.
+ Weight::from_ref_time(44_439_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
// Storage: Democracy DepositOf (r:1 w:1)
fn second() -> Weight {
- Weight::from_ref_time(38_557_000 as u64)
+ // Minimum execution time: 40_276 nanoseconds.
+ Weight::from_ref_time(41_788_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
@@ -63,7 +65,8 @@ impl pallet_democracy::WeightInfo for WeightInfo {
// Storage: Democracy VotingOf (r:1 w:1)
// Storage: Balances Locks (r:1 w:1)
fn vote_new() -> Weight {
- Weight::from_ref_time(48_480_000 as u64)
+ // Minimum execution time: 50_609 nanoseconds.
+ Weight::from_ref_time(51_581_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
@@ -71,14 +74,16 @@ impl pallet_democracy::WeightInfo for WeightInfo {
// Storage: Democracy VotingOf (r:1 w:1)
// Storage: Balances Locks (r:1 w:1)
fn vote_existing() -> Weight {
- Weight::from_ref_time(48_553_000 as u64)
+ // Minimum execution time: 50_941 nanoseconds.
+ Weight::from_ref_time(51_356_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
// Storage: Democracy ReferendumInfoOf (r:1 w:1)
// Storage: Democracy Cancellations (r:1 w:1)
fn emergency_cancel() -> Weight {
- Weight::from_ref_time(20_602_000 as u64)
+ // Minimum execution time: 21_573 nanoseconds.
+ Weight::from_ref_time(22_094_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -89,39 +94,45 @@ impl pallet_democracy::WeightInfo for WeightInfo {
// Storage: Democracy ReferendumInfoOf (r:1 w:1)
// Storage: Democracy Blacklist (r:0 w:1)
fn blacklist() -> Weight {
- Weight::from_ref_time(75_265_000 as u64)
+ // Minimum execution time: 78_016 nanoseconds.
+ Weight::from_ref_time(79_651_000 as u64)
.saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(6 as u64))
}
// Storage: Democracy NextExternal (r:1 w:1)
// Storage: Democracy Blacklist (r:1 w:0)
fn external_propose() -> Weight {
- Weight::from_ref_time(15_498_000 as u64)
+ // Minimum execution time: 17_106 nanoseconds.
+ Weight::from_ref_time(17_287_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Democracy NextExternal (r:0 w:1)
fn external_propose_majority() -> Weight {
- Weight::from_ref_time(4_503_000 as u64)
+ // Minimum execution time: 4_801 nanoseconds.
+ Weight::from_ref_time(4_954_000 as u64)
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Democracy NextExternal (r:0 w:1)
fn external_propose_default() -> Weight {
- Weight::from_ref_time(4_486_000 as u64)
+ // Minimum execution time: 4_671 nanoseconds.
+ Weight::from_ref_time(4_906_000 as u64)
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Democracy NextExternal (r:1 w:1)
// Storage: Democracy ReferendumCount (r:1 w:1)
// Storage: Democracy ReferendumInfoOf (r:0 w:1)
fn fast_track() -> Weight {
- Weight::from_ref_time(19_676_000 as u64)
+ // Minimum execution time: 20_734 nanoseconds.
+ Weight::from_ref_time(21_068_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
// Storage: Democracy NextExternal (r:1 w:1)
// Storage: Democracy Blacklist (r:1 w:1)
fn veto_external() -> Weight {
- Weight::from_ref_time(25_443_000 as u64)
+ // Minimum execution time: 26_640 nanoseconds.
+ Weight::from_ref_time(27_058_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -129,13 +140,15 @@ impl pallet_democracy::WeightInfo for WeightInfo {
// Storage: Democracy DepositOf (r:1 w:1)
// Storage: System Account (r:1 w:1)
fn cancel_proposal() -> Weight {
- Weight::from_ref_time(63_468_000 as u64)
+ // Minimum execution time: 66_091 nanoseconds.
+ Weight::from_ref_time(67_119_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
// Storage: Democracy ReferendumInfoOf (r:0 w:1)
fn cancel_referendum() -> Weight {
- Weight::from_ref_time(13_030_000 as u64)
+ // Minimum execution time: 13_879 nanoseconds.
+ Weight::from_ref_time(14_107_000 as u64)
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Democracy LowestUnbaked (r:1 w:1)
@@ -143,9 +156,10 @@ impl pallet_democracy::WeightInfo for WeightInfo {
// Storage: Democracy ReferendumInfoOf (r:2 w:0)
/// The range of component `r` is `[0, 99]`.
fn on_initialize_base(r: u32, ) -> Weight {
- Weight::from_ref_time(5_941_000 as u64)
- // Standard Error: 2_263
- .saturating_add(Weight::from_ref_time(2_136_731 as u64).saturating_mul(r as u64))
+ // Minimum execution time: 6_375 nanoseconds.
+ Weight::from_ref_time(9_732_668 as u64)
+ // Standard Error: 4_002
+ .saturating_add(Weight::from_ref_time(2_103_987 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
@@ -158,9 +172,10 @@ impl pallet_democracy::WeightInfo for WeightInfo {
// Storage: Democracy ReferendumInfoOf (r:2 w:0)
/// The range of component `r` is `[0, 99]`.
fn on_initialize_base_with_launch_period(r: u32, ) -> Weight {
- Weight::from_ref_time(8_085_000 as u64)
- // Standard Error: 2_202
- .saturating_add(Weight::from_ref_time(2_143_624 as u64).saturating_mul(r as u64))
+ // Minimum execution time: 8_604 nanoseconds.
+ Weight::from_ref_time(12_108_221 as u64)
+ // Standard Error: 3_740
+ .saturating_add(Weight::from_ref_time(2_106_843 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
@@ -170,9 +185,10 @@ impl pallet_democracy::WeightInfo for WeightInfo {
// Storage: Democracy ReferendumInfoOf (r:2 w:2)
/// The range of component `r` is `[0, 99]`.
fn delegate(r: u32, ) -> Weight {
- Weight::from_ref_time(40_416_000 as u64)
- // Standard Error: 4_125
- .saturating_add(Weight::from_ref_time(3_038_258 as u64).saturating_mul(r as u64))
+ // Minimum execution time: 43_169 nanoseconds.
+ Weight::from_ref_time(49_050_100 as u64)
+ // Standard Error: 6_519
+ .saturating_add(Weight::from_ref_time(3_017_381 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64)))
.saturating_add(T::DbWeight::get().writes(4 as u64))
@@ -182,9 +198,10 @@ impl pallet_democracy::WeightInfo for WeightInfo {
// Storage: Democracy ReferendumInfoOf (r:2 w:2)
/// The range of component `r` is `[0, 99]`.
fn undelegate(r: u32, ) -> Weight {
- Weight::from_ref_time(24_459_000 as u64)
- // Standard Error: 2_860
- .saturating_add(Weight::from_ref_time(2_984_453 as u64).saturating_mul(r as u64))
+ // Minimum execution time: 26_214 nanoseconds.
+ Weight::from_ref_time(31_373_892 as u64)
+ // Standard Error: 13_107
+ .saturating_add(Weight::from_ref_time(2_995_678 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64)))
.saturating_add(T::DbWeight::get().writes(2 as u64))
@@ -192,7 +209,8 @@ impl pallet_democracy::WeightInfo for WeightInfo {
}
// Storage: Democracy PublicProps (r:0 w:1)
fn clear_public_proposals() -> Weight {
- Weight::from_ref_time(5_200_000 as u64)
+ // Minimum execution time: 5_062 nanoseconds.
+ Weight::from_ref_time(5_265_000 as u64)
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Democracy VotingOf (r:1 w:1)
@@ -200,9 +218,10 @@ impl pallet_democracy::WeightInfo for WeightInfo {
// Storage: System Account (r:1 w:1)
/// The range of component `r` is `[0, 99]`.
fn unlock_remove(r: u32, ) -> Weight {
- Weight::from_ref_time(24_289_000 as u64)
- // Standard Error: 2_579
- .saturating_add(Weight::from_ref_time(125_300 as u64).saturating_mul(r as u64))
+ // Minimum execution time: 25_583 nanoseconds.
+ Weight::from_ref_time(32_527_820 as u64)
+ // Standard Error: 1_608
+ .saturating_add(Weight::from_ref_time(32_882 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
@@ -211,9 +230,10 @@ impl pallet_democracy::WeightInfo for WeightInfo {
// Storage: System Account (r:1 w:1)
/// The range of component `r` is `[0, 99]`.
fn unlock_set(r: u32, ) -> Weight {
- Weight::from_ref_time(28_331_000 as u64)
- // Standard Error: 755
- .saturating_add(Weight::from_ref_time(90_997 as u64).saturating_mul(r as u64))
+ // Minimum execution time: 30_561 nanoseconds.
+ Weight::from_ref_time(32_558_405 as u64)
+ // Standard Error: 635
+ .saturating_add(Weight::from_ref_time(63_267 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
@@ -221,9 +241,10 @@ impl pallet_democracy::WeightInfo for WeightInfo {
// Storage: Democracy VotingOf (r:1 w:1)
/// The range of component `r` is `[1, 100]`.
fn remove_vote(r: u32, ) -> Weight {
- Weight::from_ref_time(15_350_000 as u64)
- // Standard Error: 1_015
- .saturating_add(Weight::from_ref_time(104_402 as u64).saturating_mul(r as u64))
+ // Minimum execution time: 16_041 nanoseconds.
+ Weight::from_ref_time(18_765_906 as u64)
+ // Standard Error: 833
+ .saturating_add(Weight::from_ref_time(66_549 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -231,9 +252,10 @@ impl pallet_democracy::WeightInfo for WeightInfo {
// Storage: Democracy VotingOf (r:1 w:1)
/// The range of component `r` is `[1, 100]`.
fn remove_other_vote(r: u32, ) -> Weight {
- Weight::from_ref_time(15_433_000 as u64)
- // Standard Error: 980
- .saturating_add(Weight::from_ref_time(104_660 as u64).saturating_mul(r as u64))
+ // Minimum execution time: 15_811 nanoseconds.
+ Weight::from_ref_time(18_594_645 as u64)
+ // Standard Error: 940
+ .saturating_add(Weight::from_ref_time(72_328 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
diff --git a/runtime/kusama/src/weights/pallet_election_provider_multi_phase.rs b/runtime/kusama/src/weights/pallet_election_provider_multi_phase.rs
index e388d4bce642..2705a9d2d49f 100644
--- a/runtime/kusama/src/weights/pallet_election_provider_multi_phase.rs
+++ b/runtime/kusama/src/weights/pallet_election_provider_multi_phase.rs
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_election_provider_multi_phase`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-15, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
@@ -38,7 +38,7 @@
#![allow(unused_parens)]
#![allow(unused_imports)]
-use frame_support::{traits::Get, weights::{Weight}};
+use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData;
/// Weight functions for `pallet_election_provider_multi_phase`.
@@ -53,33 +53,38 @@ impl pallet_election_provider_multi_phase::WeightInfo f
// Storage: Staking ForceEra (r:1 w:0)
// Storage: ElectionProviderMultiPhase CurrentPhase (r:1 w:0)
fn on_initialize_nothing() -> Weight {
- Weight::from_ref_time(15_619_000 as u64)
+ // Minimum execution time: 15_765 nanoseconds.
+ Weight::from_ref_time(16_178_000 as u64)
.saturating_add(T::DbWeight::get().reads(8 as u64))
}
// Storage: ElectionProviderMultiPhase Round (r:1 w:0)
// Storage: ElectionProviderMultiPhase CurrentPhase (r:0 w:1)
fn on_initialize_open_signed() -> Weight {
- Weight::from_ref_time(14_464_000 as u64)
+ // Minimum execution time: 15_294 nanoseconds.
+ Weight::from_ref_time(15_649_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: ElectionProviderMultiPhase Round (r:1 w:0)
// Storage: ElectionProviderMultiPhase CurrentPhase (r:0 w:1)
fn on_initialize_open_unsigned() -> Weight {
- Weight::from_ref_time(14_167_000 as u64)
+ // Minimum execution time: 14_776 nanoseconds.
+ Weight::from_ref_time(15_204_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: System Account (r:1 w:1)
// Storage: ElectionProviderMultiPhase QueuedSolution (r:0 w:1)
fn finalize_signed_phase_accept_solution() -> Weight {
- Weight::from_ref_time(28_601_000 as u64)
+ // Minimum execution time: 29_172 nanoseconds.
+ Weight::from_ref_time(29_735_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: System Account (r:1 w:1)
fn finalize_signed_phase_reject_solution() -> Weight {
- Weight::from_ref_time(22_410_000 as u64)
+ // Minimum execution time: 23_324 nanoseconds.
+ Weight::from_ref_time(23_675_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
@@ -89,11 +94,12 @@ impl pallet_election_provider_multi_phase::WeightInfo f
/// The range of component `v` is `[1000, 2000]`.
/// The range of component `t` is `[500, 1000]`.
fn create_snapshot_internal(v: u32, t: u32, ) -> Weight {
- Weight::from_ref_time(14_136_000 as u64)
- // Standard Error: 2_000
- .saturating_add(Weight::from_ref_time(554_000 as u64).saturating_mul(v as u64))
- // Standard Error: 4_000
- .saturating_add(Weight::from_ref_time(86_000 as u64).saturating_mul(t as u64))
+ // Minimum execution time: 615_137 nanoseconds.
+ Weight::from_ref_time(17_886_193 as u64)
+ // Standard Error: 2_263
+ .saturating_add(Weight::from_ref_time(558_009 as u64).saturating_mul(v as u64))
+ // Standard Error: 4_524
+ .saturating_add(Weight::from_ref_time(75_903 as u64).saturating_mul(t as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
// Storage: ElectionProviderMultiPhase SignedSubmissionIndices (r:1 w:1)
@@ -108,12 +114,11 @@ impl pallet_election_provider_multi_phase::WeightInfo f
// Storage: ElectionProviderMultiPhase CurrentPhase (r:0 w:1)
/// The range of component `a` is `[500, 800]`.
/// The range of component `d` is `[200, 400]`.
- fn elect_queued(a: u32, d: u32, ) -> Weight {
- Weight::from_ref_time(0 as u64)
- // Standard Error: 11_000
- .saturating_add(Weight::from_ref_time(1_167_000 as u64).saturating_mul(a as u64))
- // Standard Error: 17_000
- .saturating_add(Weight::from_ref_time(180_000 as u64).saturating_mul(d as u64))
+ fn elect_queued(a: u32, _d: u32, ) -> Weight {
+ // Minimum execution time: 376_033 nanoseconds.
+ Weight::from_ref_time(379_882_000 as u64)
+ // Standard Error: 8_877
+ .saturating_add(Weight::from_ref_time(562_200 as u64).saturating_mul(a as u64))
.saturating_add(T::DbWeight::get().reads(7 as u64))
.saturating_add(T::DbWeight::get().writes(9 as u64))
}
@@ -124,7 +129,8 @@ impl pallet_election_provider_multi_phase::WeightInfo f
// Storage: ElectionProviderMultiPhase SignedSubmissionNextIndex (r:1 w:1)
// Storage: ElectionProviderMultiPhase SignedSubmissionsMap (r:0 w:1)
fn submit() -> Weight {
- Weight::from_ref_time(49_945_000 as u64)
+ // Minimum execution time: 50_778 nanoseconds.
+ Weight::from_ref_time(51_219_000 as u64)
.saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
@@ -139,16 +145,11 @@ impl pallet_election_provider_multi_phase::WeightInfo f
/// The range of component `t` is `[500, 1000]`.
/// The range of component `a` is `[500, 800]`.
/// The range of component `d` is `[200, 400]`.
- fn submit_unsigned(v: u32, t: u32, a: u32, d: u32, ) -> Weight {
- Weight::from_ref_time(0 as u64)
- // Standard Error: 7_000
- .saturating_add(Weight::from_ref_time(874_000 as u64).saturating_mul(v as u64))
- // Standard Error: 14_000
- .saturating_add(Weight::from_ref_time(39_000 as u64).saturating_mul(t as u64))
- // Standard Error: 23_000
- .saturating_add(Weight::from_ref_time(10_873_000 as u64).saturating_mul(a as u64))
- // Standard Error: 35_000
- .saturating_add(Weight::from_ref_time(2_257_000 as u64).saturating_mul(d as u64))
+ fn submit_unsigned(_v: u32, _t: u32, a: u32, _d: u32, ) -> Weight {
+ // Minimum execution time: 6_866_951 nanoseconds.
+ Weight::from_ref_time(6_994_679_000 as u64)
+ // Standard Error: 59_999
+ .saturating_add(Weight::from_ref_time(7_093_483 as u64).saturating_mul(a as u64))
.saturating_add(T::DbWeight::get().reads(7 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
@@ -160,16 +161,13 @@ impl pallet_election_provider_multi_phase::WeightInfo f
/// The range of component `t` is `[500, 1000]`.
/// The range of component `a` is `[500, 800]`.
/// The range of component `d` is `[200, 400]`.
- fn feasibility_check(v: u32, t: u32, a: u32, d: u32, ) -> Weight {
- Weight::from_ref_time(0 as u64)
- // Standard Error: 12_000
- .saturating_add(Weight::from_ref_time(895_000 as u64).saturating_mul(v as u64))
- // Standard Error: 25_000
- .saturating_add(Weight::from_ref_time(18_000 as u64).saturating_mul(t as u64))
- // Standard Error: 42_000
- .saturating_add(Weight::from_ref_time(8_673_000 as u64).saturating_mul(a as u64))
- // Standard Error: 63_000
- .saturating_add(Weight::from_ref_time(1_598_000 as u64).saturating_mul(d as u64))
+ fn feasibility_check(v: u32, _t: u32, a: u32, _d: u32, ) -> Weight {
+ // Minimum execution time: 5_710_244 nanoseconds.
+ Weight::from_ref_time(5_739_503_000 as u64)
+ // Standard Error: 16_787
+ .saturating_add(Weight::from_ref_time(131_224 as u64).saturating_mul(v as u64))
+ // Standard Error: 49_748
+ .saturating_add(Weight::from_ref_time(5_312_456 as u64).saturating_mul(a as u64))
.saturating_add(T::DbWeight::get().reads(4 as u64))
}
}
diff --git a/runtime/kusama/src/weights/pallet_elections_phragmen.rs b/runtime/kusama/src/weights/pallet_elections_phragmen.rs
index 8d5db5a31006..9a333bb4a60b 100644
--- a/runtime/kusama/src/weights/pallet_elections_phragmen.rs
+++ b/runtime/kusama/src/weights/pallet_elections_phragmen.rs
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_elections_phragmen`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-16, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
@@ -38,7 +38,7 @@
#![allow(unused_parens)]
#![allow(unused_imports)]
-use frame_support::{traits::Get, weights::{Weight}};
+use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData;
/// Weight functions for `pallet_elections_phragmen`.
@@ -51,9 +51,10 @@ impl pallet_elections_phragmen::WeightInfo for WeightIn
// Storage: Balances Locks (r:1 w:1)
/// The range of component `v` is `[1, 16]`.
fn vote_equal(v: u32, ) -> Weight {
- Weight::from_ref_time(30_711_000 as u64)
- // Standard Error: 4_000
- .saturating_add(Weight::from_ref_time(201_000 as u64).saturating_mul(v as u64))
+ // Minimum execution time: 31_673 nanoseconds.
+ Weight::from_ref_time(34_361_005 as u64)
+ // Standard Error: 9_644
+ .saturating_add(Weight::from_ref_time(93_408 as u64).saturating_mul(v as u64))
.saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -64,9 +65,10 @@ impl pallet_elections_phragmen::WeightInfo for WeightIn
// Storage: Balances Locks (r:1 w:1)
/// The range of component `v` is `[2, 16]`.
fn vote_more(v: u32, ) -> Weight {
- Weight::from_ref_time(40_536_000 as u64)
- // Standard Error: 4_000
- .saturating_add(Weight::from_ref_time(173_000 as u64).saturating_mul(v as u64))
+ // Minimum execution time: 41_200 nanoseconds.
+ Weight::from_ref_time(42_889_832 as u64)
+ // Standard Error: 4_165
+ .saturating_add(Weight::from_ref_time(223_881 as u64).saturating_mul(v as u64))
.saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -77,16 +79,18 @@ impl pallet_elections_phragmen::WeightInfo for WeightIn
// Storage: Balances Locks (r:1 w:1)
/// The range of component `v` is `[2, 16]`.
fn vote_less(v: u32, ) -> Weight {
- Weight::from_ref_time(40_543_000 as u64)
- // Standard Error: 6_000
- .saturating_add(Weight::from_ref_time(199_000 as u64).saturating_mul(v as u64))
+ // Minimum execution time: 42_012 nanoseconds.
+ Weight::from_ref_time(43_635_852 as u64)
+ // Standard Error: 4_519
+ .saturating_add(Weight::from_ref_time(119_706 as u64).saturating_mul(v as u64))
.saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: PhragmenElection Voting (r:1 w:1)
// Storage: Balances Locks (r:1 w:1)
fn remove_voter() -> Weight {
- Weight::from_ref_time(39_001_000 as u64)
+ // Minimum execution time: 40_370 nanoseconds.
+ Weight::from_ref_time(41_142_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -95,18 +99,20 @@ impl pallet_elections_phragmen::WeightInfo for WeightIn
// Storage: PhragmenElection RunnersUp (r:1 w:0)
/// The range of component `c` is `[1, 1000]`.
fn submit_candidacy(c: u32, ) -> Weight {
- Weight::from_ref_time(26_806_000 as u64)
- // Standard Error: 1_000
- .saturating_add(Weight::from_ref_time(94_000 as u64).saturating_mul(c as u64))
+ // Minimum execution time: 37_086 nanoseconds.
+ Weight::from_ref_time(28_441_305 as u64)
+ // Standard Error: 1_050
+ .saturating_add(Weight::from_ref_time(91_457 as u64).saturating_mul(c as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: PhragmenElection Candidates (r:1 w:1)
/// The range of component `c` is `[1, 1000]`.
fn renounce_candidacy_candidate(c: u32, ) -> Weight {
- Weight::from_ref_time(23_558_000 as u64)
- // Standard Error: 1_000
- .saturating_add(Weight::from_ref_time(67_000 as u64).saturating_mul(c as u64))
+ // Minimum execution time: 32_127 nanoseconds.
+ Weight::from_ref_time(23_789_781 as u64)
+ // Standard Error: 995
+ .saturating_add(Weight::from_ref_time(71_601 as u64).saturating_mul(c as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
@@ -116,18 +122,21 @@ impl pallet_elections_phragmen::WeightInfo for WeightIn
// Storage: Council Proposals (r:1 w:0)
// Storage: Council Members (r:0 w:1)
fn renounce_candidacy_members() -> Weight {
- Weight::from_ref_time(44_960_000 as u64)
+ // Minimum execution time: 44_751 nanoseconds.
+ Weight::from_ref_time(46_264_000 as u64)
.saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().writes(4 as u64))
}
// Storage: PhragmenElection RunnersUp (r:1 w:1)
fn renounce_candidacy_runners_up() -> Weight {
- Weight::from_ref_time(34_666_000 as u64)
+ // Minimum execution time: 34_904 nanoseconds.
+ Weight::from_ref_time(36_139_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Benchmark Override (r:0 w:0)
fn remove_member_without_replacement() -> Weight {
+ // Minimum execution time: 2_000_000_000 nanoseconds.
Weight::from_ref_time(2_000_000_000_000 as u64)
}
// Storage: PhragmenElection Members (r:1 w:1)
@@ -137,7 +146,8 @@ impl pallet_elections_phragmen::WeightInfo for WeightIn
// Storage: Council Proposals (r:1 w:0)
// Storage: Council Members (r:0 w:1)
fn remove_member_with_replacement() -> Weight {
- Weight::from_ref_time(59_021_000 as u64)
+ // Minimum execution time: 59_246 nanoseconds.
+ Weight::from_ref_time(60_848_000 as u64)
.saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(5 as u64))
}
@@ -148,13 +158,12 @@ impl pallet_elections_phragmen::WeightInfo for WeightIn
// Storage: Balances Locks (r:5000 w:5000)
// Storage: System Account (r:5000 w:5000)
/// The range of component `v` is `[5000, 10000]`.
- /// The range of component `d` is `[1, 5000]`.
- fn clean_defunct_voters(v: u32, d: u32, ) -> Weight {
- Weight::from_ref_time(0 as u64)
- // Standard Error: 88_000
- .saturating_add(Weight::from_ref_time(60_894_000 as u64).saturating_mul(v as u64))
- // Standard Error: 88_000
- .saturating_add(Weight::from_ref_time(379_000 as u64).saturating_mul(d as u64))
+ /// The range of component `d` is `[0, 5000]`.
+ fn clean_defunct_voters(v: u32, _d: u32, ) -> Weight {
+ // Minimum execution time: 279_914_581 nanoseconds.
+ Weight::from_ref_time(280_093_180_000 as u64)
+ // Standard Error: 242_383
+ .saturating_add(Weight::from_ref_time(34_902_791 as u64).saturating_mul(v as u64))
.saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().reads((3 as u64).saturating_mul(v as u64)))
.saturating_add(T::DbWeight::get().writes((3 as u64).saturating_mul(v as u64)))
@@ -172,14 +181,16 @@ impl pallet_elections_phragmen::WeightInfo for WeightIn
/// The range of component `v` is `[1, 10000]`.
/// The range of component `e` is `[10000, 160000]`.
fn election_phragmen(c: u32, v: u32, e: u32, ) -> Weight {
- Weight::from_ref_time(0 as u64)
- // Standard Error: 691_000
- .saturating_add(Weight::from_ref_time(57_805_000 as u64).saturating_mul(v as u64))
- // Standard Error: 46_000
- .saturating_add(Weight::from_ref_time(3_139_000 as u64).saturating_mul(e as u64))
+ // Minimum execution time: 29_009_063 nanoseconds.
+ Weight::from_ref_time(29_156_039_000 as u64)
+ // Standard Error: 553_255
+ .saturating_add(Weight::from_ref_time(46_221_121 as u64).saturating_mul(v as u64))
+ // Standard Error: 35_504
+ .saturating_add(Weight::from_ref_time(2_367_682 as u64).saturating_mul(e as u64))
.saturating_add(T::DbWeight::get().reads(265 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(c as u64)))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(v as u64)))
+ .saturating_add(T::DbWeight::get().writes(6 as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(c as u64)))
}
}
diff --git a/runtime/kusama/src/weights/pallet_fast_unstake.rs b/runtime/kusama/src/weights/pallet_fast_unstake.rs
index b7b6008fcc7e..4f1ce8aee992 100644
--- a/runtime/kusama/src/weights/pallet_fast_unstake.rs
+++ b/runtime/kusama/src/weights/pallet_fast_unstake.rs
@@ -16,22 +16,21 @@
//! Autogenerated weights for `pallet_fast_unstake`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-09-27, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm3`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-16, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
-// /home/benchbot/cargo_target_dir/production/polkadot
+// ./target/production/polkadot
// benchmark
// pallet
+// --chain=kusama-dev
// --steps=50
// --repeat=20
+// --pallet=pallet_fast_unstake
// --extrinsic=*
// --execution=wasm
// --wasm-execution=compiled
-// --heap-pages=4096
-// --pallet=pallet_fast_unstake
-// --chain=kusama-dev
// --header=./file_header.txt
// --output=./runtime/kusama/src/weights/
@@ -50,65 +49,73 @@ impl pallet_fast_unstake::WeightInfo for WeightInfo
// Storage: ElectionProviderMultiPhase CurrentPhase (r:1 w:0)
// Storage: FastUnstake Head (r:1 w:1)
// Storage: Staking CurrentEra (r:1 w:0)
- // Storage: Staking SlashingSpans (r:1 w:0)
- // Storage: Staking Bonded (r:1 w:1)
- // Storage: Staking Validators (r:1 w:0)
- // Storage: Staking Nominators (r:1 w:0)
- // Storage: System Account (r:1 w:1)
- // Storage: Balances Locks (r:1 w:1)
- // Storage: Staking Ledger (r:0 w:1)
- // Storage: Staking Payee (r:0 w:1)
+ // Storage: Staking SlashingSpans (r:64 w:0)
+ // Storage: Staking Bonded (r:64 w:64)
+ // Storage: Staking Validators (r:64 w:0)
+ // Storage: Staking Nominators (r:64 w:0)
+ // Storage: System Account (r:64 w:64)
+ // Storage: Balances Locks (r:64 w:64)
+ // Storage: Staking Ledger (r:0 w:64)
+ // Storage: Staking Payee (r:0 w:64)
fn on_idle_unstake() -> Weight {
- Weight::from_ref_time(64_798_000 as u64)
- .saturating_add(T::DbWeight::get().reads(11 as u64))
- .saturating_add(T::DbWeight::get().writes(6 as u64))
+ // Minimum execution time: 2_141_174 nanoseconds.
+ Weight::from_ref_time(2_204_649_000 as u64)
+ .saturating_add(T::DbWeight::get().reads(389 as u64))
+ .saturating_add(T::DbWeight::get().writes(321 as u64))
}
// Storage: FastUnstake ErasToCheckPerBlock (r:1 w:0)
// Storage: Staking ValidatorCount (r:1 w:0)
// Storage: ElectionProviderMultiPhase CurrentPhase (r:1 w:0)
// Storage: FastUnstake Head (r:1 w:1)
- // Storage: FastUnstake Queue (r:2 w:1)
+ // Storage: FastUnstake Queue (r:65 w:64)
// Storage: FastUnstake CounterForQueue (r:1 w:1)
// Storage: Staking CurrentEra (r:1 w:0)
// Storage: Staking ErasStakers (r:56 w:0)
/// The range of component `x` is `[28, 3584]`.
fn on_idle_check(x: u32, ) -> Weight {
- Weight::from_ref_time(412_389_000 as u64)
- // Standard Error: 10_902
- .saturating_add(Weight::from_ref_time(10_950_753 as u64).saturating_mul(x as u64))
- .saturating_add(T::DbWeight::get().reads(64 as u64))
+ // Minimum execution time: 21_964_474 nanoseconds.
+ Weight::from_ref_time(22_227_783_000 as u64)
+ // Standard Error: 498_921
+ .saturating_add(Weight::from_ref_time(624_289_713 as u64).saturating_mul(x as u64))
+ .saturating_add(T::DbWeight::get().reads(85 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(x as u64)))
- .saturating_add(T::DbWeight::get().writes(3 as u64))
+ .saturating_add(T::DbWeight::get().writes(66 as u64))
}
+ // Storage: FastUnstake ErasToCheckPerBlock (r:1 w:0)
// Storage: Staking Ledger (r:1 w:1)
// Storage: FastUnstake Queue (r:1 w:1)
// Storage: FastUnstake Head (r:1 w:0)
+ // Storage: Staking Bonded (r:1 w:0)
// Storage: Staking Validators (r:1 w:0)
// Storage: Staking Nominators (r:1 w:1)
// Storage: Staking CounterForNominators (r:1 w:1)
- // Storage: VoterList ListNodes (r:1 w:1)
+ // Storage: VoterList ListNodes (r:2 w:2)
// Storage: VoterList ListBags (r:1 w:1)
// Storage: VoterList CounterForListNodes (r:1 w:1)
// Storage: Staking CurrentEra (r:1 w:0)
// Storage: Balances Locks (r:1 w:1)
// Storage: FastUnstake CounterForQueue (r:1 w:1)
fn register_fast_unstake() -> Weight {
- Weight::from_ref_time(84_738_000 as u64)
- .saturating_add(T::DbWeight::get().reads(12 as u64))
- .saturating_add(T::DbWeight::get().writes(9 as u64))
+ // Minimum execution time: 124_637 nanoseconds.
+ Weight::from_ref_time(126_193_000 as u64)
+ .saturating_add(T::DbWeight::get().reads(15 as u64))
+ .saturating_add(T::DbWeight::get().writes(10 as u64))
}
+ // Storage: FastUnstake ErasToCheckPerBlock (r:1 w:0)
// Storage: Staking Ledger (r:1 w:0)
// Storage: FastUnstake Queue (r:1 w:1)
// Storage: FastUnstake Head (r:1 w:0)
// Storage: FastUnstake CounterForQueue (r:1 w:1)
fn deregister() -> Weight {
- Weight::from_ref_time(23_369_000 as u64)
- .saturating_add(T::DbWeight::get().reads(4 as u64))
+ // Minimum execution time: 50_711 nanoseconds.
+ Weight::from_ref_time(51_537_000 as u64)
+ .saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: FastUnstake ErasToCheckPerBlock (r:0 w:1)
fn control() -> Weight {
- Weight::from_ref_time(3_991_000 as u64)
+ // Minimum execution time: 4_008 nanoseconds.
+ Weight::from_ref_time(4_153_000 as u64)
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
}
diff --git a/runtime/kusama/src/weights/pallet_gilt.rs b/runtime/kusama/src/weights/pallet_gilt.rs
index 3ab2d6d41709..9890a2cff6c6 100644
--- a/runtime/kusama/src/weights/pallet_gilt.rs
+++ b/runtime/kusama/src/weights/pallet_gilt.rs
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_gilt`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-16, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
@@ -38,7 +38,7 @@
#![allow(unused_parens)]
#![allow(unused_imports)]
-use frame_support::{traits::Get, weights::{Weight}};
+use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData;
/// Weight functions for `pallet_gilt`.
@@ -48,16 +48,18 @@ impl pallet_gilt::WeightInfo for WeightInfo {
// Storage: Gilt QueueTotals (r:1 w:1)
/// The range of component `l` is `[0, 999]`.
fn place_bid(l: u32, ) -> Weight {
- Weight::from_ref_time(33_022_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(81_000 as u64).saturating_mul(l as u64))
+ // Minimum execution time: 36_875 nanoseconds.
+ Weight::from_ref_time(34_024_755 as u64)
+ // Standard Error: 738
+ .saturating_add(Weight::from_ref_time(72_496 as u64).saturating_mul(l as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Gilt Queues (r:1 w:1)
// Storage: Gilt QueueTotals (r:1 w:1)
fn place_bid_max() -> Weight {
- Weight::from_ref_time(105_031_000 as u64)
+ // Minimum execution time: 102_482 nanoseconds.
+ Weight::from_ref_time(103_581_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -65,52 +67,58 @@ impl pallet_gilt::WeightInfo for WeightInfo {
// Storage: Gilt QueueTotals (r:1 w:1)
/// The range of component `l` is `[1, 1000]`.
fn retract_bid(l: u32, ) -> Weight {
- Weight::from_ref_time(33_573_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(62_000 as u64).saturating_mul(l as u64))
+ // Minimum execution time: 38_332 nanoseconds.
+ Weight::from_ref_time(35_124_907 as u64)
+ // Standard Error: 690
+ .saturating_add(Weight::from_ref_time(60_970 as u64).saturating_mul(l as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Gilt ActiveTotal (r:1 w:1)
fn set_target() -> Weight {
- Weight::from_ref_time(6_386_000 as u64)
+ // Minimum execution time: 6_729 nanoseconds.
+ Weight::from_ref_time(6_865_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Gilt Active (r:1 w:1)
// Storage: Gilt ActiveTotal (r:1 w:1)
fn thaw() -> Weight {
- Weight::from_ref_time(45_459_000 as u64)
+ // Minimum execution time: 46_804 nanoseconds.
+ Weight::from_ref_time(47_763_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Gilt ActiveTotal (r:1 w:0)
fn pursue_target_noop() -> Weight {
- Weight::from_ref_time(2_669_000 as u64)
+ // Minimum execution time: 2_994 nanoseconds.
+ Weight::from_ref_time(3_177_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
}
// Storage: Gilt ActiveTotal (r:1 w:1)
// Storage: Gilt QueueTotals (r:1 w:1)
// Storage: Gilt Queues (r:1 w:1)
- // Storage: Gilt Active (r:0 w:1)
- /// The range of component `b` is `[1, 1000]`.
+ // Storage: Gilt Active (r:0 w:20)
+ /// The range of component `b` is `[0, 1000]`.
fn pursue_target_per_item(b: u32, ) -> Weight {
- Weight::from_ref_time(33_549_000 as u64)
- // Standard Error: 2_000
- .saturating_add(Weight::from_ref_time(3_979_000 as u64).saturating_mul(b as u64))
+ // Minimum execution time: 29_441 nanoseconds.
+ Weight::from_ref_time(37_662_401 as u64)
+ // Standard Error: 4_049
+ .saturating_add(Weight::from_ref_time(4_021_891 as u64).saturating_mul(b as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(b as u64)))
}
// Storage: Gilt ActiveTotal (r:1 w:1)
// Storage: Gilt QueueTotals (r:1 w:1)
- // Storage: Gilt Queues (r:1 w:1)
- // Storage: Gilt Active (r:0 w:1)
- /// The range of component `q` is `[1, 300]`.
+ // Storage: Gilt Queues (r:6 w:6)
+ // Storage: Gilt Active (r:0 w:6)
+ /// The range of component `q` is `[0, 300]`.
fn pursue_target_per_queue(q: u32, ) -> Weight {
- Weight::from_ref_time(28_306_000 as u64)
- // Standard Error: 6_000
- .saturating_add(Weight::from_ref_time(6_651_000 as u64).saturating_mul(q as u64))
+ // Minimum execution time: 28_875 nanoseconds.
+ Weight::from_ref_time(31_553_769 as u64)
+ // Standard Error: 7_026
+ .saturating_add(Weight::from_ref_time(6_592_755 as u64).saturating_mul(q as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(q as u64)))
.saturating_add(T::DbWeight::get().writes(2 as u64))
diff --git a/runtime/kusama/src/weights/pallet_identity.rs b/runtime/kusama/src/weights/pallet_identity.rs
index 050a3b10db8e..46a9f0d10351 100644
--- a/runtime/kusama/src/weights/pallet_identity.rs
+++ b/runtime/kusama/src/weights/pallet_identity.rs
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_identity`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-16, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
@@ -38,7 +38,7 @@
#![allow(unused_parens)]
#![allow(unused_imports)]
-use frame_support::{traits::Get, weights::{Weight}};
+use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData;
/// Weight functions for `pallet_identity`.
@@ -47,32 +47,35 @@ impl pallet_identity::WeightInfo for WeightInfo {
// Storage: Identity Registrars (r:1 w:1)
/// The range of component `r` is `[1, 19]`.
fn add_registrar(r: u32, ) -> Weight {
- Weight::from_ref_time(16_780_000 as u64)
- // Standard Error: 5_000
- .saturating_add(Weight::from_ref_time(193_000 as u64).saturating_mul(r as u64))
+ // Minimum execution time: 16_710 nanoseconds.
+ Weight::from_ref_time(18_118_559 as u64)
+ // Standard Error: 3_051
+ .saturating_add(Weight::from_ref_time(148_040 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Identity IdentityOf (r:1 w:1)
/// The range of component `r` is `[1, 20]`.
- /// The range of component `x` is `[1, 100]`.
+ /// The range of component `x` is `[0, 100]`.
fn set_identity(r: u32, x: u32, ) -> Weight {
- Weight::from_ref_time(32_514_000 as u64)
- // Standard Error: 7_000
- .saturating_add(Weight::from_ref_time(129_000 as u64).saturating_mul(r as u64))
- // Standard Error: 1_000
- .saturating_add(Weight::from_ref_time(323_000 as u64).saturating_mul(x as u64))
+ // Minimum execution time: 35_847 nanoseconds.
+ Weight::from_ref_time(35_393_868 as u64)
+ // Standard Error: 3_524
+ .saturating_add(Weight::from_ref_time(75_148 as u64).saturating_mul(r as u64))
+ // Standard Error: 687
+ .saturating_add(Weight::from_ref_time(306_971 as u64).saturating_mul(x as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Identity IdentityOf (r:1 w:0)
// Storage: Identity SubsOf (r:1 w:1)
- // Storage: Identity SuperOf (r:1 w:1)
- /// The range of component `s` is `[1, 100]`.
+ // Storage: Identity SuperOf (r:2 w:2)
+ /// The range of component `s` is `[0, 100]`.
fn set_subs_new(s: u32, ) -> Weight {
- Weight::from_ref_time(28_130_000 as u64)
- // Standard Error: 2_000
- .saturating_add(Weight::from_ref_time(2_089_000 as u64).saturating_mul(s as u64))
+ // Minimum execution time: 10_340 nanoseconds.
+ Weight::from_ref_time(28_847_479 as u64)
+ // Standard Error: 5_014
+ .saturating_add(Weight::from_ref_time(2_161_226 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(s as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
@@ -80,12 +83,13 @@ impl pallet_identity::WeightInfo for WeightInfo {
}
// Storage: Identity IdentityOf (r:1 w:0)
// Storage: Identity SubsOf (r:1 w:1)
- // Storage: Identity SuperOf (r:0 w:1)
- /// The range of component `p` is `[1, 100]`.
+ // Storage: Identity SuperOf (r:0 w:2)
+ /// The range of component `p` is `[0, 100]`.
fn set_subs_old(p: u32, ) -> Weight {
- Weight::from_ref_time(28_597_000 as u64)
- // Standard Error: 1_000
- .saturating_add(Weight::from_ref_time(891_000 as u64).saturating_mul(p as u64))
+ // Minimum execution time: 10_122 nanoseconds.
+ Weight::from_ref_time(28_546_493 as u64)
+ // Standard Error: 4_337
+ .saturating_add(Weight::from_ref_time(929_288 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(p as u64)))
@@ -94,16 +98,17 @@ impl pallet_identity::WeightInfo for WeightInfo {
// Storage: Identity IdentityOf (r:1 w:1)
// Storage: Identity SuperOf (r:0 w:100)
/// The range of component `r` is `[1, 20]`.
- /// The range of component `s` is `[1, 100]`.
- /// The range of component `x` is `[1, 100]`.
+ /// The range of component `s` is `[0, 100]`.
+ /// The range of component `x` is `[0, 100]`.
fn clear_identity(r: u32, s: u32, x: u32, ) -> Weight {
- Weight::from_ref_time(35_657_000 as u64)
- // Standard Error: 5_000
- .saturating_add(Weight::from_ref_time(48_000 as u64).saturating_mul(r as u64))
- // Standard Error: 1_000
- .saturating_add(Weight::from_ref_time(889_000 as u64).saturating_mul(s as u64))
- // Standard Error: 1_000
- .saturating_add(Weight::from_ref_time(160_000 as u64).saturating_mul(x as u64))
+ // Minimum execution time: 51_131 nanoseconds.
+ Weight::from_ref_time(36_991_277 as u64)
+ // Standard Error: 11_013
+ .saturating_add(Weight::from_ref_time(75_731 as u64).saturating_mul(r as u64))
+ // Standard Error: 2_150
+ .saturating_add(Weight::from_ref_time(900_334 as u64).saturating_mul(s as u64))
+ // Standard Error: 2_150
+ .saturating_add(Weight::from_ref_time(161_480 as u64).saturating_mul(x as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(s as u64)))
@@ -111,65 +116,71 @@ impl pallet_identity::WeightInfo for WeightInfo {
// Storage: Identity Registrars (r:1 w:0)
// Storage: Identity IdentityOf (r:1 w:1)
/// The range of component `r` is `[1, 20]`.
- /// The range of component `x` is `[1, 100]`.
+ /// The range of component `x` is `[0, 100]`.
fn request_judgement(r: u32, x: u32, ) -> Weight {
- Weight::from_ref_time(34_656_000 as u64)
- // Standard Error: 3_000
- .saturating_add(Weight::from_ref_time(129_000 as u64).saturating_mul(r as u64))
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(332_000 as u64).saturating_mul(x as u64))
+ // Minimum execution time: 38_002 nanoseconds.
+ Weight::from_ref_time(36_848_336 as u64)
+ // Standard Error: 4_513
+ .saturating_add(Weight::from_ref_time(100_666 as u64).saturating_mul(r as u64))
+ // Standard Error: 880
+ .saturating_add(Weight::from_ref_time(327_085 as u64).saturating_mul(x as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Identity IdentityOf (r:1 w:1)
/// The range of component `r` is `[1, 20]`.
- /// The range of component `x` is `[1, 100]`.
+ /// The range of component `x` is `[0, 100]`.
fn cancel_request(r: u32, x: u32, ) -> Weight {
- Weight::from_ref_time(31_048_000 as u64)
- // Standard Error: 4_000
- .saturating_add(Weight::from_ref_time(133_000 as u64).saturating_mul(r as u64))
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(334_000 as u64).saturating_mul(x as u64))
+ // Minimum execution time: 34_116 nanoseconds.
+ Weight::from_ref_time(34_235_732 as u64)
+ // Standard Error: 3_409
+ .saturating_add(Weight::from_ref_time(49_426 as u64).saturating_mul(r as u64))
+ // Standard Error: 665
+ .saturating_add(Weight::from_ref_time(323_592 as u64).saturating_mul(x as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Identity Registrars (r:1 w:1)
/// The range of component `r` is `[1, 19]`.
fn set_fee(r: u32, ) -> Weight {
- Weight::from_ref_time(8_975_000 as u64)
- // Standard Error: 2_000
- .saturating_add(Weight::from_ref_time(140_000 as u64).saturating_mul(r as u64))
+ // Minimum execution time: 8_678 nanoseconds.
+ Weight::from_ref_time(9_613_287 as u64)
+ // Standard Error: 2_285
+ .saturating_add(Weight::from_ref_time(117_905 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Identity Registrars (r:1 w:1)
/// The range of component `r` is `[1, 19]`.
fn set_account_id(r: u32, ) -> Weight {
- Weight::from_ref_time(9_212_000 as u64)
- // Standard Error: 2_000
- .saturating_add(Weight::from_ref_time(138_000 as u64).saturating_mul(r as u64))
+ // Minimum execution time: 8_892 nanoseconds.
+ Weight::from_ref_time(9_735_071 as u64)
+ // Standard Error: 2_239
+ .saturating_add(Weight::from_ref_time(115_282 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Identity Registrars (r:1 w:1)
/// The range of component `r` is `[1, 19]`.
fn set_fields(r: u32, ) -> Weight {
- Weight::from_ref_time(9_088_000 as u64)
- // Standard Error: 2_000
- .saturating_add(Weight::from_ref_time(131_000 as u64).saturating_mul(r as u64))
+ // Minimum execution time: 8_783 nanoseconds.
+ Weight::from_ref_time(9_686_212 as u64)
+ // Standard Error: 2_092
+ .saturating_add(Weight::from_ref_time(107_045 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Identity Registrars (r:1 w:0)
// Storage: Identity IdentityOf (r:1 w:1)
/// The range of component `r` is `[1, 19]`.
- /// The range of component `x` is `[1, 100]`.
+ /// The range of component `x` is `[0, 100]`.
fn provide_judgement(r: u32, x: u32, ) -> Weight {
- Weight::from_ref_time(23_324_000 as u64)
- // Standard Error: 3_000
- .saturating_add(Weight::from_ref_time(133_000 as u64).saturating_mul(r as u64))
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(334_000 as u64).saturating_mul(x as u64))
+ // Minimum execution time: 28_056 nanoseconds.
+ Weight::from_ref_time(28_240_411 as u64)
+ // Standard Error: 7_231
+ .saturating_add(Weight::from_ref_time(61_164 as u64).saturating_mul(r as u64))
+ // Standard Error: 1_337
+ .saturating_add(Weight::from_ref_time(546_999 as u64).saturating_mul(x as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
@@ -178,16 +189,17 @@ impl pallet_identity::WeightInfo for WeightInfo {
// Storage: System Account (r:1 w:1)
// Storage: Identity SuperOf (r:0 w:100)
/// The range of component `r` is `[1, 20]`.
- /// The range of component `s` is `[1, 100]`.
- /// The range of component `x` is `[1, 100]`.
+ /// The range of component `s` is `[0, 100]`.
+ /// The range of component `x` is `[0, 100]`.
fn kill_identity(r: u32, s: u32, x: u32, ) -> Weight {
- Weight::from_ref_time(46_896_000 as u64)
- // Standard Error: 5_000
- .saturating_add(Weight::from_ref_time(115_000 as u64).saturating_mul(r as u64))
- // Standard Error: 1_000
- .saturating_add(Weight::from_ref_time(892_000 as u64).saturating_mul(s as u64))
- // Standard Error: 1_000
- .saturating_add(Weight::from_ref_time(1_000 as u64).saturating_mul(x as u64))
+ // Minimum execution time: 62_459 nanoseconds.
+ Weight::from_ref_time(47_788_369 as u64)
+ // Standard Error: 5_893
+ .saturating_add(Weight::from_ref_time(100_560 as u64).saturating_mul(r as u64))
+ // Standard Error: 1_150
+ .saturating_add(Weight::from_ref_time(907_788 as u64).saturating_mul(s as u64))
+ // Standard Error: 1_150
+ .saturating_add(Weight::from_ref_time(161_942 as u64).saturating_mul(x as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(s as u64)))
@@ -195,11 +207,12 @@ impl pallet_identity::WeightInfo for WeightInfo {
// Storage: Identity IdentityOf (r:1 w:0)
// Storage: Identity SuperOf (r:1 w:1)
// Storage: Identity SubsOf (r:1 w:1)
- /// The range of component `s` is `[1, 99]`.
+ /// The range of component `s` is `[0, 99]`.
fn add_sub(s: u32, ) -> Weight {
- Weight::from_ref_time(35_814_000 as u64)
- // Standard Error: 1_000
- .saturating_add(Weight::from_ref_time(78_000 as u64).saturating_mul(s as u64))
+ // Minimum execution time: 32_735 nanoseconds.
+ Weight::from_ref_time(37_928_065 as u64)
+ // Standard Error: 1_523
+ .saturating_add(Weight::from_ref_time(75_465 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -207,9 +220,10 @@ impl pallet_identity::WeightInfo for WeightInfo {
// Storage: Identity SuperOf (r:1 w:1)
/// The range of component `s` is `[1, 100]`.
fn rename_sub(s: u32, ) -> Weight {
- Weight::from_ref_time(15_348_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(26_000 as u64).saturating_mul(s as u64))
+ // Minimum execution time: 14_370 nanoseconds.
+ Weight::from_ref_time(16_434_826 as u64)
+ // Standard Error: 665
+ .saturating_add(Weight::from_ref_time(25_894 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
@@ -218,19 +232,21 @@ impl pallet_identity::WeightInfo for WeightInfo {
// Storage: Identity SubsOf (r:1 w:1)
/// The range of component `s` is `[1, 100]`.
fn remove_sub(s: u32, ) -> Weight {
- Weight::from_ref_time(37_193_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(69_000 as u64).saturating_mul(s as u64))
+ // Minimum execution time: 35_617 nanoseconds.
+ Weight::from_ref_time(39_518_606 as u64)
+ // Standard Error: 1_088
+ .saturating_add(Weight::from_ref_time(67_069 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Identity SuperOf (r:1 w:1)
// Storage: Identity SubsOf (r:1 w:1)
- /// The range of component `s` is `[1, 99]`.
+ /// The range of component `s` is `[0, 99]`.
fn quit_sub(s: u32, ) -> Weight {
- Weight::from_ref_time(27_633_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(62_000 as u64).saturating_mul(s as u64))
+ // Minimum execution time: 26_143 nanoseconds.
+ Weight::from_ref_time(29_067_018 as u64)
+ // Standard Error: 1_342
+ .saturating_add(Weight::from_ref_time(68_986 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
diff --git a/runtime/kusama/src/weights/pallet_im_online.rs b/runtime/kusama/src/weights/pallet_im_online.rs
index 0c11f749e439..90c9f826561d 100644
--- a/runtime/kusama/src/weights/pallet_im_online.rs
+++ b/runtime/kusama/src/weights/pallet_im_online.rs
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_im_online`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-16, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
@@ -38,7 +38,7 @@
#![allow(unused_parens)]
#![allow(unused_imports)]
-use frame_support::{traits::Get, weights::{Weight}};
+use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData;
/// Weight functions for `pallet_im_online`.
@@ -52,11 +52,12 @@ impl pallet_im_online::WeightInfo for WeightInfo {
/// The range of component `k` is `[1, 1000]`.
/// The range of component `e` is `[1, 100]`.
fn validate_unsigned_and_then_heartbeat(k: u32, e: u32, ) -> Weight {
- Weight::from_ref_time(76_533_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(22_000 as u64).saturating_mul(k as u64))
- // Standard Error: 2_000
- .saturating_add(Weight::from_ref_time(314_000 as u64).saturating_mul(e as u64))
+ // Minimum execution time: 97_143 nanoseconds.
+ Weight::from_ref_time(78_523_977 as u64)
+ // Standard Error: 267
+ .saturating_add(Weight::from_ref_time(21_647 as u64).saturating_mul(k as u64))
+ // Standard Error: 2_698
+ .saturating_add(Weight::from_ref_time(307_112 as u64).saturating_mul(e as u64))
.saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
diff --git a/runtime/kusama/src/weights/pallet_indices.rs b/runtime/kusama/src/weights/pallet_indices.rs
index b0f0fc563044..46bec05d5241 100644
--- a/runtime/kusama/src/weights/pallet_indices.rs
+++ b/runtime/kusama/src/weights/pallet_indices.rs
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_indices`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-16, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
@@ -38,7 +38,7 @@
#![allow(unused_parens)]
#![allow(unused_imports)]
-use frame_support::{traits::Get, weights::{Weight}};
+use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData;
/// Weight functions for `pallet_indices`.
@@ -46,33 +46,38 @@ pub struct WeightInfo(PhantomData);
impl pallet_indices::WeightInfo for WeightInfo {
// Storage: Indices Accounts (r:1 w:1)
fn claim() -> Weight {
- Weight::from_ref_time(25_146_000 as u64)
+ // Minimum execution time: 26_443 nanoseconds.
+ Weight::from_ref_time(26_877_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Indices Accounts (r:1 w:1)
// Storage: System Account (r:1 w:1)
fn transfer() -> Weight {
- Weight::from_ref_time(31_999_000 as u64)
+ // Minimum execution time: 33_704 nanoseconds.
+ Weight::from_ref_time(34_123_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Indices Accounts (r:1 w:1)
fn free() -> Weight {
- Weight::from_ref_time(26_357_000 as u64)
+ // Minimum execution time: 27_656 nanoseconds.
+ Weight::from_ref_time(28_641_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Indices Accounts (r:1 w:1)
// Storage: System Account (r:1 w:1)
fn force_transfer() -> Weight {
- Weight::from_ref_time(26_922_000 as u64)
+ // Minimum execution time: 27_860 nanoseconds.
+ Weight::from_ref_time(28_165_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Indices Accounts (r:1 w:1)
fn freeze() -> Weight {
- Weight::from_ref_time(31_859_000 as u64)
+ // Minimum execution time: 33_354 nanoseconds.
+ Weight::from_ref_time(33_982_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
diff --git a/runtime/kusama/src/weights/pallet_membership.rs b/runtime/kusama/src/weights/pallet_membership.rs
index 1994c517a4d3..cf8da764e400 100644
--- a/runtime/kusama/src/weights/pallet_membership.rs
+++ b/runtime/kusama/src/weights/pallet_membership.rs
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_membership`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-16, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
@@ -38,7 +38,7 @@
#![allow(unused_parens)]
#![allow(unused_imports)]
-use frame_support::{traits::Get, weights::{Weight}};
+use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData;
/// Weight functions for `pallet_membership`.
@@ -50,9 +50,10 @@ impl pallet_membership::WeightInfo for WeightInfo {
// Storage: TechnicalCommittee Prime (r:0 w:1)
/// The range of component `m` is `[1, 99]`.
fn add_member(m: u32, ) -> Weight {
- Weight::from_ref_time(19_903_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(39_000 as u64).saturating_mul(m as u64))
+ // Minimum execution time: 20_534 nanoseconds.
+ Weight::from_ref_time(21_396_898 as u64)
+ // Standard Error: 468
+ .saturating_add(Weight::from_ref_time(38_585 as u64).saturating_mul(m as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
@@ -63,9 +64,10 @@ impl pallet_membership::WeightInfo for WeightInfo {
// Storage: TechnicalCommittee Prime (r:0 w:1)
/// The range of component `m` is `[2, 100]`.
fn remove_member(m: u32, ) -> Weight {
- Weight::from_ref_time(22_263_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(34_000 as u64).saturating_mul(m as u64))
+ // Minimum execution time: 23_322 nanoseconds.
+ Weight::from_ref_time(24_145_795 as u64)
+ // Standard Error: 405
+ .saturating_add(Weight::from_ref_time(34_076 as u64).saturating_mul(m as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
@@ -76,9 +78,10 @@ impl pallet_membership::WeightInfo for WeightInfo {
// Storage: TechnicalCommittee Prime (r:0 w:1)
/// The range of component `m` is `[2, 100]`.
fn swap_member(m: u32, ) -> Weight {
- Weight::from_ref_time(22_495_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(46_000 as u64).saturating_mul(m as u64))
+ // Minimum execution time: 23_397 nanoseconds.
+ Weight::from_ref_time(24_269_522 as u64)
+ // Standard Error: 510
+ .saturating_add(Weight::from_ref_time(45_360 as u64).saturating_mul(m as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
@@ -89,9 +92,10 @@ impl pallet_membership::WeightInfo for WeightInfo {
// Storage: TechnicalCommittee Prime (r:0 w:1)
/// The range of component `m` is `[1, 100]`.
fn reset_member(m: u32, ) -> Weight {
- Weight::from_ref_time(21_897_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(162_000 as u64).saturating_mul(m as u64))
+ // Minimum execution time: 22_278 nanoseconds.
+ Weight::from_ref_time(24_319_110 as u64)
+ // Standard Error: 794
+ .saturating_add(Weight::from_ref_time(148_683 as u64).saturating_mul(m as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
@@ -102,9 +106,10 @@ impl pallet_membership::WeightInfo for WeightInfo {
// Storage: TechnicalCommittee Prime (r:0 w:1)
/// The range of component `m` is `[1, 100]`.
fn change_key(m: u32, ) -> Weight {
- Weight::from_ref_time(22_747_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(45_000 as u64).saturating_mul(m as u64))
+ // Minimum execution time: 23_217 nanoseconds.
+ Weight::from_ref_time(24_958_755 as u64)
+ // Standard Error: 614
+ .saturating_add(Weight::from_ref_time(43_480 as u64).saturating_mul(m as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(4 as u64))
}
@@ -113,17 +118,21 @@ impl pallet_membership::WeightInfo for WeightInfo {
// Storage: TechnicalCommittee Prime (r:0 w:1)
/// The range of component `m` is `[1, 100]`.
fn set_prime(m: u32, ) -> Weight {
- Weight::from_ref_time(8_106_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(9_000 as u64).saturating_mul(m as u64))
+ // Minimum execution time: 8_205 nanoseconds.
+ Weight::from_ref_time(8_676_301 as u64)
+ // Standard Error: 188
+ .saturating_add(Weight::from_ref_time(9_933 as u64).saturating_mul(m as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: TechnicalMembership Prime (r:0 w:1)
// Storage: TechnicalCommittee Prime (r:0 w:1)
/// The range of component `m` is `[1, 100]`.
- fn clear_prime(_m: u32, ) -> Weight {
- Weight::from_ref_time(4_643_000 as u64)
+ fn clear_prime(m: u32, ) -> Weight {
+ // Minimum execution time: 4_596 nanoseconds.
+ Weight::from_ref_time(4_956_168 as u64)
+ // Standard Error: 134
+ .saturating_add(Weight::from_ref_time(240 as u64).saturating_mul(m as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
}
diff --git a/runtime/kusama/src/weights/pallet_multisig.rs b/runtime/kusama/src/weights/pallet_multisig.rs
index b034fafcd8cc..adb5cbb2a7e4 100644
--- a/runtime/kusama/src/weights/pallet_multisig.rs
+++ b/runtime/kusama/src/weights/pallet_multisig.rs
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_multisig`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-10-26, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm2`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-16, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
@@ -28,11 +28,11 @@
// --steps=50
// --repeat=20
// --pallet=pallet_multisig
-// --extrinsic=
+// --extrinsic=*
// --execution=wasm
// --wasm-execution=compiled
// --header=./file_header.txt
-// --output=runtime/kusama/src/weights/
+// --output=./runtime/kusama/src/weights/
#![cfg_attr(rustfmt, rustfmt_skip)]
#![allow(unused_parens)]
@@ -46,22 +46,22 @@ pub struct WeightInfo(PhantomData);
impl pallet_multisig::WeightInfo for WeightInfo {
/// The range of component `z` is `[0, 10000]`.
fn as_multi_threshold_1(z: u32, ) -> Weight {
- // Minimum execution time: 14_233 nanoseconds.
- Weight::from_ref_time(14_763_390 as u64)
+ // Minimum execution time: 14_550 nanoseconds.
+ Weight::from_ref_time(14_819_772 as u64)
// Standard Error: 2
- .saturating_add(Weight::from_ref_time(479 as u64).saturating_mul(z as u64))
+ .saturating_add(Weight::from_ref_time(530 as u64).saturating_mul(z as u64))
}
// Storage: Multisig Multisigs (r:1 w:1)
// Storage: unknown [0x3a65787472696e7369635f696e646578] (r:1 w:0)
/// The range of component `s` is `[2, 100]`.
/// The range of component `z` is `[0, 10000]`.
fn as_multi_create(s: u32, z: u32, ) -> Weight {
- // Minimum execution time: 42_837 nanoseconds.
- Weight::from_ref_time(34_846_149 as u64)
- // Standard Error: 646
- .saturating_add(Weight::from_ref_time(89_482 as u64).saturating_mul(s as u64))
- // Standard Error: 6
- .saturating_add(Weight::from_ref_time(1_465 as u64).saturating_mul(z as u64))
+ // Minimum execution time: 44_383 nanoseconds.
+ Weight::from_ref_time(36_132_121 as u64)
+ // Standard Error: 1_070
+ .saturating_add(Weight::from_ref_time(93_918 as u64).saturating_mul(s as u64))
+ // Standard Error: 10
+ .saturating_add(Weight::from_ref_time(1_528 as u64).saturating_mul(z as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
@@ -69,12 +69,12 @@ impl pallet_multisig::WeightInfo for WeightInfo {
/// The range of component `s` is `[3, 100]`.
/// The range of component `z` is `[0, 10000]`.
fn as_multi_approve(s: u32, z: u32, ) -> Weight {
- // Minimum execution time: 32_269 nanoseconds.
- Weight::from_ref_time(25_447_784 as u64)
- // Standard Error: 499
- .saturating_add(Weight::from_ref_time(74_525 as u64).saturating_mul(s as u64))
- // Standard Error: 4
- .saturating_add(Weight::from_ref_time(1_457 as u64).saturating_mul(z as u64))
+ // Minimum execution time: 34_110 nanoseconds.
+ Weight::from_ref_time(26_664_378 as u64)
+ // Standard Error: 629
+ .saturating_add(Weight::from_ref_time(83_644 as u64).saturating_mul(s as u64))
+ // Standard Error: 6
+ .saturating_add(Weight::from_ref_time(1_504 as u64).saturating_mul(z as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
@@ -83,12 +83,12 @@ impl pallet_multisig::WeightInfo for WeightInfo {
/// The range of component `s` is `[2, 100]`.
/// The range of component `z` is `[0, 10000]`.
fn as_multi_complete(s: u32, z: u32, ) -> Weight {
- // Minimum execution time: 46_096 nanoseconds.
- Weight::from_ref_time(37_139_587 as u64)
- // Standard Error: 602
- .saturating_add(Weight::from_ref_time(104_199 as u64).saturating_mul(s as u64))
- // Standard Error: 5
- .saturating_add(Weight::from_ref_time(1_478 as u64).saturating_mul(z as u64))
+ // Minimum execution time: 48_372 nanoseconds.
+ Weight::from_ref_time(38_695_552 as u64)
+ // Standard Error: 1_125
+ .saturating_add(Weight::from_ref_time(106_455 as u64).saturating_mul(s as u64))
+ // Standard Error: 11
+ .saturating_add(Weight::from_ref_time(1_594 as u64).saturating_mul(z as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -96,30 +96,30 @@ impl pallet_multisig::WeightInfo for WeightInfo {
// Storage: unknown [0x3a65787472696e7369635f696e646578] (r:1 w:0)
/// The range of component `s` is `[2, 100]`.
fn approve_as_multi_create(s: u32, ) -> Weight {
- // Minimum execution time: 31_572 nanoseconds.
- Weight::from_ref_time(33_475_485 as u64)
- // Standard Error: 972
- .saturating_add(Weight::from_ref_time(91_041 as u64).saturating_mul(s as u64))
+ // Minimum execution time: 32_237 nanoseconds.
+ Weight::from_ref_time(34_981_368 as u64)
+ // Standard Error: 1_047
+ .saturating_add(Weight::from_ref_time(89_105 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Multisig Multisigs (r:1 w:1)
/// The range of component `s` is `[2, 100]`.
fn approve_as_multi_approve(s: u32, ) -> Weight {
- // Minimum execution time: 21_861 nanoseconds.
- Weight::from_ref_time(23_986_670 as u64)
- // Standard Error: 660
- .saturating_add(Weight::from_ref_time(79_765 as u64).saturating_mul(s as u64))
+ // Minimum execution time: 23_708 nanoseconds.
+ Weight::from_ref_time(25_069_818 as u64)
+ // Standard Error: 671
+ .saturating_add(Weight::from_ref_time(81_787 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Multisig Multisigs (r:1 w:1)
/// The range of component `s` is `[2, 100]`.
fn cancel_as_multi(s: u32, ) -> Weight {
- // Minimum execution time: 31_375 nanoseconds.
- Weight::from_ref_time(33_657_765 as u64)
- // Standard Error: 931
- .saturating_add(Weight::from_ref_time(84_177 as u64).saturating_mul(s as u64))
+ // Minimum execution time: 33_396 nanoseconds.
+ Weight::from_ref_time(35_234_152 as u64)
+ // Standard Error: 918
+ .saturating_add(Weight::from_ref_time(88_496 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
diff --git a/runtime/kusama/src/weights/pallet_nomination_pools.rs b/runtime/kusama/src/weights/pallet_nomination_pools.rs
index 96ebdf4dec37..365606d19ea7 100644
--- a/runtime/kusama/src/weights/pallet_nomination_pools.rs
+++ b/runtime/kusama/src/weights/pallet_nomination_pools.rs
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_nomination_pools`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-16, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
@@ -38,7 +38,7 @@
#![allow(unused_parens)]
#![allow(unused_imports)]
-use frame_support::{traits::Get, weights::{Weight}};
+use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData;
/// Weight functions for `pallet_nomination_pools`.
@@ -47,18 +47,19 @@ impl pallet_nomination_pools::WeightInfo for WeightInfo
// Storage: NominationPools MinJoinBond (r:1 w:0)
// Storage: NominationPools PoolMembers (r:1 w:1)
// Storage: NominationPools BondedPools (r:1 w:1)
+ // Storage: Staking Bonded (r:1 w:0)
// Storage: Staking Ledger (r:1 w:1)
// Storage: NominationPools RewardPools (r:1 w:1)
// Storage: System Account (r:2 w:1)
// Storage: NominationPools MaxPoolMembersPerPool (r:1 w:0)
// Storage: NominationPools MaxPoolMembers (r:1 w:0)
// Storage: NominationPools CounterForPoolMembers (r:1 w:1)
- // Storage: Staking Bonded (r:1 w:0)
// Storage: Balances Locks (r:1 w:1)
// Storage: VoterList ListNodes (r:3 w:3)
// Storage: VoterList ListBags (r:2 w:2)
fn join() -> Weight {
- Weight::from_ref_time(141_186_000 as u64)
+ // Minimum execution time: 140_322 nanoseconds.
+ Weight::from_ref_time(142_148_000 as u64)
.saturating_add(T::DbWeight::get().reads(17 as u64))
.saturating_add(T::DbWeight::get().writes(12 as u64))
}
@@ -66,13 +67,14 @@ impl pallet_nomination_pools::WeightInfo for WeightInfo
// Storage: NominationPools BondedPools (r:1 w:1)
// Storage: NominationPools RewardPools (r:1 w:1)
// Storage: System Account (r:3 w:2)
- // Storage: Staking Ledger (r:1 w:1)
// Storage: Staking Bonded (r:1 w:0)
+ // Storage: Staking Ledger (r:1 w:1)
// Storage: Balances Locks (r:1 w:1)
// Storage: VoterList ListNodes (r:3 w:3)
// Storage: VoterList ListBags (r:2 w:2)
fn bond_extra_transfer() -> Weight {
- Weight::from_ref_time(136_315_000 as u64)
+ // Minimum execution time: 137_788 nanoseconds.
+ Weight::from_ref_time(138_966_000 as u64)
.saturating_add(T::DbWeight::get().reads(14 as u64))
.saturating_add(T::DbWeight::get().writes(12 as u64))
}
@@ -80,13 +82,14 @@ impl pallet_nomination_pools::WeightInfo for WeightInfo
// Storage: NominationPools BondedPools (r:1 w:1)
// Storage: NominationPools RewardPools (r:1 w:1)
// Storage: System Account (r:3 w:3)
- // Storage: Staking Ledger (r:1 w:1)
// Storage: Staking Bonded (r:1 w:0)
+ // Storage: Staking Ledger (r:1 w:1)
// Storage: Balances Locks (r:1 w:1)
// Storage: VoterList ListNodes (r:2 w:2)
// Storage: VoterList ListBags (r:2 w:2)
fn bond_extra_reward() -> Weight {
- Weight::from_ref_time(140_720_000 as u64)
+ // Minimum execution time: 141_513 nanoseconds.
+ Weight::from_ref_time(143_360_000 as u64)
.saturating_add(T::DbWeight::get().reads(13 as u64))
.saturating_add(T::DbWeight::get().writes(12 as u64))
}
@@ -95,13 +98,15 @@ impl pallet_nomination_pools::WeightInfo for WeightInfo
// Storage: NominationPools RewardPools (r:1 w:1)
// Storage: System Account (r:1 w:1)
fn claim_payout() -> Weight {
- Weight::from_ref_time(54_588_000 as u64)
+ // Minimum execution time: 54_447 nanoseconds.
+ Weight::from_ref_time(54_781_000 as u64)
.saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().writes(4 as u64))
}
// Storage: NominationPools PoolMembers (r:1 w:1)
// Storage: NominationPools BondedPools (r:1 w:1)
// Storage: NominationPools RewardPools (r:1 w:1)
+ // Storage: Staking Bonded (r:1 w:0)
// Storage: Staking Ledger (r:1 w:1)
// Storage: System Account (r:2 w:1)
// Storage: Staking CurrentEra (r:1 w:0)
@@ -109,49 +114,53 @@ impl pallet_nomination_pools::WeightInfo for WeightInfo
// Storage: Staking MinNominatorBond (r:1 w:0)
// Storage: Balances Locks (r:1 w:1)
// Storage: VoterList ListNodes (r:3 w:3)
- // Storage: Staking Bonded (r:1 w:0)
// Storage: VoterList ListBags (r:2 w:2)
// Storage: NominationPools SubPoolsStorage (r:1 w:1)
// Storage: NominationPools CounterForSubPoolsStorage (r:1 w:1)
fn unbond() -> Weight {
- Weight::from_ref_time(139_268_000 as u64)
+ // Minimum execution time: 141_940 nanoseconds.
+ Weight::from_ref_time(142_725_000 as u64)
.saturating_add(T::DbWeight::get().reads(18 as u64))
.saturating_add(T::DbWeight::get().writes(13 as u64))
}
// Storage: NominationPools BondedPools (r:1 w:0)
+ // Storage: Staking Bonded (r:1 w:0)
// Storage: Staking Ledger (r:1 w:1)
// Storage: Staking CurrentEra (r:1 w:0)
// Storage: Balances Locks (r:1 w:1)
/// The range of component `s` is `[0, 100]`.
fn pool_withdraw_unbonded(s: u32, ) -> Weight {
- Weight::from_ref_time(51_661_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(17_000 as u64).saturating_mul(s as u64))
- .saturating_add(T::DbWeight::get().reads(4 as u64))
+ // Minimum execution time: 57_477 nanoseconds.
+ Weight::from_ref_time(59_023_071 as u64)
+ // Standard Error: 998
+ .saturating_add(Weight::from_ref_time(14_190 as u64).saturating_mul(s as u64))
+ .saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: NominationPools PoolMembers (r:1 w:1)
// Storage: Staking CurrentEra (r:1 w:0)
// Storage: NominationPools BondedPools (r:1 w:1)
// Storage: NominationPools SubPoolsStorage (r:1 w:1)
+ // Storage: Staking Bonded (r:1 w:0)
// Storage: Staking Ledger (r:1 w:1)
// Storage: Balances Locks (r:1 w:1)
// Storage: System Account (r:1 w:1)
// Storage: NominationPools CounterForPoolMembers (r:1 w:1)
/// The range of component `s` is `[0, 100]`.
fn withdraw_unbonded_update(s: u32, ) -> Weight {
- Weight::from_ref_time(92_492_000 as u64)
- // Standard Error: 1_000
- .saturating_add(Weight::from_ref_time(28_000 as u64).saturating_mul(s as u64))
- .saturating_add(T::DbWeight::get().reads(8 as u64))
+ // Minimum execution time: 96_669 nanoseconds.
+ Weight::from_ref_time(98_786_656 as u64)
+ // Standard Error: 1_856
+ .saturating_add(Weight::from_ref_time(19_127 as u64).saturating_mul(s as u64))
+ .saturating_add(T::DbWeight::get().reads(9 as u64))
.saturating_add(T::DbWeight::get().writes(7 as u64))
}
// Storage: NominationPools PoolMembers (r:1 w:1)
// Storage: Staking CurrentEra (r:1 w:0)
// Storage: NominationPools BondedPools (r:1 w:1)
// Storage: NominationPools SubPoolsStorage (r:1 w:1)
- // Storage: Staking Ledger (r:1 w:1)
// Storage: Staking Bonded (r:1 w:1)
+ // Storage: Staking Ledger (r:1 w:1)
// Storage: Staking SlashingSpans (r:1 w:0)
// Storage: Staking Validators (r:1 w:0)
// Storage: Staking Nominators (r:1 w:0)
@@ -168,25 +177,25 @@ impl pallet_nomination_pools::WeightInfo for WeightInfo
// Storage: Staking Payee (r:0 w:1)
/// The range of component `s` is `[0, 100]`.
fn withdraw_unbonded_kill(_s: u32, ) -> Weight {
- Weight::from_ref_time(146_714_000 as u64)
+ // Minimum execution time: 144_438 nanoseconds.
+ Weight::from_ref_time(148_030_307 as u64)
.saturating_add(T::DbWeight::get().reads(20 as u64))
.saturating_add(T::DbWeight::get().writes(17 as u64))
}
+ // Storage: NominationPools LastPoolId (r:1 w:1)
// Storage: Staking MinNominatorBond (r:1 w:0)
// Storage: NominationPools MinCreateBond (r:1 w:0)
// Storage: NominationPools MinJoinBond (r:1 w:0)
// Storage: NominationPools MaxPools (r:1 w:0)
// Storage: NominationPools CounterForBondedPools (r:1 w:1)
// Storage: NominationPools PoolMembers (r:1 w:1)
- // Storage: NominationPools LastPoolId (r:1 w:1)
// Storage: NominationPools MaxPoolMembersPerPool (r:1 w:0)
// Storage: NominationPools MaxPoolMembers (r:1 w:0)
// Storage: NominationPools CounterForPoolMembers (r:1 w:1)
// Storage: System Account (r:2 w:2)
- // Storage: Staking Ledger (r:1 w:1)
// Storage: Staking Bonded (r:1 w:1)
+ // Storage: Staking Ledger (r:1 w:1)
// Storage: Staking CurrentEra (r:1 w:0)
- // Storage: Staking HistoryDepth (r:1 w:0)
// Storage: Balances Locks (r:1 w:1)
// Storage: NominationPools RewardPools (r:1 w:1)
// Storage: NominationPools CounterForRewardPools (r:1 w:1)
@@ -195,36 +204,40 @@ impl pallet_nomination_pools::WeightInfo for WeightInfo
// Storage: NominationPools BondedPools (r:1 w:1)
// Storage: Staking Payee (r:0 w:1)
fn create() -> Weight {
- Weight::from_ref_time(130_529_000 as u64)
- .saturating_add(T::DbWeight::get().reads(22 as u64))
+ // Minimum execution time: 127_047 nanoseconds.
+ Weight::from_ref_time(128_199_000 as u64)
+ .saturating_add(T::DbWeight::get().reads(21 as u64))
.saturating_add(T::DbWeight::get().writes(15 as u64))
}
// Storage: NominationPools BondedPools (r:1 w:0)
+ // Storage: Staking Bonded (r:1 w:0)
// Storage: Staking Ledger (r:1 w:0)
// Storage: Staking MinNominatorBond (r:1 w:0)
// Storage: Staking Nominators (r:1 w:1)
// Storage: Staking MaxNominatorsCount (r:1 w:0)
// Storage: Staking Validators (r:2 w:0)
// Storage: Staking CurrentEra (r:1 w:0)
- // Storage: Staking Bonded (r:1 w:0)
// Storage: VoterList ListNodes (r:1 w:1)
// Storage: VoterList ListBags (r:1 w:1)
// Storage: VoterList CounterForListNodes (r:1 w:1)
// Storage: Staking CounterForNominators (r:1 w:1)
/// The range of component `n` is `[1, 24]`.
fn nominate(n: u32, ) -> Weight {
- Weight::from_ref_time(60_380_000 as u64)
- // Standard Error: 4_000
- .saturating_add(Weight::from_ref_time(1_053_000 as u64).saturating_mul(n as u64))
+ // Minimum execution time: 62_596 nanoseconds.
+ Weight::from_ref_time(63_891_149 as u64)
+ // Standard Error: 4_980
+ .saturating_add(Weight::from_ref_time(930_710 as u64).saturating_mul(n as u64))
.saturating_add(T::DbWeight::get().reads(12 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(n as u64)))
.saturating_add(T::DbWeight::get().writes(5 as u64))
}
// Storage: NominationPools BondedPools (r:1 w:1)
+ // Storage: Staking Bonded (r:1 w:0)
// Storage: Staking Ledger (r:1 w:0)
fn set_state() -> Weight {
- Weight::from_ref_time(34_144_000 as u64)
- .saturating_add(T::DbWeight::get().reads(2 as u64))
+ // Minimum execution time: 38_503 nanoseconds.
+ Weight::from_ref_time(38_998_000 as u64)
+ .saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: NominationPools BondedPools (r:1 w:0)
@@ -232,9 +245,10 @@ impl pallet_nomination_pools::WeightInfo for WeightInfo
// Storage: NominationPools CounterForMetadata (r:1 w:1)
/// The range of component `n` is `[1, 256]`.
fn set_metadata(n: u32, ) -> Weight {
- Weight::from_ref_time(16_813_000 as u64)
- // Standard Error: 0
- .saturating_add(Weight::from_ref_time(1_000 as u64).saturating_mul(n as u64))
+ // Minimum execution time: 15_627 nanoseconds.
+ Weight::from_ref_time(16_164_158 as u64)
+ // Standard Error: 116
+ .saturating_add(Weight::from_ref_time(660 as u64).saturating_mul(n as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -244,16 +258,19 @@ impl pallet_nomination_pools::WeightInfo for WeightInfo
// Storage: NominationPools MinCreateBond (r:0 w:1)
// Storage: NominationPools MaxPools (r:0 w:1)
fn set_configs() -> Weight {
- Weight::from_ref_time(7_602_000 as u64)
+ // Minimum execution time: 6_206 nanoseconds.
+ Weight::from_ref_time(6_409_000 as u64)
.saturating_add(T::DbWeight::get().writes(5 as u64))
}
// Storage: NominationPools BondedPools (r:1 w:1)
fn update_roles() -> Weight {
- Weight::from_ref_time(25_674_000 as u64)
+ // Minimum execution time: 25_897 nanoseconds.
+ Weight::from_ref_time(26_204_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: NominationPools BondedPools (r:1 w:0)
+ // Storage: Staking Bonded (r:1 w:0)
// Storage: Staking Ledger (r:1 w:0)
// Storage: Staking Validators (r:1 w:0)
// Storage: Staking Nominators (r:1 w:1)
@@ -262,8 +279,9 @@ impl pallet_nomination_pools::WeightInfo for WeightInfo
// Storage: VoterList ListBags (r:1 w:1)
// Storage: VoterList CounterForListNodes (r:1 w:1)
fn chill() -> Weight {
- Weight::from_ref_time(59_990_000 as u64)
- .saturating_add(T::DbWeight::get().reads(8 as u64))
+ // Minimum execution time: 65_020 nanoseconds.
+ Weight::from_ref_time(65_744_000 as u64)
+ .saturating_add(T::DbWeight::get().reads(9 as u64))
.saturating_add(T::DbWeight::get().writes(5 as u64))
}
}
diff --git a/runtime/kusama/src/weights/pallet_preimage.rs b/runtime/kusama/src/weights/pallet_preimage.rs
index 2fc3687f4581..bdc5d2480fb5 100644
--- a/runtime/kusama/src/weights/pallet_preimage.rs
+++ b/runtime/kusama/src/weights/pallet_preimage.rs
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_preimage`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-10-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm2`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-16, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
@@ -32,7 +32,7 @@
// --execution=wasm
// --wasm-execution=compiled
// --header=./file_header.txt
-// --output=./runtime/kusama/src/weights
+// --output=./runtime/kusama/src/weights/
#![cfg_attr(rustfmt, rustfmt_skip)]
#![allow(unused_parens)]
@@ -48,9 +48,10 @@ impl pallet_preimage::WeightInfo for WeightInfo {
// Storage: Preimage PreimageFor (r:0 w:1)
/// The range of component `s` is `[0, 4194304]`.
fn note_preimage(s: u32, ) -> Weight {
- Weight::from_ref_time(27_993_000 as u64)
- // Standard Error: 5
- .saturating_add(Weight::from_ref_time(2_208 as u64).saturating_mul(s as u64))
+ // Minimum execution time: 29_596 nanoseconds.
+ Weight::from_ref_time(29_955_000 as u64)
+ // Standard Error: 1
+ .saturating_add(Weight::from_ref_time(2_332 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -58,9 +59,10 @@ impl pallet_preimage::WeightInfo for WeightInfo {
// Storage: Preimage PreimageFor (r:0 w:1)
/// The range of component `s` is `[0, 4194304]`.
fn note_requested_preimage(s: u32, ) -> Weight {
- Weight::from_ref_time(19_503_000 as u64)
- // Standard Error: 5
- .saturating_add(Weight::from_ref_time(2_264 as u64).saturating_mul(s as u64))
+ // Minimum execution time: 20_842 nanoseconds.
+ Weight::from_ref_time(21_120_000 as u64)
+ // Standard Error: 1
+ .saturating_add(Weight::from_ref_time(2_333 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -68,66 +70,76 @@ impl pallet_preimage::WeightInfo for WeightInfo {
// Storage: Preimage PreimageFor (r:0 w:1)
/// The range of component `s` is `[0, 4194304]`.
fn note_no_deposit_preimage(s: u32, ) -> Weight {
- Weight::from_ref_time(17_878_000 as u64)
- // Standard Error: 2
- .saturating_add(Weight::from_ref_time(2_130 as u64).saturating_mul(s as u64))
+ // Minimum execution time: 19_634 nanoseconds.
+ Weight::from_ref_time(20_007_000 as u64)
+ // Standard Error: 1
+ .saturating_add(Weight::from_ref_time(2_334 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage PreimageFor (r:0 w:1)
fn unnote_preimage() -> Weight {
- Weight::from_ref_time(40_091_000 as u64)
+ // Minimum execution time: 42_136 nanoseconds.
+ Weight::from_ref_time(43_022_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage PreimageFor (r:0 w:1)
fn unnote_no_deposit_preimage() -> Weight {
- Weight::from_ref_time(27_459_000 as u64)
+ // Minimum execution time: 29_924 nanoseconds.
+ Weight::from_ref_time(30_867_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Preimage StatusFor (r:1 w:1)
fn request_preimage() -> Weight {
- Weight::from_ref_time(27_176_000 as u64)
+ // Minimum execution time: 28_022 nanoseconds.
+ Weight::from_ref_time(29_699_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Preimage StatusFor (r:1 w:1)
fn request_no_deposit_preimage() -> Weight {
- Weight::from_ref_time(14_096_000 as u64)
+ // Minimum execution time: 14_463 nanoseconds.
+ Weight::from_ref_time(15_790_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Preimage StatusFor (r:1 w:1)
fn request_unnoted_preimage() -> Weight {
- Weight::from_ref_time(17_365_000 as u64)
+ // Minimum execution time: 17_932 nanoseconds.
+ Weight::from_ref_time(18_435_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Preimage StatusFor (r:1 w:1)
fn request_requested_preimage() -> Weight {
- Weight::from_ref_time(8_013_000 as u64)
+ // Minimum execution time: 8_460 nanoseconds.
+ Weight::from_ref_time(8_648_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Preimage StatusFor (r:1 w:1)
// Storage: Preimage PreimageFor (r:0 w:1)
fn unrequest_preimage() -> Weight {
- Weight::from_ref_time(27_185_000 as u64)
+ // Minimum execution time: 28_702 nanoseconds.
+ Weight::from_ref_time(29_678_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Preimage StatusFor (r:1 w:1)
fn unrequest_unnoted_preimage() -> Weight {
- Weight::from_ref_time(7_955_000 as u64)
+ // Minimum execution time: 8_322 nanoseconds.
+ Weight::from_ref_time(8_687_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Preimage StatusFor (r:1 w:1)
fn unrequest_multi_referenced_preimage() -> Weight {
- Weight::from_ref_time(7_819_000 as u64)
+ // Minimum execution time: 8_678 nanoseconds.
+ Weight::from_ref_time(8_930_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
diff --git a/runtime/kusama/src/weights/pallet_proxy.rs b/runtime/kusama/src/weights/pallet_proxy.rs
index 2ea546eed2fa..5f86d59c8903 100644
--- a/runtime/kusama/src/weights/pallet_proxy.rs
+++ b/runtime/kusama/src/weights/pallet_proxy.rs
@@ -16,8 +16,8 @@
//! Autogenerated weights for `pallet_proxy`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-09-08, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-16, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
@@ -38,7 +38,7 @@
#![allow(unused_parens)]
#![allow(unused_imports)]
-use frame_support::{traits::Get, weights::{Weight}};
+use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData;
/// Weight functions for `pallet_proxy`.
@@ -47,9 +47,10 @@ impl pallet_proxy::WeightInfo for WeightInfo {
// Storage: Proxy Proxies (r:1 w:0)
/// The range of component `p` is `[1, 31]`.
fn proxy(p: u32, ) -> Weight {
- Weight::from_ref_time(20_646_000 as u64)
- // Standard Error: 1_000
- .saturating_add(Weight::from_ref_time(57_000 as u64).saturating_mul(p as u64))
+ // Minimum execution time: 20_558 nanoseconds.
+ Weight::from_ref_time(21_610_234 as u64)
+ // Standard Error: 1_401
+ .saturating_add(Weight::from_ref_time(54_214 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
}
// Storage: Proxy Proxies (r:1 w:0)
@@ -58,11 +59,12 @@ impl pallet_proxy::WeightInfo for WeightInfo {
/// The range of component `a` is `[0, 31]`.
/// The range of component `p` is `[1, 31]`.
fn proxy_announced(a: u32, p: u32, ) -> Weight {
- Weight::from_ref_time(37_132_000 as u64)
- // Standard Error: 1_000
- .saturating_add(Weight::from_ref_time(131_000 as u64).saturating_mul(a as u64))
- // Standard Error: 1_000
- .saturating_add(Weight::from_ref_time(57_000 as u64).saturating_mul(p as u64))
+ // Minimum execution time: 38_487 nanoseconds.
+ Weight::from_ref_time(39_434_103 as u64)
+ // Standard Error: 2_822
+ .saturating_add(Weight::from_ref_time(117_580 as u64).saturating_mul(a as u64))
+ // Standard Error: 2_915
+ .saturating_add(Weight::from_ref_time(26_206 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -71,11 +73,12 @@ impl pallet_proxy::WeightInfo for WeightInfo {
/// The range of component `a` is `[0, 31]`.
/// The range of component `p` is `[1, 31]`.
fn remove_announcement(a: u32, p: u32, ) -> Weight {
- Weight::from_ref_time(26_277_000 as u64)
- // Standard Error: 1_000
- .saturating_add(Weight::from_ref_time(125_000 as u64).saturating_mul(a as u64))
- // Standard Error: 1_000
- .saturating_add(Weight::from_ref_time(20_000 as u64).saturating_mul(p as u64))
+ // Minimum execution time: 26_384 nanoseconds.
+ Weight::from_ref_time(27_680_801 as u64)
+ // Standard Error: 1_625
+ .saturating_add(Weight::from_ref_time(116_271 as u64).saturating_mul(a as u64))
+ // Standard Error: 1_679
+ .saturating_add(Weight::from_ref_time(158 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -83,12 +86,11 @@ impl pallet_proxy::WeightInfo for WeightInfo {
// Storage: System Account (r:1 w:1)
/// The range of component `a` is `[0, 31]`.
/// The range of component `p` is `[1, 31]`.
- fn reject_announcement(a: u32, p: u32, ) -> Weight {
- Weight::from_ref_time(26_199_000 as u64)
- // Standard Error: 1_000
- .saturating_add(Weight::from_ref_time(128_000 as u64).saturating_mul(a as u64))
- // Standard Error: 1_000
- .saturating_add(Weight::from_ref_time(18_000 as u64).saturating_mul(p as u64))
+ fn reject_announcement(a: u32, _p: u32, ) -> Weight {
+ // Minimum execution time: 26_643 nanoseconds.
+ Weight::from_ref_time(28_099_236 as u64)
+ // Standard Error: 2_152
+ .saturating_add(Weight::from_ref_time(122_534 as u64).saturating_mul(a as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -98,38 +100,42 @@ impl pallet_proxy::WeightInfo for WeightInfo {
/// The range of component `a` is `[0, 31]`.
/// The range of component `p` is `[1, 31]`.
fn announce(a: u32, p: u32, ) -> Weight {
- Weight::from_ref_time(34_707_000 as u64)
- // Standard Error: 2_000
- .saturating_add(Weight::from_ref_time(109_000 as u64).saturating_mul(a as u64))
- // Standard Error: 2_000
- .saturating_add(Weight::from_ref_time(43_000 as u64).saturating_mul(p as u64))
+ // Minimum execution time: 34_367 nanoseconds.
+ Weight::from_ref_time(35_689_576 as u64)
+ // Standard Error: 1_886
+ .saturating_add(Weight::from_ref_time(108_160 as u64).saturating_mul(a as u64))
+ // Standard Error: 1_949
+ .saturating_add(Weight::from_ref_time(30_216 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Proxy Proxies (r:1 w:1)
/// The range of component `p` is `[1, 31]`.
fn add_proxy(p: u32, ) -> Weight {
- Weight::from_ref_time(28_733_000 as u64)
- // Standard Error: 2_000
- .saturating_add(Weight::from_ref_time(86_000 as u64).saturating_mul(p as u64))
+ // Minimum execution time: 28_377 nanoseconds.
+ Weight::from_ref_time(29_837_875 as u64)
+ // Standard Error: 1_632
+ .saturating_add(Weight::from_ref_time(56_009 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Proxy Proxies (r:1 w:1)
/// The range of component `p` is `[1, 31]`.
fn remove_proxy(p: u32, ) -> Weight {
- Weight::from_ref_time(28_518_000 as u64)
- // Standard Error: 2_000
- .saturating_add(Weight::from_ref_time(83_000 as u64).saturating_mul(p as u64))
+ // Minimum execution time: 28_842 nanoseconds.
+ Weight::from_ref_time(29_978_693 as u64)
+ // Standard Error: 1_866
+ .saturating_add(Weight::from_ref_time(77_845 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Proxy Proxies (r:1 w:1)
/// The range of component `p` is `[1, 31]`.
fn remove_proxies(p: u32, ) -> Weight {
- Weight::from_ref_time(24_528_000 as u64)
- // Standard Error: 2_000
- .saturating_add(Weight::from_ref_time(58_000 as u64).saturating_mul(p as u64))
+ // Minimum execution time: 25_443 nanoseconds.
+ Weight::from_ref_time(26_221_391 as u64)
+ // Standard Error: 1_420
+ .saturating_add(Weight::from_ref_time(41_799 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
@@ -137,18 +143,20 @@ impl pallet_proxy::WeightInfo for WeightInfo {
// Storage: Proxy Proxies (r:1 w:1)
/// The range of component `p` is `[1, 31]`.
fn create_pure(p: u32, ) -> Weight {
- Weight::from_ref_time(31_637_000 as u64)
- // Standard Error: 1_000
- .saturating_add(Weight::from_ref_time(36_000 as u64).saturating_mul(p as u64))
+ // Minimum execution time: 32_184 nanoseconds.
+ Weight::from_ref_time(33_287_258 as u64)
+ // Standard Error: 1_669
+ .saturating_add(Weight::from_ref_time(16_625 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Proxy Proxies (r:1 w:1)
/// The range of component `p` is `[0, 30]`.
fn kill_pure(p: u32, ) -> Weight {
- Weight::from_ref_time(26_228_000 as u64)
- // Standard Error: 1_000
- .saturating_add(Weight::from_ref_time(43_000 as u64).saturating_mul(p as u64))
+ // Minimum execution time: 26_186 nanoseconds.
+ Weight::from_ref_time(27_561_767 as u64)
+ // Standard Error: 1_567
+ .saturating_add(Weight::from_ref_time(35_395 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
diff --git a/runtime/kusama/src/weights/pallet_ranked_collective.rs b/runtime/kusama/src/weights/pallet_ranked_collective.rs
index 33b62a7db764..d84db79ceec1 100644
--- a/runtime/kusama/src/weights/pallet_ranked_collective.rs
+++ b/runtime/kusama/src/weights/pallet_ranked_collective.rs
@@ -16,22 +16,21 @@
//! Autogenerated weights for `pallet_ranked_collective`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-09-16, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm3`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-16, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
-// /home/benchbot/cargo_target_dir/production/polkadot
+// ./target/production/polkadot
// benchmark
// pallet
+// --chain=kusama-dev
// --steps=50
// --repeat=20
+// --pallet=pallet_ranked_collective
// --extrinsic=*
// --execution=wasm
// --wasm-execution=compiled
-// --heap-pages=4096
-// --pallet=pallet_ranked_collective
-// --chain=kusama-dev
// --header=./file_header.txt
// --output=./runtime/kusama/src/weights/
@@ -39,7 +38,7 @@
#![allow(unused_parens)]
#![allow(unused_imports)]
-use frame_support::{traits::Get, weights::{Weight}};
+use frame_support::{traits::Get, weights::Weight};
use sp_std::marker::PhantomData;
/// Weight functions for `pallet_ranked_collective`.
@@ -50,7 +49,8 @@ impl pallet_ranked_collective::WeightInfo for WeightInf
// Storage: FellowshipCollective IndexToId (r:0 w:1)
// Storage: FellowshipCollective IdToIndex (r:0 w:1)
fn add_member() -> Weight {
- Weight::from_ref_time(20_797_000 as u64)
+ // Minimum execution time: 20_091 nanoseconds.
+ Weight::from_ref_time(20_793_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(4 as u64))
}
@@ -60,9 +60,10 @@ impl pallet_ranked_collective::WeightInfo for WeightInf
// Storage: FellowshipCollective IndexToId (r:1 w:1)
/// The range of component `r` is `[0, 10]`.
fn remove_member(r: u32, ) -> Weight {
- Weight::from_ref_time(30_196_000 as u64)
- // Standard Error: 10_539
- .saturating_add(Weight::from_ref_time(9_633_382 as u64).saturating_mul(r as u64))
+ // Minimum execution time: 31_411 nanoseconds.
+ Weight::from_ref_time(33_650_900 as u64)
+ // Standard Error: 20_315
+ .saturating_add(Weight::from_ref_time(9_742_136 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().reads((3 as u64).saturating_mul(r as u64)))
.saturating_add(T::DbWeight::get().writes(4 as u64))
@@ -74,9 +75,10 @@ impl pallet_ranked_collective::WeightInfo for WeightInf
// Storage: FellowshipCollective IdToIndex (r:0 w:1)
/// The range of component `r` is `[0, 10]`.
fn promote_member(r: u32, ) -> Weight {
- Weight::from_ref_time(21_958_000 as u64)
- // Standard Error: 3_398
- .saturating_add(Weight::from_ref_time(527_087 as u64).saturating_mul(r as u64))
+ // Minimum execution time: 22_519 nanoseconds.
+ Weight::from_ref_time(24_202_495 as u64)
+ // Standard Error: 9_707
+ .saturating_add(Weight::from_ref_time(404_053 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(4 as u64))
}
@@ -86,9 +88,10 @@ impl pallet_ranked_collective::WeightInfo for WeightInf
// Storage: FellowshipCollective IndexToId (r:1 w:1)
/// The range of component `r` is `[0, 10]`.
fn demote_member(r: u32, ) -> Weight {
- Weight::from_ref_time(29_934_000 as u64)
- // Standard Error: 11_453
- .saturating_add(Weight::from_ref_time(884_044 as u64).saturating_mul(r as u64))
+ // Minimum execution time: 30_958 nanoseconds.
+ Weight::from_ref_time(34_019_871 as u64)
+ // Standard Error: 15_923
+ .saturating_add(Weight::from_ref_time(594_745 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().writes(4 as u64))
}
@@ -97,20 +100,21 @@ impl pallet_ranked_collective::WeightInfo for WeightInf
// Storage: FellowshipCollective Voting (r:1 w:1)
// Storage: Scheduler Agenda (r:2 w:2)
fn vote() -> Weight {
- Weight::from_ref_time(45_989_000 as u64)
+ // Minimum execution time: 46_000 nanoseconds.
+ Weight::from_ref_time(46_496_000 as u64)
.saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(4 as u64))
}
// Storage: FellowshipReferenda ReferendumInfoFor (r:1 w:0)
// Storage: FellowshipCollective VotingCleanup (r:1 w:0)
- // Storage: FellowshipCollective Voting (r:0 w:1)
- /// The range of component `n` is `[1, 100]`.
+ // Storage: FellowshipCollective Voting (r:0 w:2)
+ /// The range of component `n` is `[0, 100]`.
fn cleanup_poll(n: u32, ) -> Weight {
- Weight::from_ref_time(17_842_000 as u64)
- // Standard Error: 733
- .saturating_add(Weight::from_ref_time(892_322 as u64).saturating_mul(n as u64))
+ // Minimum execution time: 14_684 nanoseconds.
+ Weight::from_ref_time(18_793_742 as u64)
+ // Standard Error: 1_475
+ .saturating_add(Weight::from_ref_time(908_456 as u64).saturating_mul(n as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
- .saturating_add(T::DbWeight::get().writes(1 as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(n as u64)))
}
}
diff --git a/runtime/kusama/src/weights/pallet_referenda_fellowship_referenda.rs b/runtime/kusama/src/weights/pallet_referenda_fellowship_referenda.rs
index ca52d8044bbf..9ec43cb45154 100644
--- a/runtime/kusama/src/weights/pallet_referenda_fellowship_referenda.rs
+++ b/runtime/kusama/src/weights/pallet_referenda_fellowship_referenda.rs
@@ -16,22 +16,21 @@
//! Autogenerated weights for `pallet_referenda`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-09-30, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm3`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-16, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
-// /home/benchbot/cargo_target_dir/production/polkadot
+// ./target/production/polkadot
// benchmark
// pallet
+// --chain=kusama-dev
// --steps=50
// --repeat=20
+// --pallet=pallet_referenda
// --extrinsic=*
// --execution=wasm
// --wasm-execution=compiled
-// --heap-pages=4096
-// --pallet=pallet_referenda
-// --chain=kusama-dev
// --header=./file_header.txt
// --output=./runtime/kusama/src/weights/
@@ -50,14 +49,16 @@ impl pallet_referenda::WeightInfo for WeightInfo {
// Storage: Scheduler Agenda (r:1 w:1)
// Storage: FellowshipReferenda ReferendumInfoFor (r:0 w:1)
fn submit() -> Weight {
- Weight::from_ref_time(32_438_000 as u64)
+ // Minimum execution time: 32_206 nanoseconds.
+ Weight::from_ref_time(32_784_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
// Storage: FellowshipReferenda ReferendumInfoFor (r:1 w:1)
// Storage: Scheduler Agenda (r:2 w:2)
fn place_decision_deposit_preparing() -> Weight {
- Weight::from_ref_time(48_476_000 as u64)
+ // Minimum execution time: 48_362 nanoseconds.
+ Weight::from_ref_time(48_952_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
@@ -65,7 +66,8 @@ impl pallet_referenda::WeightInfo for WeightInfo {
// Storage: FellowshipReferenda DecidingCount (r:1 w:0)
// Storage: FellowshipReferenda TrackQueue (r:1 w:1)
fn place_decision_deposit_queued() -> Weight {
- Weight::from_ref_time(94_751_000 as u64)
+ // Minimum execution time: 85_674 nanoseconds.
+ Weight::from_ref_time(88_734_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -73,7 +75,8 @@ impl pallet_referenda::WeightInfo for WeightInfo {
// Storage: FellowshipReferenda DecidingCount (r:1 w:0)
// Storage: FellowshipReferenda TrackQueue (r:1 w:1)
fn place_decision_deposit_not_queued() -> Weight {
- Weight::from_ref_time(94_975_000 as u64)
+ // Minimum execution time: 85_794 nanoseconds.
+ Weight::from_ref_time(88_404_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -82,7 +85,8 @@ impl pallet_referenda::WeightInfo for WeightInfo {
// Storage: FellowshipCollective MemberCount (r:1 w:0)
// Storage: Scheduler Agenda (r:2 w:2)
fn place_decision_deposit_passing() -> Weight {
- Weight::from_ref_time(194_931_000 as u64)
+ // Minimum execution time: 175_254 nanoseconds.
+ Weight::from_ref_time(198_703_000 as u64)
.saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(4 as u64))
}
@@ -90,34 +94,39 @@ impl pallet_referenda::WeightInfo for WeightInfo {
// Storage: FellowshipReferenda DecidingCount (r:1 w:1)
// Storage: FellowshipCollective MemberCount (r:1 w:0)
fn place_decision_deposit_failing() -> Weight {
- Weight::from_ref_time(42_888_000 as u64)
+ // Minimum execution time: 43_797 nanoseconds.
+ Weight::from_ref_time(44_532_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: FellowshipReferenda ReferendumInfoFor (r:1 w:1)
fn refund_decision_deposit() -> Weight {
- Weight::from_ref_time(30_949_000 as u64)
+ // Minimum execution time: 31_289 nanoseconds.
+ Weight::from_ref_time(32_447_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: FellowshipReferenda ReferendumInfoFor (r:1 w:1)
// Storage: Scheduler Agenda (r:2 w:2)
fn cancel() -> Weight {
- Weight::from_ref_time(38_960_000 as u64)
+ // Minimum execution time: 38_398 nanoseconds.
+ Weight::from_ref_time(38_965_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
// Storage: FellowshipReferenda ReferendumInfoFor (r:1 w:1)
// Storage: Scheduler Agenda (r:2 w:2)
fn kill() -> Weight {
- Weight::from_ref_time(67_836_000 as u64)
+ // Minimum execution time: 68_236 nanoseconds.
+ Weight::from_ref_time(69_049_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
// Storage: FellowshipReferenda TrackQueue (r:1 w:0)
// Storage: FellowshipReferenda DecidingCount (r:1 w:1)
fn one_fewer_deciding_queue_empty() -> Weight {
- Weight::from_ref_time(11_204_000 as u64)
+ // Minimum execution time: 11_448 nanoseconds.
+ Weight::from_ref_time(11_631_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
@@ -126,7 +135,8 @@ impl pallet_referenda::WeightInfo for WeightInfo {
// Storage: FellowshipCollective MemberCount (r:1 w:0)
// Storage: Scheduler Agenda (r:2 w:2)
fn one_fewer_deciding_failing() -> Weight {
- Weight::from_ref_time(224_465_000 as u64)
+ // Minimum execution time: 118_312 nanoseconds.
+ Weight::from_ref_time(122_145_000 as u64)
.saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(4 as u64))
}
@@ -135,61 +145,69 @@ impl pallet_referenda::WeightInfo for WeightInfo {
// Storage: FellowshipCollective MemberCount (r:1 w:0)
// Storage: Scheduler Agenda (r:2 w:2)
fn one_fewer_deciding_passing() -> Weight {
- Weight::from_ref_time(224_764_000 as u64)
+ // Minimum execution time: 120_150 nanoseconds.
+ Weight::from_ref_time(122_398_000 as u64)
.saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(4 as u64))
}
// Storage: FellowshipReferenda ReferendumInfoFor (r:1 w:1)
// Storage: FellowshipReferenda TrackQueue (r:1 w:1)
- // Storage: Scheduler Agenda (r:1 w:1)
+ // Storage: Scheduler Agenda (r:1 w:0)
fn nudge_referendum_requeued_insertion() -> Weight {
- Weight::from_ref_time(91_727_000 as u64)
+ // Minimum execution time: 84_906 nanoseconds.
+ Weight::from_ref_time(89_371_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
- .saturating_add(T::DbWeight::get().writes(3 as u64))
+ .saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: FellowshipReferenda ReferendumInfoFor (r:1 w:1)
// Storage: FellowshipReferenda TrackQueue (r:1 w:1)
- // Storage: Scheduler Agenda (r:1 w:1)
+ // Storage: Scheduler Agenda (r:1 w:0)
fn nudge_referendum_requeued_slide() -> Weight {
- Weight::from_ref_time(91_868_000 as u64)
+ // Minimum execution time: 85_598 nanoseconds.
+ Weight::from_ref_time(88_356_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
- .saturating_add(T::DbWeight::get().writes(3 as u64))
+ .saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: FellowshipReferenda ReferendumInfoFor (r:1 w:1)
// Storage: FellowshipReferenda DecidingCount (r:1 w:0)
// Storage: FellowshipReferenda TrackQueue (r:1 w:1)
- // Storage: Scheduler Agenda (r:1 w:1)
+ // Storage: Scheduler Agenda (r:1 w:0)
fn nudge_referendum_queued() -> Weight {
- Weight::from_ref_time(94_520_000 as u64)
+ // Minimum execution time: 89_197 nanoseconds.
+ Weight::from_ref_time(92_027_000 as u64)
.saturating_add(T::DbWeight::get().reads(4 as u64))
- .saturating_add(T::DbWeight::get().writes(3 as u64))
+ .saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: FellowshipReferenda ReferendumInfoFor (r:1 w:1)
// Storage: FellowshipReferenda DecidingCount (r:1 w:0)
// Storage: FellowshipReferenda TrackQueue (r:1 w:1)
- // Storage: Scheduler Agenda (r:1 w:1)
+ // Storage: Scheduler Agenda (r:1 w:0)
fn nudge_referendum_not_queued() -> Weight {
- Weight::from_ref_time(93_483_000 as u64)
+ // Minimum execution time: 87_844 nanoseconds.
+ Weight::from_ref_time(90_542_000 as u64)
.saturating_add(T::DbWeight::get().reads(4 as u64))
- .saturating_add(T::DbWeight::get().writes(3 as u64))
+ .saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: FellowshipReferenda ReferendumInfoFor (r:1 w:1)
// Storage: Scheduler Agenda (r:1 w:1)
fn nudge_referendum_no_deposit() -> Weight {
- Weight::from_ref_time(29_294_000 as u64)
+ // Minimum execution time: 29_265 nanoseconds.
+ Weight::from_ref_time(29_798_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: FellowshipReferenda ReferendumInfoFor (r:1 w:1)
// Storage: Scheduler Agenda (r:1 w:1)
fn nudge_referendum_preparing() -> Weight {
- Weight::from_ref_time(30_363_000 as u64)
+ // Minimum execution time: 30_675 nanoseconds.
+ Weight::from_ref_time(31_170_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: FellowshipReferenda ReferendumInfoFor (r:1 w:1)
fn nudge_referendum_timed_out() -> Weight {
- Weight::from_ref_time(22_703_000 as u64)
+ // Minimum execution time: 22_609 nanoseconds.
+ Weight::from_ref_time(23_111_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
@@ -198,7 +216,8 @@ impl pallet_referenda::WeightInfo for WeightInfo {
// Storage: FellowshipCollective MemberCount (r:1 w:0)
// Storage: Scheduler Agenda (r:1 w:1)
fn nudge_referendum_begin_deciding_failing() -> Weight {
- Weight::from_ref_time(40_760_000 as u64)
+ // Minimum execution time: 41_801 nanoseconds.
+ Weight::from_ref_time(42_472_000 as u64)
.saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
@@ -207,7 +226,8 @@ impl pallet_referenda::WeightInfo for WeightInfo {
// Storage: FellowshipCollective MemberCount (r:1 w:0)
// Storage: Scheduler Agenda (r:1 w:1)
fn nudge_referendum_begin_deciding_passing() -> Weight {
- Weight::from_ref_time(91_300_000 as u64)
+ // Minimum execution time: 87_514 nanoseconds.
+ Weight::from_ref_time(90_499_000 as u64)
.saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
@@ -215,7 +235,8 @@ impl pallet_referenda::WeightInfo for WeightInfo {
// Storage: FellowshipCollective MemberCount (r:1 w:0)
// Storage: Scheduler Agenda (r:1 w:1)
fn nudge_referendum_begin_confirming() -> Weight {
- Weight::from_ref_time(165_577_000 as u64)
+ // Minimum execution time: 162_441 nanoseconds.
+ Weight::from_ref_time(168_308_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -223,7 +244,8 @@ impl pallet_referenda::WeightInfo for WeightInfo {
// Storage: FellowshipCollective MemberCount (r:1 w:0)
// Storage: Scheduler Agenda (r:1 w:1)
fn nudge_referendum_end_confirming() -> Weight {
- Weight::from_ref_time(166_188_000 as u64)
+ // Minimum execution time: 160_873 nanoseconds.
+ Weight::from_ref_time(169_712_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -231,7 +253,8 @@ impl pallet_referenda::WeightInfo for WeightInfo {
// Storage: FellowshipCollective MemberCount (r:1 w:0)
// Storage: Scheduler Agenda (r:1 w:1)
fn nudge_referendum_continue_not_confirming() -> Weight {
- Weight::from_ref_time(159_324_000 as u64)
+ // Minimum execution time: 153_124 nanoseconds.
+ Weight::from_ref_time(165_777_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -239,7 +262,8 @@ impl pallet_referenda::WeightInfo for WeightInfo {
// Storage: FellowshipCollective MemberCount (r:1 w:0)
// Storage: Scheduler Agenda (r:1 w:1)
fn nudge_referendum_continue_confirming() -> Weight {
- Weight::from_ref_time(82_615_000 as u64)
+ // Minimum execution time: 80_850 nanoseconds.
+ Weight::from_ref_time(84_958_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -247,17 +271,18 @@ impl pallet_referenda::WeightInfo for WeightInfo {
// Storage: FellowshipCollective MemberCount (r:1 w:0)
// Storage: Scheduler Agenda (r:2 w:2)
// Storage: Scheduler Lookup (r:1 w:1)
- // Storage: Preimage StatusFor (r:1 w:1)
fn nudge_referendum_approved() -> Weight {
- Weight::from_ref_time(185_354_000 as u64)
- .saturating_add(T::DbWeight::get().reads(6 as u64))
- .saturating_add(T::DbWeight::get().writes(5 as u64))
+ // Minimum execution time: 173_234 nanoseconds.
+ Weight::from_ref_time(182_819_000 as u64)
+ .saturating_add(T::DbWeight::get().reads(5 as u64))
+ .saturating_add(T::DbWeight::get().writes(4 as u64))
}
// Storage: FellowshipReferenda ReferendumInfoFor (r:1 w:1)
// Storage: FellowshipCollective MemberCount (r:1 w:0)
// Storage: Scheduler Agenda (r:1 w:1)
fn nudge_referendum_rejected() -> Weight {
- Weight::from_ref_time(165_963_000 as u64)
+ // Minimum execution time: 164_370 nanoseconds.
+ Weight::from_ref_time(169_732_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
diff --git a/runtime/kusama/src/weights/pallet_referenda_referenda.rs b/runtime/kusama/src/weights/pallet_referenda_referenda.rs
index 8d8fc6ecbd61..bc3c7952a71f 100644
--- a/runtime/kusama/src/weights/pallet_referenda_referenda.rs
+++ b/runtime/kusama/src/weights/pallet_referenda_referenda.rs
@@ -16,22 +16,21 @@
//! Autogenerated weights for `pallet_referenda`
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-09-30, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! HOSTNAME: `bm3`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
+//! DATE: 2022-11-16, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! HOSTNAME: `bm5`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("kusama-dev"), DB CACHE: 1024
// Executed Command:
-// /home/benchbot/cargo_target_dir/production/polkadot
+// ./target/production/polkadot
// benchmark
// pallet
+// --chain=kusama-dev
// --steps=50
// --repeat=20
+// --pallet=pallet_referenda
// --extrinsic=*
// --execution=wasm
// --wasm-execution=compiled
-// --heap-pages=4096
-// --pallet=pallet_referenda
-// --chain=kusama-dev
// --header=./file_header.txt
// --output=./runtime/kusama/src/weights/
@@ -49,14 +48,16 @@ impl pallet_referenda::WeightInfo for WeightInfo {
// Storage: Scheduler Agenda (r:1 w:1)
// Storage: Referenda ReferendumInfoFor (r:0 w:1)
fn submit() -> Weight {
- Weight::from_ref_time(37_366_000 as u64)
+ // Minimum execution time: 36_890 nanoseconds.
+ Weight::from_ref_time(37_840_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
// Storage: Scheduler Agenda (r:2 w:2)
fn place_decision_deposit_preparing() -> Weight {
- Weight::from_ref_time(47_931_000 as u64)
+ // Minimum execution time: 47_353 nanoseconds.
+ Weight::from_ref_time(48_691_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
@@ -64,7 +65,8 @@ impl pallet_referenda::WeightInfo for WeightInfo {
// Storage: Referenda DecidingCount (r:1 w:0)
// Storage: Referenda TrackQueue (r:1 w:1)
fn place_decision_deposit_queued() -> Weight {
- Weight::from_ref_time(48_799_000 as u64)
+ // Minimum execution time: 49_607 nanoseconds.
+ Weight::from_ref_time(50_436_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -72,7 +74,8 @@ impl pallet_referenda::WeightInfo for WeightInfo {
// Storage: Referenda DecidingCount (r:1 w:0)
// Storage: Referenda TrackQueue (r:1 w:1)
fn place_decision_deposit_not_queued() -> Weight {
- Weight::from_ref_time(48_899_000 as u64)
+ // Minimum execution time: 49_359 nanoseconds.
+ Weight::from_ref_time(50_238_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
@@ -80,41 +83,47 @@ impl pallet_referenda::WeightInfo for WeightInfo {
// Storage: Referenda DecidingCount (r:1 w:1)
// Storage: Scheduler Agenda (r:2 w:2)
fn place_decision_deposit_passing() -> Weight {
- Weight::from_ref_time(61_981_000 as u64)
+ // Minimum execution time: 61_393 nanoseconds.
+ Weight::from_ref_time(62_632_000 as u64)
.saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().writes(4 as u64))
}
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
// Storage: Referenda DecidingCount (r:1 w:1)
fn place_decision_deposit_failing() -> Weight {
- Weight::from_ref_time(42_318_000 as u64)
+ // Minimum execution time: 43_290 nanoseconds.
+ Weight::from_ref_time(43_959_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
fn refund_decision_deposit() -> Weight {
- Weight::from_ref_time(30_391_000 as u64)
+ // Minimum execution time: 30_398 nanoseconds.
+ Weight::from_ref_time(31_447_000 as u64)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
// Storage: Scheduler Agenda (r:2 w:2)
fn cancel() -> Weight {
- Weight::from_ref_time(38_601_000 as u64)
+ // Minimum execution time: 37_690 nanoseconds.
+ Weight::from_ref_time(38_864_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
// Storage: Scheduler Agenda (r:2 w:2)
fn kill() -> Weight {
- Weight::from_ref_time(78_111_000 as u64)
+ // Minimum execution time: 77_496 nanoseconds.
+ Weight::from_ref_time(79_978_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
// Storage: Referenda TrackQueue (r:1 w:0)
// Storage: Referenda DecidingCount (r:1 w:1)
fn one_fewer_deciding_queue_empty() -> Weight {
- Weight::from_ref_time(11_132_000 as u64)
+ // Minimum execution time: 11_238 nanoseconds.
+ Weight::from_ref_time(11_723_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
@@ -122,7 +131,8 @@ impl pallet_referenda::WeightInfo for WeightInfo {
// Storage: Referenda ReferendumInfoFor (r:1 w:1)
// Storage: Scheduler Agenda (r:2 w:2)
fn one_fewer_deciding_failing() -> Weight {
- Weight::from_ref_time(161_624_000 as u64)
+ // Minimum execution time: 75_823 nanoseconds.
+ Weight::from_ref_time(77_497_000 as u64)
.saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().writes(4 as u64))
}
@@ -130,61 +140,69 @@ impl pallet_referenda::WeightInfo for WeightInfo