Skip to content

Implement CHOLMOD solver #121

@artofscience

Description

@artofscience

According to @aatmdelissen we may expect an increase in speed of about 5-10 x

https://pypi.org/project/scikit-sparse/

CHOLMOD cholesky

            if not hasattr(self, 'inv'):
                self.inv = cholmod.analyze(mat, ordering_method='best')
            self.inv.cholesky_inplace(mat)
            self.u = self.inv(rhs)
            self.adjointsolve = lambda b: self.inv(b)

Metadata

Metadata

Labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions