-
Notifications
You must be signed in to change notification settings - Fork 80
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
interpreter: use interpreter default bitwidth in run main #3034
Conversation
@@ -62,6 +62,7 @@ def register_all_arguments(self, arg_parser: argparse.ArgumentParser): | |||
arg_parser.add_argument( | |||
"--index-bitwidth", | |||
choices=(32, 64), | |||
default=Interpreter.DEFAULT_BITWIDTH, |
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.
This is defined as the system bitwidth anyway
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.
Not clear to me what happened before if this wasn't specified
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.
I added a comment, the argument value is None by default, so it was assigning None explicitly in the init, which was propagated
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3034 +/- ##
==========================================
+ Coverage 90.05% 90.07% +0.01%
==========================================
Files 435 436 +1
Lines 54647 54804 +157
Branches 8473 8510 +37
==========================================
+ Hits 49214 49363 +149
- Misses 4060 4062 +2
- Partials 1373 1379 +6 ☔ View full report in Codecov by Sentry. |
I'll look into this and try to determine the difference in behaviour |
No description provided.