<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
</head>
<body>
<div dir="ltr">
<div dir="ltr"><br>
</div>
<div id="ms-outlook-mobile-signature" dir="ltr">
<div dir="ltr">Hello, </div>
<div dir="ltr"><br>
</div>
<div dir="ltr">I am inquiring to see what the best approach for solving a problem I am encountering in my quantum mechanics research. </div>
<div dir="ltr"><br>
</div>
<div dir="ltr">For some context, the structure of my problem is solving a linear system Ax=b where b=By in parallel. In this case A and B can be written as the sum of 4-5 kronecker products. Specifically, A and B are formed by the same terms but with a few
 flipped signs in the sum, and some of the scalings are time dependent so currently the sum is performed at each step. </div>
<div dir="ltr"><br>
</div>
<div dir="ltr">The issue I'm having is balancing GMRES solving speed versus memory usage. The sparse structure of my matrices is such that A and B (after summing) is equivalent in structure to a kronecker product between a matrix of size 1000x1000 with 5 nonzeros
 per row (concentrated along diagonal), and a matrix of 2000x2000 with 13 nonzeros per row (banded along diagonal). </div>
<div dir="ltr"><br>
</div>
<div dir="ltr">In this case, the memory usage for explicitly storing the kronecker product can be quite large. This seems inefficient since the kronecker product contains a lot of repeated information. Further, adding the matrices together at each step due
 to the scaling of time dependence as well as dimensionality makes the solver quickly become much slower. </div>
<div dir="ltr"><br>
</div>
<div dir="ltr">I've looked into various matrix types. MATMPIKAIJ seems close, but I would require more terms, and all of my matrices are sparse not some of them. I've also looked into MATCOMPOSITE to avoid explicit sums at least, however the solver time actually
 becomes slower.</div>
<div dir="ltr"><br>
</div>
<div dir="ltr">I was just curious if there is a better way of handling this using petsc that can achieve the best of both worlds, low memory usage and avoiding explicit kronecker product evaluation while keeping similar speeds of matrix vector products for
 GMRES. </div>
<div dir="ltr"><br>
</div>
<div dir="ltr">Thank you for your time. </div>
<div dir="ltr"><br>
</div>
<div dir="ltr"><br>
</div>
</div>
</div>
</body>
</html>