-
Notifications
You must be signed in to change notification settings - Fork 156
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
feat: add printing hints #1476
feat: add printing hints #1476
Conversation
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.
Great @greged93 !!
I think that with adding the #[test] flag we will ge good to go
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #1476 +/- ##
==========================================
- Coverage 96.82% 96.81% -0.01%
==========================================
Files 95 96 +1
Lines 39451 39525 +74
==========================================
+ Hits 38199 38267 +68
- Misses 1252 1258 +6 ☔ View full report in Codecov by Sentry. |
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.
Nice one @greged93 !
I think we are having some errors with the no_Std compilation,
https://github.com/lambdaclass/cairo-vm/actions/runs/6895813983/job/18760636735?pr=1476
They should be easy to fix
Right, nostd can't use stdout. The features should be mutually exclusive. |
* add print hints * test * remove u256 add felt * change log * fix based on comments * add std feature for print * Move Cairo Programs * Update Makefile * Use print tag in test * cargo fmt * Update Makefile * Update Makefile --------- Co-authored-by: Pedro Fontana <fontana.pedro93@gmail.com>
Debugging Hint
Description
The goal of this PR is to add debugging hints in the cairo vm behind a feature flag
print
.Checklist