You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
How can I use my matrix data(I, J, N, val) on CUDA memory to the AMGCL CUDA solver?
Currently, I copy those data from CUDA memory to main mamory once time and use make_tuple for initialize.
But it is really waist. I want to use GPU data directory for the solver.
Can I make it??
The text was updated successfully, but these errors were encountered:
Unfortunately, this is not possible with amgcl. In the library the setup is done completely on the cpu side and the results are then transferred to gpu memory.
You can try nvidia's amgx, as I believe the setup is done gpu-side there. I have also seen some work done based on amgcl where the setup is done on the gpu-side (https://doi.org/10.1007/978-3-031-11623-0_10), but I am not sure if the work has been open-sourced.
Hi,
How can I use my matrix data(I, J, N, val) on CUDA memory to the AMGCL CUDA solver?
Currently, I copy those data from CUDA memory to main mamory once time and use make_tuple for initialize.
But it is really waist. I want to use GPU data directory for the solver.
Can I make it??
The text was updated successfully, but these errors were encountered: