-
Notifications
You must be signed in to change notification settings - Fork 0
Jobh/petsc solver #10
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
base: master
Are you sure you want to change the base?
Conversation
119a746 to
4a6b2a3
Compare
|
@jobh is there some demo already where PETSc Nest/solvers could be tried? |
|
Minimum allowed coverage is Generated by 🐒 cobertura-action against 396861d |
|
@MiroK I don't know, there is maybe something in the petsc4py distribution? The new demo |
693396e to
f6354f4
Compare
66d2349 to
c70fb1b
Compare
f6354f4 to
deb6dd5
Compare
c70fb1b to
ad27b0f
Compare
deb6dd5 to
56befcb
Compare
ad27b0f to
f494664
Compare
56befcb to
508c80d
Compare
f494664 to
e65c6aa
Compare
e65c6aa to
7c2e4c5
Compare
| except: | ||
| info('failed to set near null space (not supported in petsc4py version)') | ||
|
|
||
| class petsc_base(block_base): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some of the methods, e.g. LU, Cholesky miss the prefix argument in their __init__ signature.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it must be a problem introduced in PR #9, not this one? I'll look into it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rebased on top of bugfix
7c2e4c5 to
396861d
Compare
Prototype interface with PETSc solvers.
Unfortunately, I could not get it to work with PETSc's
VecNestvectors, which means that we need to copy vectors back and forth all the time. I'm not planning to merge this unless anyone knows PETSc well enough to figure out theVecNestproblem.