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
Hey there,
using Metal A = Metal.randn(100,100) b = Metal.randn(100,1) A\b
throws
ERROR: MethodError: no method matching getrs!(::Char, ::MtlMatrix{Float32, Private}, ::MtlVector{UInt32, Private}, ::Matrix{Float32})
Any idea on what is happening?
The text was updated successfully, but these errors were encountered:
Solving of linear equations is not yet implemented in Metal.jl (see #145). However you can already use LU factorisation in the meantime.
using LinearAlgebra A = Metal.randn(100,100) lua = lu(A) # ...
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Hey there,
throws
Any idea on what is happening?
The text was updated successfully, but these errors were encountered: