81 lines
2.6 KiB
Rust
81 lines
2.6 KiB
Rust
// Copyright (C) Parity Technologies (UK) Ltd.
|
|
// This file is part of Pezkuwi.
|
|
|
|
// Pezkuwi 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.
|
|
|
|
// Pezkuwi 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 Pezkuwi. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0
|
|
//! DATE: 2024-02-29 (Y/M/D)
|
|
//! HOSTNAME: `runner-bn-ce5rx-project-674-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz`
|
|
//!
|
|
//! SHORT-NAME: `block`, LONG-NAME: `BlockExecution`, RUNTIME: `Development`
|
|
//! WARMUPS: `10`, REPEAT: `100`
|
|
//! WEIGHT-PATH: `./pezkuwi/runtime/pezkuwichain/constants/src/weights/`
|
|
//! WEIGHT-METRIC: `Average`, WEIGHT-MUL: `1.0`, WEIGHT-ADD: `0`
|
|
|
|
// Executed Command:
|
|
// ./target/production/pezkuwi
|
|
// benchmark
|
|
// overhead
|
|
// --chain=pezkuwichain-dev
|
|
// --wasm-execution=compiled
|
|
// --weight-path=./pezkuwi/runtime/pezkuwichain/constants/src/weights/
|
|
// --warmup=10
|
|
// --repeat=100
|
|
// --header=./pezkuwi/file_header.txt
|
|
|
|
use sp_core::parameter_types;
|
|
use sp_weights::{constants::WEIGHT_REF_TIME_PER_NANOS, Weight};
|
|
|
|
parameter_types! {
|
|
/// Time to execute an empty block.
|
|
/// Calculated by multiplying the *Average* with `1.0` and adding `0`.
|
|
///
|
|
/// Stats nanoseconds:
|
|
/// Min, Max: 440_142, 476_907
|
|
/// Average: 450_240
|
|
/// Median: 448_633
|
|
/// Std-Dev: 7301.18
|
|
///
|
|
/// Percentiles nanoseconds:
|
|
/// 99th: 470_733
|
|
/// 95th: 465_082
|
|
/// 75th: 452_536
|
|
pub const BlockExecutionWeight: Weight =
|
|
Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(450_240), 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::BlockExecutionWeight::get();
|
|
|
|
// At least 100 µs.
|
|
assert!(
|
|
w.ref_time() >= 100u64 * constants::WEIGHT_REF_TIME_PER_MICROS,
|
|
"Weight should be at least 100 µs."
|
|
);
|
|
// At most 50 ms.
|
|
assert!(
|
|
w.ref_time() <= 50u64 * constants::WEIGHT_REF_TIME_PER_MILLIS,
|
|
"Weight should be at most 50 ms."
|
|
);
|
|
}
|
|
}
|