This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Use proper weights in the pallet-template
#13817
Merged
paritytech-processbot
merged 6 commits into
master
from
alexd10s-use-proper-weights-pallet-template
Apr 6, 2023
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
3abd917
benchmarking to generate weights file
AlexD10S 1802ffe
add the calculated weights in the extrinsics
AlexD10S ee95acf
use benchmarking v2 syntax to generate the weights
AlexD10S 5c24d3a
minor syntax change when benchmarking
AlexD10S 11757c3
added WeightInfo in the mock to pass tests
AlexD10S 2e15897
minor cargo fmt format changes
AlexD10S File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
|
||
//! Autogenerated weights for pallet_template | ||
//! | ||
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev | ||
//! DATE: 2023-04-05, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` | ||
//! WORST CASE MAP SIZE: `1000000` | ||
//! HOSTNAME: `Alexs-MacBook-Pro-2.local`, CPU: `<UNKNOWN>` | ||
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("dev"), DB CACHE: 1024 | ||
// Executed Command: | ||
// ../../target/release/node-template | ||
// benchmark | ||
// pallet | ||
// --chain | ||
// dev | ||
// --pallet | ||
// pallet_template | ||
// --extrinsic | ||
// * | ||
// --steps=50 | ||
// --repeat=20 | ||
// --execution=wasm | ||
// --wasm-execution=compiled | ||
// --output | ||
// pallets/template/src/weights.rs | ||
// --template | ||
// ../../.maintain/frame-weight-template.hbs | ||
|
||
#![cfg_attr(rustfmt, rustfmt_skip)] | ||
#![allow(unused_parens)] | ||
#![allow(unused_imports)] | ||
|
||
use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}}; | ||
use sp_std::marker::PhantomData; | ||
|
||
/// Weight functions needed for pallet_template. | ||
pub trait WeightInfo { | ||
fn do_something() -> Weight; | ||
fn cause_error() -> Weight; | ||
} | ||
|
||
/// Weights for pallet_template using the Substrate node and recommended hardware. | ||
pub struct SubstrateWeight<T>(PhantomData<T>); | ||
impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> { | ||
/// Storage: TemplateModule Something (r:0 w:1) | ||
/// Proof: TemplateModule Something (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) | ||
fn do_something() -> Weight { | ||
// Proof Size summary in bytes: | ||
// Measured: `0` | ||
// Estimated: `0` | ||
// Minimum execution time: 8_000_000 picoseconds. | ||
Weight::from_parts(8_000_000, 0) | ||
.saturating_add(T::DbWeight::get().writes(1_u64)) | ||
} | ||
/// Storage: TemplateModule Something (r:1 w:1) | ||
/// Proof: TemplateModule Something (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) | ||
fn cause_error() -> Weight { | ||
// Proof Size summary in bytes: | ||
// Measured: `32` | ||
// Estimated: `1489` | ||
// Minimum execution time: 5_000_000 picoseconds. | ||
Weight::from_parts(6_000_000, 1489) | ||
.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: TemplateModule Something (r:0 w:1) | ||
/// Proof: TemplateModule Something (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) | ||
fn do_something() -> Weight { | ||
// Proof Size summary in bytes: | ||
// Measured: `0` | ||
// Estimated: `0` | ||
// Minimum execution time: 8_000_000 picoseconds. | ||
Weight::from_parts(8_000_000, 0) | ||
.saturating_add(RocksDbWeight::get().writes(1_u64)) | ||
} | ||
/// Storage: TemplateModule Something (r:1 w:1) | ||
/// Proof: TemplateModule Something (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) | ||
fn cause_error() -> Weight { | ||
// Proof Size summary in bytes: | ||
// Measured: `32` | ||
// Estimated: `1489` | ||
// Minimum execution time: 5_000_000 picoseconds. | ||
Weight::from_parts(6_000_000, 1489) | ||
.saturating_add(RocksDbWeight::get().reads(1_u64)) | ||
.saturating_add(RocksDbWeight::get().writes(1_u64)) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You just found yourself another issue (if you want obviously 😛).
Getting rid of this and using
PhantomData
fromcore::marker
instead.