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

backport(gas_price_service): performance improvements to estimate_gas_price #2638

Merged
merged 7 commits into from
Jan 28, 2025

Conversation

rymnc
Copy link
Member

@rymnc rymnc commented Jan 27, 2025

Warning

The changes to the ReadView will be made in a follow up PR

Linked Issues/PRs

  • backing up of estimateGasPrice queries when txpool has a lot of transactions

Description

image

This pull request includes several changes aimed at removing the use of async in various gas price estimation methods and optimizing certain calculations. The main changes involve converting asynchronous functions to synchronous ones and improving the efficiency of a mathematical operation.

Conversion from Asynchronous to Synchronous Methods:

Optimization of Mathematical Operations:

Checklist

  • Breaking changes are clearly marked as such in the PR description and changelog
  • New behavior is reflected in tests
  • The specification matches the implemented behavior (link update PR if changes are needed)

Before requesting review

  • I have reviewed the code myself
  • I have created follow-up issues caused by this PR and linked them here

After merging, notify other teams

[Add or remove entries as needed]

@rymnc rymnc added the no changelog Skip the CI check of the changelog modification label Jan 27, 2025
@rymnc
Copy link
Member Author

rymnc commented Jan 27, 2025

no changelog added temporarily

@rymnc rymnc self-assigned this Jan 27, 2025
@rymnc rymnc force-pushed the fix/backport-worst-case-gas-price-fix branch from c78262c to 0e0096a Compare January 27, 2025 19:07
@rymnc rymnc force-pushed the fix/backport-worst-case-gas-price-fix branch from 53d36fa to e2b32e4 Compare January 27, 2025 21:55
@rymnc rymnc force-pushed the fix/backport-worst-case-gas-price-fix branch 2 times, most recently from e56b0f3 to bf38dd7 Compare January 28, 2025 09:40
@rymnc rymnc force-pushed the fix/backport-worst-case-gas-price-fix branch from bf38dd7 to 69e4665 Compare January 28, 2025 09:45
@rymnc rymnc removed the no changelog Skip the CI check of the changelog modification label Jan 28, 2025
Copy link
Contributor

@AurelienFT AurelienFT left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. Well tested with proptest and readable.

@rymnc rymnc marked this pull request as ready for review January 28, 2025 09:56
@rymnc rymnc requested a review from a team January 28, 2025 09:57
@rymnc rymnc changed the base branch from release/v0.40.3 to release/v0.40.4 January 28, 2025 10:04
@rymnc rymnc merged commit aaca3b0 into release/v0.40.4 Jan 28, 2025
38 checks passed
@rymnc rymnc deleted the fix/backport-worst-case-gas-price-fix branch January 28, 2025 11:57
AurelienFT added a commit that referenced this pull request Jan 28, 2025
## Version 0.40.4

### Changed

- [2639](#2639): Refactor
fetching `latest_height` from `OnChainIterableKeyValueView` to instead
use height at the time of its creation.

### Fixed

- [2638](#2638): Optimize the
`cumulative_percent_change` function used in estimation of gas price,
convert multiple async functions to sync.
rymnc added a commit that referenced this pull request Feb 11, 2025
…ve_pct_change to master (#2645)

## Linked Issues/PRs
<!-- List of related issues/PRs -->
- #2638

## Description
<!-- List of detailed changes -->

This pull request includes changes to the `fuel-core` service to
refactor and improve the handling of gas price calculations. The most
important changes involve moving the `cumulative_percentage_change`
function to a more appropriate module and updating the relevant imports
accordingly.

### Refactoring and code organization:

*
[`crates/fuel-core/src/service/adapters.rs`](diffhunk://#diff-c710afba67d6633c23d5f7487e423036b27c9f20ec4a8a1541827b366d6e346bL20-R23):
Removed the `cumulative_percentage_change` function and updated the
import to use the function from the `fuel_core_gas_price_service`
module.
[[1]](diffhunk://#diff-c710afba67d6633c23d5f7487e423036b27c9f20ec4a8a1541827b366d6e346bL20-R23)
[[2]](diffhunk://#diff-c710afba67d6633c23d5f7487e423036b27c9f20ec4a8a1541827b366d6e346bL285-L309)
*
[`crates/fuel-gas-price-algorithm/src/lib.rs`](diffhunk://#diff-cf07ea6184f936886b3fa85fb3110a28e6d43432b220fdc1165be9bb540e6811R8-R9):
Added a public re-export for the `cumulative_percentage_change`
function.
*
[`crates/services/gas_price_service/src/common.rs`](diffhunk://#diff-4af2c7b4b0242528fb33185d685a0c6a8523db872ea96afde6de118f3198bb39R6-R7):
Added a public re-export for the `cumulative_percentage_change` function
from the `fuel_gas_price_algorithm` module.

### Perf improvements

* Same as #2638, but improved `ROUNDING_ERROR_COMPENSATION` calc by
comparing asm generated with `-C opt-level=3`

previous asm for ROUNDING_ERROR_COMPENSATION:
```asm
        addsd   xmm1, xmm2
        movsd   xmm0, qword ptr [rip + .LCPI0_5]
        cmpltsd xmm0, xmm2
        andpd   xmm1, xmm0
        andnpd  xmm0, xmm2
        orpd    xmm0, xmm1
```

new asm for ROUNDING_ERROR_COMPENSATION:
```asm
        cmpltsd xmm1, xmm2
        movsd   xmm0, qword ptr [rip + .LCPI0_5]
        andpd   xmm0, xmm1
        addsd   xmm0, xmm2
```

## Checklist
- [x] Breaking changes are clearly marked as such in the PR description
and changelog
- [x] New behavior is reflected in tests
- [x] [The specification](https://github.com/FuelLabs/fuel-specs/)
matches the implemented behavior (link update PR if changes are needed)

### Before requesting review
- [x] I have reviewed the code myself
- [x] I have created follow-up issues caused by this PR and linked them
here

---------

Co-authored-by: AurelienFT <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants