-
Notifications
You must be signed in to change notification settings - Fork 19
Made ggev functions as non-scalar functions and support for lapack-src v0.13 #28
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
Conversation
I have also changed to argument case to lower. Check if it is okay? Other alternative is to ignore case |
…lsame Arguments are now in lower case alpha in larfg is corrected as a scalar
@IvanUkhov - I was facing issue with |
bin/generate.py
Outdated
@@ -190,15 +201,15 @@ def format_body(f): | |||
def format_header_arguments(f): | |||
s = [] | |||
for arg in f.args: | |||
s.append('{}: {}'.format(arg[0], translate_argument(*arg, f=f))) | |||
s.append('{}: {}'.format(arg[0].lower(), translate_argument(*arg, f=f))) |
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.
Why is this needed?
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 tolower for all the arguments because there were too many warnings. I am also not sure if this is needed here as well.
If you dislike the idea of tolower, then we should add the ignore.
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 a good thing to lowercase. In this high-level crate, we want to see Rust-friendly names.
It actually made me realize that the logic in generate.py
is broken, as it assumes everything is lowercase. I’ll push a fix.
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.
Thanks. And let me know if you need me to change something. Waiting for your publish to crates.io
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.
Done.
I propose to just skip |
It’s getting too big. I’ll merge this, and any other problems will be solved in separate pull requests. |
Thanks for merging. |
Made ggev functions as non-scalar functions and support for lapack-src v0.13
#27