-
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
Add a GEP method to blockext, simply some code #873
Merged
Merged
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
edg-l
requested review from
igaray,
azteca1998,
jrchatruc,
entropidelic,
fmoletta,
Oppen and
pefontana
as code owners
October 21, 2024 10:04
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #873 +/- ##
==========================================
+ Coverage 82.82% 82.91% +0.08%
==========================================
Files 120 120
Lines 34941 33864 -1077
==========================================
- Hits 28941 28079 -862
+ Misses 6000 5785 -215 ☔ View full report in Codecov by Sentry. |
Benchmarking resultsBenchmark for program
|
Command | Mean [s] | Min [s] | Max [s] | Relative |
---|---|---|---|---|
Cairo-vm (Rust, Cairo 1) |
11.140 ± 0.309 | 10.836 | 11.577 | 24.82 ± 0.69 |
cairo-native (embedded AOT) |
3.136 ± 0.012 | 3.117 | 3.150 | 6.99 ± 0.03 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
3.178 ± 0.014 | 3.163 | 3.202 | 7.08 ± 0.03 |
cairo-native (standalone AOT) |
0.676 ± 0.003 | 0.674 | 0.683 | 1.51 ± 0.01 |
cairo-native (standalone AOT with -march=native) |
0.449 ± 0.001 | 0.448 | 0.450 | 1.00 |
Benchmark for program fib_2M
Open benchmarks
Command | Mean [s] | Min [s] | Max [s] | Relative |
---|---|---|---|---|
Cairo-vm (Rust, Cairo 1) |
11.319 ± 0.220 | 10.848 | 11.534 | 1412.82 ± 30.78 |
cairo-native (embedded AOT) |
2.689 ± 0.017 | 2.660 | 2.712 | 335.67 ± 3.94 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
2.726 ± 0.031 | 2.689 | 2.799 | 340.25 ± 5.11 |
cairo-native (standalone AOT) |
0.008 ± 0.000 | 0.008 | 0.009 | 1.04 ± 0.01 |
cairo-native (standalone AOT with -march=native) |
0.008 ± 0.000 | 0.008 | 0.009 | 1.00 |
Benchmark for program logistic_map
Open benchmarks
Command | Mean [s] | Min [s] | Max [s] | Relative |
---|---|---|---|---|
Cairo-vm (Rust, Cairo 1) |
4.258 ± 0.032 | 4.223 | 4.332 | 60.21 ± 0.48 |
cairo-native (embedded AOT) |
2.848 ± 0.019 | 2.823 | 2.889 | 40.28 ± 0.29 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
3.017 ± 0.013 | 2.999 | 3.036 | 42.67 ± 0.21 |
cairo-native (standalone AOT) |
0.115 ± 0.000 | 0.114 | 0.115 | 1.62 ± 0.01 |
cairo-native (standalone AOT with -march=native) |
0.071 ± 0.000 | 0.070 | 0.071 | 1.00 |
Benchmark results Main vs HEAD.
|
JulianGCalderon
approved these changes
Oct 25, 2024
azteca1998
approved these changes
Oct 28, 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.
Related to #862
Checklist