This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Add Baseline FRAME Benchmarks #9691
Merged
Merged
Changes from 9 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
84f49e4
create and add baseline
shawntabrizi 8af0c26
fix import
shawntabrizi 6874052
Merge branch 'master' into shawntabrizi-baseline-bench
shawntabrizi 10497ec
try a different name
shawntabrizi 86eb7a0
cargo run --quiet --release --features=runtime-benchmarks --manifest-…
7c11bcf
cargo run --quiet --release --features=runtime-benchmarks --manifest-…
862bff8
cargo run --quiet --release --features=runtime-benchmarks --manifest-…
8918244
increase repeats
shawntabrizi 84b38e8
cargo run --quiet --release --features=runtime-benchmarks --manifest-…
8fb3705
Merge branch 'master' into shawntabrizi-baseline-bench
shawntabrizi 0c4f3bb
Update baseline.rs
shawntabrizi 97ede33
Update baseline.rs
shawntabrizi 2795c87
Merge branch 'master' of https://github.com/paritytech/substrate into…
eb8eafc
cargo run --quiet --release --features=runtime-benchmarks --manifest-…
2cfb856
Merge branch 'shawntabrizi-baseline-bench' of https://github.com/pari…
shawntabrizi cbf081b
cargo run --quiet --release --features=runtime-benchmarks --manifest-…
0ff63fc
cargo run --quiet --release --features=runtime-benchmarks --manifest-…
3366f3c
cargo run --quiet --release --features=runtime-benchmarks --manifest-…
1d1d101
improve hash benchmark
shawntabrizi edfe6b3
Merge branch 'shawntabrizi-baseline-bench' of https://github.com/pari…
shawntabrizi 995cec6
cargo run --quiet --release --features=runtime-benchmarks --manifest-…
6faad4d
cargo run --quiet --release --features=runtime-benchmarks --manifest-…
850cb03
cargo run --quiet --release --features=runtime-benchmarks --manifest-…
9369a10
Merge branch 'master' of https://github.com/paritytech/substrate into…
ba2decc
cargo run --quiet --release --features=runtime-benchmarks --manifest-…
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,170 @@ | ||
// This file is part of Substrate. | ||
|
||
// Copyright (C) 2020-2021 Parity Technologies (UK) Ltd. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
// 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. | ||
|
||
//! A set of benchmarks which can establish a global baseline for all other | ||
//! benchmarking. | ||
|
||
use crate::{account, benchmarks, impl_benchmark_test_suite}; | ||
use frame_system::Pallet as System; | ||
use sp_runtime::traits::Hash; | ||
use sp_std::prelude::*; | ||
|
||
const SEED: u32 = 1337; | ||
|
||
pub struct Pallet<T: Config>(System<T>); | ||
pub trait Config: frame_system::Config {} | ||
|
||
benchmarks! { | ||
addition { | ||
let i in 0 .. 1_000_000; | ||
let mut start = 0; | ||
}: { | ||
(0..i).for_each(|_| start += 1); | ||
} verify { | ||
assert_eq!(start, i); | ||
} | ||
|
||
subtraction { | ||
let i in 0 .. 1_000_000; | ||
let mut start = u32::MAX; | ||
}: { | ||
(0..i).for_each(|_| start -= 1); | ||
} verify { | ||
assert_eq!(start, u32::MAX - i); | ||
} | ||
|
||
multiplication { | ||
let i in 0 .. 1_000_000; | ||
let mut out = 0; | ||
}: { | ||
(1..=i).for_each(|j| out = i * j); | ||
} verify { | ||
assert_eq!(out, i * i); | ||
} | ||
|
||
division { | ||
let i in 0 .. 1_000_000; | ||
let mut out = 0; | ||
}: { | ||
(1..=i).for_each(|j| out = i / j); | ||
} verify { | ||
assert_eq!(out, i.min(1)); | ||
} | ||
|
||
hashing { | ||
let i in 0 .. 100_000; | ||
let mut hash = T::Hash::default(); | ||
}: { | ||
(0..=i).for_each(|j| hash = T::Hashing::hash(&j.to_be_bytes())); | ||
} verify { | ||
if i > 0 { assert!(hash != T::Hash::default()); } | ||
} | ||
|
||
storage_read { | ||
let i in 0 .. 1_000; | ||
let mut people = Vec::new(); | ||
(0..i).for_each(|j| { | ||
let who: T::AccountId = account("user", j, SEED); | ||
System::<T>::inc_providers(&who); | ||
people.push(who); | ||
}); | ||
}: { | ||
people.iter().for_each(|who| { | ||
// This does a storage read | ||
assert!(System::<T>::can_dec_provider(&who)); | ||
shawntabrizi marked this conversation as resolved.
Show resolved
Hide resolved
|
||
}); | ||
} | ||
|
||
storage_write { | ||
let i in 0 .. 1_000; | ||
let mut people = Vec::new(); | ||
(0..i).for_each(|j| { | ||
let who: T::AccountId = account("user", j, SEED); | ||
people.push(who); | ||
}); | ||
}: { | ||
people.iter().for_each(|who| { | ||
// This does a storage write | ||
System::<T>::inc_providers(&who); | ||
shawntabrizi marked this conversation as resolved.
Show resolved
Hide resolved
|
||
}); | ||
} verify { | ||
people.iter().for_each(|who| { | ||
assert!(System::<T>::can_dec_provider(&who)); | ||
}); | ||
} | ||
} | ||
|
||
impl_benchmark_test_suite!( | ||
Pallet, | ||
crate::baseline::mock::new_test_ext(), | ||
crate::baseline::mock::Test, | ||
); | ||
|
||
#[cfg(test)] | ||
pub mod mock { | ||
use sp_runtime::{testing::H256, traits::IdentityLookup}; | ||
|
||
type AccountId = u64; | ||
type AccountIndex = u32; | ||
type BlockNumber = u64; | ||
|
||
type UncheckedExtrinsic = frame_system::mocking::MockUncheckedExtrinsic<Test>; | ||
type Block = frame_system::mocking::MockBlock<Test>; | ||
|
||
frame_support::construct_runtime!( | ||
pub enum Test where | ||
Block = Block, | ||
NodeBlock = Block, | ||
UncheckedExtrinsic = UncheckedExtrinsic, | ||
{ | ||
System: frame_system::{Pallet, Call, Config, Storage, Event<T>}, | ||
} | ||
); | ||
|
||
impl frame_system::Config for Test { | ||
type BaseCallFilter = frame_support::traits::Everything; | ||
type BlockWeights = (); | ||
type BlockLength = (); | ||
type DbWeight = (); | ||
type Origin = Origin; | ||
type Index = AccountIndex; | ||
type BlockNumber = BlockNumber; | ||
type Call = Call; | ||
type Hash = H256; | ||
type Hashing = ::sp_runtime::traits::BlakeTwo256; | ||
type AccountId = AccountId; | ||
type Lookup = IdentityLookup<Self::AccountId>; | ||
type Header = sp_runtime::testing::Header; | ||
type Event = Event; | ||
type BlockHashCount = (); | ||
type Version = (); | ||
type PalletInfo = PalletInfo; | ||
type AccountData = (); | ||
type OnNewAccount = (); | ||
type OnKilledAccount = (); | ||
type SystemWeightInfo = (); | ||
type SS58Prefix = (); | ||
type OnSetCode = (); | ||
} | ||
|
||
impl super::Config for Test {} | ||
|
||
pub fn new_test_ext() -> sp_io::TestExternalities { | ||
let t = frame_system::GenesisConfig::default().build_storage::<Test>().unwrap(); | ||
sp_io::TestExternalities::new(t) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
// This file is part of Substrate. | ||
|
||
// Copyright (C) 2021 Parity Technologies (UK) Ltd. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
// 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. | ||
|
||
//! Autogenerated weights for frame_benchmarking | ||
//! | ||
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev | ||
//! DATE: 2021-09-05, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` | ||
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("dev"), DB CACHE: 128 | ||
|
||
// Executed Command: | ||
// target/release/substrate | ||
// benchmark | ||
// --chain=dev | ||
// --steps=50 | ||
// --repeat=20 | ||
// --pallet=frame_benchmarking | ||
// --extrinsic=* | ||
// --execution=wasm | ||
// --wasm-execution=compiled | ||
// --heap-pages=4096 | ||
// --output=./frame/benchmarking/src/weights.rs | ||
// --template=./.maintain/frame-weight-template.hbs | ||
|
||
|
||
#![cfg_attr(rustfmt, rustfmt_skip)] | ||
#![allow(unused_parens)] | ||
#![allow(unused_imports)] | ||
|
||
use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}}; | ||
use sp_std::marker::PhantomData; | ||
|
||
/// Weight functions needed for frame_benchmarking. | ||
pub trait WeightInfo { | ||
fn addition(i: u32, ) -> Weight; | ||
fn subtraction(i: u32, ) -> Weight; | ||
fn multiplication(i: u32, ) -> Weight; | ||
fn division(i: u32, ) -> Weight; | ||
fn hashing(i: u32, ) -> Weight; | ||
fn storage_read(i: u32, ) -> Weight; | ||
fn storage_write(i: u32, ) -> Weight; | ||
} | ||
|
||
/// Weights for frame_benchmarking using the Substrate node and recommended hardware. | ||
pub struct SubstrateWeight<T>(PhantomData<T>); | ||
impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> { | ||
fn addition(_i: u32, ) -> Weight { | ||
(420_000 as Weight) | ||
} | ||
fn subtraction(_i: u32, ) -> Weight { | ||
(415_000 as Weight) | ||
} | ||
fn multiplication(_i: u32, ) -> Weight { | ||
(409_000 as Weight) | ||
} | ||
fn division(_i: u32, ) -> Weight { | ||
(429_000 as Weight) | ||
} | ||
fn hashing(i: u32, ) -> Weight { | ||
(1_059_000 as Weight) | ||
// Standard Error: 0 | ||
.saturating_add((396_000 as Weight).saturating_mul(i as Weight)) | ||
} | ||
// Storage: System Account (r:20 w:0) | ||
fn storage_read(i: u32, ) -> Weight { | ||
(0 as Weight) | ||
// Standard Error: 5_000 | ||
.saturating_add((5_527_000 as Weight).saturating_mul(i as Weight)) | ||
.saturating_add(T::DbWeight::get().reads((1 as Weight).saturating_mul(i as Weight))) | ||
} | ||
// Storage: System Account (r:20 w:20) | ||
fn storage_write(i: u32, ) -> Weight { | ||
(1_823_000 as Weight) | ||
// Standard Error: 3_000 | ||
.saturating_add((12_150_000 as Weight).saturating_mul(i as Weight)) | ||
.saturating_add(T::DbWeight::get().reads((1 as Weight).saturating_mul(i as Weight))) | ||
.saturating_add(T::DbWeight::get().writes((1 as Weight).saturating_mul(i as Weight))) | ||
} | ||
} | ||
|
||
// For backwards compatibility and tests | ||
impl WeightInfo for () { | ||
fn addition(_i: u32, ) -> Weight { | ||
(420_000 as Weight) | ||
} | ||
fn subtraction(_i: u32, ) -> Weight { | ||
(415_000 as Weight) | ||
} | ||
fn multiplication(_i: u32, ) -> Weight { | ||
(409_000 as Weight) | ||
} | ||
fn division(_i: u32, ) -> Weight { | ||
(429_000 as Weight) | ||
} | ||
fn hashing(i: u32, ) -> Weight { | ||
(1_059_000 as Weight) | ||
// Standard Error: 0 | ||
.saturating_add((396_000 as Weight).saturating_mul(i as Weight)) | ||
} | ||
// Storage: System Account (r:20 w:0) | ||
fn storage_read(i: u32, ) -> Weight { | ||
(0 as Weight) | ||
// Standard Error: 5_000 | ||
.saturating_add((5_527_000 as Weight).saturating_mul(i as Weight)) | ||
.saturating_add(RocksDbWeight::get().reads((1 as Weight).saturating_mul(i as Weight))) | ||
} | ||
// Storage: System Account (r:20 w:20) | ||
fn storage_write(i: u32, ) -> Weight { | ||
(1_823_000 as Weight) | ||
// Standard Error: 3_000 | ||
.saturating_add((12_150_000 as Weight).saturating_mul(i as Weight)) | ||
.saturating_add(RocksDbWeight::get().reads((1 as Weight).saturating_mul(i as Weight))) | ||
.saturating_add(RocksDbWeight::get().writes((1 as Weight).saturating_mul(i as Weight))) | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is the idea with adding it to the node-template that we want new substrate users to get into the habit of using this baseline benchmark pallet in their project?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sure, if we use it, they should too. And it is pretty free with no impact on the runtime built without the benchmarking flag.