You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm getting deprecation warnings for the interpolation of certain (not all) expressions. Minimal example:
importfiredrakeasfdimportwarningswarnings.simplefilter("always")
mesh=fd.UnitCubeMesh(1,1,1)
V=fd.FunctionSpace(mesh, "CG", 1)
x, y, z=fd.SpatialCoordinate(mesh)
fd.Function(V).interpolate(fd.sin(x))
results in output
/usr/lib/python3.12/dataclasses.py:1581: DeprecationWarning: arg_id_to_dtype passed to InKernelCallable was not hashable. This usage is deprecated and will stop working in 2026.
return obj.__class__(**changes)
/usr/lib/python3.12/dataclasses.py:1581: DeprecationWarning: arg_id_to_descr passed to InKernelCallable was not hashable. This usage is deprecated and will stop working in 2026.
return obj.__class__(**changes)
I'm using a fresh install of Firedrake on an Ubuntu 24.04 system.
The text was updated successfully, but these errors were encountered:
I'm getting deprecation warnings for the interpolation of certain (not all) expressions. Minimal example:
results in output
I'm using a fresh install of Firedrake on an Ubuntu 24.04 system.
The text was updated successfully, but these errors were encountered: