Skip to content
Snippets Groups Projects
lib.rs 30.3 KiB
Newer Older
  • Learn to ignore specific revisions
  • 					$crate::benchmarking::wipe_db();
    
    				if components.is_empty() {
    					execute_benchmark(Default::default())?;
    				} else {
    					for (_, (name, low, high)) in components.iter().enumerate() {
    						// Test only the low and high value, assuming values in the middle won't break
    						for component_value in vec![low, high] {
    							// Select the max value for all the other components.
    							let c: Vec<($crate::BenchmarkParameter, u32)> = components.iter()
    								.enumerate()
    								.map(|(_, (n, _, h))|
    									if n == name {
    										(*n, *component_value)
    									} else {
    										(*n, *h)
    									}
    								)
    								.collect();
    
    							execute_benchmark(c)?;
    						}
    
    	};
    }
    
    /// This macro adds pallet benchmarks to a `Vec<BenchmarkBatch>` object.
    ///
    /// First create an object that holds in the input parameters for the benchmark:
    ///
    /// ```ignore
    
    /// let params = (&config, &whitelist);
    
    /// The `whitelist` is a parameter you pass to control the DB read/write
    /// tracking. We use a vector of [TrackedStorageKey], which is a simple struct
    /// used to set if a key has been read or written to.
    
    /// For values that should be skipped entirely, we can just pass `key.into()`.
    /// For example:
    ///
    /// ```
    /// use frame_benchmarking::TrackedStorageKey;
    /// use hex_literal;
    /// let whitelist: Vec<TrackedStorageKey> = vec![
    
    ///     // Block Number
    
    ///     hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef702a5c1b19ab7a04f536c519aca4983ac").to_vec().into(),
    
    ///     // Total Issuance
    
    ///     hex_literal::hex!("c2261276cc9d1f8598ea4b6a74b15c2f57c875e4cff74148e4628f264b974c80").to_vec().into(),
    
    ///     // Execution Phase
    
    ///     hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef7ff553b5a9862a516939d82b3d3d8661a").to_vec().into(),
    
    ///     // Event Count
    
    ///     hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef70a98fdbe9ce6c55837576c60c7af3850").to_vec().into(),
    
    /// Then define a mutable local variable to hold your `BenchmarkBatch` object:
    
    /// ```ignore
    /// let mut batches = Vec::<BenchmarkBatch>::new();
    /// ````
    
    ///
    /// Then add the pallets you want to benchmark to this object, using their crate
    /// name and generated module struct:
    
    /// ```ignore
    
    /// add_benchmark!(params, batches, pallet_balances, Balances);
    /// add_benchmark!(params, batches, pallet_session, SessionBench::<Runtime>);
    /// add_benchmark!(params, batches, frame_system, SystemBench::<Runtime>);
    
    /// ...
    /// ```
    
    /// At the end of `dispatch_benchmark`, you should return this batches object.
    #[macro_export]
    macro_rules! add_benchmark {
    
    	( $params:ident, $batches:ident, $name:ident, $( $location:tt )* ) => (
    		let name_string = stringify!($name).as_bytes();
    
    		let instance_string = stringify!( $( $location )* ).as_bytes();
    
    		let (config, whitelist) = $params;
    		let $crate::BenchmarkConfig {
    			pallet,
    			benchmark,
    			lowest_range_values,
    			highest_range_values,
    			steps,
    			repeat,
    			verify,
    			extra,
    		} = config;
    
    		if &pallet[..] == &name_string[..] || &pallet[..] == &b"*"[..] {
    
    			if &pallet[..] == &b"*"[..] || &benchmark[..] == &b"*"[..] {
    
    wangjj9219's avatar
    wangjj9219 committed
    				for benchmark in $( $location )*::Benchmark::benchmarks(*extra).into_iter() {
    
    					$batches.push($crate::BenchmarkBatch {
    
    						instance: instance_string.to_vec(),
    
    						results: $( $location )*::Benchmark::run_benchmark(
    							benchmark,
    							&lowest_range_values[..],
    							&highest_range_values[..],
    							&steps[..],
    
    							*repeat,
    
    							whitelist,
    
    							*verify,
    
    						pallet: name_string.to_vec(),
    
    						benchmark: benchmark.to_vec(),
    					});
    				}
    			} else {
    				$batches.push($crate::BenchmarkBatch {
    
    					instance: instance_string.to_vec(),
    
    					results: $( $location )*::Benchmark::run_benchmark(
    						&benchmark[..],
    						&lowest_range_values[..],
    						&highest_range_values[..],
    						&steps[..],
    
    						*repeat,
    
    						whitelist,
    
    Xiliang Chen's avatar
    Xiliang Chen committed
    						*verify,
    
    					pallet: name_string.to_vec(),
    
    					benchmark: benchmark.clone(),
    				});
    			}
    		}
    	)
    }