-
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
Remove missing todos #1055
base: main
Are you sure you want to change the base?
Remove missing todos #1055
Conversation
Benchmark results Main vs HEAD.Base
Head
Base
Head
Base
Head
Base
Head
Base
Head
Base
Head
|
Benchmarking resultsBenchmark for program
|
Command | Mean [s] | Min [s] | Max [s] | Relative |
---|---|---|---|---|
Cairo-vm (Rust, Cairo 1) |
21.379 ± 0.193 | 21.164 | 21.693 | 99.71 ± 2.53 |
cairo-native (embedded AOT) |
4.135 ± 0.050 | 4.078 | 4.215 | 19.29 ± 0.51 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
3.942 ± 0.026 | 3.906 | 3.989 | 18.38 ± 0.45 |
cairo-native (standalone AOT with -march=native) |
0.214 ± 0.005 | 0.206 | 0.224 | 1.00 |
Benchmark for program dict_snapshot
Open benchmarks
Command | Mean [s] | Min [s] | Max [s] | Relative |
---|---|---|---|---|
Cairo-vm (Rust, Cairo 1) |
5.964 ± 0.077 | 5.858 | 6.096 | 3060.56 ± 87.81 |
cairo-native (embedded AOT) |
3.989 ± 0.062 | 3.905 | 4.072 | 2046.72 ± 61.26 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
3.816 ± 0.037 | 3.745 | 3.883 | 1958.27 ± 53.66 |
cairo-native (standalone AOT with -march=native) |
0.002 ± 0.000 | 0.002 | 0.003 | 1.00 |
Benchmark for program factorial_2M
Open benchmarks
Command | Mean [s] | Min [s] | Max [s] | Relative |
---|---|---|---|---|
Cairo-vm (Rust, Cairo 1) |
14.964 ± 0.122 | 14.812 | 15.226 | 11.02 ± 0.10 |
cairo-native (embedded AOT) |
4.385 ± 0.043 | 4.317 | 4.446 | 3.23 ± 0.03 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
4.171 ± 0.040 | 4.126 | 4.234 | 3.07 ± 0.03 |
cairo-native (standalone AOT with -march=native) |
1.358 ± 0.006 | 1.354 | 1.372 | 1.00 |
Benchmark for program fib_2M
Open benchmarks
Command | Mean [s] | Min [s] | Max [s] | Relative |
---|---|---|---|---|
Cairo-vm (Rust, Cairo 1) |
14.654 ± 0.092 | 14.520 | 14.785 | 181.42 ± 1.24 |
cairo-native (embedded AOT) |
3.939 ± 0.038 | 3.871 | 3.994 | 48.77 ± 0.49 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
3.860 ± 0.054 | 3.768 | 3.933 | 47.78 ± 0.68 |
cairo-native (standalone AOT with -march=native) |
0.081 ± 0.000 | 0.080 | 0.081 | 1.00 |
Benchmark for program linear_search
Open benchmarks
Command | Mean [s] | Min [s] | Max [s] | Relative |
---|---|---|---|---|
Cairo-vm (Rust, Cairo 1) |
6.004 ± 0.077 | 5.856 | 6.123 | 2938.84 ± 123.04 |
cairo-native (embedded AOT) |
4.013 ± 0.062 | 3.909 | 4.117 | 1964.31 ± 84.02 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
3.886 ± 0.054 | 3.819 | 3.955 | 1902.03 ± 80.33 |
cairo-native (standalone AOT with -march=native) |
0.002 ± 0.000 | 0.002 | 0.002 | 1.00 |
Benchmark for program logistic_map
Open benchmarks
Command | Mean [s] | Min [s] | Max [s] | Relative |
---|---|---|---|---|
Cairo-vm (Rust, Cairo 1) |
5.881 ± 0.041 | 5.825 | 5.929 | 24.24 ± 0.17 |
cairo-native (embedded AOT) |
4.002 ± 0.024 | 3.970 | 4.038 | 16.49 ± 0.10 |
cairo-native (embedded JIT using LLVM's ORC Engine) |
3.935 ± 0.030 | 3.896 | 3.975 | 16.22 ± 0.12 |
cairo-native (standalone AOT with -march=native) |
0.243 ± 0.000 | 0.242 | 0.243 | 1.00 |
@@ -635,9 +635,9 @@ fn parse_result( | |||
| CoreTypeConcrete::StarkNet(_) | |||
| CoreTypeConcrete::Uint128MulGuarantee(_) | |||
| CoreTypeConcrete::Circuit(_) | |||
| CoreTypeConcrete::RangeCheck96(_) => todo!(), | |||
| CoreTypeConcrete::RangeCheck96(_) => native_panic!("not yet implemented as results"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The RangeCheck96
is a builtin, therefore should go in the builtins category (the block just above, after RangeCheck
).
Co-authored-by: MrAzteca <[email protected]>
e5cbf13
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1055 +/- ##
==========================================
- Coverage 80.94% 80.94% -0.01%
==========================================
Files 108 108
Lines 29978 29978
==========================================
- Hits 24266 24265 -1
- Misses 5712 5713 +1 ☔ View full report in Codecov by Sentry. |
Co-authored-by: MrAzteca <[email protected]>
Co-authored-by: MrAzteca <[email protected]>
✅ Code is now correctly formatted. |
Checklist