Skip to content

Commit

Permalink
Update weights
Browse files Browse the repository at this point in the history
  • Loading branch information
enddynayn authored and github-actions[bot] committed Jul 30, 2024
1 parent 01950f8 commit 9d93940
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions runtime/common/src/weights/block_weights.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@ parameter_types! {
/// Calculated by multiplying the *Average* with `1.0` and adding `0`.
///
/// Stats nanoseconds:
/// Min, Max: 258_801, 280_558
/// Average: 262_939
/// Median: 261_055
/// Std-Dev: 4849.4
/// Min, Max: 240_263, 260_853
/// Average: 245_079
/// Median: 243_534
/// Std-Dev: 4690.52
///
/// Percentiles nanoseconds:
/// 99th: 280_006
/// 95th: 276_093
/// 75th: 263_890
/// 99th: 260_552
/// 95th: 256_706
/// 75th: 246_329
pub const BlockExecutionWeight: Weight =
Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(262_939), 0);
Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(245_079), 0);
}

#[cfg(test)]
Expand Down
16 changes: 8 additions & 8 deletions runtime/common/src/weights/extrinsic_weights.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@ parameter_types! {
/// Calculated by multiplying the *Average* with `1.0` and adding `0`.
///
/// Stats nanoseconds:
/// Min, Max: 67_536, 67_959
/// Average: 67_733
/// Median: 67_722
/// Std-Dev: 78.89
/// Min, Max: 62_949, 64_130
/// Average: 63_309
/// Median: 63_277
/// Std-Dev: 228.35
///
/// Percentiles nanoseconds:
/// 99th: 67_915
/// 95th: 67_871
/// 75th: 67_769
/// 99th: 63_842
/// 95th: 63_716
/// 75th: 63_452
pub const ExtrinsicBaseWeight: Weight =
Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(67_733), 0);
Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(63_309), 0);
}

#[cfg(test)]
Expand Down

0 comments on commit 9d93940

Please sign in to comment.