Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Parallel vps' gas accounting rework #1835

Merged
merged 3 commits into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changelog/unreleased/bug-fixes/1835-fix-parallel-vps.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Fixed a bug in the parallel gas accounting of validity predicates.
([\#1835](https://github.com/anoma/namada/pull/1835))
44 changes: 20 additions & 24 deletions core/src/ledger/gas.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ pub struct VpGasMeter {
Clone, Debug, Default, BorshSerialize, BorshDeserialize, BorshSchema,
)]
pub struct VpsGas {
max: Option<Gas>,
max: Gas,
rest: Vec<Gas>,
}

Expand Down Expand Up @@ -310,40 +310,39 @@ impl VpGasMeter {
}

impl VpsGas {
/// Set the gas cost from a single VP run. It consumes the [`VpGasMeter`]
/// Set the gas cost from a VP run. It consumes the [`VpGasMeter`]
/// instance which shouldn't be accessed passed this point.
pub fn set(&mut self, vp_gas_meter: VpGasMeter) -> Result<()> {
debug_assert_eq!(self.max, None);
debug_assert!(self.rest.is_empty());
self.max = Some(vp_gas_meter.current_gas);
if vp_gas_meter.current_gas > self.max {
self.rest.push(self.max);
self.max = vp_gas_meter.current_gas;
} else {
self.rest.push(vp_gas_meter.current_gas);
}

self.check_limit(&vp_gas_meter)
}

/// Merge validity predicates gas meters from parallelized runs.
/// Merge validity predicates gas meters from parallelized runs. Consumes
/// the other `VpsGas` instance which shouldn't be used passed this point.
pub fn merge(
&mut self,
other: &mut VpsGas,
mut other: VpsGas,
tx_gas_meter: &TxGasMeter,
) -> Result<()> {
match (self.max, other.max) {
(None, Some(_)) => {
self.max = other.max;
}
(Some(this_max), Some(other_max)) => {
if this_max < other_max {
self.rest.push(this_max);
self.max = other.max;
} else {
self.rest.push(other_max);
}
}
_ => {}
if self.max < other.max {
self.rest.push(self.max);
self.max = other.max;
} else {
self.rest.push(other.max);
}
self.rest.append(&mut other.rest);

self.check_limit(tx_gas_meter)
}

/// Check if the vp went out of gas. Starts from the gas consumed by the
/// transaction.
fn check_limit(&self, gas_meter: &impl GasMetering) -> Result<()> {
let total = gas_meter
.get_tx_consumed_gas()
Expand All @@ -361,10 +360,7 @@ impl VpsGas {
self.rest.iter().try_fold(Gas::default(), |acc, gas| {
acc.checked_add(*gas).ok_or(Error::GasOverflow)
})? / PARALLEL_GAS_DIVIDER;
self.max
.unwrap_or_default()
.checked_add(parallel_gas)
.ok_or(Error::GasOverflow)
self.max.checked_add(parallel_gas).ok_or(Error::GasOverflow)
}
}

Expand Down
2 changes: 1 addition & 1 deletion shared/src/ledger/protocol/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1069,7 +1069,7 @@ fn merge_vp_results(
errors.append(&mut b.errors);
let mut gas_used = a.gas_used;

gas_used.merge(&mut b.gas_used, tx_gas_meter)?;
gas_used.merge(b.gas_used, tx_gas_meter)?;

Ok(VpsResult {
accepted_vps,
Expand Down
Loading