mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-24 09:01:08 +00:00
d38f6e6728
Current benchmarking macro returns a closure with the captured
benchmarked code.
This can cause issues when the benchmarked code has complex lifetime
requirements.
This PR updates the existing macro by injecting the recording parameter
and invoking the start / stop method around the benchmarked block
instead of returning a closure
One other added benefit is that you can write this kind of code now as
well:
```rust
let v;
#[block]
{ v = func.call(); }
dbg!(v); // or assert something on v
```
[Weights compare
link](https://weights.tasty.limo/compare?unit=weight&ignore_errors=true&threshold=10&method=asymptotic&repo=polkadot-sdk&old=pg/fix-weights&new=pg/bench_update&path_pattern=substrate/frame/**/src/weights.rs,polkadot/runtime/*/src/weights/**/*.rs,polkadot/bridges/modules/*/src/weights.rs,cumulus/**/weights/*.rs,cumulus/**/weights/xcm/*.rs,cumulus/**/src/weights.rs)
---------
Co-authored-by: command-bot <>
Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Co-authored-by: Alexander Theißen <alex.theissen@me.com>
898 lines
43 KiB
Rust
Generated
898 lines
43 KiB
Rust
Generated
// 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.
|
|
|
|
//! Autogenerated weights for `pallet_broker`
|
|
//!
|
|
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0
|
|
//! DATE: 2024-04-08, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]`
|
|
//! WORST CASE MAP SIZE: `1000000`
|
|
//! HOSTNAME: `runner-anb7yjbi-project-674-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz`
|
|
//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024`
|
|
|
|
// Executed Command:
|
|
// ./target/production/substrate-node
|
|
// benchmark
|
|
// pallet
|
|
// --chain=dev
|
|
// --steps=50
|
|
// --repeat=20
|
|
// --pallet=pallet_broker
|
|
// --no-storage-info
|
|
// --no-median-slopes
|
|
// --no-min-squares
|
|
// --extrinsic=*
|
|
// --wasm-execution=compiled
|
|
// --heap-pages=4096
|
|
// --output=./substrate/frame/broker/src/weights.rs
|
|
// --header=./substrate/HEADER-APACHE2
|
|
// --template=./substrate/.maintain/frame-weight-template.hbs
|
|
|
|
#![cfg_attr(rustfmt, rustfmt_skip)]
|
|
#![allow(unused_parens)]
|
|
#![allow(unused_imports)]
|
|
#![allow(missing_docs)]
|
|
|
|
use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
|
|
use core::marker::PhantomData;
|
|
|
|
/// Weight functions needed for `pallet_broker`.
|
|
pub trait WeightInfo {
|
|
fn configure() -> Weight;
|
|
fn reserve() -> Weight;
|
|
fn unreserve() -> Weight;
|
|
fn set_lease() -> Weight;
|
|
fn start_sales(n: u32, ) -> Weight;
|
|
fn purchase() -> Weight;
|
|
fn renew() -> Weight;
|
|
fn transfer() -> Weight;
|
|
fn partition() -> Weight;
|
|
fn interlace() -> Weight;
|
|
fn assign() -> Weight;
|
|
fn pool() -> Weight;
|
|
fn claim_revenue(m: u32, ) -> Weight;
|
|
fn purchase_credit() -> Weight;
|
|
fn drop_region() -> Weight;
|
|
fn drop_contribution() -> Weight;
|
|
fn drop_history() -> Weight;
|
|
fn drop_renewal() -> Weight;
|
|
fn request_core_count(n: u32, ) -> Weight;
|
|
fn process_core_count(n: u32, ) -> Weight;
|
|
fn process_revenue() -> Weight;
|
|
fn rotate_sale(n: u32, ) -> Weight;
|
|
fn process_pool() -> Weight;
|
|
fn process_core_schedule() -> Weight;
|
|
fn request_revenue_info_at() -> Weight;
|
|
fn notify_core_count() -> Weight;
|
|
fn do_tick_base() -> Weight;
|
|
fn swap_leases() -> Weight;
|
|
}
|
|
|
|
/// Weights for `pallet_broker` using the Substrate node and recommended hardware.
|
|
pub struct SubstrateWeight<T>(PhantomData<T>);
|
|
impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
|
|
/// Storage: `Broker::Configuration` (r:0 w:1)
|
|
/// Proof: `Broker::Configuration` (`max_values`: Some(1), `max_size`: Some(31), added: 526, mode: `MaxEncodedLen`)
|
|
fn configure() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 2_624_000 picoseconds.
|
|
Weight::from_parts(2_804_000, 0)
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Broker::Reservations` (r:1 w:1)
|
|
/// Proof: `Broker::Reservations` (`max_values`: Some(1), `max_size`: Some(6011), added: 6506, mode: `MaxEncodedLen`)
|
|
fn reserve() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `5016`
|
|
// Estimated: `7496`
|
|
// Minimum execution time: 18_451_000 picoseconds.
|
|
Weight::from_parts(18_853_000, 7496)
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Broker::Reservations` (r:1 w:1)
|
|
/// Proof: `Broker::Reservations` (`max_values`: Some(1), `max_size`: Some(6011), added: 6506, mode: `MaxEncodedLen`)
|
|
fn unreserve() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `6218`
|
|
// Estimated: `7496`
|
|
// Minimum execution time: 16_899_000 picoseconds.
|
|
Weight::from_parts(17_645_000, 7496)
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Broker::Leases` (r:1 w:1)
|
|
/// Proof: `Broker::Leases` (`max_values`: Some(1), `max_size`: Some(41), added: 536, mode: `MaxEncodedLen`)
|
|
fn set_lease() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `239`
|
|
// Estimated: `1526`
|
|
// Minimum execution time: 10_239_000 picoseconds.
|
|
Weight::from_parts(10_754_000, 1526)
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Broker::Configuration` (r:1 w:0)
|
|
/// Proof: `Broker::Configuration` (`max_values`: Some(1), `max_size`: Some(31), added: 526, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::InstaPoolIo` (r:3 w:3)
|
|
/// Proof: `Broker::InstaPoolIo` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Reservations` (r:1 w:0)
|
|
/// Proof: `Broker::Reservations` (`max_values`: Some(1), `max_size`: Some(6011), added: 6506, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Leases` (r:1 w:1)
|
|
/// Proof: `Broker::Leases` (`max_values`: Some(1), `max_size`: Some(41), added: 536, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::SaleInfo` (r:0 w:1)
|
|
/// Proof: `Broker::SaleInfo` (`max_values`: Some(1), `max_size`: Some(57), added: 552, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Status` (r:0 w:1)
|
|
/// Proof: `Broker::Status` (`max_values`: Some(1), `max_size`: Some(18), added: 513, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Workplan` (r:0 w:10)
|
|
/// Proof: `Broker::Workplan` (`max_values`: None, `max_size`: Some(1216), added: 3691, mode: `MaxEncodedLen`)
|
|
/// The range of component `n` is `[0, 1000]`.
|
|
fn start_sales(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `6330`
|
|
// Estimated: `8499`
|
|
// Minimum execution time: 51_250_000 picoseconds.
|
|
Weight::from_parts(54_643_012, 8499)
|
|
// Standard Error: 147
|
|
.saturating_add(Weight::from_parts(18, 0).saturating_mul(n.into()))
|
|
.saturating_add(T::DbWeight::get().reads(6_u64))
|
|
.saturating_add(T::DbWeight::get().writes(16_u64))
|
|
}
|
|
/// Storage: `Broker::Status` (r:1 w:0)
|
|
/// Proof: `Broker::Status` (`max_values`: Some(1), `max_size`: Some(18), added: 513, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::SaleInfo` (r:1 w:1)
|
|
/// Proof: `Broker::SaleInfo` (`max_values`: Some(1), `max_size`: Some(57), added: 552, mode: `MaxEncodedLen`)
|
|
/// Storage: `Authorship::Author` (r:1 w:0)
|
|
/// Proof: `Authorship::Author` (`max_values`: Some(1), `max_size`: Some(32), added: 527, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::Digest` (r:1 w:0)
|
|
/// Proof: `System::Digest` (`max_values`: Some(1), `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Broker::Regions` (r:0 w:1)
|
|
/// Proof: `Broker::Regions` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `MaxEncodedLen`)
|
|
fn purchase() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `635`
|
|
// Estimated: `2120`
|
|
// Minimum execution time: 43_660_000 picoseconds.
|
|
Weight::from_parts(45_543_000, 2120)
|
|
.saturating_add(T::DbWeight::get().reads(4_u64))
|
|
.saturating_add(T::DbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: `Broker::Configuration` (r:1 w:0)
|
|
/// Proof: `Broker::Configuration` (`max_values`: Some(1), `max_size`: Some(31), added: 526, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Status` (r:1 w:0)
|
|
/// Proof: `Broker::Status` (`max_values`: Some(1), `max_size`: Some(18), added: 513, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::SaleInfo` (r:1 w:1)
|
|
/// Proof: `Broker::SaleInfo` (`max_values`: Some(1), `max_size`: Some(57), added: 552, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::AllowedRenewals` (r:1 w:2)
|
|
/// Proof: `Broker::AllowedRenewals` (`max_values`: None, `max_size`: Some(1233), added: 3708, mode: `MaxEncodedLen`)
|
|
/// Storage: `Authorship::Author` (r:1 w:0)
|
|
/// Proof: `Authorship::Author` (`max_values`: Some(1), `max_size`: Some(32), added: 527, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::Digest` (r:1 w:0)
|
|
/// Proof: `System::Digest` (`max_values`: Some(1), `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Broker::Workplan` (r:0 w:1)
|
|
/// Proof: `Broker::Workplan` (`max_values`: None, `max_size`: Some(1216), added: 3691, mode: `MaxEncodedLen`)
|
|
fn renew() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `753`
|
|
// Estimated: `4698`
|
|
// Minimum execution time: 63_122_000 picoseconds.
|
|
Weight::from_parts(64_366_000, 4698)
|
|
.saturating_add(T::DbWeight::get().reads(6_u64))
|
|
.saturating_add(T::DbWeight::get().writes(4_u64))
|
|
}
|
|
/// Storage: `Broker::Regions` (r:1 w:1)
|
|
/// Proof: `Broker::Regions` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `MaxEncodedLen`)
|
|
fn transfer() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `495`
|
|
// Estimated: `3550`
|
|
// Minimum execution time: 17_552_000 picoseconds.
|
|
Weight::from_parts(18_251_000, 3550)
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Broker::Regions` (r:1 w:2)
|
|
/// Proof: `Broker::Regions` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `MaxEncodedLen`)
|
|
fn partition() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `495`
|
|
// Estimated: `3550`
|
|
// Minimum execution time: 18_551_000 picoseconds.
|
|
Weight::from_parts(19_727_000, 3550)
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: `Broker::Regions` (r:1 w:3)
|
|
/// Proof: `Broker::Regions` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `MaxEncodedLen`)
|
|
fn interlace() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `495`
|
|
// Estimated: `3550`
|
|
// Minimum execution time: 20_636_000 picoseconds.
|
|
Weight::from_parts(21_060_000, 3550)
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: `Broker::Configuration` (r:1 w:0)
|
|
/// Proof: `Broker::Configuration` (`max_values`: Some(1), `max_size`: Some(31), added: 526, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Status` (r:1 w:0)
|
|
/// Proof: `Broker::Status` (`max_values`: Some(1), `max_size`: Some(18), added: 513, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Regions` (r:1 w:1)
|
|
/// Proof: `Broker::Regions` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Workplan` (r:1 w:1)
|
|
/// Proof: `Broker::Workplan` (`max_values`: None, `max_size`: Some(1216), added: 3691, mode: `MaxEncodedLen`)
|
|
fn assign() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `740`
|
|
// Estimated: `4681`
|
|
// Minimum execution time: 32_394_000 picoseconds.
|
|
Weight::from_parts(33_324_000, 4681)
|
|
.saturating_add(T::DbWeight::get().reads(4_u64))
|
|
.saturating_add(T::DbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: `Broker::Status` (r:1 w:0)
|
|
/// Proof: `Broker::Status` (`max_values`: Some(1), `max_size`: Some(18), added: 513, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Regions` (r:1 w:1)
|
|
/// Proof: `Broker::Regions` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Workplan` (r:1 w:1)
|
|
/// Proof: `Broker::Workplan` (`max_values`: None, `max_size`: Some(1216), added: 3691, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::InstaPoolIo` (r:2 w:2)
|
|
/// Proof: `Broker::InstaPoolIo` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::InstaPoolContribution` (r:0 w:1)
|
|
/// Proof: `Broker::InstaPoolContribution` (`max_values`: None, `max_size`: Some(68), added: 2543, mode: `MaxEncodedLen`)
|
|
fn pool() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `775`
|
|
// Estimated: `5996`
|
|
// Minimum execution time: 38_128_000 picoseconds.
|
|
Weight::from_parts(39_274_000, 5996)
|
|
.saturating_add(T::DbWeight::get().reads(5_u64))
|
|
.saturating_add(T::DbWeight::get().writes(5_u64))
|
|
}
|
|
/// Storage: `Broker::InstaPoolContribution` (r:1 w:1)
|
|
/// Proof: `Broker::InstaPoolContribution` (`max_values`: None, `max_size`: Some(68), added: 2543, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::InstaPoolHistory` (r:3 w:1)
|
|
/// Proof: `Broker::InstaPoolHistory` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::Account` (r:2 w:2)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`)
|
|
/// The range of component `m` is `[1, 3]`.
|
|
fn claim_revenue(m: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `859`
|
|
// Estimated: `6196 + m * (2520 ±0)`
|
|
// Minimum execution time: 70_453_000 picoseconds.
|
|
Weight::from_parts(70_652_822, 6196)
|
|
// Standard Error: 75_524
|
|
.saturating_add(Weight::from_parts(2_335_289, 0).saturating_mul(m.into()))
|
|
.saturating_add(T::DbWeight::get().reads(3_u64))
|
|
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(m.into())))
|
|
.saturating_add(T::DbWeight::get().writes(5_u64))
|
|
.saturating_add(Weight::from_parts(0, 2520).saturating_mul(m.into()))
|
|
}
|
|
/// Storage: `System::Account` (r:1 w:1)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`)
|
|
fn purchase_credit() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `103`
|
|
// Estimated: `3593`
|
|
// Minimum execution time: 43_945_000 picoseconds.
|
|
Weight::from_parts(45_249_000, 3593)
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Broker::Status` (r:1 w:0)
|
|
/// Proof: `Broker::Status` (`max_values`: Some(1), `max_size`: Some(18), added: 513, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Regions` (r:1 w:1)
|
|
/// Proof: `Broker::Regions` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `MaxEncodedLen`)
|
|
fn drop_region() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `603`
|
|
// Estimated: `3550`
|
|
// Minimum execution time: 30_680_000 picoseconds.
|
|
Weight::from_parts(32_995_000, 3550)
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Broker::Configuration` (r:1 w:0)
|
|
/// Proof: `Broker::Configuration` (`max_values`: Some(1), `max_size`: Some(31), added: 526, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Status` (r:1 w:0)
|
|
/// Proof: `Broker::Status` (`max_values`: Some(1), `max_size`: Some(18), added: 513, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::InstaPoolContribution` (r:1 w:1)
|
|
/// Proof: `Broker::InstaPoolContribution` (`max_values`: None, `max_size`: Some(68), added: 2543, mode: `MaxEncodedLen`)
|
|
fn drop_contribution() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `601`
|
|
// Estimated: `3533`
|
|
// Minimum execution time: 48_053_000 picoseconds.
|
|
Weight::from_parts(51_364_000, 3533)
|
|
.saturating_add(T::DbWeight::get().reads(3_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Broker::Configuration` (r:1 w:0)
|
|
/// Proof: `Broker::Configuration` (`max_values`: Some(1), `max_size`: Some(31), added: 526, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Status` (r:1 w:0)
|
|
/// Proof: `Broker::Status` (`max_values`: Some(1), `max_size`: Some(18), added: 513, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::InstaPoolHistory` (r:1 w:1)
|
|
/// Proof: `Broker::InstaPoolHistory` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`)
|
|
fn drop_history() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `995`
|
|
// Estimated: `3593`
|
|
// Minimum execution time: 57_372_000 picoseconds.
|
|
Weight::from_parts(59_466_000, 3593)
|
|
.saturating_add(T::DbWeight::get().reads(4_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Broker::Status` (r:1 w:0)
|
|
/// Proof: `Broker::Status` (`max_values`: Some(1), `max_size`: Some(18), added: 513, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::AllowedRenewals` (r:1 w:1)
|
|
/// Proof: `Broker::AllowedRenewals` (`max_values`: None, `max_size`: Some(1233), added: 3708, mode: `MaxEncodedLen`)
|
|
fn drop_renewal() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `661`
|
|
// Estimated: `4698`
|
|
// Minimum execution time: 27_768_000 picoseconds.
|
|
Weight::from_parts(29_000_000, 4698)
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// The range of component `n` is `[0, 1000]`.
|
|
fn request_core_count(_n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 4_588_000 picoseconds.
|
|
Weight::from_parts(5_201_705, 0)
|
|
}
|
|
/// Storage: `Broker::CoreCountInbox` (r:1 w:1)
|
|
/// Proof: `Broker::CoreCountInbox` (`max_values`: Some(1), `max_size`: Some(2), added: 497, mode: `MaxEncodedLen`)
|
|
/// The range of component `n` is `[0, 1000]`.
|
|
fn process_core_count(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `404`
|
|
// Estimated: `1487`
|
|
// Minimum execution time: 6_889_000 picoseconds.
|
|
Weight::from_parts(7_380_363, 1487)
|
|
// Standard Error: 21
|
|
.saturating_add(Weight::from_parts(63, 0).saturating_mul(n.into()))
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: UNKNOWN KEY `0xf308d869daf021a7724e69c557dd8dbe` (r:1 w:1)
|
|
/// Proof: UNKNOWN KEY `0xf308d869daf021a7724e69c557dd8dbe` (r:1 w:1)
|
|
/// Storage: `Broker::InstaPoolHistory` (r:1 w:1)
|
|
/// Proof: `Broker::InstaPoolHistory` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::Account` (r:1 w:1)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`)
|
|
/// Storage: `Authorship::Author` (r:1 w:0)
|
|
/// Proof: `Authorship::Author` (`max_values`: Some(1), `max_size`: Some(32), added: 527, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::Digest` (r:1 w:0)
|
|
/// Proof: `System::Digest` (`max_values`: Some(1), `max_size`: None, mode: `Measured`)
|
|
fn process_revenue() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `972`
|
|
// Estimated: `4437`
|
|
// Minimum execution time: 50_156_000 picoseconds.
|
|
Weight::from_parts(51_610_000, 4437)
|
|
.saturating_add(T::DbWeight::get().reads(5_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: `Broker::InstaPoolIo` (r:3 w:3)
|
|
/// Proof: `Broker::InstaPoolIo` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Reservations` (r:1 w:0)
|
|
/// Proof: `Broker::Reservations` (`max_values`: Some(1), `max_size`: Some(6011), added: 6506, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Leases` (r:1 w:1)
|
|
/// Proof: `Broker::Leases` (`max_values`: Some(1), `max_size`: Some(41), added: 536, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::SaleInfo` (r:0 w:1)
|
|
/// Proof: `Broker::SaleInfo` (`max_values`: Some(1), `max_size`: Some(57), added: 552, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Workplan` (r:0 w:10)
|
|
/// Proof: `Broker::Workplan` (`max_values`: None, `max_size`: Some(1216), added: 3691, mode: `MaxEncodedLen`)
|
|
/// The range of component `n` is `[0, 1000]`.
|
|
fn rotate_sale(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `6281`
|
|
// Estimated: `8499`
|
|
// Minimum execution time: 38_246_000 picoseconds.
|
|
Weight::from_parts(40_008_850, 8499)
|
|
// Standard Error: 94
|
|
.saturating_add(Weight::from_parts(964, 0).saturating_mul(n.into()))
|
|
.saturating_add(T::DbWeight::get().reads(5_u64))
|
|
.saturating_add(T::DbWeight::get().writes(15_u64))
|
|
}
|
|
/// Storage: `Broker::InstaPoolIo` (r:1 w:0)
|
|
/// Proof: `Broker::InstaPoolIo` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::InstaPoolHistory` (r:0 w:1)
|
|
/// Proof: `Broker::InstaPoolHistory` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
fn process_pool() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `180`
|
|
// Estimated: `3493`
|
|
// Minimum execution time: 7_962_000 picoseconds.
|
|
Weight::from_parts(8_313_000, 3493)
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Broker::Workplan` (r:1 w:1)
|
|
/// Proof: `Broker::Workplan` (`max_values`: None, `max_size`: Some(1216), added: 3691, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Workload` (r:1 w:1)
|
|
/// Proof: `Broker::Workload` (`max_values`: None, `max_size`: Some(1212), added: 3687, mode: `MaxEncodedLen`)
|
|
fn process_core_schedule() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1423`
|
|
// Estimated: `4681`
|
|
// Minimum execution time: 17_457_000 picoseconds.
|
|
Weight::from_parts(18_387_000, 4681)
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(2_u64))
|
|
}
|
|
fn request_revenue_info_at() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 133_000 picoseconds.
|
|
Weight::from_parts(149_000, 0)
|
|
}
|
|
/// Storage: `Broker::CoreCountInbox` (r:0 w:1)
|
|
/// Proof: `Broker::CoreCountInbox` (`max_values`: Some(1), `max_size`: Some(2), added: 497, mode: `MaxEncodedLen`)
|
|
fn notify_core_count() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 2_407_000 picoseconds.
|
|
Weight::from_parts(2_634_000, 0)
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Broker::Status` (r:1 w:1)
|
|
/// Proof: `Broker::Status` (`max_values`: Some(1), `max_size`: Some(18), added: 513, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Configuration` (r:1 w:0)
|
|
/// Proof: `Broker::Configuration` (`max_values`: Some(1), `max_size`: Some(31), added: 526, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::CoreCountInbox` (r:1 w:0)
|
|
/// Proof: `Broker::CoreCountInbox` (`max_values`: Some(1), `max_size`: Some(2), added: 497, mode: `MaxEncodedLen`)
|
|
/// Storage: UNKNOWN KEY `0xf308d869daf021a7724e69c557dd8dbe` (r:1 w:1)
|
|
/// Proof: UNKNOWN KEY `0xf308d869daf021a7724e69c557dd8dbe` (r:1 w:1)
|
|
fn do_tick_base() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `603`
|
|
// Estimated: `4068`
|
|
// Minimum execution time: 13_043_000 picoseconds.
|
|
Weight::from_parts(13_541_000, 4068)
|
|
.saturating_add(T::DbWeight::get().reads(4_u64))
|
|
.saturating_add(T::DbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: `Broker::Leases` (r:1 w:1)
|
|
/// Proof: `Broker::Leases` (`max_values`: Some(1), `max_size`: Some(41), added: 536, mode: `MaxEncodedLen`)
|
|
fn swap_leases() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `239`
|
|
// Estimated: `1526`
|
|
// Minimum execution time: 6_606_000 picoseconds.
|
|
Weight::from_parts(6_964_000, 1526)
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
}
|
|
|
|
// For backwards compatibility and tests.
|
|
impl WeightInfo for () {
|
|
/// Storage: `Broker::Configuration` (r:0 w:1)
|
|
/// Proof: `Broker::Configuration` (`max_values`: Some(1), `max_size`: Some(31), added: 526, mode: `MaxEncodedLen`)
|
|
fn configure() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 2_624_000 picoseconds.
|
|
Weight::from_parts(2_804_000, 0)
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Broker::Reservations` (r:1 w:1)
|
|
/// Proof: `Broker::Reservations` (`max_values`: Some(1), `max_size`: Some(6011), added: 6506, mode: `MaxEncodedLen`)
|
|
fn reserve() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `5016`
|
|
// Estimated: `7496`
|
|
// Minimum execution time: 18_451_000 picoseconds.
|
|
Weight::from_parts(18_853_000, 7496)
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Broker::Reservations` (r:1 w:1)
|
|
/// Proof: `Broker::Reservations` (`max_values`: Some(1), `max_size`: Some(6011), added: 6506, mode: `MaxEncodedLen`)
|
|
fn unreserve() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `6218`
|
|
// Estimated: `7496`
|
|
// Minimum execution time: 16_899_000 picoseconds.
|
|
Weight::from_parts(17_645_000, 7496)
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Broker::Leases` (r:1 w:1)
|
|
/// Proof: `Broker::Leases` (`max_values`: Some(1), `max_size`: Some(41), added: 536, mode: `MaxEncodedLen`)
|
|
fn set_lease() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `239`
|
|
// Estimated: `1526`
|
|
// Minimum execution time: 10_239_000 picoseconds.
|
|
Weight::from_parts(10_754_000, 1526)
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Broker::Configuration` (r:1 w:0)
|
|
/// Proof: `Broker::Configuration` (`max_values`: Some(1), `max_size`: Some(31), added: 526, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::InstaPoolIo` (r:3 w:3)
|
|
/// Proof: `Broker::InstaPoolIo` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Reservations` (r:1 w:0)
|
|
/// Proof: `Broker::Reservations` (`max_values`: Some(1), `max_size`: Some(6011), added: 6506, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Leases` (r:1 w:1)
|
|
/// Proof: `Broker::Leases` (`max_values`: Some(1), `max_size`: Some(41), added: 536, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::SaleInfo` (r:0 w:1)
|
|
/// Proof: `Broker::SaleInfo` (`max_values`: Some(1), `max_size`: Some(57), added: 552, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Status` (r:0 w:1)
|
|
/// Proof: `Broker::Status` (`max_values`: Some(1), `max_size`: Some(18), added: 513, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Workplan` (r:0 w:10)
|
|
/// Proof: `Broker::Workplan` (`max_values`: None, `max_size`: Some(1216), added: 3691, mode: `MaxEncodedLen`)
|
|
/// The range of component `n` is `[0, 1000]`.
|
|
fn start_sales(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `6330`
|
|
// Estimated: `8499`
|
|
// Minimum execution time: 51_250_000 picoseconds.
|
|
Weight::from_parts(54_643_012, 8499)
|
|
// Standard Error: 147
|
|
.saturating_add(Weight::from_parts(18, 0).saturating_mul(n.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(6_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(16_u64))
|
|
}
|
|
/// Storage: `Broker::Status` (r:1 w:0)
|
|
/// Proof: `Broker::Status` (`max_values`: Some(1), `max_size`: Some(18), added: 513, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::SaleInfo` (r:1 w:1)
|
|
/// Proof: `Broker::SaleInfo` (`max_values`: Some(1), `max_size`: Some(57), added: 552, mode: `MaxEncodedLen`)
|
|
/// Storage: `Authorship::Author` (r:1 w:0)
|
|
/// Proof: `Authorship::Author` (`max_values`: Some(1), `max_size`: Some(32), added: 527, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::Digest` (r:1 w:0)
|
|
/// Proof: `System::Digest` (`max_values`: Some(1), `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Broker::Regions` (r:0 w:1)
|
|
/// Proof: `Broker::Regions` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `MaxEncodedLen`)
|
|
fn purchase() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `635`
|
|
// Estimated: `2120`
|
|
// Minimum execution time: 43_660_000 picoseconds.
|
|
Weight::from_parts(45_543_000, 2120)
|
|
.saturating_add(RocksDbWeight::get().reads(4_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: `Broker::Configuration` (r:1 w:0)
|
|
/// Proof: `Broker::Configuration` (`max_values`: Some(1), `max_size`: Some(31), added: 526, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Status` (r:1 w:0)
|
|
/// Proof: `Broker::Status` (`max_values`: Some(1), `max_size`: Some(18), added: 513, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::SaleInfo` (r:1 w:1)
|
|
/// Proof: `Broker::SaleInfo` (`max_values`: Some(1), `max_size`: Some(57), added: 552, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::AllowedRenewals` (r:1 w:2)
|
|
/// Proof: `Broker::AllowedRenewals` (`max_values`: None, `max_size`: Some(1233), added: 3708, mode: `MaxEncodedLen`)
|
|
/// Storage: `Authorship::Author` (r:1 w:0)
|
|
/// Proof: `Authorship::Author` (`max_values`: Some(1), `max_size`: Some(32), added: 527, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::Digest` (r:1 w:0)
|
|
/// Proof: `System::Digest` (`max_values`: Some(1), `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Broker::Workplan` (r:0 w:1)
|
|
/// Proof: `Broker::Workplan` (`max_values`: None, `max_size`: Some(1216), added: 3691, mode: `MaxEncodedLen`)
|
|
fn renew() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `753`
|
|
// Estimated: `4698`
|
|
// Minimum execution time: 63_122_000 picoseconds.
|
|
Weight::from_parts(64_366_000, 4698)
|
|
.saturating_add(RocksDbWeight::get().reads(6_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(4_u64))
|
|
}
|
|
/// Storage: `Broker::Regions` (r:1 w:1)
|
|
/// Proof: `Broker::Regions` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `MaxEncodedLen`)
|
|
fn transfer() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `495`
|
|
// Estimated: `3550`
|
|
// Minimum execution time: 17_552_000 picoseconds.
|
|
Weight::from_parts(18_251_000, 3550)
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Broker::Regions` (r:1 w:2)
|
|
/// Proof: `Broker::Regions` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `MaxEncodedLen`)
|
|
fn partition() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `495`
|
|
// Estimated: `3550`
|
|
// Minimum execution time: 18_551_000 picoseconds.
|
|
Weight::from_parts(19_727_000, 3550)
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: `Broker::Regions` (r:1 w:3)
|
|
/// Proof: `Broker::Regions` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `MaxEncodedLen`)
|
|
fn interlace() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `495`
|
|
// Estimated: `3550`
|
|
// Minimum execution time: 20_636_000 picoseconds.
|
|
Weight::from_parts(21_060_000, 3550)
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: `Broker::Configuration` (r:1 w:0)
|
|
/// Proof: `Broker::Configuration` (`max_values`: Some(1), `max_size`: Some(31), added: 526, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Status` (r:1 w:0)
|
|
/// Proof: `Broker::Status` (`max_values`: Some(1), `max_size`: Some(18), added: 513, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Regions` (r:1 w:1)
|
|
/// Proof: `Broker::Regions` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Workplan` (r:1 w:1)
|
|
/// Proof: `Broker::Workplan` (`max_values`: None, `max_size`: Some(1216), added: 3691, mode: `MaxEncodedLen`)
|
|
fn assign() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `740`
|
|
// Estimated: `4681`
|
|
// Minimum execution time: 32_394_000 picoseconds.
|
|
Weight::from_parts(33_324_000, 4681)
|
|
.saturating_add(RocksDbWeight::get().reads(4_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: `Broker::Status` (r:1 w:0)
|
|
/// Proof: `Broker::Status` (`max_values`: Some(1), `max_size`: Some(18), added: 513, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Regions` (r:1 w:1)
|
|
/// Proof: `Broker::Regions` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Workplan` (r:1 w:1)
|
|
/// Proof: `Broker::Workplan` (`max_values`: None, `max_size`: Some(1216), added: 3691, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::InstaPoolIo` (r:2 w:2)
|
|
/// Proof: `Broker::InstaPoolIo` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::InstaPoolContribution` (r:0 w:1)
|
|
/// Proof: `Broker::InstaPoolContribution` (`max_values`: None, `max_size`: Some(68), added: 2543, mode: `MaxEncodedLen`)
|
|
fn pool() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `775`
|
|
// Estimated: `5996`
|
|
// Minimum execution time: 38_128_000 picoseconds.
|
|
Weight::from_parts(39_274_000, 5996)
|
|
.saturating_add(RocksDbWeight::get().reads(5_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(5_u64))
|
|
}
|
|
/// Storage: `Broker::InstaPoolContribution` (r:1 w:1)
|
|
/// Proof: `Broker::InstaPoolContribution` (`max_values`: None, `max_size`: Some(68), added: 2543, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::InstaPoolHistory` (r:3 w:1)
|
|
/// Proof: `Broker::InstaPoolHistory` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::Account` (r:2 w:2)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`)
|
|
/// The range of component `m` is `[1, 3]`.
|
|
fn claim_revenue(m: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `859`
|
|
// Estimated: `6196 + m * (2520 ±0)`
|
|
// Minimum execution time: 70_453_000 picoseconds.
|
|
Weight::from_parts(70_652_822, 6196)
|
|
// Standard Error: 75_524
|
|
.saturating_add(Weight::from_parts(2_335_289, 0).saturating_mul(m.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(3_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(m.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(5_u64))
|
|
.saturating_add(Weight::from_parts(0, 2520).saturating_mul(m.into()))
|
|
}
|
|
/// Storage: `System::Account` (r:1 w:1)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`)
|
|
fn purchase_credit() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `103`
|
|
// Estimated: `3593`
|
|
// Minimum execution time: 43_945_000 picoseconds.
|
|
Weight::from_parts(45_249_000, 3593)
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Broker::Status` (r:1 w:0)
|
|
/// Proof: `Broker::Status` (`max_values`: Some(1), `max_size`: Some(18), added: 513, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Regions` (r:1 w:1)
|
|
/// Proof: `Broker::Regions` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `MaxEncodedLen`)
|
|
fn drop_region() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `603`
|
|
// Estimated: `3550`
|
|
// Minimum execution time: 30_680_000 picoseconds.
|
|
Weight::from_parts(32_995_000, 3550)
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Broker::Configuration` (r:1 w:0)
|
|
/// Proof: `Broker::Configuration` (`max_values`: Some(1), `max_size`: Some(31), added: 526, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Status` (r:1 w:0)
|
|
/// Proof: `Broker::Status` (`max_values`: Some(1), `max_size`: Some(18), added: 513, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::InstaPoolContribution` (r:1 w:1)
|
|
/// Proof: `Broker::InstaPoolContribution` (`max_values`: None, `max_size`: Some(68), added: 2543, mode: `MaxEncodedLen`)
|
|
fn drop_contribution() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `601`
|
|
// Estimated: `3533`
|
|
// Minimum execution time: 48_053_000 picoseconds.
|
|
Weight::from_parts(51_364_000, 3533)
|
|
.saturating_add(RocksDbWeight::get().reads(3_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Broker::Configuration` (r:1 w:0)
|
|
/// Proof: `Broker::Configuration` (`max_values`: Some(1), `max_size`: Some(31), added: 526, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Status` (r:1 w:0)
|
|
/// Proof: `Broker::Status` (`max_values`: Some(1), `max_size`: Some(18), added: 513, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::InstaPoolHistory` (r:1 w:1)
|
|
/// Proof: `Broker::InstaPoolHistory` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`)
|
|
fn drop_history() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `995`
|
|
// Estimated: `3593`
|
|
// Minimum execution time: 57_372_000 picoseconds.
|
|
Weight::from_parts(59_466_000, 3593)
|
|
.saturating_add(RocksDbWeight::get().reads(4_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Broker::Status` (r:1 w:0)
|
|
/// Proof: `Broker::Status` (`max_values`: Some(1), `max_size`: Some(18), added: 513, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::AllowedRenewals` (r:1 w:1)
|
|
/// Proof: `Broker::AllowedRenewals` (`max_values`: None, `max_size`: Some(1233), added: 3708, mode: `MaxEncodedLen`)
|
|
fn drop_renewal() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `661`
|
|
// Estimated: `4698`
|
|
// Minimum execution time: 27_768_000 picoseconds.
|
|
Weight::from_parts(29_000_000, 4698)
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// The range of component `n` is `[0, 1000]`.
|
|
fn request_core_count(_n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 4_588_000 picoseconds.
|
|
Weight::from_parts(5_201_705, 0)
|
|
}
|
|
/// Storage: `Broker::CoreCountInbox` (r:1 w:1)
|
|
/// Proof: `Broker::CoreCountInbox` (`max_values`: Some(1), `max_size`: Some(2), added: 497, mode: `MaxEncodedLen`)
|
|
/// The range of component `n` is `[0, 1000]`.
|
|
fn process_core_count(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `404`
|
|
// Estimated: `1487`
|
|
// Minimum execution time: 6_889_000 picoseconds.
|
|
Weight::from_parts(7_380_363, 1487)
|
|
// Standard Error: 21
|
|
.saturating_add(Weight::from_parts(63, 0).saturating_mul(n.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: UNKNOWN KEY `0xf308d869daf021a7724e69c557dd8dbe` (r:1 w:1)
|
|
/// Proof: UNKNOWN KEY `0xf308d869daf021a7724e69c557dd8dbe` (r:1 w:1)
|
|
/// Storage: `Broker::InstaPoolHistory` (r:1 w:1)
|
|
/// Proof: `Broker::InstaPoolHistory` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::Account` (r:1 w:1)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`)
|
|
/// Storage: `Authorship::Author` (r:1 w:0)
|
|
/// Proof: `Authorship::Author` (`max_values`: Some(1), `max_size`: Some(32), added: 527, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::Digest` (r:1 w:0)
|
|
/// Proof: `System::Digest` (`max_values`: Some(1), `max_size`: None, mode: `Measured`)
|
|
fn process_revenue() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `972`
|
|
// Estimated: `4437`
|
|
// Minimum execution time: 50_156_000 picoseconds.
|
|
Weight::from_parts(51_610_000, 4437)
|
|
.saturating_add(RocksDbWeight::get().reads(5_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: `Broker::InstaPoolIo` (r:3 w:3)
|
|
/// Proof: `Broker::InstaPoolIo` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Reservations` (r:1 w:0)
|
|
/// Proof: `Broker::Reservations` (`max_values`: Some(1), `max_size`: Some(6011), added: 6506, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Leases` (r:1 w:1)
|
|
/// Proof: `Broker::Leases` (`max_values`: Some(1), `max_size`: Some(41), added: 536, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::SaleInfo` (r:0 w:1)
|
|
/// Proof: `Broker::SaleInfo` (`max_values`: Some(1), `max_size`: Some(57), added: 552, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Workplan` (r:0 w:10)
|
|
/// Proof: `Broker::Workplan` (`max_values`: None, `max_size`: Some(1216), added: 3691, mode: `MaxEncodedLen`)
|
|
/// The range of component `n` is `[0, 1000]`.
|
|
fn rotate_sale(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `6281`
|
|
// Estimated: `8499`
|
|
// Minimum execution time: 38_246_000 picoseconds.
|
|
Weight::from_parts(40_008_850, 8499)
|
|
// Standard Error: 94
|
|
.saturating_add(Weight::from_parts(964, 0).saturating_mul(n.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(5_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(15_u64))
|
|
}
|
|
/// Storage: `Broker::InstaPoolIo` (r:1 w:0)
|
|
/// Proof: `Broker::InstaPoolIo` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::InstaPoolHistory` (r:0 w:1)
|
|
/// Proof: `Broker::InstaPoolHistory` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`)
|
|
fn process_pool() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `180`
|
|
// Estimated: `3493`
|
|
// Minimum execution time: 7_962_000 picoseconds.
|
|
Weight::from_parts(8_313_000, 3493)
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Broker::Workplan` (r:1 w:1)
|
|
/// Proof: `Broker::Workplan` (`max_values`: None, `max_size`: Some(1216), added: 3691, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Workload` (r:1 w:1)
|
|
/// Proof: `Broker::Workload` (`max_values`: None, `max_size`: Some(1212), added: 3687, mode: `MaxEncodedLen`)
|
|
fn process_core_schedule() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1423`
|
|
// Estimated: `4681`
|
|
// Minimum execution time: 17_457_000 picoseconds.
|
|
Weight::from_parts(18_387_000, 4681)
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(2_u64))
|
|
}
|
|
fn request_revenue_info_at() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 133_000 picoseconds.
|
|
Weight::from_parts(149_000, 0)
|
|
}
|
|
/// Storage: `Broker::CoreCountInbox` (r:0 w:1)
|
|
/// Proof: `Broker::CoreCountInbox` (`max_values`: Some(1), `max_size`: Some(2), added: 497, mode: `MaxEncodedLen`)
|
|
fn notify_core_count() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 2_407_000 picoseconds.
|
|
Weight::from_parts(2_634_000, 0)
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Broker::Status` (r:1 w:1)
|
|
/// Proof: `Broker::Status` (`max_values`: Some(1), `max_size`: Some(18), added: 513, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::Configuration` (r:1 w:0)
|
|
/// Proof: `Broker::Configuration` (`max_values`: Some(1), `max_size`: Some(31), added: 526, mode: `MaxEncodedLen`)
|
|
/// Storage: `Broker::CoreCountInbox` (r:1 w:0)
|
|
/// Proof: `Broker::CoreCountInbox` (`max_values`: Some(1), `max_size`: Some(2), added: 497, mode: `MaxEncodedLen`)
|
|
/// Storage: UNKNOWN KEY `0xf308d869daf021a7724e69c557dd8dbe` (r:1 w:1)
|
|
/// Proof: UNKNOWN KEY `0xf308d869daf021a7724e69c557dd8dbe` (r:1 w:1)
|
|
fn do_tick_base() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `603`
|
|
// Estimated: `4068`
|
|
// Minimum execution time: 13_043_000 picoseconds.
|
|
Weight::from_parts(13_541_000, 4068)
|
|
.saturating_add(RocksDbWeight::get().reads(4_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: `Broker::Leases` (r:1 w:1)
|
|
/// Proof: `Broker::Leases` (`max_values`: Some(1), `max_size`: Some(41), added: 536, mode: `MaxEncodedLen`)
|
|
fn swap_leases() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `239`
|
|
// Estimated: `1526`
|
|
// Minimum execution time: 6_606_000 picoseconds.
|
|
Weight::from_parts(6_964_000, 1526)
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
}
|