It seems that almost all the solvers (i.e. A = xB) in ViennaCL return a vector result. The exception being the use of LU decomposition (example here). Whereas all the iterative solvers show a vector result see here. If I want the solution matrix of a real matrix with respect to the corresponding identity matrix I am currently using the combination of lu_factorize and lu_substitute. Is that currently the only option for the full matrix result or is there another way to use the functions or to use the returned vector result?
It seems that almost all the solvers (i.e. A = xB) in ViennaCL return a vector result. The exception being the use of LU decomposition (example here). Whereas all the iterative solvers show a vector result see here. If I want the solution matrix of a real matrix with respect to the corresponding identity matrix I am currently using the combination of
lu_factorizeandlu_substitute. Is that currently the only option for the full matrix result or is there another way to use the functions or to use the returned vector result?