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 dfd501e commit b84de7bCopy full SHA for b84de7b
src/finn/custom_op/fpgadataflow/rtl/vectorvectoractivation_rtl.py
@@ -144,8 +144,9 @@ def lut_estimation(self):
144
return 0
145
146
def dsp_estimation(self):
147
+ P = self.get_nodeattr("PE")
148
Q = self.get_nodeattr("SIMD")
- return int(np.ceil(Q / 3))
149
+ return int(P * np.ceil(Q / 3))
150
151
def instantiate_ip(self, cmd):
152
# instantiate the RTL IP
0 commit comments