[linalg.algs.blas2.rank1,linalg.algs.blas2.symherrank1] Restore missing arguments in P3371R5 updating overloads#8995
Open
abhinavagarwal07 wants to merge 2 commits intocplusplus:mainfrom
Conversation
…ects The non-ExecutionPolicy codeblock dispatches to the overwriting 3-argument matrix_rank_1_update, dropping the InMat E parameter and computing A = x conj(y)^T instead of the specified A = E + x conj(y)^T. The ExecutionPolicy branch already passes E.
The detailed declaration drops in-vector InVec, in-matrix InMat, Scalar alpha, and InMat E, even though the Effects compute A = E + alpha x x^H and the Remarks state "A may alias E". Match the synopsis.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The detailed wording for two updating overloads introduced by P3371R5 is inconsistent with the synopsis and surrounding effects wording.
[linalg.algs.blas2.rank1]—matrix_rank_1_update_cnon-ExecutionPolicyEffects codeblock dispatches to the 3-arg overwriting overload, droppingE.[linalg.algs.blas2.symherrank1]— updatinghermitian_matrix_rank_1_updatedetailed declaration dropsin-vector InVec,in-matrix InMat,Scalar alpha, andInMat E, even though Effects computeA = E + alpha x x^Hand Remarks state "A may alias E".