-
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 concurrency to ci
workflow
#636
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
fmoletta
added
the
process
Tasks related to the develop process, CI, testing, etc
label
May 30, 2024
fmoletta
requested review from
edg-l,
igaray,
azteca1998,
jrchatruc,
entropidelic,
Oppen and
pefontana
as code owners
May 30, 2024 19:35
Benchmarking resultsBenchmark for program
|
Command | Mean [s] | Min [s] | Max [s] | Relative |
---|---|---|---|---|
Cairo-vm (Rust, Cairo 1) |
11.416 ± 0.090 | 11.319 | 11.614 | 23.71 ± 0.25 |
cairo-native (embedded AOT) |
1.540 ± 0.015 | 1.524 | 1.564 | 3.20 ± 0.04 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
1.632 ± 0.017 | 1.611 | 1.654 | 3.39 ± 0.04 |
cairo-native (standalone AOT) |
0.652 ± 0.001 | 0.652 | 0.654 | 1.36 ± 0.01 |
cairo-native (standalone AOT with -march=native) |
0.481 ± 0.003 | 0.480 | 0.491 | 1.00 |
Benchmark for program fib_2M
Open benchmarks
Command | Mean [s] | Min [s] | Max [s] | Relative |
---|---|---|---|---|
Cairo-vm (Rust, Cairo 1) |
10.780 ± 0.081 | 10.633 | 10.908 | 1311.51 ± 20.86 |
cairo-native (embedded AOT) |
1.163 ± 0.012 | 1.141 | 1.187 | 141.51 ± 2.49 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
1.179 ± 0.012 | 1.163 | 1.201 | 143.49 ± 2.50 |
cairo-native (standalone AOT) |
0.009 ± 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.973 ± 0.012 | 1.958 | 1.996 | 29.74 ± 0.19 |
cairo-native (embedded AOT) |
1.308 ± 0.013 | 1.283 | 1.324 | 19.72 ± 0.20 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
1.482 ± 0.014 | 1.460 | 1.504 | 22.34 ± 0.22 |
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.067 | 1.00 |
Oppen
approved these changes
May 30, 2024
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #636 +/- ##
=======================================
Coverage 91.95% 91.95%
=======================================
Files 109 109
Lines 34203 34203
=======================================
Hits 31452 31452
Misses 2751 2751 ☔ View full report in Codecov by Sentry. |
juanbono
approved these changes
May 30, 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.
Adds usage of concurrency to the
ci
workflow, canceling duplicate runs of this workflow on all branches but main