-
Notifications
You must be signed in to change notification settings - Fork 53
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
How to solve Ax=b when A is a Sparse Array ? #925
Comments
Hi @crazyfireji! If
I’ve detailed how to set this up for each GPU backend |
but the effecience is very low when ,my A is very large(more than 200000*200000, is there any more effecient function can be recomanded? |
@crazyfireji Can you give more details please? For large systems, you need a preconditioner to speed-up the convergence. If the system is "just" 200 000 x 200 000, I can also recommend CUDSS.jl but it will only work on NVIDIA GPUs and the system should not be too ill-conditioned: |
Like the title, if A is a Sparse Array, we can solve it like: x=A\b, but it can't works in CUDA or gpu.
The text was updated successfully, but these errors were encountered: