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
add a Context struct to all vectors/matrices/operators that can carry the details of the execution/allocation context ( e.g. the device and stream for cuda stuff, number of threads for cpu stuff)
add a set of vector structs that use cuda to allocate vectors on the gpu and implement the standard Vector traits (use cuBLAS)
add a similar set of cuda matrix structs for dense matrices (use cuBLAS)
add a cuda sparse matric struct (use cuda vectors and implement a CSC matrix)
TODO:
Contextstruct to all vectors/matrices/operators that can carry the details of the execution/allocation context ( e.g. the device and stream for cuda stuff, number of threads for cpu stuff)