Skip to content

Commit

Permalink
tsfc/fem: fix basis_evaluation cache
Browse files Browse the repository at this point in the history
  • Loading branch information
ksagiyam committed Dec 22, 2024
1 parent df05d92 commit 1b654c1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tsfc/fem.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,9 @@ def make_basis_evaluation_key(ctx, finat_element, mt, entity_id):
ufl_element = mt.terminal.ufl_element()
domain = extract_unique_domain(mt.terminal)
coordinate_element = domain.ufl_coordinate_element()
return (ufl_element, mt.local_derivatives, ctx.point_set, ctx.integration_dim, entity_id, coordinate_element, mt.restriction)
# This way of caching is fragile.
# Should Implement _hash_key_() for ModifiedTerminal and use the entire mt as key.
return (ufl_element, mt.local_derivatives, ctx.point_set, ctx.integration_dim, entity_id, coordinate_element, mt.restriction, domain._ufl_hash_data_())


class PointSetContext(ContextBase):
Expand Down

0 comments on commit 1b654c1

Please sign in to comment.