Skip to content

Commit 3cadd6a

Browse files
authored
Feat/benchmarks refactor (#160)
* feat: add ElectionsConfig in Genesis * feat: add pallet_elections_phragmen to the bechmark CLI * fmt * feat: refactor the justfile * feat: align the flags with the sdk * feat: use the production chain * chore: fix toml metadata * feat: give to the endowed accounts enough balance * feat: add all the pallets in the define_benchmarks! macro * chore: update doc
1 parent 5326bab commit 3cadd6a

File tree

7 files changed

+92
-93
lines changed

7 files changed

+92
-93
lines changed

justfile

+39-80
Original file line numberDiff line numberDiff line change
@@ -1,100 +1,59 @@
11
# Help information
22
default:
3-
@just --list
4-
5-
# Build everything
6-
build-all:
7-
cargo build --release
8-
9-
# Build the "Base" Runtime
10-
build-base-runtime:
11-
cargo build --release -p polimec-base-runtime
12-
13-
# Build the "Testnet" Runtime
14-
build-parachain-runtime:
15-
cargo build --release -p polimec-parachain-runtime
16-
17-
# Build the "Parachain" Node
18-
build-parachain-node:
19-
cargo build --release -p polimec-parachain-node
3+
@just --list
204

215
# Build the "Base" Runtime using srtool
226
build-base-srtool:
23-
srtool build --root -p polimec-base-runtime --runtime-dir runtimes/base --build-opts="--features=on-chain-release-build"
7+
srtool build --root -p polimec-base-runtime --runtime-dir runtimes/base --build-opts="--features=on-chain-release-build"
248

259
# Build the "Testnet" Runtime using srtool
26-
build-parachain-srtool:
27-
srtool build --root -p polimec-parachain-runtime --runtime-dir runtimes/testnet
2810

2911
# Test the runtimes features
3012
test-runtime-features:
31-
cargo test --features runtime-benchmarks -p polimec-parachain-runtime
13+
cargo test --features runtime-benchmarks -p polimec-parachain-runtime
3214

3315
# Run the integration tests
3416
test-integration:
35-
cargo test -p integration-tests
36-
37-
38-
# Benchmark the "Testnet" Runtime
39-
benchmark-runtime-funding:
40-
cargo run --features runtime-benchmarks --release -p polimec-parachain-node benchmark pallet \
41-
--chain=polimec-rococo-local \
42-
--steps=50 \
43-
--repeat=20 \
44-
--pallet=pallet_funding \
45-
--extrinsic '*' \
46-
--wasm-execution=compiled \
47-
--heap-pages=4096 \
48-
--output=runtimes/testnet/src/weights/pallet_funding.rs
49-
50-
51-
# Benchmark the "Testnet" Runtime
52-
benchmark-runtime-linear-release:
53-
cargo run --features runtime-benchmarks --release -p polimec-parachain-node benchmark pallet \
54-
--chain=polimec-rococo-local \
55-
--steps=50 \
56-
--repeat=20 \
57-
--pallet=pallet_linear_release \
58-
--extrinsic '*' \
59-
--wasm-execution=compiled \
60-
--heap-pages=4096 \
61-
--output=runtimes/testnet/src/weights/pallet_linear_release.rs
62-
63-
# Benchmark the "Testnet" Runtime
64-
benchmark-pallet-funding:
65-
cargo run --features runtime-benchmarks,fast-mode --release -p polimec-parachain-node benchmark pallet \
66-
--chain=polimec-rococo-local \
67-
--steps=50 \
68-
--repeat=20 \
69-
--pallet=pallet_funding \
70-
--extrinsic '*' \
71-
--heap-pages=4096 \
72-
--output=pallets/funding/src/weights-test.rs \
73-
--template=./.maintain/frame-weight-template.hbs
74-
75-
benchmark-pallet-linear-release:
76-
cargo run --features runtime-benchmarks,fast-mode --release -p polimec-parachain-node benchmark pallet \
77-
--chain=polimec-rococo-local \
78-
--steps=50 \
79-
--repeat=20 \
80-
--pallet=pallet_linear_release \
81-
--extrinsic '*' \
82-
--heap-pages=4096 \
83-
--output=pallets/linear-release/src/weights.rs \
84-
--template=./.maintain/frame-weight-template.hbs
85-
86-
benchmarks-test:
87-
cargo test --features runtime-benchmarks -p pallet-funding benchmarks
88-
17+
cargo test -p integration-tests
18+
19+
# src: https://github.com/polkadot-fellows/runtimes/blob/48ccfae6141d2924f579d81e8b1877efd208693f/system-parachains/asset-hubs/asset-hub-polkadot/src/weights/cumulus_pallet_xcmp_queue.rs
20+
# Benchmark a specific pallet on the "Base" Runtime
21+
benchmark-runtime pallet="pallet-elections-phragmen" features="runtime-benchmarks":
22+
cargo run --features {{ features }} --release -p polimec-parachain-node benchmark pallet \
23+
--chain=base-polkadot \
24+
--steps=50 \
25+
--repeat=20 \
26+
--pallet={{ pallet }} \
27+
--extrinsic=* \
28+
--wasm-execution=compiled \
29+
--heap-pages=4096 \
30+
--output=runtimes/base/src/weights/{{ replace(pallet, "-", "_") }}.rs
31+
32+
# src: https://github.com/paritytech/polkadot-sdk/blob/bc2e5e1fe26e2c2c8ee766ff9fe7be7e212a0c62/substrate/frame/nfts/src/weights.rs
33+
# Run the Runtime benchmarks for a specific pallet
34+
benchmark-pallet pallet="pallet-elections-phragmen" features="runtime-benchmarks":
35+
cargo run --features {{ features }} --release -p polimec-parachain-node benchmark pallet \
36+
--chain=base-polkadot \
37+
--steps=50 \
38+
--repeat=20 \
39+
--pallet={{ pallet }} \
40+
--no-storage-info \
41+
--no-median-slopes \
42+
--no-min-squares \
43+
--extrinsic '*' \
44+
--wasm-execution=compiled \
45+
--heap-pages=4096 \
46+
--output=pallets/{{ replace(pallet, "pallet-", "") }}/src/weights.rs \
47+
--template=./.maintain/frame-weight-template.hbs
8948

9049
# Build the Node Docker Image
91-
docker-build tag = "latest" package= "polimec-parachain-node":
92-
./scripts/build_image.sh {{tag}} ./Dockerfile {{package}}
50+
docker-build tag="latest" package="polimec-parachain-node":
51+
./scripts/build_image.sh {{ tag }} ./Dockerfile {{ package }}
9352

9453
# Create the "Base" Runtime Chainspec
9554
create-chainspec-base:
96-
./scripts/create_base_chain_spec.sh ./runtimes/base/target/srtool/release/wbuild/polimec-base-runtime/polimec_base_runtime.compact.compressed.wasm 2105
55+
./scripts/create_base_chain_spec.sh ./runtimes/base/target/srtool/release/wbuild/polimec-base-runtime/polimec_base_runtime.compact.compressed.wasm 2105
9756

9857
# Use zombienet to spawn rococo + polimec testnet
99-
zombienet path_to_file = "scripts/zombienet/native/base-rococo-local.toml":
100-
zombienet spawn {{path_to_file}}
58+
zombienet path_to_file="scripts/zombienet/native/base-rococo-local.toml":
59+
zombienet spawn {{ path_to_file }}

nodes/parachain/src/chain_spec/base.rs

+14-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ use base_runtime::{
3131
inflation::{perbill_annual_to_perbill_round, BLOCKS_PER_YEAR},
3232
InflationInfo, Range,
3333
},
34-
AccountId, AuraId as AuthorityId, Balance, BalancesConfig, MinCandidateStk, ParachainInfoConfig,
34+
AccountId, AuraId as AuthorityId, Balance, BalancesConfig, ElectionsConfig, MinCandidateStk, ParachainInfoConfig,
3535
ParachainStakingConfig, PolkadotXcmConfig, RuntimeGenesisConfig, SessionConfig, SudoConfig, SystemConfig, PLMC,
3636
};
3737

