diff --git a/arraycontext/impl/pytato.py b/arraycontext/impl/pytato.py index 1748cc4b67dfd1370b73dab9c1872efb83cec6c7..e62676cc759e4f8ca995bdf6332ec97276a274a1 100644 --- a/arraycontext/impl/pytato.py +++ b/arraycontext/impl/pytato.py @@ -250,10 +250,6 @@ class PytatoArrayContext(ArrayContext): def empty(self, shape, dtype): raise ValueError("PytatoArrayContext does not support empty") - def symbolic_array_var(self, shape, dtype, name=None): - import pytato as pt - return pt.make_placeholder(shape=shape, dtype=dtype, name=name) - def zeros(self, shape, dtype): import pytato as pt return pt.zeros(shape, dtype)