Assembly of matfree interpolation operator#4778
Open
leo-collins wants to merge 25 commits intomainfrom
Open
Conversation
57e5d2d to
5019974
Compare
pbrubeck
reviewed
Dec 12, 2025
pbrubeck
reviewed
Dec 12, 2025
pbrubeck
reviewed
Dec 12, 2025
pbrubeck
reviewed
Dec 12, 2025
pbrubeck
reviewed
Dec 12, 2025
pbrubeck
reviewed
Dec 14, 2025
pbrubeck
reviewed
Dec 14, 2025
75de8e2 to
5464cce
Compare
connorjward
requested changes
Jan 5, 2026
Contributor
connorjward
left a comment
There was a problem hiding this comment.
I'm only reviewing this from a high level, but this seems pretty much fine.
Contributor
Author
|
@connorjward Thanks for the review. I'm at a workshop this week and then on holiday again next week so I'll take a look after these. Thanks! |
d25e1f2 to
9a9af0f
Compare
pbrubeck
reviewed
Jan 21, 2026
pbrubeck
reviewed
Jan 21, 2026
pbrubeck
reviewed
Jan 21, 2026
pbrubeck
reviewed
Jan 21, 2026
pbrubeck
reviewed
Jan 21, 2026
pbrubeck
reviewed
Jan 21, 2026
pbrubeck
reviewed
Jan 21, 2026
pbrubeck
reviewed
Jan 21, 2026
pbrubeck
reviewed
Jan 21, 2026
leo-collins
commented
Jan 22, 2026
pbrubeck
reviewed
Jan 22, 2026
firedrake/matrix.py
Outdated
| The underlying matrix object. Either a PyOP2 Mat or a PETSc Mat. | ||
| bcs | ||
| An iterable of boundary conditions to apply to this :class:`Matrix`. | ||
| May be `None` if there are no boundary conditions to apply. |
63bd9e1 to
0c16219
Compare
dham
reviewed
Feb 5, 2026
docs/source/conf.py
Outdated
| @@ -138,6 +138,7 @@ | |||
dham
reviewed
Feb 5, 2026
firedrake/matrix.py
Outdated
| The underlying matrix object. Either a PyOP2 Mat or a PETSc Mat. | ||
| bcs | ||
| An iterable of boundary conditions to apply to this :class:`Matrix`. | ||
| May be `None` if there are no boundary conditions to apply. |
Member
There was a problem hiding this comment.
Suggested change
| May be `None` if there are no boundary conditions to apply. |
41816d6 to
3336b12
Compare
update comment
3336b12 to
f6cdeb2
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Allow assembly of matfree interpolation operators by passing
mat_type="matfree".Also changes the interfaces to the matrix classes and
ImplicitMatrixContextto make them simpler.