Add production profile to substrate-wasm-builder (#10747)

* Add production profile to wasm builder

* Fix profile detection

* Apply suggestions from code review

Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>

* Replace panic! by println! + exit

* Default to `release` for wasm on debug builds

* Replaced unwrap by expect

* Update all weights

Rerun on the bm2 server.

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* cargo run --quiet --profile=production  --features=runtime-benchmarks --manifest-path=bin/node/cli/Cargo.toml -- benchmark --chain=dev --steps=50 --repeat=20 --pallet=pallet_contracts --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=./frame/contracts/src/weights.rs --template=./.maintain/frame-weight-template.hbs

Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Co-authored-by: Parity Bot <admin@parity.io>
This commit is contained in:
Alexander Theißen
2022-01-31 15:16:26 +01:00
committed by GitHub
parent 21d5573b25
commit f3168c3fa0
35 changed files with 1943 additions and 1833 deletions
+53 -53
View File
@@ -18,11 +18,11 @@
//! Autogenerated weights for pallet_vesting
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
//! DATE: 2022-01-18, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! DATE: 2022-01-31, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("dev"), DB CACHE: 1024
// Executed Command:
// ./target/lto-fat-cg1/substrate
// ./target/production/substrate
// benchmark
// --chain=dev
// --steps=50
@@ -34,7 +34,7 @@
// --heap-pages=4096
// --output=./frame/vesting/src/weights.rs
// --template=.maintain/frame-weight-template.hbs
// --header=LICENSE-APACHE2
// --header=HEADER-APACHE2
// --raw
#![cfg_attr(rustfmt, rustfmt_skip)]
@@ -62,22 +62,22 @@ impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
// Storage: Vesting Vesting (r:1 w:1)
// Storage: Balances Locks (r:1 w:1)
fn vest_locked(l: u32, s: u32, ) -> Weight {
(27_545_000 as Weight)
(27_037_000 as Weight)
// Standard Error: 1_000
.saturating_add((111_000 as Weight).saturating_mul(l as Weight))
.saturating_add((88_000 as Weight).saturating_mul(l as Weight))
// Standard Error: 2_000
.saturating_add((78_000 as Weight).saturating_mul(s as Weight))
.saturating_add((69_000 as Weight).saturating_mul(s as Weight))
.saturating_add(T::DbWeight::get().reads(2 as Weight))
.saturating_add(T::DbWeight::get().writes(2 as Weight))
}
// Storage: Vesting Vesting (r:1 w:1)
// Storage: Balances Locks (r:1 w:1)
fn vest_unlocked(l: u32, s: u32, ) -> Weight {
(27_638_000 as Weight)
(26_627_000 as Weight)
// Standard Error: 1_000
.saturating_add((102_000 as Weight).saturating_mul(l as Weight))
.saturating_add((82_000 as Weight).saturating_mul(l as Weight))
// Standard Error: 2_000
.saturating_add((41_000 as Weight).saturating_mul(s as Weight))
.saturating_add((53_000 as Weight).saturating_mul(s as Weight))
.saturating_add(T::DbWeight::get().reads(2 as Weight))
.saturating_add(T::DbWeight::get().writes(2 as Weight))
}
@@ -85,11 +85,11 @@ impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
// Storage: Balances Locks (r:1 w:1)
// Storage: System Account (r:1 w:1)
fn vest_other_locked(l: u32, s: u32, ) -> Weight {
(27_571_000 as Weight)
(26_672_000 as Weight)
// Standard Error: 1_000
.saturating_add((105_000 as Weight).saturating_mul(l as Weight))
.saturating_add((85_000 as Weight).saturating_mul(l as Weight))
// Standard Error: 2_000
.saturating_add((76_000 as Weight).saturating_mul(s as Weight))
.saturating_add((77_000 as Weight).saturating_mul(s as Weight))
.saturating_add(T::DbWeight::get().reads(3 as Weight))
.saturating_add(T::DbWeight::get().writes(3 as Weight))
}
@@ -97,11 +97,11 @@ impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
// Storage: Balances Locks (r:1 w:1)
// Storage: System Account (r:1 w:1)
fn vest_other_unlocked(l: u32, s: u32, ) -> Weight {
(27_470_000 as Weight)
(26_682_000 as Weight)
// Standard Error: 1_000
.saturating_add((99_000 as Weight).saturating_mul(l as Weight))
.saturating_add((74_000 as Weight).saturating_mul(l as Weight))
// Standard Error: 2_000
.saturating_add((48_000 as Weight).saturating_mul(s as Weight))
.saturating_add((51_000 as Weight).saturating_mul(s as Weight))
.saturating_add(T::DbWeight::get().reads(3 as Weight))
.saturating_add(T::DbWeight::get().writes(3 as Weight))
}
@@ -109,11 +109,11 @@ impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
// Storage: System Account (r:1 w:1)
// Storage: Balances Locks (r:1 w:1)
fn vested_transfer(l: u32, s: u32, ) -> Weight {
(42_886_000 as Weight)
(42_066_000 as Weight)
// Standard Error: 1_000
.saturating_add((100_000 as Weight).saturating_mul(l as Weight))
.saturating_add((83_000 as Weight).saturating_mul(l as Weight))
// Standard Error: 3_000
.saturating_add((49_000 as Weight).saturating_mul(s as Weight))
.saturating_add((43_000 as Weight).saturating_mul(s as Weight))
.saturating_add(T::DbWeight::get().reads(3 as Weight))
.saturating_add(T::DbWeight::get().writes(3 as Weight))
}
@@ -121,9 +121,9 @@ impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
// Storage: System Account (r:2 w:2)
// Storage: Balances Locks (r:1 w:1)
fn force_vested_transfer(l: u32, s: u32, ) -> Weight {
(42_528_000 as Weight)
(41_672_000 as Weight)
// Standard Error: 1_000
.saturating_add((104_000 as Weight).saturating_mul(l as Weight))
.saturating_add((84_000 as Weight).saturating_mul(l as Weight))
// Standard Error: 3_000
.saturating_add((46_000 as Weight).saturating_mul(s as Weight))
.saturating_add(T::DbWeight::get().reads(4 as Weight))
@@ -133,11 +133,11 @@ impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
// Storage: Balances Locks (r:1 w:1)
// Storage: System Account (r:1 w:1)
fn not_unlocking_merge_schedules(l: u32, s: u32, ) -> Weight {
(28_372_000 as Weight)
// Standard Error: 1_000
.saturating_add((110_000 as Weight).saturating_mul(l as Weight))
(27_627_000 as Weight)
// Standard Error: 0
.saturating_add((86_000 as Weight).saturating_mul(l as Weight))
// Standard Error: 2_000
.saturating_add((71_000 as Weight).saturating_mul(s as Weight))
.saturating_add((68_000 as Weight).saturating_mul(s as Weight))
.saturating_add(T::DbWeight::get().reads(3 as Weight))
.saturating_add(T::DbWeight::get().writes(3 as Weight))
}
@@ -145,11 +145,11 @@ impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
// Storage: Balances Locks (r:1 w:1)
// Storage: System Account (r:1 w:1)
fn unlocking_merge_schedules(l: u32, s: u32, ) -> Weight {
(28_117_000 as Weight)
(27_143_000 as Weight)
// Standard Error: 0
.saturating_add((88_000 as Weight).saturating_mul(l as Weight))
// Standard Error: 1_000
.saturating_add((108_000 as Weight).saturating_mul(l as Weight))
// Standard Error: 2_000
.saturating_add((76_000 as Weight).saturating_mul(s as Weight))
.saturating_add((72_000 as Weight).saturating_mul(s as Weight))
.saturating_add(T::DbWeight::get().reads(3 as Weight))
.saturating_add(T::DbWeight::get().writes(3 as Weight))
}
@@ -160,22 +160,22 @@ impl WeightInfo for () {
// Storage: Vesting Vesting (r:1 w:1)
// Storage: Balances Locks (r:1 w:1)
fn vest_locked(l: u32, s: u32, ) -> Weight {
(27_545_000 as Weight)
(27_037_000 as Weight)
// Standard Error: 1_000
.saturating_add((111_000 as Weight).saturating_mul(l as Weight))
.saturating_add((88_000 as Weight).saturating_mul(l as Weight))
// Standard Error: 2_000
.saturating_add((78_000 as Weight).saturating_mul(s as Weight))
.saturating_add((69_000 as Weight).saturating_mul(s as Weight))
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
.saturating_add(RocksDbWeight::get().writes(2 as Weight))
}
// Storage: Vesting Vesting (r:1 w:1)
// Storage: Balances Locks (r:1 w:1)
fn vest_unlocked(l: u32, s: u32, ) -> Weight {
(27_638_000 as Weight)
(26_627_000 as Weight)
// Standard Error: 1_000
.saturating_add((102_000 as Weight).saturating_mul(l as Weight))
.saturating_add((82_000 as Weight).saturating_mul(l as Weight))
// Standard Error: 2_000
.saturating_add((41_000 as Weight).saturating_mul(s as Weight))
.saturating_add((53_000 as Weight).saturating_mul(s as Weight))
.saturating_add(RocksDbWeight::get().reads(2 as Weight))
.saturating_add(RocksDbWeight::get().writes(2 as Weight))
}
@@ -183,11 +183,11 @@ impl WeightInfo for () {
// Storage: Balances Locks (r:1 w:1)
// Storage: System Account (r:1 w:1)
fn vest_other_locked(l: u32, s: u32, ) -> Weight {
(27_571_000 as Weight)
(26_672_000 as Weight)
// Standard Error: 1_000
.saturating_add((105_000 as Weight).saturating_mul(l as Weight))
.saturating_add((85_000 as Weight).saturating_mul(l as Weight))
// Standard Error: 2_000
.saturating_add((76_000 as Weight).saturating_mul(s as Weight))
.saturating_add((77_000 as Weight).saturating_mul(s as Weight))
.saturating_add(RocksDbWeight::get().reads(3 as Weight))
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
}
@@ -195,11 +195,11 @@ impl WeightInfo for () {
// Storage: Balances Locks (r:1 w:1)
// Storage: System Account (r:1 w:1)
fn vest_other_unlocked(l: u32, s: u32, ) -> Weight {
(27_470_000 as Weight)
(26_682_000 as Weight)
// Standard Error: 1_000
.saturating_add((99_000 as Weight).saturating_mul(l as Weight))
.saturating_add((74_000 as Weight).saturating_mul(l as Weight))
// Standard Error: 2_000
.saturating_add((48_000 as Weight).saturating_mul(s as Weight))
.saturating_add((51_000 as Weight).saturating_mul(s as Weight))
.saturating_add(RocksDbWeight::get().reads(3 as Weight))
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
}
@@ -207,11 +207,11 @@ impl WeightInfo for () {
// Storage: System Account (r:1 w:1)
// Storage: Balances Locks (r:1 w:1)
fn vested_transfer(l: u32, s: u32, ) -> Weight {
(42_886_000 as Weight)
(42_066_000 as Weight)
// Standard Error: 1_000
.saturating_add((100_000 as Weight).saturating_mul(l as Weight))
.saturating_add((83_000 as Weight).saturating_mul(l as Weight))
// Standard Error: 3_000
.saturating_add((49_000 as Weight).saturating_mul(s as Weight))
.saturating_add((43_000 as Weight).saturating_mul(s as Weight))
.saturating_add(RocksDbWeight::get().reads(3 as Weight))
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
}
@@ -219,9 +219,9 @@ impl WeightInfo for () {
// Storage: System Account (r:2 w:2)
// Storage: Balances Locks (r:1 w:1)
fn force_vested_transfer(l: u32, s: u32, ) -> Weight {
(42_528_000 as Weight)
(41_672_000 as Weight)
// Standard Error: 1_000
.saturating_add((104_000 as Weight).saturating_mul(l as Weight))
.saturating_add((84_000 as Weight).saturating_mul(l as Weight))
// Standard Error: 3_000
.saturating_add((46_000 as Weight).saturating_mul(s as Weight))
.saturating_add(RocksDbWeight::get().reads(4 as Weight))
@@ -231,11 +231,11 @@ impl WeightInfo for () {
// Storage: Balances Locks (r:1 w:1)
// Storage: System Account (r:1 w:1)
fn not_unlocking_merge_schedules(l: u32, s: u32, ) -> Weight {
(28_372_000 as Weight)
// Standard Error: 1_000
.saturating_add((110_000 as Weight).saturating_mul(l as Weight))
(27_627_000 as Weight)
// Standard Error: 0
.saturating_add((86_000 as Weight).saturating_mul(l as Weight))
// Standard Error: 2_000
.saturating_add((71_000 as Weight).saturating_mul(s as Weight))
.saturating_add((68_000 as Weight).saturating_mul(s as Weight))
.saturating_add(RocksDbWeight::get().reads(3 as Weight))
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
}
@@ -243,11 +243,11 @@ impl WeightInfo for () {
// Storage: Balances Locks (r:1 w:1)
// Storage: System Account (r:1 w:1)
fn unlocking_merge_schedules(l: u32, s: u32, ) -> Weight {
(28_117_000 as Weight)
(27_143_000 as Weight)
// Standard Error: 0
.saturating_add((88_000 as Weight).saturating_mul(l as Weight))
// Standard Error: 1_000
.saturating_add((108_000 as Weight).saturating_mul(l as Weight))
// Standard Error: 2_000
.saturating_add((76_000 as Weight).saturating_mul(s as Weight))
.saturating_add((72_000 as Weight).saturating_mul(s as Weight))
.saturating_add(RocksDbWeight::get().reads(3 as Weight))
.saturating_add(RocksDbWeight::get().writes(3 as Weight))
}