We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
MWE:
A = cu(-rand(3,3)); b = cu(rand(3)) _qr = qr(A) _qr \ A
QR factorization already works, and JuliaGPU/CuArrays.jl#165 handled the \ for Triangular, so all of the pieces are there to define this. In fact,
\
_x = vec(UpperTriangular(_qr.R) \ (_qr.Q' * reshape(b,length(b),1)))
works, since JuliaGPU/CuArrays.jl#165 requires a matrix, so it's not that far off. Using this a \ can be defined which would solve https://github.com/JuliaGPU/CuArrays.jl/issues/103
The text was updated successfully, but these errors were encountered:
Ref: SciML/OrdinaryDiffEq.jl#719
Sorry, something went wrong.
JuliaGPU/CuArrays.jl#580
This works now.
No branches or pull requests
MWE:
QR factorization already works, and JuliaGPU/CuArrays.jl#165 handled the
\
for Triangular, so all of the pieces are there to define this. In fact,works, since JuliaGPU/CuArrays.jl#165 requires a matrix, so it's not that far off. Using this a
\
can be defined which would solve https://github.com/JuliaGPU/CuArrays.jl/issues/103The text was updated successfully, but these errors were encountered: