From 9102499f6554f8e040417c51b522a05077f8df1e Mon Sep 17 00:00:00 2001 From: Yaman Umuroglu <maltanar@gmail.com> Date: Thu, 27 Aug 2020 12:53:26 +0200 Subject: [PATCH] [VVAU] fix instream width --- src/finn/custom_op/fpgadataflow/vector_vector_activate_batch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/finn/custom_op/fpgadataflow/vector_vector_activate_batch.py b/src/finn/custom_op/fpgadataflow/vector_vector_activate_batch.py index 942e4b257..c7c08d081 100644 --- a/src/finn/custom_op/fpgadataflow/vector_vector_activate_batch.py +++ b/src/finn/custom_op/fpgadataflow/vector_vector_activate_batch.py @@ -96,7 +96,7 @@ class Vector_Vector_Activate_Batch(HLSCustomOp): def get_instream_width(self): i_bits = self.get_input_datatype().bitwidth() - in_width = i_bits * self.get_nodeattr("Channels") + in_width = i_bits * self.get_nodeattr("PE") return in_width def get_outstream_width(self): -- GitLab