-
Notifications
You must be signed in to change notification settings - Fork 47
Fix replay usage in blocks CI #1263
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
Merged
Merged
+6
−6
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Benchmarking resultsBenchmark for program
|
Command | Mean [s] | Min [s] | Max [s] | Relative |
---|---|---|---|---|
Cairo-vm (Rust, Cairo 1) |
11.663 ± 0.071 | 11.580 | 11.829 | 2.30 ± 0.03 |
cairo-native (embedded AOT) |
5.065 ± 0.060 | 4.963 | 5.150 | 1.00 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
5.101 ± 0.039 | 5.046 | 5.176 | 1.01 ± 0.01 |
Benchmark for program dict_snapshot
Open benchmarks
Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
---|---|---|---|---|
Cairo-vm (Rust, Cairo 1) |
841.2 ± 18.7 | 820.0 | 874.4 | 1.00 |
cairo-native (embedded AOT) |
4980.0 ± 47.9 | 4909.4 | 5051.7 | 5.92 ± 0.14 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
5096.7 ± 57.2 | 5015.9 | 5192.6 | 6.06 ± 0.15 |
Benchmark for program factorial_2M
Open benchmarks
Command | Mean [s] | Min [s] | Max [s] | Relative |
---|---|---|---|---|
Cairo-vm (Rust, Cairo 1) |
5.369 ± 0.044 | 5.310 | 5.473 | 1.00 |
cairo-native (embedded AOT) |
5.516 ± 0.100 | 5.385 | 5.682 | 1.03 ± 0.02 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
5.604 ± 0.056 | 5.506 | 5.692 | 1.04 ± 0.01 |
Benchmark for program fib_2M
Open benchmarks
Command | Mean [s] | Min [s] | Max [s] | Relative |
---|---|---|---|---|
Cairo-vm (Rust, Cairo 1) |
5.128 ± 0.014 | 5.104 | 5.147 | 1.02 ± 0.02 |
cairo-native (embedded AOT) |
5.175 ± 0.043 | 5.113 | 5.263 | 1.02 ± 0.02 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
5.052 ± 0.080 | 4.982 | 5.199 | 1.00 |
Benchmark for program linear_search
Open benchmarks
Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
---|---|---|---|---|
Cairo-vm (Rust, Cairo 1) |
861.6 ± 7.1 | 847.1 | 869.9 | 1.00 |
cairo-native (embedded AOT) |
5094.5 ± 82.6 | 4975.2 | 5238.3 | 5.91 ± 0.11 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
5350.7 ± 40.6 | 5294.7 | 5401.1 | 6.21 ± 0.07 |
Benchmark for program logistic_map
Open benchmarks
Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
---|---|---|---|---|
Cairo-vm (Rust, Cairo 1) |
585.4 ± 6.4 | 576.0 | 594.9 | 1.00 |
cairo-native (embedded AOT) |
5296.0 ± 55.5 | 5235.4 | 5413.5 | 9.05 ± 0.14 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
5511.4 ± 90.1 | 5338.1 | 5622.3 | 9.41 ± 0.19 |
Benchmark results Main vs HEAD.Base
Head
Base
Head
Base
Head
Base
Head
Base
Head
Base
Head
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1263 +/- ##
=======================================
Coverage 80.21% 80.21%
=======================================
Files 112 112
Lines 29880 29880
=======================================
Hits 23967 23967
Misses 5913 5913 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
JulianGCalderon
approved these changes
Jun 23, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
gabrielbosio
approved these changes
Jun 23, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The last version of starknet-replay intoduces a series of binaries. Thus, we now need to specify which of them we are going to use. This wasn't updated in cairo native's ci, which caused its failure.
Also, updated the starknet-replay's and sequencer's version in starknet-blocks workflow so that they match the ones in the daily workflow.
Checklist