-
Notifications
You must be signed in to change notification settings - Fork 43
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
Fix daily block run #891
Merged
Fix daily block run #891
Conversation
This file contains 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
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #891 +/- ##
=======================================
Coverage 82.99% 82.99%
=======================================
Files 120 120
Lines 33866 33866
=======================================
Hits 28108 28108
Misses 5758 5758 ☔ View full report in Codecov by Sentry. |
Benchmarking resultsBenchmark for program
|
Command | Mean [s] | Min [s] | Max [s] | Relative |
---|---|---|---|---|
Cairo-vm (Rust, Cairo 1) |
10.977 ± 0.307 | 10.637 | 11.419 | 23.86 ± 0.67 |
cairo-native (embedded AOT) |
3.254 ± 0.034 | 3.194 | 3.302 | 7.07 ± 0.08 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
3.208 ± 0.040 | 3.150 | 3.282 | 6.97 ± 0.09 |
cairo-native (standalone AOT) |
0.662 ± 0.002 | 0.659 | 0.664 | 1.44 ± 0.01 |
cairo-native (standalone AOT with -march=native) |
0.460 ± 0.001 | 0.459 | 0.463 | 1.00 |
Benchmark for program fib_2M
Open benchmarks
Command | Mean [s] | Min [s] | Max [s] | Relative |
---|---|---|---|---|
Cairo-vm (Rust, Cairo 1) |
11.159 ± 0.170 | 10.725 | 11.319 | 1496.16 ± 26.21 |
cairo-native (embedded AOT) |
2.800 ± 0.039 | 2.736 | 2.864 | 375.45 ± 6.13 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
2.885 ± 0.035 | 2.854 | 2.954 | 386.76 ± 5.77 |
cairo-native (standalone AOT) |
0.007 ± 0.000 | 0.007 | 0.008 | 1.00 |
cairo-native (standalone AOT with -march=native) |
0.008 ± 0.000 | 0.008 | 0.008 | 1.08 ± 0.01 |
Benchmark for program logistic_map
Open benchmarks
Command | Mean [s] | Min [s] | Max [s] | Relative |
---|---|---|---|---|
Cairo-vm (Rust, Cairo 1) |
4.527 ± 0.065 | 4.394 | 4.630 | 63.09 ± 0.91 |
cairo-native (embedded AOT) |
2.984 ± 0.062 | 2.885 | 3.107 | 41.58 ± 0.87 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
3.122 ± 0.066 | 3.047 | 3.268 | 43.51 ± 0.93 |
cairo-native (standalone AOT) |
0.116 ± 0.000 | 0.116 | 0.116 | 1.61 ± 0.00 |
cairo-native (standalone AOT with -march=native) |
0.072 ± 0.000 | 0.072 | 0.072 | 1.00 |
Benchmark results Main vs HEAD.
|
JulianGCalderon
force-pushed
the
fix-daily
branch
from
October 30, 2024 19:58
42248f1
to
ecd7a1c
Compare
JulianGCalderon
force-pushed
the
fix-daily
branch
2 times, most recently
from
October 30, 2024 20:05
6b8518b
to
e1132b8
Compare
JulianGCalderon
force-pushed
the
fix-daily
branch
from
October 30, 2024 20:20
e1132b8
to
5a63d75
Compare
JulianGCalderon
force-pushed
the
fix-daily
branch
from
October 30, 2024 20:22
99730b2
to
5c710f8
Compare
JulianGCalderon
force-pushed
the
fix-daily
branch
from
October 30, 2024 20:24
e67941c
to
8a05555
Compare
JulianGCalderon
requested review from
edg-l,
igaray,
azteca1998,
jrchatruc,
entropidelic,
fmoletta,
Oppen and
pefontana
as code owners
October 31, 2024 19:35
pefontana
reviewed
Oct 31, 2024
pefontana
approved these changes
Nov 4, 2024
edg-l
approved these changes
Nov 5, 2024
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.
Run Native and VM in parallel, and creates issues on failing runs
An example issue can be found here