From 2ef67fc574383e29fecc1b51e637cc967c6dc244 Mon Sep 17 00:00:00 2001 From: auphelia <jakobapk@web.de> Date: Thu, 19 Dec 2019 15:18:55 +0000 Subject: [PATCH] [Registry] added sliding window to registry --- src/finn/custom_op/registry.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/finn/custom_op/registry.py b/src/finn/custom_op/registry.py index 4b8f4d649..fa4b0ed94 100644 --- a/src/finn/custom_op/registry.py +++ b/src/finn/custom_op/registry.py @@ -1,5 +1,8 @@ # make sure new CustomOp subclasses are imported here so that they get # registered and plug in correctly into the infrastructure +from finn.custom_op.fpgadataflow.convolutioninputgenerator import ( + ConvolutionInputGenerator +) from finn.custom_op.fpgadataflow.streamingfclayer_batch import StreamingFCLayer_Batch from finn.custom_op.fpgadataflow.streamingmaxpool_batch import StreamingMaxPool_Batch from finn.custom_op.multithreshold import MultiThreshold @@ -12,3 +15,4 @@ custom_op["MultiThreshold"] = MultiThreshold custom_op["XnorPopcountMatMul"] = XnorPopcountMatMul custom_op["StreamingMaxPool_Batch"] = StreamingMaxPool_Batch custom_op["StreamingFCLayer_Batch"] = StreamingFCLayer_Batch +custom_op["ConvolutionInputGenerator"] = ConvolutionInputGenerator -- GitLab