aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Elliott <robert.elliott@arm.com>2023-08-15 09:42:34 +0000
committerRob Elliott <robert.elliott@arm.com>2023-08-15 09:47:18 +0000
commit5f920211ac23393a7b98a0d358bfbfc3232d5c8f (patch)
treef8fbec247f9066989ee17bf192651ef6127d3dd0
parent53ceb4838914d50be1537d2eb32f569aee9ff823 (diff)
downloadserialization_lib-5f920211ac23393a7b98a0d358bfbfc3232d5c8f.tar.gz
Fix for placeholderFilename being passed to basicBlock
Change-Id: I591accec7cd8499bd793924a4e22eed2454f66ea
-rw-r--r--python/serializer/tosa_serializer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/serializer/tosa_serializer.py b/python/serializer/tosa_serializer.py
index 8330c3e..cd31624 100644
--- a/python/serializer/tosa_serializer.py
+++ b/python/serializer/tosa_serializer.py
@@ -711,7 +711,7 @@ class TosaSerializerRegion:
return tens
def addInputTensor(self, tensor):
- self.currBasicBlock.addTensor(tensor.name, tensor.shape, tensor.dtype)
+ self.currBasicBlock.addTensor(tensor.name, tensor.shape, tensor.dtype, tensor.data, tensor.placeholderFilename)
self.currBasicBlock.addInput(tensor.name)
def addOutputTensor(self, tensor):