Files
pezkuwi-sdk/bizinikiwi/pezframe/glutton/src/benchmarking.rs
T
pezkuwichain 90fd044766 fix: Complete snowbridge pezpallet rebrand and critical bug fixes
- snowbridge-pezpallet-* → pezsnowbridge-pezpallet-* (201 refs)
- pallet/ directories → pezpallet/ (4 locations)
- Fixed pezpallet.rs self-include recursion bug
- Fixed sc-chain-spec hardcoded crate name in derive macro
- Reverted .pezpallet_by_name() to .pallet_by_name() (subxt API)
- Added BizinikiwiConfig type alias for zombienet tests
- Deleted obsolete session state files

Verified: pezsnowbridge-pezpallet-*, pezpallet-staking,
pezpallet-staking-async, pezframe-benchmarking-cli all pass cargo check
2025-12-16 09:57:23 +03:00

142 lines
3.5 KiB
Rust

// This file is part of Bizinikiwi.
// 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.
//! Glutton pezpallet benchmarking.
//!
//! Has to be compiled and run twice to calibrate on new hardware.
#[cfg(feature = "runtime-benchmarks")]
use pezframe_benchmarking::v2::*;
use pezframe_support::{pezpallet_prelude::*, weights::constants::*};
use pezframe_system::RawOrigin;
use pezsp_runtime::{traits::One, Perbill};
use crate::*;
#[benchmarks]
mod benchmarks {
use super::*;
#[benchmark]
fn initialize_pallet_grow(n: Linear<0, 1_000>) -> Result<(), BenchmarkError> {
#[block]
{
Pezpallet::<T>::initialize_pallet(RawOrigin::Root.into(), n, None)?;
}
assert_eq!(TrashDataCount::<T>::get(), n);
Ok(())
}
#[benchmark]
fn initialize_pallet_shrink(n: Linear<0, 1_000>) -> Result<(), BenchmarkError> {
Pezpallet::<T>::initialize_pallet(RawOrigin::Root.into(), n, None)?;
#[block]
{
Pezpallet::<T>::initialize_pallet(RawOrigin::Root.into(), 0, Some(n))?;
}
assert_eq!(TrashDataCount::<T>::get(), 0);
Ok(())
}
#[benchmark]
fn waste_ref_time_iter(i: Linear<0, 100_000>) {
#[block]
{
Pezpallet::<T>::waste_ref_time_iter(vec![0u8; 64], i);
}
}
#[benchmark]
fn waste_proof_size_some(i: Linear<0, 5_000>) {
(0..5000).for_each(|i| TrashData::<T>::insert(i, [i as u8; 1024]));
#[block]
{
(0..i).for_each(|i| {
TrashData::<T>::get(i);
})
}
}
// For manual verification only.
#[benchmark]
fn on_idle_high_proof_waste() {
(0..5000).for_each(|i| TrashData::<T>::insert(i, [i as u8; 1024]));
let _ = Pezpallet::<T>::set_compute(RawOrigin::Root.into(), One::one());
let _ = Pezpallet::<T>::set_storage(RawOrigin::Root.into(), One::one());
#[block]
{
Pezpallet::<T>::on_idle(
pezframe_system::Pezpallet::<T>::block_number(),
Weight::from_parts(WEIGHT_REF_TIME_PER_MILLIS * 100, WEIGHT_PROOF_SIZE_PER_MB * 5),
);
}
}
// For manual verification only.
#[benchmark]
fn on_idle_low_proof_waste() {
(0..5000).for_each(|i| TrashData::<T>::insert(i, [i as u8; 1024]));
let _ = Pezpallet::<T>::set_compute(RawOrigin::Root.into(), One::one());
let _ = Pezpallet::<T>::set_storage(RawOrigin::Root.into(), One::one());
#[block]
{
Pezpallet::<T>::on_idle(
pezframe_system::Pezpallet::<T>::block_number(),
Weight::from_parts(WEIGHT_REF_TIME_PER_MILLIS * 100, WEIGHT_PROOF_SIZE_PER_KB * 20),
);
}
}
#[benchmark]
fn empty_on_idle() {
// Enough weight to do nothing.
#[block]
{
Pezpallet::<T>::on_idle(
pezframe_system::Pezpallet::<T>::block_number(),
T::WeightInfo::empty_on_idle(),
);
}
}
#[benchmark]
fn set_compute() {
#[extrinsic_call]
_(RawOrigin::Root, FixedU64::from_perbill(Perbill::from_percent(50)));
}
#[benchmark]
fn set_storage() {
#[extrinsic_call]
_(RawOrigin::Root, FixedU64::from_perbill(Perbill::from_percent(50)));
}
impl_benchmark_test_suite! {
Pezpallet,
mock::new_test_ext(),
mock::Test
}
}