mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-21 21:25:41 +00:00
d50ff483f8
* polkadot: update weights * westend: update weights * kusama: update weights * rococo: update weights
82 lines
2.5 KiB
Rust
82 lines
2.5 KiB
Rust
// Copyright (C) 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/>.
|
|
|
|
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
|
|
//! DATE: 2023-04-28 (Y/M/D)
|
|
//! HOSTNAME: `bm6`, 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/westend/constants/src/weights/`
|
|
//! WEIGHT-METRIC: `Average`, WEIGHT-MUL: `1.0`, WEIGHT-ADD: `0`
|
|
|
|
// Executed Command:
|
|
// ./target/production/polkadot
|
|
// benchmark
|
|
// overhead
|
|
// --chain=westend-dev
|
|
// --execution=wasm
|
|
// --wasm-execution=compiled
|
|
// --weight-path=runtime/westend/constants/src/weights/
|
|
// --warmup=10
|
|
// --repeat=100
|
|
// --header=./file_header.txt
|
|
|
|
use sp_core::parameter_types;
|
|
use sp_weights::{constants::WEIGHT_REF_TIME_PER_NANOS, Weight};
|
|
|
|
parameter_types! {
|
|
/// Time to execute a NO-OP extrinsic, for example `System::remark`.
|
|
/// Calculated by multiplying the *Average* with `1.0` and adding `0`.
|
|
///
|
|
/// Stats nanoseconds:
|
|
/// Min, Max: 96_491, 98_016
|
|
/// Average: 96_992
|
|
/// Median: 96_896
|
|
/// Std-Dev: 311.32
|
|
///
|
|
/// Percentiles nanoseconds:
|
|
/// 99th: 97_917
|
|
/// 95th: 97_706
|
|
/// 75th: 97_073
|
|
pub const ExtrinsicBaseWeight: Weight =
|
|
Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(96_992), 0);
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod test_weights {
|
|
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,
|
|
// you can delete it.
|
|
#[test]
|
|
fn sane() {
|
|
let w = super::ExtrinsicBaseWeight::get();
|
|
|
|
// At least 10 µs.
|
|
assert!(
|
|
w.ref_time() >= 10u64 * constants::WEIGHT_REF_TIME_PER_MICROS,
|
|
"Weight should be at least 10 µs."
|
|
);
|
|
// At most 1 ms.
|
|
assert!(
|
|
w.ref_time() <= constants::WEIGHT_REF_TIME_PER_MILLIS,
|
|
"Weight should be at most 1 ms."
|
|
);
|
|
}
|
|
}
|