Hi:
I need to use pardiso to solve a big matrix with big right hand side and the physical memory is not big enough to store the matrix and right hand side at the same time. So I split the right hand side into two parts, the first part has 10000 columns and the second part has 10001 columns. And then call pardiso with phase=33 to solve the first part and call phase=33 again to solve the second part. The problem is how to set nrhs in phase 12 and phase -1, 10000 or 10001 or just 0. Because all the examples in solverc and solverf all set nrhs=1 in phase 11, 22,33 and -1. I can not find an useful example.