update with review comments

This commit is contained in:
Sathish Ambley
2019-03-31 21:31:19 -07:00
committed by Greg Fitzgerald
parent 9a0f9b910e
commit 3152090a66
2 changed files with 22 additions and 48 deletions

View File

@ -6,33 +6,17 @@ use solana_runtime::bank::*;
use solana_sdk::account::Account;
use solana_sdk::genesis_block::GenesisBlock;
use solana_sdk::pubkey::Pubkey;
use solana_sdk::signature::{Keypair, KeypairUtil};
use std::sync::Arc;
use test::Bencher;
fn compare_account(account1: &Account, account2: &Account) -> bool {
if account1.data != account2.data
|| account1.owner != account2.owner
|| account1.executable != account2.executable
|| account1.lamports != account2.lamports
{
return false;
}
true
}
fn create_account(bank: &Bank, pubkeys: &mut Vec<Pubkey>, num: usize) {
fn deposit_many(bank: &Bank, pubkeys: &mut Vec<Pubkey>, num: usize) {
for t in 0..num {
let pubkey = Keypair::new().pubkey();
let mut default_account = Account::default();
let pubkey = Pubkey::new_rand();
let account = Account::new((t + 1) as u64, 0, &Account::default().owner);
pubkeys.push(pubkey.clone());
default_account.lamports = (t + 1) as u64;
assert!(bank.get_account(&pubkey).is_none());
bank.deposit(&pubkey, (t + 1) as u64);
assert_eq!(
compare_account(&bank.get_account(&pubkey).unwrap(), &default_account),
true
);
assert_eq!(bank.get_account(&pubkey).unwrap(), account);
}
}
@ -42,32 +26,33 @@ fn test_accounts_create(bencher: &mut Bencher) {
let bank0 = Bank::new_with_paths(&genesis_block, Some("bench_a0".to_string()));
bencher.iter(|| {
let mut pubkeys: Vec<Pubkey> = vec![];
create_account(&bank0, &mut pubkeys, 1000);
deposit_many(&bank0, &mut pubkeys, 1000);
});
}
#[bench]
fn test_accounts_squash(bencher: &mut Bencher) {
let (genesis_block, _) = GenesisBlock::new(100_000);
let mut banks: Vec<Arc<Bank>> = Vec::with_capacity(50);
let mut banks: Vec<Arc<Bank>> = Vec::with_capacity(10);
banks.push(Arc::new(Bank::new_with_paths(
&genesis_block,
Some("bench_a1".to_string()),
)));
let mut pubkeys: Vec<Pubkey> = vec![];
create_account(&banks[0], &mut pubkeys, 250000);
deposit_many(&banks[0], &mut pubkeys, 250000);
banks[0].freeze();
// Measures the performance of the squash operation merging the accounts
// with the majority of the accounts present in the parent bank that is
// moved over to this bank.
bencher.iter(|| {
for index in 1..10 {
banks.push(Arc::new(Bank::new_from_parent(
&banks[index - 1],
&Pubkey::default(),
index as u64,
)));
for accounts in 0..10000 {
banks[index].deposit(&pubkeys[accounts], (accounts + 1) as u64);
}
banks[index].squash();
banks.push(Arc::new(Bank::new_from_parent(
&banks[0],
&Pubkey::default(),
1u64,
)));
for accounts in 0..10000 {
banks[1].deposit(&pubkeys[accounts], (accounts + 1) as u64);
}
banks[1].squash();
});
}