We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd778c6 commit 5fb1d3aCopy full SHA for 5fb1d3a
hls4ml/backends/vivado/passes/pointwise.py
@@ -65,6 +65,8 @@ def register_pointwise(backend):
65
66
class OptimizePointwiseConv(OptimizerPass):
67
def match(self, node):
68
+ if node.get_attr('strategy') == 'distributed_arithmetic':
69
+ return False
70
return (
71
node.class_name in ('Conv1D', 'Conv2D')
72
and node.get_attr('filt_height', 1) == 1
0 commit comments