Skip to content
Snippets Groups Projects
Commit 3e7e3d14 authored by Kaushik Kulkarni's avatar Kaushik Kulkarni
Browse files

PytatoArrayContext.symbolic_array_var: unnecessary interface

parent 70b5402d
No related branches found
No related tags found
No related merge requests found
...@@ -250,10 +250,6 @@ class PytatoArrayContext(ArrayContext): ...@@ -250,10 +250,6 @@ class PytatoArrayContext(ArrayContext):
def empty(self, shape, dtype): def empty(self, shape, dtype):
raise ValueError("PytatoArrayContext does not support empty") 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): def zeros(self, shape, dtype):
import pytato as pt import pytato as pt
return pt.zeros(shape, dtype) return pt.zeros(shape, dtype)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment