Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

update weights #5097

Merged
merged 15 commits into from
Mar 16, 2022
Merged

update weights #5097

merged 15 commits into from
Mar 16, 2022

Conversation

coderobe
Copy link
Contributor

No description provided.

@coderobe coderobe added A0-please_review Pull request needs code review. B0-silent Changes should not be mentioned in any release notes C1-low PR touches the given topic and has a low impact on builders. D3-trivial 🧸 PR contains trivial changes in a runtime directory that do not require an audit. labels Mar 14, 2022
@coderobe coderobe mentioned this pull request Mar 14, 2022
@ggwpez ggwpez self-requested a review March 14, 2022 12:20
Copy link
Member

@ggwpez ggwpez left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe you can help @brunopgalvao over here #5052 when you are done.
He updates the rococo weights but currently uses the bot.

runtime/kusama/src/weights/runtime_common_auctions.rs Outdated Show resolved Hide resolved
@coderobe coderobe requested a review from ggwpez March 16, 2022 09:58
Copy link
Member

@ggwpez ggwpez left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good in general.
Can you make sure that this diff touches all runtime weight files?
AFAIK this should modify all files in runtime/polkadot/src/weights (and the other runtime dirs) excluding mod.rs.

fn new_auction() -> Weight {
(24_436_000 as Weight)
(11_899_000 as Weight)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As explanation here and in other places: paritytech/substrate#10692 should have reduced all weights across all runtimes.
Substrate weights were updated in that MR but Polkadot et.al. not.

.saturating_add(T::DbWeight::get().reads(5 as Weight))
.saturating_add(T::DbWeight::get().writes(4 as Weight))
(8_646_169_000 as Weight)
.saturating_add(T::DbWeight::get().reads(8 as Weight))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The number of Read/Writes should only change when there was a logic change that did not update the weights.
Happened in Substrate quite often but I don't know about Polkadot.

// Storage: Paras CodeByHash (r:0 w:1)
fn force_set_current_code(c: u32, ) -> Weight {
(0 as Weight)
// Standard Error: 0
.saturating_add((3_000 as Weight).saturating_mul(c as Weight))
.saturating_add(T::DbWeight::get().reads(2 as Weight))
.saturating_add(T::DbWeight::get().writes(3 as Weight))
.saturating_add(T::DbWeight::get().reads(4 as Weight))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@KiChjang there are quite some changes in the Read/Write counts here; do you know of mayor changes to the parachain stuff that did not update the weights?
In other files as well.

.saturating_add(T::DbWeight::get().reads(1 as Weight))
.saturating_add(T::DbWeight::get().writes(1 as Weight))
}
// Storage: System Account (r:1 w:1)
fn transfer_keep_alive() -> Weight {
(23_391_000 as Weight)
(24_829_000 as Weight)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some of the pallet already have updated weights as you can see at the date

fn as_multi_create(s: u32, z: u32) -> Weight {
(48_627_000 as Weight)
// Storage: Multisig Multisigs (r:1 w:1)
// Storage: unknown [0x3a65787472696e7369635f696e646578] (r:1 w:0)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder what this means

@coderobe
Copy link
Contributor Author

coderobe commented Mar 16, 2022

The files that did not get updated are

runtime/kusama/src/weights/frame_system.rs
runtime/kusama/src/weights/pallet_collective_council.rs
runtime/kusama/src/weights/pallet_collective_technical_committee.rs
runtime/kusama/src/weights/pallet_election_provider_multi_phase.rs
runtime/kusama/src/weights/pallet_elections_phragmen.rs
runtime/kusama/src/weights/runtime_common_crowdloan.rs
runtime/polkadot/src/weights/frame_system.rs
runtime/polkadot/src/weights/pallet_collective_council.rs
runtime/polkadot/src/weights/pallet_collective_technical_committee.rs
runtime/polkadot/src/weights/pallet_election_provider_multi_phase.rs
runtime/polkadot/src/weights/runtime_common_auctions.rs
runtime/polkadot/src/weights/runtime_common_crowdloan.rs
runtime/polkadot/src/weights/runtime_common_slots.rs
runtime/polkadot/src/weights/runtime_parachains_hrmp.rs
runtime/westend/src/weights/frame_system.rs
runtime/westend/src/weights/pallet_election_provider_multi_phase.rs
runtime/westend/src/weights/runtime_common_crowdloan.rs

Associated benchmark errors:
runtime_common::claims.move_claim (crowdloan): Invalid input: NoLeasePeriod
slots: Invalid input: LeaseError
ump: Invalid input: UnknownMessageIndex
pallet_election_provider_multi_phase: Invalid input: SignedCannotPayDeposit
runtime_common::auctions.cancel_auction: Invalid input: FundNotEnded
pallet_elections_phragmen: Invalid input: UnableToPayBond

// Standard Error: 56_000
.saturating_add((4_963_000 as Weight).saturating_mul(s as Weight))
(3_348_741_000 as Weight)
// Standard Error: 223_000
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does it play any role if this number raises so significantly?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would imply that there was a change that was not re-benchmarked, as in general this should not happen.

@coderobe
Copy link
Contributor Author

/benchmark runtime polkadot frame_system

@parity-benchapp
Copy link

parity-benchapp bot commented Mar 16, 2022

Benchmark Runtime Polkadot Pallet for branch "coderobe/weights-18-m" with command cargo run --quiet --profile=production --features=runtime-benchmarks -- benchmark --chain=polkadot-dev --steps=50 --repeat=20 --pallet=frame_system --extrinsic="*" --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/polkadot/src/weights/

Toolchain: stable-x86_64-unknown-linux-gnu (default)
rustc 1.57.0 (f1edd0429 2021-11-29)

Results
Pallet: "frame_system", Extrinsic: "remark", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    0.293
    + b        0
              µs

Reads = 0 + (0 * b)
Writes = 0 + (0 * b)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    b   mean µs  sigma µs       %
    0     0.305      0.01    3.2%
78643     27.25     0.244    0.8%
157286     54.29     0.029    0.0%
235929     81.14     0.024    0.0%
314572     107.9      0.02    0.0%
393215     134.8     0.034    0.0%
471858     161.5     0.032    0.0%
550501     188.4     0.051    0.0%
629144     212.5      1.88    0.8%
707787     236.7      0.05    0.0%
786430     262.9     0.091    0.0%
865073     289.2      0.05    0.0%
943716     315.4     0.072    0.0%
1022359     341.6     0.101    0.0%
1101002       377     11.61    3.0%
1179645     394.1     0.086    0.0%
1258288     420.4     0.047    0.0%
1336931     446.4     0.328    0.0%
1415574     472.8     0.119    0.0%
1494217     497.6     2.186    0.4%
1572860     524.8     1.499    0.2%
1651503     551.6     0.362    0.0%
1730146     577.8      0.14    0.0%
1808789     607.5     9.196    1.5%
1887432     638.7     13.42    2.1%
1966075     655.5     2.305    0.3%
2044718     681.2     2.889    0.4%
2123361     712.3     8.874    1.2%
2202004     745.6     12.74    1.7%
2280647     765.1     5.935    0.7%
2359290     794.2     12.52    1.5%
2437933     823.8      17.1    2.0%
2516576     845.6     8.382    0.9%
2595219     870.9     8.829    1.0%
2673862     901.4     10.74    1.1%
2752505       926     8.956    0.9%
2831148     945.6     3.828    0.4%
2909791     983.2     11.27    1.1%
2988434      1014     14.51    1.4%
3067077      1026     9.556    0.9%
3145720      1053     2.855    0.2%
3224363      1082     11.13    1.0%
3303006      1124     7.439    0.6%
3381649      1130     3.988    0.3%
3460292      1179     12.06    1.0%
3538935      1205     12.87    1.0%
3617578      1220     10.38    0.8%
3696221      1250     13.02    1.0%
3774864      1287     11.26    0.8%
3853507      1314     15.73    1.1%
3932150      1327     9.667    0.7%

Quality and confidence:
param     error
b             0

Model:
Time ~=        0
    + b        0
              µs

Reads = 0 + (0 * b)
Writes = 0 + (0 * b)

Pallet: "frame_system", Extrinsic: "remark_with_event", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=        0
    + b    0.001
              µs

Reads = 0 + (0 * b)
Writes = 0 + (0 * b)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    b   mean µs  sigma µs       %
    0     7.444     0.081    1.0%
78643     135.2     0.998    0.7%
157286     256.2     1.068    0.4%
235929     372.3     6.627    1.7%
314572     496.3     0.876    0.1%
393215     605.2     6.179    1.0%
471858     726.3     12.28    1.6%
550501     853.5     10.86    1.2%
629144     967.2     12.49    1.2%
707787      1095     11.96    1.0%
786430      1209     14.31    1.1%
865073      1328      14.9    1.1%
943716      1444      11.8    0.8%
1022359      1567     13.92    0.8%
1101002      1698     11.24    0.6%
1179645      1813     17.74    0.9%
1258288      1924     10.62    0.5%
1336931      2044      14.9    0.7%
1415574      2161     11.27    0.5%
1494217      2284     11.33    0.4%
1572860      2410     8.464    0.3%
1651503      2537     8.833    0.3%
1730146      2656     8.935    0.3%
1808789      2782     14.73    0.5%
1887432      2892     12.81    0.4%
1966075      3026     11.35    0.3%
2044718      3155     7.756    0.2%
2123361      3278     8.058    0.2%
2202004      3407     13.37    0.3%
2280647      3535     17.77    0.5%
2359290      3670     17.75    0.4%
2437933      3779     19.25    0.5%
2516576      3924     10.14    0.2%
2595219      4041     18.14    0.4%
2673862      4185     12.34    0.2%
2752505      4306     23.23    0.5%
2831148      4425     11.27    0.2%
2909791      4564      17.7    0.3%
2988434      4702     17.65    0.3%
3067077      4812     11.98    0.2%
3145720      4950     19.14    0.3%
3224363      5079     22.61    0.4%
3303006      5196     26.76    0.5%
3381649      5331     10.02    0.1%
3460292      5451     9.408    0.1%
3538935      5569     17.66    0.3%
3617578      5708     14.89    0.2%
3696221      5841     11.39    0.1%
3774864      5974     18.38    0.3%
3853507      6082     12.94    0.2%
3932150      6225     12.22    0.1%

Quality and confidence:
param     error
b             0

Model:
Time ~=        0
    + b    0.002
              µs

Reads = 0 + (0 * b)
Writes = 0 + (0 * b)

Pallet: "frame_system", Extrinsic: "set_heap_pages", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: System Digest (r:1 w:1)
Storage: unknown [0x3a686561707061676573] (r:0 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=     2.33
              µs

Reads = 1
Writes = 2

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=     2.33
              µs

Reads = 1
Writes = 2

Pallet: "frame_system", Extrinsic: "set_storage", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: Skipped Metadata (r:0 w:0)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=        0
    + i    0.319
              µs

Reads = 0 + (0 * i)
Writes = 0 + (1 * i)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    i   mean µs  sigma µs       %
    1     0.778     0.009    1.1%
   20     5.761     0.067    1.1%
   39     10.95     0.097    0.8%
   58     16.19     0.126    0.7%
   77     21.69     0.249    1.1%
   96     27.08     0.082    0.3%
  115     33.84     0.202    0.5%
  134     39.18     0.296    0.7%
  153     43.18     0.146    0.3%
  172     49.33     0.108    0.2%
  191     56.71     0.103    0.1%
  210     61.23     0.066    0.1%
  229     67.53     0.228    0.3%
  248     72.36     0.246    0.3%
  267     77.24     0.257    0.3%
  286        83     0.177    0.2%
  305     87.92     0.296    0.3%
  324     95.23     0.316    0.3%
  343     101.4     1.188    1.1%
  362     105.7     0.258    0.2%
  381     112.3     1.257    1.1%
  400     117.6     0.348    0.2%
  419     123.5     0.652    0.5%
  438     130.1     0.458    0.3%
  457     137.5     1.435    1.0%
  476     142.2     0.708    0.4%
  495     148.7     0.669    0.4%
  514     153.3     0.321    0.2%
  533     161.9     0.614    0.3%
  552     165.8     0.617    0.3%
  571     171.8     0.886    0.5%
  590     179.6     1.416    0.7%
  609     185.9     0.769    0.4%
  628     194.3     1.228    0.6%
  647       199     0.951    0.4%
  666     205.8     3.213    1.5%
  685     213.4     2.125    0.9%
  704     218.9     1.047    0.4%
  723     224.7     0.992    0.4%
  742     231.3     0.995    0.4%
  761     235.7     0.864    0.3%
  780     244.6     1.245    0.5%
  799     251.7     5.808    2.3%
  818     254.9     1.199    0.4%
  837     262.8     1.546    0.5%
  856     268.5     1.116    0.4%
  875     276.1     1.151    0.4%
  894     282.1     1.762    0.6%
  913     288.9     1.471    0.5%
  932     292.4     0.966    0.3%
  951     308.4     3.721    1.2%
  970     312.6     6.919    2.2%
  989     336.3     4.914    1.4%

Quality and confidence:
param     error
i             0

Model:
Time ~=        0
    + i    0.323
              µs

Reads = 0 + (0 * i)
Writes = 0 + (1 * i)

Pallet: "frame_system", Extrinsic: "kill_storage", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: Skipped Metadata (r:0 w:0)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=        0
    + i    0.233
              µs

Reads = 0 + (0 * i)
Writes = 0 + (1 * i)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    i   mean µs  sigma µs       %
    1     0.718     0.008    1.1%
   20     4.282     0.045    1.0%
   39     8.031      0.07    0.8%
   58     11.53      0.06    0.5%
   77     15.24     0.074    0.4%
   96     19.02     0.159    0.8%
  115     23.83     0.142    0.5%
  134     27.52     0.088    0.3%
  153     31.64     0.123    0.3%
  172     35.55     0.062    0.1%
  191     41.04     0.281    0.6%
  210     43.79     0.072    0.1%
  229      49.2     0.382    0.7%
  248     52.65     0.172    0.3%
  267     56.73     0.114    0.2%
  286     61.04     0.107    0.1%
  305     64.65     0.248    0.3%
  324     70.31     0.094    0.1%
  343      74.1     0.249    0.3%
  362     77.86     0.267    0.3%
  381     82.02      0.17    0.2%
  400     86.46     0.164    0.1%
  419     90.92     0.179    0.1%
  438     95.62     0.236    0.2%
  457     99.19     0.186    0.1%
  476     104.3     0.587    0.5%
  495     108.4     0.424    0.3%
  514     112.5     0.341    0.3%
  533     118.5     0.541    0.4%
  552     122.2      1.02    0.8%
  571     125.6     0.331    0.2%
  590     130.1     0.218    0.1%
  609     135.5     0.498    0.3%
  628     140.3     0.245    0.1%
  647     144.6     0.206    0.1%
  666       151     1.327    0.8%
  685     154.3     0.298    0.1%
  704     158.9     0.333    0.2%
  723       163     0.393    0.2%
  742     168.3     0.527    0.3%
  761     171.9     0.765    0.4%
  780       178     0.602    0.3%
  799     181.8     0.494    0.2%
  818     186.1     0.568    0.3%
  837     193.4     0.545    0.2%
  856     196.6     0.504    0.2%
  875     202.2     0.767    0.3%
  894     205.9     0.598    0.2%
  913     209.7     0.574    0.2%
  932     216.5     0.585    0.2%
  951     222.2     0.433    0.1%
  970       226     0.721    0.3%
  989     231.2     0.629    0.2%

Quality and confidence:
param     error
i             0

Model:
Time ~=        0
    + i    0.234
              µs

Reads = 0 + (0 * i)
Writes = 0 + (1 * i)

Pallet: "frame_system", Extrinsic: "kill_prefix", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: Skipped Metadata (r:0 w:0)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=        0
    + p    0.582
              µs

Reads = 0 + (0 * p)
Writes = 0 + (1 * p)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    p   mean µs  sigma µs       %
    1     2.589     0.037    1.4%
   20     12.73     0.129    1.0%
   39     24.01     0.076    0.3%
   58     35.64     0.107    0.3%
   77      42.7     0.415    0.9%
   96     52.54     0.157    0.2%
  115     64.42     0.301    0.4%
  134     74.38     0.193    0.2%
  153     84.92      0.27    0.3%
  172     97.34     0.295    0.3%
  191     107.4     0.856    0.7%
  210     117.9     0.433    0.3%
  229     131.1     0.497    0.3%
  248       140     0.495    0.3%
  267     150.6     0.443    0.2%
  286     161.8     0.765    0.4%
  305     170.6     0.875    0.5%
  324     184.6     0.361    0.1%
  343     190.8      0.39    0.2%
  362     207.4     1.358    0.6%
  381     218.1     0.462    0.2%
  400     224.8     0.583    0.2%
  419     238.7     0.486    0.2%
  438     254.6     1.458    0.5%
  457     260.8     1.248    0.4%
  476       276     1.173    0.4%
  495     284.4     0.866    0.3%
  514     293.2     1.084    0.3%
  533     310.2     0.979    0.3%
  552     319.6     0.699    0.2%
  571     331.8     4.853    1.4%
  590     348.6     1.883    0.5%
  609       347     1.682    0.4%
  628     366.2     2.048    0.5%
  647     381.8     1.526    0.3%
  666     387.9     1.894    0.4%
  685     398.6     0.901    0.2%
  704     414.8     1.205    0.2%
  723     411.3     1.347    0.3%
  742     433.3     5.477    1.2%
  761     442.5     1.662    0.3%
  780     451.8     1.651    0.3%
  799     462.1     1.632    0.3%
  818     472.2     1.544    0.3%
  837     481.8     1.055    0.2%
  856     504.5     11.28    2.2%
  875     507.6     6.749    1.3%
  894     517.9     3.325    0.6%
  913     531.6     4.082    0.7%
  932     536.8     1.564    0.2%
  951     552.2     1.073    0.1%
  970     565.3     1.018    0.1%
  989     569.2     2.316    0.4%

Quality and confidence:
param     error
p             0

Model:
Time ~=        0
    + p    0.583
              µs

Reads = 0 + (0 * p)
Writes = 0 + (1 * p)


Parity Bot added 2 commits March 16, 2022 12:13
…-- benchmark --chain=polkadot-dev --steps=50 --repeat=20 --pallet=frame_system --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/polkadot/src/weights/
@coderobe
Copy link
Contributor Author

/benchmark runtime kusama frame_system

@parity-benchapp
Copy link

parity-benchapp bot commented Mar 16, 2022

Benchmark Runtime Kusama Pallet for branch "coderobe/weights-18-m" with command cargo run --quiet --profile=production --features=runtime-benchmarks -- benchmark --chain=kusama-dev --steps=50 --repeat=20 --pallet=frame_system --extrinsic="*" --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/kusama/src/weights/

Toolchain: stable-x86_64-unknown-linux-gnu (default)
rustc 1.57.0 (f1edd0429 2021-11-29)

Results
Pallet: "frame_system", Extrinsic: "remark", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    0.334
    + b        0
              µs

Reads = 0 + (0 * b)
Writes = 0 + (0 * b)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    b   mean µs  sigma µs       %
    0     0.322     0.006    1.8%
78643     30.19      0.02    0.0%
157286     61.14     0.014    0.0%
235929     91.42     0.018    0.0%
314572     121.6     0.019    0.0%
393215     150.5     1.649    1.0%
471858     178.8      1.58    0.8%
550501     208.9     3.887    1.8%
629144     237.7     1.594    0.6%
707787     266.8     0.014    0.0%
786430     296.3     0.038    0.0%
865073     325.9     0.042    0.0%
943716     355.4     0.036    0.0%
1022359     385.7     1.537    0.3%
1101002     414.6     0.025    0.0%
1179645       448      4.33    0.9%
1258288     474.1     1.043    0.2%
1336931     503.6     0.971    0.1%
1415574       536     8.172    1.5%
1494217     573.4      8.68    1.5%
1572860     591.9     0.067    0.0%
1651503     622.9     4.231    0.6%
1730146     664.7     15.81    2.3%
1808789     687.2      8.32    1.2%
1887432     713.2     8.764    1.2%
1966075     747.1     8.084    1.0%
2044718     772.8     8.827    1.1%
2123361     799.6     1.366    0.1%
2202004     840.5     15.14    1.8%
2280647     878.4      6.64    0.7%
2359290     899.5     13.83    1.5%
2437933     929.2     14.72    1.5%
2516576     961.2     13.32    1.3%
2595219     987.6      13.4    1.3%
2673862      1007     0.939    0.0%
2752505      1047     14.22    1.3%
2831148      1070     9.447    0.8%
2909791      1124     6.559    0.5%
2988434      1158      3.02    0.2%
3067077      1190     6.862    0.5%
3145720      1195     13.41    1.1%
3224363      1238     14.33    1.1%
3303006      1262     11.33    0.8%
3381649      1285     12.88    1.0%
3460292      1313     12.53    0.9%
3538935      1347     14.52    1.0%
3617578      1388      13.6    0.9%
3696221      1407     11.77    0.8%
3774864      1431     6.165    0.4%
3853507      1467     13.66    0.9%
3932150      1497     12.38    0.8%

Quality and confidence:
param     error
b             0

Model:
Time ~=        0
    + b        0
              µs

Reads = 0 + (0 * b)
Writes = 0 + (0 * b)

Pallet: "frame_system", Extrinsic: "remark_with_event", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=        0
    + b    0.001
              µs

Reads = 0 + (0 * b)
Writes = 0 + (0 * b)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    b   mean µs  sigma µs       %
    0     7.608     0.166    2.1%
78643     138.6      1.12    0.8%
157286       261     2.639    1.0%
235929     387.9     0.605    0.1%
314572     504.3     8.803    1.7%
393215     625.3     8.535    1.3%
471858     748.1     9.471    1.2%
550501     870.3     9.532    1.0%
629144     992.6     12.19    1.2%
707787      1116      13.7    1.2%
786430      1243     14.82    1.1%
865073      1369     14.85    1.0%
943716      1485     10.71    0.7%
1022359      1620      10.1    0.6%
1101002      1740     8.837    0.5%
1179645      1844     12.41    0.6%
1258288      1977      11.7    0.5%
1336931      2109     2.428    0.1%
1415574      2235     14.31    0.6%
1494217      2349     15.53    0.6%
1572860      2479     9.664    0.3%
1651503      2618     11.92    0.4%
1730146      2739     10.15    0.3%
1808789      2880     18.94    0.6%
1887432      2997      12.7    0.4%
1966075      3100     11.09    0.3%
2044718      3245     13.42    0.4%
2123361      3388     16.93    0.4%
2202004      3504     12.62    0.3%
2280647      3630     13.91    0.3%
2359290      3750      14.8    0.3%
2437933      3905     14.52    0.3%
2516576      4030     7.721    0.1%
2595219      4171      12.5    0.2%
2673862      4302     13.73    0.3%
2752505      4459     23.35    0.5%
2831148      4555     12.99    0.2%
2909791      4690     10.37    0.2%
2988434      4822     10.49    0.2%
3067077      4967      20.2    0.4%
3145720      5168     14.17    0.2%
3224363      5223     22.35    0.4%
3303006      5354     15.77    0.2%
3381649      5467     13.05    0.2%
3460292      5614     13.38    0.2%
3538935      5730     15.51    0.2%
3617578      5865     24.16    0.4%
3696221      6011     24.71    0.4%
3774864      6118     15.68    0.2%
3853507      6252     22.68    0.3%
3932150      6380      21.6    0.3%

Quality and confidence:
param     error
b             0

Model:
Time ~=        0
    + b    0.002
              µs

Reads = 0 + (0 * b)
Writes = 0 + (0 * b)

Pallet: "frame_system", Extrinsic: "set_heap_pages", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: System Digest (r:1 w:1)
Storage: unknown [0x3a686561707061676573] (r:0 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    2.293
              µs

Reads = 1
Writes = 2

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=    2.293
              µs

Reads = 1
Writes = 2

Pallet: "frame_system", Extrinsic: "set_storage", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: Skipped Metadata (r:0 w:0)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=        0
    + i    0.326
              µs

Reads = 0 + (0 * i)
Writes = 0 + (1 * i)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    i   mean µs  sigma µs       %
    1      0.79     0.017    2.1%
   20      5.95      0.07    1.1%
   39     11.09     0.048    0.4%
   58     16.45     0.081    0.4%
   77      21.7     0.048    0.2%
   96     27.35     0.167    0.6%
  115     33.49     0.472    1.4%
  134     39.53     0.107    0.2%
  153     44.29     0.308    0.6%
  172     50.01       0.1    0.1%
  191     56.64     0.113    0.1%
  210      61.3     0.191    0.3%
  229     67.37     0.275    0.4%
  248     73.41     0.264    0.3%
  267     78.55     0.166    0.2%
  286     84.42     0.347    0.4%
  305     89.36     0.183    0.2%
  324     95.81     0.247    0.2%
  343     102.1     0.346    0.3%
  362     107.9     0.557    0.5%
  381     113.5     0.335    0.2%
  400     119.5     0.369    0.3%
  419     125.7     0.779    0.6%
  438       132     0.493    0.3%
  457       139     0.469    0.3%
  476     145.6     1.117    0.7%
  495     150.1       0.3    0.1%
  514     156.6     0.634    0.4%
  533     164.1     0.651    0.3%
  552       171     1.534    0.8%
  571     176.2     0.888    0.5%
  590     182.9     0.658    0.3%
  609     188.7     0.544    0.2%
  628     197.5     1.708    0.8%
  647     203.5     1.429    0.7%
  666     211.3     3.655    1.7%
  685     215.9     1.336    0.6%
  704     223.5     0.931    0.4%
  723     229.5      0.73    0.3%
  742     237.8     1.243    0.5%
  761     241.5     0.868    0.3%
  780     251.2     2.891    1.1%
  799       256     1.269    0.4%
  818     259.1     0.609    0.2%
  837     267.2       1.4    0.5%
  856     273.6     1.065    0.3%
  875     281.8     1.283    0.4%
  894     290.6     2.254    0.7%
  913     295.3      1.45    0.4%
  932     299.2      1.57    0.5%
  951     327.8     7.291    2.2%
  970     311.4      0.68    0.2%
  989     323.9     2.378    0.7%

Quality and confidence:
param     error
i             0

Model:
Time ~=        0
    + i    0.329
              µs

Reads = 0 + (0 * i)
Writes = 0 + (1 * i)

Pallet: "frame_system", Extrinsic: "kill_storage", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: Skipped Metadata (r:0 w:0)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=        0
    + i    0.237
              µs

Reads = 0 + (0 * i)
Writes = 0 + (1 * i)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    i   mean µs  sigma µs       %
    1     0.737     0.021    2.8%
   20     4.389      0.05    1.1%
   39     8.005     0.042    0.5%
   58     11.76     0.106    0.9%
   77     15.45     0.082    0.5%
   96     19.23     0.064    0.3%
  115     23.64     0.089    0.3%
  134     27.91     0.075    0.2%
  153     32.15     0.115    0.3%
  172     35.75      0.11    0.3%
  191     40.86     0.268    0.6%
  210     44.62     0.154    0.3%
  229     49.54     0.253    0.5%
  248     53.79     0.108    0.2%
  267     57.44     0.086    0.1%
  286     61.43      0.23    0.3%
  305     65.68     0.337    0.5%
  324     71.29     0.255    0.3%
  343     74.93     0.166    0.2%
  362     78.91     0.135    0.1%
  381     82.98     0.227    0.2%
  400     87.51     0.146    0.1%
  419     91.43     0.382    0.4%
  438     98.64      4.08    4.1%
  457     100.9     0.273    0.2%
  476     105.4     0.223    0.2%
  495     109.3     0.229    0.2%
  514     114.9     0.255    0.2%
  533     120.3     0.356    0.2%
  552     123.3     0.206    0.1%
  571     127.3     0.289    0.2%
  590     132.7     0.387    0.2%
  609     136.7     0.207    0.1%
  628     143.2     0.287    0.2%
  647     148.3     1.428    0.9%
  666     151.4     0.383    0.2%
  685     157.4     0.294    0.1%
  704     161.7     0.564    0.3%
  723     166.2     0.487    0.2%
  742     171.4     0.523    0.3%
  761     174.4      0.36    0.2%
  780     181.1     0.453    0.2%
  799     185.2     1.154    0.6%
  818     190.2     0.626    0.3%
  837     195.6     0.923    0.4%
  856       200     0.365    0.1%
  875     205.9     1.576    0.7%
  894       209     1.084    0.5%
  913       213     0.419    0.1%
  932     218.8     0.431    0.1%
  951     225.9     0.413    0.1%
  970     228.4     0.332    0.1%
  989     234.5     0.437    0.1%

Quality and confidence:
param     error
i             0

Model:
Time ~=        0
    + i    0.238
              µs

Reads = 0 + (0 * i)
Writes = 0 + (1 * i)

Pallet: "frame_system", Extrinsic: "kill_prefix", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: Skipped Metadata (r:0 w:0)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=        0
    + p    0.591
              µs

Reads = 0 + (0 * p)
Writes = 0 + (1 * p)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    p   mean µs  sigma µs       %
    1     2.493     0.046    1.8%
   20     12.91     0.136    1.0%
   39     24.16     0.096    0.3%
   58     36.43      0.18    0.4%
   77     42.65     0.172    0.4%
   96     54.41     0.193    0.3%
  115     63.92     0.283    0.4%
  134     74.27     0.225    0.3%
  153     85.24     0.338    0.3%
  172     98.54     0.376    0.3%
  191     107.4     0.258    0.2%
  210     118.3     0.411    0.3%
  229     132.6     0.345    0.2%
  248     141.2     1.007    0.7%
  267     152.5     0.498    0.3%
  286     164.7       0.7    0.4%
  305     174.2      1.24    0.7%
  324     187.4      0.62    0.3%
  343     193.4     0.761    0.3%
  362       209     0.434    0.2%
  381     224.8     2.055    0.9%
  400     226.9     0.395    0.1%
  419     242.4     1.242    0.5%
  438     257.9     1.444    0.5%
  457     264.5      1.33    0.5%
  476       281      1.71    0.6%
  495     288.8     1.388    0.4%
  514     298.8     3.767    1.2%
  533     313.8     1.001    0.3%
  552     328.5     3.064    0.9%
  571     335.6     2.876    0.8%
  590     349.5     1.786    0.5%
  609       355     2.188    0.6%
  628     370.8     1.367    0.3%
  647     385.2     2.817    0.7%
  666       389     1.827    0.4%
  685     405.1     2.461    0.6%
  704     419.9      2.65    0.6%
  723     417.2     1.512    0.3%
  742     436.1     2.679    0.6%
  761     447.9     3.019    0.6%
  780     457.4     3.848    0.8%
  799     464.4     0.705    0.1%
  818     476.3     1.234    0.2%
  837     488.9     1.148    0.2%
  856     506.1     6.286    1.2%
  875     523.7     3.628    0.6%
  894     524.8     3.513    0.6%
  913     535.7     4.497    0.8%
  932     549.7     6.103    1.1%
  951     560.4     1.216    0.2%
  970     581.8      1.75    0.3%
  989     585.1     7.269    1.2%

Quality and confidence:
param     error
p             0

Model:
Time ~=        0
    + p    0.593
              µs

Reads = 0 + (0 * p)
Writes = 0 + (1 * p)


@coderobe
Copy link
Contributor Author

/benchmark runtime westend frame_system

…-- benchmark --chain=kusama-dev --steps=50 --repeat=20 --pallet=frame_system --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/kusama/src/weights/
@parity-benchapp
Copy link

parity-benchapp bot commented Mar 16, 2022

Benchmark Runtime Westend Pallet for branch "coderobe/weights-18-m" with command cargo run --quiet --profile=production --features=runtime-benchmarks -- benchmark --chain=westend-dev --steps=50 --repeat=20 --pallet=frame_system --extrinsic="*" --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/westend/src/weights/

Toolchain: stable-x86_64-unknown-linux-gnu (default)
rustc 1.57.0 (f1edd0429 2021-11-29)

Results
Pallet: "frame_system", Extrinsic: "remark", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=    0.332
    + b        0
              µs

Reads = 0 + (0 * b)
Writes = 0 + (0 * b)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    b   mean µs  sigma µs       %
    0     0.326     0.011    3.3%
78643     26.93     0.012    0.0%
157286     54.45     0.018    0.0%
235929     81.23     0.029    0.0%
314572       108     0.024    0.0%
393215       134     1.108    0.8%
471858     161.7      0.02    0.0%
550501     184.4     0.042    0.0%
629144     211.6     1.891    0.8%
707787     236.9     0.053    0.0%
786430       263     0.083    0.0%
865073     289.3     0.057    0.0%
943716     320.2      2.76    0.8%
1022359     341.8     0.086    0.0%
1101002       368      0.05    0.0%
1179645     394.3     1.787    0.4%
1258288       430      0.05    0.0%
1336931     456.6     0.779    0.1%
1415574     476.3     7.449    1.5%
1494217     499.3     0.103    0.0%
1572860       526     1.363    0.2%
1651503     553.1     2.839    0.5%
1730146     576.8     3.134    0.5%
1808789     611.9     13.11    2.1%
1887432     627.3     2.818    0.4%
1966075     660.7     6.662    1.0%
2044718     687.2     6.056    0.8%
2123361     705.1     5.695    0.8%
2202004     738.8     9.979    1.3%
2280647     774.6     8.464    1.0%
2359290     791.3     4.127    0.5%
2437933     814.2     4.514    0.5%
2516576     847.7     9.571    1.1%
2595219     874.3     8.592    0.9%
2673862     909.7     12.54    1.3%
2752505     934.1     11.45    1.2%
2831148       949     1.083    0.1%
2909791       975     0.605    0.0%
2988434      1003     13.53    1.3%
3067077      1041     14.92    1.4%
3145720      1069     11.22    1.0%
3224363      1092     13.86    1.2%
3303006      1102     5.266    0.4%
3381649      1136     1.847    0.1%
3460292      1164     2.487    0.2%
3538935      1197     11.21    0.9%
3617578      1238      11.9    0.9%
3696221      1254     10.65    0.8%
3774864      1284     13.68    1.0%
3853507      1310     14.74    1.1%
3932150      1333     12.77    0.9%

Quality and confidence:
param     error
b             0

Model:
Time ~=        0
    + b        0
              µs

Reads = 0 + (0 * b)
Writes = 0 + (0 * b)

Pallet: "frame_system", Extrinsic: "remark_with_event", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=        0
    + b    0.001
              µs

Reads = 0 + (0 * b)
Writes = 0 + (0 * b)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    b   mean µs  sigma µs       %
    0     7.378     0.106    1.4%
78643     133.1     0.282    0.2%
157286     256.2     0.368    0.1%
235929     372.2     3.607    0.9%
314572       487      2.03    0.4%
393215     605.1     2.601    0.4%
471858     737.2     5.324    0.7%
550501     842.6     5.907    0.7%
629144     964.9     12.98    1.3%
707787      1091     14.56    1.3%
786430      1207     11.92    0.9%
865073      1328     13.28    0.9%
943716      1451     14.74    1.0%
1022359      1571     14.97    0.9%
1101002      1690     14.63    0.8%
1179645      1821     4.651    0.2%
1258288      1929     18.01    0.9%
1336931      2051     16.51    0.8%
1415574      2172     15.95    0.7%
1494217      2290     7.176    0.3%
1572860      2406     10.98    0.4%
1651503      2532     9.556    0.3%
1730146      2655     9.568    0.3%
1808789      2787      11.7    0.4%
1887432      2904     6.321    0.2%
1966075      3083     3.086    0.1%
2044718      3188      10.5    0.3%
2123361      3281     13.36    0.4%
2202004      3428      17.2    0.5%
2280647      3538     4.226    0.1%
2359290      3675      14.1    0.3%
2437933      3820     20.41    0.5%
2516576      3928     18.54    0.4%
2595219      4064     22.24    0.5%
2673862      4203      17.1    0.4%
2752505      4331      16.3    0.3%
2831148      4449     11.91    0.2%
2909791      4565     13.49    0.2%
2988434      4692     13.17    0.2%
3067077      4826     15.12    0.3%
3145720      4940     12.54    0.2%
3224363      5076     12.25    0.2%
3303006      5221     15.29    0.2%
3381649      5332        10    0.1%
3460292      5456     14.55    0.2%
3538935      5584      16.9    0.3%
3617578      5697     22.04    0.3%
3696221      5870     13.92    0.2%
3774864      5994     9.927    0.1%
3853507      6123     24.16    0.3%
3932150      6252     19.72    0.3%

Quality and confidence:
param     error
b             0

Model:
Time ~=        0
    + b    0.002
              µs

Reads = 0 + (0 * b)
Writes = 0 + (0 * b)

Pallet: "frame_system", Extrinsic: "set_heap_pages", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: System Digest (r:1 w:1)
Storage: unknown [0x3a686561707061676573] (r:0 w:1)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=     2.37
              µs

Reads = 1
Writes = 2

Min Squares Analysis
========
-- Extrinsic Time --

Model:
Time ~=     2.37
              µs

Reads = 1
Writes = 2

Pallet: "frame_system", Extrinsic: "set_storage", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: Skipped Metadata (r:0 w:0)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=        0
    + i    0.322
              µs

Reads = 0 + (0 * i)
Writes = 0 + (1 * i)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    i   mean µs  sigma µs       %
    1     0.775     0.008    1.0%
   20     5.743     0.037    0.6%
   39     10.97     0.072    0.6%
   58     16.18     0.099    0.6%
   77     21.95     0.147    0.6%
   96     26.84     0.286    1.0%
  115      33.9     0.256    0.7%
  134     39.35     0.302    0.7%
  153     43.92     0.445    1.0%
  172     48.95     0.131    0.2%
  191        57     0.079    0.1%
  210      60.8     0.613    1.0%
  229     66.43     0.406    0.6%
  248      72.2       0.2    0.2%
  267     77.04     0.395    0.5%
  286     83.78      0.13    0.1%
  305     88.32     0.102    0.1%
  324     95.21     0.227    0.2%
  343       101     0.368    0.3%
  362     106.1     0.342    0.3%
  381     112.6     0.687    0.6%
  400       118     0.344    0.2%
  419     123.6     0.155    0.1%
  438     130.3     0.367    0.2%
  457     137.1     0.568    0.4%
  476     142.8     0.375    0.2%
  495     149.4     1.068    0.7%
  514     155.3     0.388    0.2%
  533     162.1     0.771    0.4%
  552     168.5     1.578    0.9%
  571     173.8     0.704    0.4%
  590       181     1.184    0.6%
  609     187.1     1.232    0.6%
  628     195.2     0.346    0.1%
  647     201.4     0.611    0.3%
  666     206.6     0.584    0.2%
  685     214.3     0.755    0.3%
  704     220.4     0.943    0.4%
  723     226.2     0.711    0.3%
  742     234.1     1.549    0.6%
  761     239.8     1.453    0.6%
  780     248.5      1.71    0.6%
  799     251.2     1.071    0.4%
  818     256.5     0.748    0.2%
  837     265.2     0.986    0.3%
  856     271.3     1.127    0.4%
  875     279.6     0.572    0.2%
  894     282.8     0.394    0.1%
  913     290.1     1.316    0.4%
  932       301     2.325    0.7%
  951     327.3     6.807    2.0%
  970     308.2      0.62    0.2%
  989     321.3      2.93    0.9%

Quality and confidence:
param     error
i             0

Model:
Time ~=        0
    + i    0.326
              µs

Reads = 0 + (0 * i)
Writes = 0 + (1 * i)

Pallet: "frame_system", Extrinsic: "kill_storage", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: Skipped Metadata (r:0 w:0)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=        0
    + i    0.232
              µs

Reads = 0 + (0 * i)
Writes = 0 + (1 * i)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    i   mean µs  sigma µs       %
    1     0.719     0.009    1.2%
   20     4.317     0.032    0.7%
   39     8.056     0.073    0.9%
   58     11.72     0.043    0.3%
   77     15.43     0.088    0.5%
   96     18.81     0.067    0.3%
  115     23.58     0.213    0.9%
  134     27.87     0.056    0.2%
  153     31.39     0.056    0.1%
  172     35.45     0.134    0.3%
  191     39.84     0.083    0.2%
  210     43.31     0.068    0.1%
  229     48.65     0.128    0.2%
  248      52.5     0.125    0.2%
  267      56.1     0.103    0.1%
  286     60.52     0.126    0.2%
  305     64.12     0.156    0.2%
  324     69.96      0.16    0.2%
  343     74.14     0.683    0.9%
  362     77.64      0.34    0.4%
  381     81.46     0.406    0.4%
  400     86.24     0.222    0.2%
  419      90.3     0.284    0.3%
  438     95.27     0.226    0.2%
  457     99.68      0.38    0.3%
  476     103.7     0.289    0.2%
  495     108.4     0.452    0.4%
  514     112.5      0.37    0.3%
  533     118.9     0.422    0.3%
  552     121.4     0.243    0.2%
  571     125.7     0.323    0.2%
  590     129.8     0.317    0.2%
  609       135     0.318    0.2%
  628     140.3     0.367    0.2%
  647     145.1     1.557    1.0%
  666       148     0.334    0.2%
  685     154.3     0.369    0.2%
  704     160.6     1.239    0.7%
  723     162.5     0.543    0.3%
  742     167.4     0.553    0.3%
  761     171.7     0.716    0.4%
  780     177.9     0.435    0.2%
  799     180.1     0.338    0.1%
  818     185.5     0.717    0.3%
  837     191.8     0.611    0.3%
  856     196.1     1.929    0.9%
  875     201.4     0.533    0.2%
  894       204      0.67    0.3%
  913     208.6     0.459    0.2%
  932     214.2     0.875    0.4%
  951     219.8     0.454    0.2%
  970     231.1     10.72    4.6%
  989     233.5     3.818    1.6%

Quality and confidence:
param     error
i             0

Model:
Time ~=        0
    + i    0.234
              µs

Reads = 0 + (0 * i)
Writes = 0 + (1 * i)

Pallet: "frame_system", Extrinsic: "kill_prefix", Lowest values: [], Highest values: [], Steps: 50, Repeat: 20
Raw Storage Info
========
Storage: Skipped Metadata (r:0 w:0)

Median Slopes Analysis
========
-- Extrinsic Time --

Model:
Time ~=        0
    + p     0.58
              µs

Reads = 0 + (0 * p)
Writes = 0 + (1 * p)

Min Squares Analysis
========
-- Extrinsic Time --

Data points distribution:
    p   mean µs  sigma µs       %
    1     2.732     0.025    0.9%
   20     13.14      0.19    1.4%
   39     24.33     0.193    0.7%
   58     35.33     0.164    0.4%
   77     42.58     0.062    0.1%
   96     54.58      0.32    0.5%
  115      64.3     0.441    0.6%
  134     73.89     0.256    0.3%
  153     85.03     0.125    0.1%
  172     97.64     0.356    0.3%
  191     108.1     1.202    1.1%
  210     119.8     0.892    0.7%
  229     131.4     0.526    0.4%
  248     139.6     0.404    0.2%
  267     152.4     1.233    0.8%
  286     162.7     0.865    0.5%
  305     171.2      1.41    0.8%
  324     185.5     0.606    0.3%
  343     192.8     0.565    0.2%
  362     206.7     0.395    0.1%
  381     219.3     1.059    0.4%
  400     225.3     0.811    0.3%
  419     240.2     1.808    0.7%
  438     254.9     0.561    0.2%
  457     260.6     0.543    0.2%
  476     277.8     1.668    0.6%
  495     285.1     0.988    0.3%
  514     295.1      1.54    0.5%
  533       312     1.055    0.3%
  552       331     6.477    1.9%
  571     331.6     0.936    0.2%
  590     343.7     1.564    0.4%
  609     349.2     4.262    1.2%
  628     366.3     0.791    0.2%
  647     383.3     1.825    0.4%
  666     389.7       3.4    0.8%
  685     401.2      2.16    0.5%
  704     412.2     1.017    0.2%
  723     411.6      2.48    0.6%
  742     430.2     1.712    0.3%
  761     447.2     7.102    1.5%
  780       450     2.363    0.5%
  799     460.8     0.907    0.1%
  818     470.5     1.457    0.3%
  837     483.1     1.649    0.3%
  856     498.8     3.844    0.7%
  875       501     3.538    0.7%
  894     520.8     7.465    1.4%
  913     526.6     2.825    0.5%
  932     536.2     0.751    0.1%
  951     551.9     1.842    0.3%
  970     566.9     8.817    1.5%
  989     562.7     1.584    0.2%

Quality and confidence:
param     error
p             0

Model:
Time ~=        0
    + p    0.581
              µs

Reads = 0 + (0 * p)
Writes = 0 + (1 * p)


@shawntabrizi
Copy link
Member

We are working to fix the broken benchmarks.

Thanks for reporting!

Until then, you should not worry about getting the latest benchmarks for releasing

@coderobe
Copy link
Contributor Author

Until then, you should not worry about getting the latest benchmarks for releasing

Alright. I'll go about merging this once the frame_system benchapp results are in, and we'll deal with the failed benchmarks separately. Sound good? @shawntabrizi

…-- benchmark --chain=westend-dev --steps=50 --repeat=20 --pallet=frame_system --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/westend/src/weights/
@coderobe
Copy link
Contributor Author

bot merge

@coderobe coderobe merged commit 8670a9d into master Mar 16, 2022
@coderobe coderobe deleted the coderobe/weights-18-m branch March 16, 2022 15:47
@paritytech-processbot
Copy link

Error: Github API says #5097 is not mergeable

@kianenigma
Copy link
Contributor

pallet_election_provider_multi_phase: Invalid input: SignedCannotPayDeposit
pallet_elections_phragmen: Invalid input: UnableToPayBond

will fix these two, indeed a regression.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
A0-please_review Pull request needs code review. B0-silent Changes should not be mentioned in any release notes C1-low PR touches the given topic and has a low impact on builders. D3-trivial 🧸 PR contains trivial changes in a runtime directory that do not require an audit.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

6 participants