Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow different ordering methods for Sparse solvers #8

Open
jnbrunet opened this issue Nov 17, 2020 · 0 comments
Open

Allow different ordering methods for Sparse solvers #8

jnbrunet opened this issue Nov 17, 2020 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@jnbrunet
Copy link
Member

At the moment, sparse solvers using Eigen as backend use the default Eigen::AMDOrdering ordering method. While this method performs well for unstructured meshes, it does worse for structured grid (such as the regular grid). We should be able to change the ordering method to the identity.

In addition, Eigen provides a wrapper to METIS ordering algorithms. It would be a good occasion to add it to the list of supported ordering methods.

Example:

root.addObject('LDLTSolver', backend='Eigen', ordering='None')
root.addObject('LDLTSolver', backend='Eigen', ordering='AMD')
root.addObject('LDLTSolver', backend='Eigen', ordering='METIS')
@jnbrunet jnbrunet self-assigned this Nov 17, 2020
@jnbrunet jnbrunet added the enhancement New feature or request label Nov 17, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant