-
Notifications
You must be signed in to change notification settings - Fork 110
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
[oneMKL][BLAS] add out-of-place TRMM and TRSM #523
[oneMKL][BLAS] add out-of-place TRMM and TRSM #523
Conversation
|
||
.. rubric:: Input Parameters | ||
|
||
queue |
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.
Did you check how these look after compiling? Indentation does not seem to match to in-place API descriptions.
Specifies whether ``A`` is on the left side of the matrix solve | ||
(``side::left``) or on the right side (``side::right``). See :ref:`onemkl_datatypes` for more details. | ||
|
||
upper_lower |
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.
Same comment as before about indentation. Also, these parameters have different name in in-place section, a typo from earlier. It would be good to align them, but it can be done separately too.
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 indentation does not seem to have any effect on rendered output, but I adjusted to make it all consistent. I also fixed the uplo / upper_lower thing to be consistent.
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 for the updates.
This PR adds out-of-place TRMM and TRSM APIs to the spec. As an example, the new TRMM API supports operations of the form$C = \alpha AB + \beta C$ , with a similar change for TRSM.