This repository has been archived by the owner on Dec 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
Fix interpolation for Arguments of zany spaces #286
Open
wence-
wants to merge
2
commits into
master
Choose a base branch
from
wence/fix/interpolate-zany-argument
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,8 @@ | |
from gem.unconcatenate import unconcatenate | ||
from gem.utils import cached_property | ||
|
||
import finat | ||
from finat.finiteelementbase import FiniteElementBase | ||
from finat.physically_mapped import PhysicalGeometry, NeedsCoordinateMappingElement | ||
from finat.point_set import PointSet, PointSingleton | ||
from finat.quadrature import make_quadrature | ||
|
@@ -246,12 +248,64 @@ def physical_vertices(self): | |
return self.physical_points(vs) | ||
|
||
|
||
@singledispatch | ||
def needs_coordinate_mapping(element): | ||
raise AssertionError(f"Don't know how to handle {type(element)}") | ||
|
||
|
||
@needs_coordinate_mapping.register(ufl.FiniteElementBase) | ||
def _needs_coordinate_mapping_ufl(element): | ||
"""Does this UFL element require a CoordinateMapping for translation?""" | ||
if element.family() == 'Real': | ||
return False | ||
else: | ||
return isinstance(create_element(element), NeedsCoordinateMappingElement) | ||
return needs_coordinate_mapping(create_element(element)) | ||
|
||
|
||
@needs_coordinate_mapping.register(NeedsCoordinateMappingElement) | ||
def _needs_coordinate_mapping_finat_needs_coordinate_mapping(element): | ||
return True | ||
|
||
|
||
@needs_coordinate_mapping.register(FiniteElementBase) | ||
def _needs_coordinate_mapping_finat_base(element): | ||
return False | ||
|
||
|
||
@needs_coordinate_mapping.register(finat.DiscontinuousElement) | ||
def _needs_coordinate_mapping_finat_discontinuous(element): | ||
return needs_coordinate_mapping(element.element) | ||
|
||
|
||
@needs_coordinate_mapping.register(finat.FlattenedDimensions) | ||
def _needs_coordinate_mapping_finat_cube(element): | ||
return needs_coordinate_mapping(element.product) | ||
|
||
|
||
@needs_coordinate_mapping.register(finat.TensorProductElement) | ||
def _needs_coordinate_mapping_finat_tpe(element): | ||
return any(map(needs_coordinate_mapping, element.factors)) | ||
|
||
|
||
@needs_coordinate_mapping.register(finat.TensorFiniteElement) | ||
def _needs_coordinate_mapping_finat_tfe(element): | ||
return needs_coordinate_mapping(element.base_element) | ||
|
||
|
||
@needs_coordinate_mapping.register(finat.EnrichedElement) | ||
def _needs_coordinate_mapping_finat_enriched(element): | ||
return any(map(needs_coordinate_mapping, element.elements)) | ||
|
||
|
||
@needs_coordinate_mapping.register(finat.mixed.MixedSubElement) | ||
def _needs_coordinate_mapping_finat_mixed(element): | ||
return needs_coordinate_mapping(element.element) | ||
|
||
|
||
@needs_coordinate_mapping.register(finat.HDivElement) | ||
@needs_coordinate_mapping.register(finat.HCurlElement) | ||
def _needs_coordinate_mapping_finat_hdivcurl(element): | ||
return needs_coordinate_mapping(element.wrappee) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I put this here because it meant I didn't need a PR in finat as well, but probably finat should offer a e.g. ideally you would just write (if you don't care about ordering) def traverse(element):
yield element
yield from map(traverse, element.children) |
||
|
||
|
||
class PointSetContext(ContextBase): | ||
|
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.
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.
Not checking for correctness, just that a kernel actually comes out the other end.