Skip to content

Commit 20e0c2b

Browse files
committed
[Concat] Remove instream width padded duplicate
1 parent 1cb5877 commit 20e0c2b

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/finn/custom_op/fpgadataflow/concat.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929

3030
import numpy as np
3131
from qonnx.core.datatype import DataType
32-
from qonnx.util.basic import roundup_to_integer_multiple
3332

3433
from finn.custom_op.fpgadataflow.hwcustomop import HWCustomOp
3534

@@ -134,10 +133,6 @@ def execute_node(self, context, graph):
134133
result = np.concatenate(inp_values, axis=-1)
135134
context[node.output[0]] = result
136135

137-
def get_instream_width_padded(self, ind=0):
138-
in_width = self.get_instream_width(ind)
139-
return roundup_to_integer_multiple(in_width, 8)
140-
141136
def get_verilog_top_module_intf_names(self):
142137
intf_names = super().get_verilog_top_module_intf_names()
143138
n_inputs = self.get_n_inputs()

0 commit comments

Comments
 (0)