@@ -216,9 +216,12 @@ fn base_testnet_genesis(
216216
sudo_account: AccountId,
217217
id: ParaId,
218218
) -> RuntimeGenesisConfig {
219+
const ENDOWMENT: Balance = 10_000_000 * PLMC;
220+
const STASH: Balance = ENDOWMENT / 1000;
221+
219222
RuntimeGenesisConfig {
220223
system: SystemConfig { code: wasm_binary.to_vec(), ..Default::default() },
221-
balances: BalancesConfig { balances: endowed_accounts },
224+
balances: BalancesConfig { balances: endowed_accounts.clone() },
222225
parachain_info: ParachainInfoConfig { parachain_id: id, ..Default::default() },
223226
parachain_staking: ParachainStakingConfig {
224227
candidates: stakers.iter().map(|(accunt, _, balance)| (accunt.clone(), *balance)).collect::<Vec<_>>(),
@@ -254,7 +257,15 @@ fn base_testnet_genesis(
254257
council: Default::default(),
255258
technical_committee: Default::default(),
256259
democracy: Default::default(),
257-
elections: Default::default(),
260+
elections: ElectionsConfig {
261+
members: endowed_accounts
262+
.iter()
263+
.map(|(member, _)| member)
264+
.take((endowed_accounts.len() + 1) / 2)
265+
.cloned()
266+
.map(|member| (member, STASH))
267+
.collect(),
268+
},
258269
treasury: Default::default(),
259270
vesting: Default::default(),
260271
}

pallets/democracy/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "pallet-democracy"
3-
version = "4.0.0-dev"
3+
version.workspace = true
44
authors.workspace = true
55
edition.workspace = true
6-
license = "Apache-2.0"
7-
homepage = "https://substrate.io"
6+
license-file.workspace = true
7+
homepage.workspace = true
88
repository.workspace = true
99
description = "FRAME pallet for democracy"
1010
readme = "README.md"

pallets/elections-phragmen/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "pallet-elections-phragmen"
3-
version = "5.0.0-dev"
3+
version.workspace = true
44
authors.workspace = true
55
edition.workspace = true
6-
license = "Apache-2.0"
7-
homepage = "https://substrate.io"
6+
license-file.workspace = true
7+
homepage.workspace = true
88
repository.workspace = true
99
description = "FRAME pallet based on seq-Phragmén election method."
1010
readme = "README.md"

pallets/elections-phragmen/src/benchmarking.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,12 @@ use frame_system::RawOrigin;
2424

2525
use crate::Pallet as Elections;
2626

27-
const BALANCE_FACTOR: u32 = 250;
28-
2927
/// grab new account with infinite balance.
3028
fn endowed_account<T: Config>(name: &'static str, index: u32) -> T::AccountId {
3129
let account: T::AccountId = account(name, index, 0);
3230
// Fund each account with at-least their stake but still a sane amount as to not mess up
3331
// the vote calculation.
34-
let amount = default_stake::<T>(T::MaxVoters::get()) * BalanceOf::<T>::from(BALANCE_FACTOR);
32+
let amount = default_stake::<T>(T::MaxVoters::get()) * T::CandidacyBond::get();
3533
let _ = T::Currency::set_balance(&account, amount);
3634
// important to increase the total issuance since T::CurrencyToVote will need it to be sane for
3735
// phragmen to work.

runtimes/base/src/lib.rs

+28-1
Original file line numberDiff line numberDiff line change
@@ -821,11 +821,38 @@ construct_runtime!(
821821
#[cfg(feature = "runtime-benchmarks")]
822822
mod benches {
823823
frame_benchmarking::define_benchmarks!(
824+
// System support stuff.
824825
[frame_system, SystemBench::<Runtime>]
826+
[pallet_timestamp, Timestamp]
827+
[pallet_sudo, Sudo]
828+
[pallet_utility, Utility]
829+
[pallet_multisig, Multisig]
830+
[pallet_proxy, Proxy]
831+
832+
// Monetary stuff.
825833
[pallet_balances, Balances]
834+
[pallet_vesting, Vesting]
835+
836+
// Collator support.
826837
[pallet_session, SessionBench::<Runtime>]
827-
[pallet_timestamp, Timestamp]
838+
[pallet_parachain_staking, ParachainStaking]
839+
840+
// XCM helpers.
828841
[cumulus_pallet_xcmp_queue, XcmpQueue]
842+
[pallet_xcm, PolkadotXcm]
843+
844+
// Governance
845+
[pallet_treasury, Treasury]
846+
[pallet_democracy, Democracy]
847+
[pallet_collective, Council]
848+
[pallet_collective, TechnicalCommittee]
849+
[pallet_elections_phragmen, Elections]
850+
[pallet_preimage, Preimage]
851+
[pallet_scheduler, Scheduler]
852+
853+
// Oracle
854+
[pallet_membership, OracleProvidersMembership]
855+
//[orml_oracle, Oracle]
829856
);
830857
}
831858

runtimes/shared-configuration/src/governance.rs

+4
Original file line numberDiff line numberDiff line change
@@ -104,20 +104,24 @@ parameter_types! {
104104
pub const MinimumDeposit: Balance = 100 * PLMC;
105105
pub const EnactmentPeriod: BlockNumber = ENACTMENT_PERIOD;
106106
pub const CooloffPeriod: BlockNumber = COOLOFF_PERIOD;
107+
107108
// Council Pallet
108109
pub const CouncilMotionDuration: BlockNumber = COUNCIL_MOTION_DURATION;
109110
pub const CouncilMaxProposals: u32 = 7;
110111
pub const CouncilMaxMembers: u32 = 20;
112+
111113
// Technical Committee
112114
pub const TechnicalMotionDuration: BlockNumber = TECHNICAL_MOTION_DURATION;
113115
pub const TechnicalMaxProposals: u32 = 7;
114116
pub const TechnicalMaxMembers: u32 = 5;
117+
115118
// Extras
116119
pub const PreimageBaseDeposit: Balance = deposit(2, 64);
117120
pub const MaxProposals: u32 = 10;
118121
pub const MaxVotes: u32 = 100;
119122
pub const MaxBlacklisted: u32 = 100;
120123
pub const MaxDeposits: u32 = 100;
124+
121125
//Treasury
122126
pub const ProposalBond: Permill = Permill::from_percent(5);
123127
pub const ProposalBondMinimum: Balance = 50 * PLMC;

0 commit comments

Comments
 (0)