mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-09 03:37:22 +00:00
ebfe00d590
* Align log Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Use max instead of sum Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Make comment ordering deterministic Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Dont add Pov overhead when all is ignored Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Update test pallet weights Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Re-run weights on bm2 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Fix test Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Actually use new weights Fucked up the merge for this file... Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Update contract weights Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
83 lines
2.5 KiB
Rust
83 lines
2.5 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) 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.
|
|
|
|
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
|
|
//! DATE: 2023-04-06 (Y/M/D)
|
|
//! HOSTNAME: `bm2`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz`
|
|
//!
|
|
//! SHORT-NAME: `extrinsic`, LONG-NAME: `ExtrinsicBase`, RUNTIME: `Development`
|
|
//! WARMUPS: `10`, REPEAT: `100`
|
|
//! WEIGHT-PATH: `./frame/support/src/weights/`
|
|
//! WEIGHT-METRIC: `Average`, WEIGHT-MUL: `1.0`, WEIGHT-ADD: `0`
|
|
|
|
// Executed Command:
|
|
// ./target/production/substrate
|
|
// benchmark
|
|
// overhead
|
|
// --chain=dev
|
|
// --execution=wasm
|
|
// --wasm-execution=compiled
|
|
// --weight-path=./frame/support/src/weights/
|
|
// --header=./HEADER-APACHE2
|
|
// --warmup=10
|
|
// --repeat=100
|
|
|
|
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: 113_246, 114_346
|
|
/// Average: 113_638
|
|
/// Median: 113_641
|
|
/// Std-Dev: 188.44
|
|
///
|
|
/// Percentiles nanoseconds:
|
|
/// 99th: 114_181
|
|
/// 95th: 113_961
|
|
/// 75th: 113_703
|
|
pub const ExtrinsicBaseWeight: Weight =
|
|
Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(113_638), 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."
|
|
);
|
|
}
|
|
}
|