Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Conv2MatMul] default pad handling for convs #111

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add AveragePoolNHWC to registry
maltanar authored Apr 5, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit a3188586af410859501284420e9dfd83d1f73525
3 changes: 2 additions & 1 deletion src/qonnx/custom_op/general/__init__.py
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@
from qonnx.custom_op.general.debugmarker import DebugMarker
from qonnx.custom_op.general.genericpartition import GenericPartition
from qonnx.custom_op.general.im2col import Im2Col
from qonnx.custom_op.general.maxpoolnhwc import MaxPoolNHWC
from qonnx.custom_op.general.maxpoolnhwc import MaxPoolNHWC, AveragePoolNHWC
from qonnx.custom_op.general.multithreshold import MultiThreshold
from qonnx.custom_op.general.quant import Quant
from qonnx.custom_op.general.quantavgpool2d import QuantAvgPool2d
@@ -42,6 +42,7 @@
custom_op["DebugMarker"] = DebugMarker
custom_op["QuantAvgPool2d"] = QuantAvgPool2d
custom_op["MaxPoolNHWC"] = MaxPoolNHWC
custom_op["AveragePoolNHWC"] = AveragePoolNHWC
custom_op["GenericPartition"] = GenericPartition
custom_op["MultiThreshold"] = MultiThreshold
custom_op["XnorPopcountMatMul"] = XnorPopcountMatMul
Loading