Skip to content
Snippets Groups Projects
Commit 0ab8a37a authored by auphelia's avatar auphelia
Browse files

[Transform] delete "depthwise" argument in HLS conversion of ConvInputGen

parent 523ca0a2
No related branches found
No related tags found
No related merge requests found
......@@ -49,7 +49,7 @@ class InferConvInpGen(Transformation):
graph_modified = False
for n in graph.node:
node_ind += 1
if n.op_type == "Im2Col" and not getCustomOp(n).get_nodeattr("dw"):
if n.op_type == "Im2Col":
i2c_input = n.input[0]
i2c_output = n.output[0]
i2c_in_shape = model.get_tensor_shape(i2c_input)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment