-
Notifications
You must be signed in to change notification settings - Fork 44
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
Log contract compilation time #823
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
Benchmark results Main vs HEAD.
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #823 +/- ##
=======================================
Coverage 82.73% 82.74%
=======================================
Files 120 120
Lines 34937 34963 +26
=======================================
+ Hits 28905 28929 +24
- Misses 6032 6034 +2 ☔ View full report in Codecov by Sentry. |
JulianGCalderon
force-pushed
the
time-compilation
branch
3 times, most recently
from
September 30, 2024 17:24
65aacd7
to
fd40a47
Compare
JulianGCalderon
force-pushed
the
time-compilation
branch
from
September 30, 2024 17:25
fd40a47
to
9d63d2e
Compare
Benchmark results Main vs HEAD
|
JulianGCalderon
changed the title
[DNM?] Log contract compilation time
Log contract compilation time
Oct 10, 2024
Benchmarking resultsBenchmark for program
|
Command | Mean [s] | Min [s] | Max [s] | Relative |
---|---|---|---|---|
Cairo-vm (Rust, Cairo 1) |
11.082 ± 0.286 | 10.773 | 11.513 | 23.57 ± 0.61 |
cairo-native (embedded AOT) |
3.454 ± 0.045 | 3.380 | 3.521 | 7.34 ± 0.09 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
3.435 ± 0.037 | 3.395 | 3.508 | 7.30 ± 0.08 |
cairo-native (standalone AOT) |
0.681 ± 0.004 | 0.678 | 0.693 | 1.45 ± 0.01 |
cairo-native (standalone AOT with -march=native) |
0.470 ± 0.000 | 0.469 | 0.471 | 1.00 |
Benchmark for program fib_2M
Open benchmarks
Command | Mean [s] | Min [s] | Max [s] | Relative |
---|---|---|---|---|
Cairo-vm (Rust, Cairo 1) |
10.967 ± 0.320 | 10.518 | 11.462 | 1342.94 ± 41.98 |
cairo-native (embedded AOT) |
2.805 ± 0.047 | 2.726 | 2.895 | 343.42 ± 6.93 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
2.833 ± 0.028 | 2.796 | 2.875 | 346.94 ± 5.22 |
cairo-native (standalone AOT) |
0.009 ± 0.000 | 0.009 | 0.009 | 1.07 ± 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) |
4.461 ± 0.043 | 4.397 | 4.535 | 61.44 ± 0.66 |
cairo-native (embedded AOT) |
3.023 ± 0.046 | 2.951 | 3.104 | 41.63 ± 0.67 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
3.186 ± 0.060 | 3.105 | 3.297 | 43.88 ± 0.85 |
cairo-native (standalone AOT) |
0.112 ± 0.000 | 0.112 | 0.113 | 1.55 ± 0.01 |
cairo-native (standalone AOT with -march=native) |
0.073 ± 0.000 | 0.072 | 0.074 | 1.00 |
JulianGCalderon
requested review from
edg-l,
igaray,
azteca1998,
jrchatruc,
entropidelic,
fmoletta,
Oppen and
pefontana
as code owners
October 10, 2024 20:43
igaray
approved these changes
Oct 17, 2024
azteca1998
approved these changes
Oct 17, 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.
Logs the time it takes in each compilation stage
Checklist