aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/tensor.py
diff options
context:
space:
mode:
Diffstat (limited to 'ethosu/vela/tensor.py')
-rw-r--r--ethosu/vela/tensor.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/ethosu/vela/tensor.py b/ethosu/vela/tensor.py
index b7d4307..97885d0 100644
--- a/ethosu/vela/tensor.py
+++ b/ethosu/vela/tensor.py
@@ -341,6 +341,7 @@ class Tensor:
"bandwidth_shape",
"dtype",
"name",
+ "is_variable",
"ops",
"consumer_list",
"values",
@@ -378,6 +379,7 @@ class Tensor:
self.bandwidth_shape = shape
self.dtype = dtype
self.name = name
+ self.is_variable = False
self.equivalence_id: UUID = uuid.uuid4()
self.ops: List[Operation] = []