83 lines
3.0 KiB
Rust
83 lines
3.0 KiB
Rust
// This file is part of Ghost Network.
|
|
|
|
// Ghost Network is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Ghost Network is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Ghost Network. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0
|
|
//! DATE: 2024-07-30 (Y/M/D)
|
|
//! HOSTNAME: `ghostown`, CPU: `Intel(R) Core(TM) i3-2310M CPU @ 2.10GHz`
|
|
//!
|
|
//! DATABASE: `RocksDb`, RUNTIME: `Development`
|
|
//! BLOCK-NUM: `BlockId::Number(0)`
|
|
//! SKIP-WRITE: `false`, SKIP-READ: `false`, WARMUPS: `1`
|
|
//! STATE-VERSION: `V0`, STATE-CACHE-SIZE: ``
|
|
//! WEIGHT-PATH: `./runtime/casper/constants/src/weights/`
|
|
//! METRIC: `Average`, WEIGHT-MUL: `1.1`, WEIGHT-ADD: `0`
|
|
|
|
// Executed Command:
|
|
// ./target/release/ghost
|
|
// benchmark
|
|
// storage
|
|
// --chain=casper-dev
|
|
// --state-version=0
|
|
// --mul=1.1
|
|
// --weight-path=./runtime/casper/constants/src/weights/
|
|
// --header=./file_header.txt
|
|
|
|
/// Storage DB weights for the `Development` runtime and `RocksDb`.
|
|
pub mod constants {
|
|
use frame_support::weights::constants;
|
|
use sp_core::parameter_types;
|
|
use sp_weights::RuntimeDbWeight;
|
|
|
|
parameter_types! {
|
|
/// By default, Substrate uses `RocksDB`, so this will be the weight used throughout
|
|
/// the runtime.
|
|
pub const RocksDbWeight: RuntimeDbWeight = RuntimeDbWeight {
|
|
read: 31_627 * constants::WEIGHT_REF_TIME_PER_NANOS,
|
|
write: 412_279 * constants::WEIGHT_REF_TIME_PER_NANOS,
|
|
};
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod test_db_weights {
|
|
use super::constants::RocksDbWeight as W;
|
|
use sp_weights::constants;
|
|
|
|
/// Checks that all weights exist and have sane values.
|
|
// NOTE: If this test fails but you are sure that the generated values are fine,
|
|
// you can delete it.
|
|
#[test]
|
|
fn bound() {
|
|
// At least 1 µs.
|
|
assert!(
|
|
W::get().reads(1).ref_time() >= constants::WEIGHT_REF_TIME_PER_MICROS,
|
|
"Read weight should be at least 1 µs."
|
|
);
|
|
assert!(
|
|
W::get().writes(1).ref_time() >= constants::WEIGHT_REF_TIME_PER_MICROS,
|
|
"Write weight should be at least 1 µs."
|
|
);
|
|
// At most 1 ms.
|
|
assert!(
|
|
W::get().reads(1).ref_time() <= constants::WEIGHT_REF_TIME_PER_MILLIS,
|
|
"Read weight should be at most 1 ms."
|
|
);
|
|
assert!(
|
|
W::get().writes(1).ref_time() <= constants::WEIGHT_REF_TIME_PER_MILLIS,
|
|
"Write weight should be at most 1 ms."
|
|
);
|
|
}
|
|
}
|
|
}
|