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
WeightInfo for System, Timestamp, and Utility #6868
Merged
Merged
Changes from 1 commit
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
8672f1b
initial updates to system
shawntabrizi 78daffb
fix compile
shawntabrizi 996f083
Update writer.rs
shawntabrizi 66fa889
update weights
shawntabrizi 0277875
finish system weights
shawntabrizi e57195c
Merge branch 'master' into shawntabrizi-more-weights
shawntabrizi 676236d
timestamp weights
shawntabrizi 792a216
utility weight
shawntabrizi 50a724f
Fix overflow in weight calculations
shawntabrizi 2e58cdd
add back weight notes
shawntabrizi da6b4f9
Update for whitelisted benchmarks
shawntabrizi 12b08b7
add trait bounds
shawntabrizi a79855a
Revert "add trait bounds"
shawntabrizi 50dba7c
Merge branch 'master' into shawntabrizi-more-weights
shawntabrizi 124a2a3
Update weights for unaccounted for read
shawntabrizi 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
utility weight
- Loading branch information
commit 792a216d06329454e59adfd8f56e2c01d3e7cc16
There are no files selected for viewing
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,35 @@ | ||
// This file is part of Substrate. | ||
|
||
// Copyright (C) 2017-2020 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 2.0.0-rc5 | ||
|
||
#![allow(unused_parens)] | ||
#![allow(unused_imports)] | ||
|
||
use frame_support::weights::{Weight, constants::RocksDbWeight as DbWeight}; | ||
|
||
pub struct WeightInfo; | ||
impl pallet_utility::WeightInfo for WeightInfo { | ||
fn batch(c: u32, ) -> Weight { | ||
(16461000 as Weight) | ||
.saturating_add((1982000 as Weight).saturating_mul(c as Weight)) | ||
} | ||
// WARNING! Some components were not used: ["u"] | ||
fn as_derivative() -> Weight { | ||
(4086000 as Weight) | ||
} | ||
} |
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,34 @@ | ||
// This file is part of Substrate. | ||
|
||
// Copyright (C) 2019-2020 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 2.0.0-rc5 | ||
|
||
#![allow(unused_parens)] | ||
#![allow(unused_imports)] | ||
|
||
use frame_support::weights::{Weight, constants::RocksDbWeight as DbWeight}; | ||
|
||
impl crate::WeightInfo for () { | ||
fn batch(c: u32, ) -> Weight { | ||
(16461000 as Weight) | ||
.saturating_add((1982000 as Weight).saturating_mul(c as Weight)) | ||
} | ||
// WARNING! Some components were not used: ["u"] | ||
fn as_derivative() -> Weight { | ||
(4086000 as Weight) | ||
} | ||
} |
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.
I think it is fine to add this to all files as well for now to make it easier.