mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 14:01:02 +00:00
5e7ade9037
* Revert back to bare metal runners for weights generation * new old weights --------- Co-authored-by: alvicsam <alvicsam@gmail.com>
104 lines
3.6 KiB
Rust
104 lines
3.6 KiB
Rust
// Copyright 2017-2022 Parity Technologies (UK) Ltd.
|
|
// This file is part of Polkadot.
|
|
|
|
// 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.
|
|
|
|
// 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 <http://www.gnu.org/licenses/>.
|
|
//! Autogenerated weights for `frame_benchmarking::baseline`
|
|
//!
|
|
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
|
|
//! DATE: 2023-02-22, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]`
|
|
//! WORST CASE MAP SIZE: `1000000`
|
|
//! 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:
|
|
// ./target/production/polkadot
|
|
// benchmark
|
|
// pallet
|
|
// --chain=kusama-dev
|
|
// --steps=50
|
|
// --repeat=20
|
|
// --pallet=frame_benchmarking::baseline
|
|
// --extrinsic=*
|
|
// --execution=wasm
|
|
// --wasm-execution=compiled
|
|
// --header=./file_header.txt
|
|
// --output=./runtime/kusama/src/weights/frame_benchmarking_baseline.rs
|
|
|
|
#![cfg_attr(rustfmt, rustfmt_skip)]
|
|
#![allow(unused_parens)]
|
|
#![allow(unused_imports)]
|
|
|
|
use frame_support::{traits::Get, weights::Weight};
|
|
use sp_std::marker::PhantomData;
|
|
|
|
/// Weight functions for `frame_benchmarking::baseline`.
|
|
pub struct WeightInfo<T>(PhantomData<T>);
|
|
impl<T: frame_system::Config> frame_benchmarking::baseline::WeightInfo for WeightInfo<T> {
|
|
/// The range of component `i` is `[0, 1000000]`.
|
|
fn addition(_i: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 115 nanoseconds.
|
|
Weight::from_ref_time(156_869)
|
|
.saturating_add(Weight::from_proof_size(0))
|
|
}
|
|
/// The range of component `i` is `[0, 1000000]`.
|
|
fn subtraction(_i: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 126 nanoseconds.
|
|
Weight::from_ref_time(163_413)
|
|
.saturating_add(Weight::from_proof_size(0))
|
|
}
|
|
/// The range of component `i` is `[0, 1000000]`.
|
|
fn multiplication(_i: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 125 nanoseconds.
|
|
Weight::from_ref_time(165_700)
|
|
.saturating_add(Weight::from_proof_size(0))
|
|
}
|
|
/// The range of component `i` is `[0, 1000000]`.
|
|
fn division(_i: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 114 nanoseconds.
|
|
Weight::from_ref_time(160_757)
|
|
.saturating_add(Weight::from_proof_size(0))
|
|
}
|
|
fn hashing() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 20_199_657 nanoseconds.
|
|
Weight::from_ref_time(20_348_638_000)
|
|
.saturating_add(Weight::from_proof_size(0))
|
|
}
|
|
/// The range of component `i` is `[0, 100]`.
|
|
fn sr25519_verification(i: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 146 nanoseconds.
|
|
Weight::from_ref_time(181_000)
|
|
.saturating_add(Weight::from_proof_size(0))
|
|
// Standard Error: 18_837
|
|
.saturating_add(Weight::from_ref_time(47_289_133).saturating_mul(i.into()))
|
|
}
|
|
}
|