-
Notifications
You must be signed in to change notification settings - Fork 98
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
batched - dense: Testing and fixing Serial QR #2342
base: develop
Are you sure you want to change the base?
Conversation
94496d2
to
4bfb715
Compare
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.
edit - duplicated comment
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.
Can any of these structs be moved to Impl
while you're at it? e.g. SerialQR_FormQ_Internal
. Or would you prefer to do that as a separate deprecating PR?
} | ||
#endif | ||
|
||
// #if defined(KOKKOSKERNELS_INST_COMPLEX_FLOAT) |
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.
Leave an explanation for why this is disabled.
014acb8
to
e27d586
Compare
The serial QR algorithms does not have unit-tests and is failing for non square matrices. See issue kokkos#2328. This first commit fixes the issue with rectangular matrices and adds a basic test for that use case. Next will work on adding a test that exercises the interfaces on multiple matrices of different sizes within a parallel_for. Finally equivalent tests will be added for the square case as well. Signed-off-by: Luc <[email protected]>
Signed-off-by: Luc <[email protected]>
Signed-off-by: Luc <[email protected]>
It looks like the Left NoTranspose ApplyQ is not doing the correct thing. Will have a look at that next. Signed-off-by: Luc <[email protected]>
Signed-off-by: Luc <[email protected]>
Signed-off-by: Luc <[email protected]>
Signed-off-by: Luc <[email protected]>
Signed-off-by: Luc <[email protected]>
Signed-off-by: Luc <[email protected]>
Signed-off-by: Luc <[email protected]>
Signed-off-by: Luc <[email protected]>
Signed-off-by: Luc Berger-Vergiat <[email protected]>
Signed-off-by: Luc Berger-Vergiat <[email protected]>
18fc349
to
b24686b
Compare
The serial QR algorithms does not have unit-tests and is failing for non square matrices. See issue #2328.
This first commit fixes the issue with rectangular matrices and adds a basic test for that use case.
Next will work on adding a test that exercises the interfaces on multiple matrices of different sizes within a parallel_for. Finally equivalent tests will be added for the square case as well.
Tasks: