-
Notifications
You must be signed in to change notification settings - Fork 99
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.
18fc349
to
b24686b
Compare
def21e7
to
2b4e03b
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. Fixing unused variable error 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 Berger-Vergiat <[email protected]>
We did not pass the stride of the work array to internal routines and we are not enforcing a contiguous memory allocation either so when using subviews to pass the work array, we run into troubles. Signed-off-by: Luc Berger-Vergiat <[email protected]>
2b4e03b
to
f4dfbe9
Compare
Signed-off-by: Luc Berger-Vergiat <[email protected]>
After fixing the issue with the workspace utilization now looking at issues when the problem and batch sizes are increased. Signed-off-by: Luc Berger-Vergiat <[email protected]>
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: