Skip to content

Implement CHOLMOD solver #121

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)

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Labels

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions