From 416b461d2cbae56c9a08f0fcea08808ede66e5e4 Mon Sep 17 00:00:00 2001 From: Yaman Umuroglu <maltanar@gmail.com> Date: Wed, 12 Feb 2020 23:42:46 +0100 Subject: [PATCH] [HLSCustomOp] add i/o shape retrieval fxns to HLSCustomOp base --- src/finn/custom_op/fpgadataflow/__init__.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/finn/custom_op/fpgadataflow/__init__.py b/src/finn/custom_op/fpgadataflow/__init__.py index 75a475acb..eb705c724 100644 --- a/src/finn/custom_op/fpgadataflow/__init__.py +++ b/src/finn/custom_op/fpgadataflow/__init__.py @@ -299,3 +299,15 @@ compilation transformations? @abstractmethod def pragmas(self): pass + + def get_folded_input_shape(self): + raise Exception("get_folded_input_shape not implemented for this op") + + def get_folded_output_shape(self): + raise Exception("get_folded_output_shape not implemented for this op") + + def get_instream_width(self): + raise Exception("get_instream_width not implemented for this op") + + def get_outstream_width(self): + raise Exception("get_outstream_width not implemented for this op") -- GitLab