1
- // SPDX-License-Identifier: Apache-2.0
2
- // This file is part of Frontier.
3
- //
4
- // Copyright (c) 2020-2022 Parity Technologies (UK) Ltd.
5
- //
6
- // Licensed under the Apache License, Version 2.0 (the "License");
7
- // you may not use this file except in compliance with the License.
8
- // You may obtain a copy of the License at
9
- //
10
- // http://www.apache.org/licenses/LICENSE-2.0
11
- //
12
- // Unless required by applicable law or agreed to in writing, software
13
- // distributed under the License is distributed on an "AS IS" BASIS,
14
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
- // See the License for the specific language governing permissions and
16
- // limitations under the License.
17
-
1
+ {{ header }}
18
2
//! Autogenerated weights for {{ pallet }}
19
3
//!
20
4
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION {{ version }}
21
- //! DATE: {{ date }} , STEPS: `{{ cmd.steps }} `, REPEAT: {{ cmd.repeat }} , LOW RANGE: `{{ cmd.lowest_range_values }} `, HIGH RANGE: `{{ cmd.highest_range_values }} `
5
+ //! DATE: {{ date }} , STEPS: `{{ cmd.steps }} `, REPEAT: `{{ cmd.repeat }} `, LOW RANGE: `{{ cmd.lowest_range_values }} `, HIGH RANGE: `{{ cmd.highest_range_values }} `
6
+ //! WORST CASE MAP SIZE: `{{ cmd.worst_case_map_values }} `
22
7
//! HOSTNAME: `{{ hostname }} `, CPU: `{{ cpuname }} `
23
8
//! EXECUTION: {{ cmd.execution }} , WASM-EXECUTION: {{ cmd.wasm_execution }} , CHAIN: {{ cmd.chain }} , DB CACHE: {{ cmd.db_cache }}
24
9
30
15
#![cfg_attr(rustfmt, rustfmt_skip)]
31
16
#![allow(unused_parens)]
32
17
#![allow(unused_imports)]
18
+ #![allow(missing_docs)]
33
19
34
20
use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
35
- use sp_std ::marker::PhantomData;
21
+ use core ::marker::PhantomData;
36
22
37
23
/// Weight functions needed for {{ pallet }} .
38
24
pub trait WeightInfo {
@@ -54,7 +40,7 @@ impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
54
40
{{ /if }}
55
41
{{ #each benchmarks as |benchmark |}}
56
42
{{ #each benchmark.comments as |comment |}}
57
- // {{ comment }}
43
+ /// {{ comment }}
58
44
{{ /each }}
59
45
{{ #each benchmark.component_ranges as |range |}}
60
46
/// The range of component `{{ range.name }} ` is `[{{ range.min }} , {{ range.max }} ]`.
@@ -64,22 +50,29 @@ impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
64
50
{{ ~#each benchmark.components as |c | ~}}
65
51
{{ ~#if (not c.is_used )}} _{{ /if }} {{ c.name }} : u32, {{ /each ~}}
66
52
) -> Weight {
67
- Weight::from_ref_time({{ underscore benchmark.base_weight }} as u64)
53
+ // Proof Size summary in bytes:
54
+ // Measured: `{{ benchmark.base_recorded_proof_size }} {{ #each benchmark.component_recorded_proof_size as |cp |}} + {{ cp.name }} * ({{ cp.slope }} ±{{ underscore cp.error }} ){{ /each }} `
55
+ // Estimated: `{{ benchmark.base_calculated_proof_size }} {{ #each benchmark.component_calculated_proof_size as |cp |}} + {{ cp.name }} * ({{ cp.slope }} ±{{ underscore cp.error }} ){{ /each }} `
56
+ // Minimum execution time: {{ underscore benchmark.min_execution_time }} _000 picoseconds.
57
+ Weight::from_parts({{ underscore benchmark.base_weight }} , {{ benchmark.base_calculated_proof_size }} )
68
58
{{ #each benchmark.component_weight as |cw |}}
69
59
// Standard Error: {{ underscore cw.error }}
70
- .saturating_add(Weight::from_ref_time ({{ underscore cw.slope }} as u64 ).saturating_mul({{ cw.name }} as u64 ))
60
+ .saturating_add(Weight::from_parts ({{ underscore cw.slope }} , 0 ).saturating_mul({{ cw.name }} .into() ))
71
61
{{ /each }}
72
62
{{ #if (ne benchmark.base_reads " 0" )}}
73
- .saturating_add(T::DbWeight::get().reads({{ benchmark.base_reads }} as u64 ))
63
+ .saturating_add(T::DbWeight::get().reads({{ benchmark.base_reads }} _u64 ))
74
64
{{ /if }}
75
65
{{ #each benchmark.component_reads as |cr |}}
76
- .saturating_add(T::DbWeight::get().reads(({{ cr.slope }} as u64 ).saturating_mul({{ cr.name }} as u64 )))
66
+ .saturating_add(T::DbWeight::get().reads(({{ cr.slope }} _u64 ).saturating_mul({{ cr.name }} .into() )))
77
67
{{ /each }}
78
68
{{ #if (ne benchmark.base_writes " 0" )}}
79
- .saturating_add(T::DbWeight::get().writes({{ benchmark.base_writes }} as u64 ))
69
+ .saturating_add(T::DbWeight::get().writes({{ benchmark.base_writes }} _u64 ))
80
70
{{ /if }}
81
71
{{ #each benchmark.component_writes as |cw |}}
82
- .saturating_add(T::DbWeight::get().writes(({{ cw.slope }} as u64).saturating_mul({{ cw.name }} as u64)))
72
+ .saturating_add(T::DbWeight::get().writes(({{ cw.slope }} _u64).saturating_mul({{ cw.name }} .into())))
73
+ {{ /each }}
74
+ {{ #each benchmark.component_calculated_proof_size as |cp |}}
75
+ .saturating_add(Weight::from_parts(0, {{ cp.slope }} ).saturating_mul({{ cp.name }} .into()))
83
76
{{ /each }}
84
77
}
85
78
{{ /each }}
@@ -89,7 +82,7 @@ impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
89
82
impl WeightInfo for () {
90
83
{{ #each benchmarks as |benchmark |}}
91
84
{{ #each benchmark.comments as |comment |}}
92
- // {{ comment }}
85
+ /// {{ comment }}
93
86
{{ /each }}
94
87
{{ #each benchmark.component_ranges as |range |}}
95
88
/// The range of component `{{ range.name }} ` is `[{{ range.min }} , {{ range.max }} ]`.
@@ -99,22 +92,29 @@ impl WeightInfo for () {
99
92
{{ ~#each benchmark.components as |c | ~}}
100
93
{{ ~#if (not c.is_used )}} _{{ /if }} {{ c.name }} : u32, {{ /each ~}}
101
94
) -> Weight {
102
- Weight::from_ref_time({{ underscore benchmark.base_weight }} as u64)
95
+ // Proof Size summary in bytes:
96
+ // Measured: `{{ benchmark.base_recorded_proof_size }} {{ #each benchmark.component_recorded_proof_size as |cp |}} + {{ cp.name }} * ({{ cp.slope }} ±{{ underscore cp.error }} ){{ /each }} `
97
+ // Estimated: `{{ benchmark.base_calculated_proof_size }} {{ #each benchmark.component_calculated_proof_size as |cp |}} + {{ cp.name }} * ({{ cp.slope }} ±{{ underscore cp.error }} ){{ /each }} `
98
+ // Minimum execution time: {{ underscore benchmark.min_execution_time }} _000 picoseconds.
99
+ Weight::from_parts({{ underscore benchmark.base_weight }} , {{ benchmark.base_calculated_proof_size }} )
103
100
{{ #each benchmark.component_weight as |cw |}}
104
101
// Standard Error: {{ underscore cw.error }}
105
- .saturating_add(Weight::from_ref_time ({{ underscore cw.slope }} as u64 ).saturating_mul({{ cw.name }} as u64 ))
102
+ .saturating_add(Weight::from_parts ({{ underscore cw.slope }} , 0 ).saturating_mul({{ cw.name }} .into() ))
106
103
{{ /each }}
107
104
{{ #if (ne benchmark.base_reads " 0" )}}
108
- .saturating_add(RocksDbWeight::get().reads({{ benchmark.base_reads }} as u64 ))
105
+ .saturating_add(RocksDbWeight::get().reads({{ benchmark.base_reads }} _u64 ))
109
106
{{ /if }}
110
107
{{ #each benchmark.component_reads as |cr |}}
111
- .saturating_add(RocksDbWeight::get().reads(({{ cr.slope }} as u64 ).saturating_mul({{ cr.name }} as u64 )))
108
+ .saturating_add(RocksDbWeight::get().reads(({{ cr.slope }} _u64 ).saturating_mul({{ cr.name }} .into() )))
112
109
{{ /each }}
113
110
{{ #if (ne benchmark.base_writes " 0" )}}
114
- .saturating_add(RocksDbWeight::get().writes({{ benchmark.base_writes }} as u64 ))
111
+ .saturating_add(RocksDbWeight::get().writes({{ benchmark.base_writes }} _u64 ))
115
112
{{ /if }}
116
113
{{ #each benchmark.component_writes as |cw |}}
117
- .saturating_add(RocksDbWeight::get().writes(({{ cw.slope }} as u64).saturating_mul({{ cw.name }} as u64)))
114
+ .saturating_add(RocksDbWeight::get().writes(({{ cw.slope }} _u64).saturating_mul({{ cw.name }} .into())))
115
+ {{ /each }}
116
+ {{ #each benchmark.component_calculated_proof_size as |cp |}}
117
+ .saturating_add(Weight::from_parts(0, {{ cp.slope }} ).saturating_mul({{ cp.name }} .into()))
118
118
{{ /each }}
119
119
}
120
120
{{ /each }}
0 commit comments