-
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 dict deserialization. #672
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
azteca1998
requested review from
edg-l,
igaray,
jrchatruc,
entropidelic,
fmoletta,
Oppen and
pefontana
as code owners
June 5, 2024 14:03
Benchmarking resultsBenchmark for program
|
Command | Mean [s] | Min [s] | Max [s] | Relative |
---|---|---|---|---|
Cairo-vm (Rust, Cairo 1) |
11.334 ± 0.053 | 11.277 | 11.429 | 23.60 ± 0.12 |
cairo-native (embedded AOT) |
1.525 ± 0.012 | 1.508 | 1.546 | 3.17 ± 0.03 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
1.620 ± 0.013 | 1.601 | 1.648 | 3.37 ± 0.03 |
cairo-native (standalone AOT) |
0.654 ± 0.004 | 0.651 | 0.664 | 1.36 ± 0.01 |
cairo-native (standalone AOT with -march=native) |
0.480 ± 0.001 | 0.480 | 0.481 | 1.00 |
Benchmark for program fib_2M
Open benchmarks
Command | Mean [s] | Min [s] | Max [s] | Relative |
---|---|---|---|---|
Cairo-vm (Rust, Cairo 1) |
10.697 ± 0.062 | 10.613 | 10.826 | 1317.24 ± 18.37 |
cairo-native (embedded AOT) |
1.113 ± 0.013 | 1.099 | 1.134 | 137.10 ± 2.38 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
1.131 ± 0.009 | 1.121 | 1.146 | 139.25 ± 2.11 |
cairo-native (standalone AOT) |
0.008 ± 0.000 | 0.008 | 0.010 | 1.04 ± 0.02 |
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) |
1.897 ± 0.011 | 1.885 | 1.921 | 28.71 ± 0.18 |
cairo-native (embedded AOT) |
1.263 ± 0.009 | 1.247 | 1.279 | 19.12 ± 0.14 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
1.439 ± 0.010 | 1.423 | 1.455 | 21.78 ± 0.15 |
cairo-native (standalone AOT) |
0.107 ± 0.000 | 0.107 | 0.108 | 1.62 ± 0.00 |
cairo-native (standalone AOT with -march=native) |
0.066 ± 0.000 | 0.066 | 0.066 | 1.00 |
edg-l
previously approved these changes
Jun 5, 2024
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #672 +/- ##
==========================================
+ Coverage 91.82% 91.84% +0.01%
==========================================
Files 115 115
Lines 34254 34268 +14
==========================================
+ Hits 31455 31474 +19
+ Misses 2799 2794 -5 ☔ View full report in Codecov by Sentry. |
edg-l
previously approved these changes
Jun 5, 2024
juanbono
approved these changes
Jun 6, 2024
edg-l
approved these changes
Jun 6, 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.
Steps to fix:
JitValue::from_jit
so that every test passes except the one that was passing before.parse_result
implementation so that the dict-only return test also passes.Checklist