Skip to content
Merged
Changes from all commits
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
1 change: 1 addition & 0 deletions backends/transforms/fuse_conv_with_clamp.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ def call(self, graph_module: torch.fx.GraphModule):
if (
preceding_op.op == "call_function"
and preceding_op.target in self.FUSEABLE_OPS
and len(preceding_op.users) == 1
):
# Delete activation
output_min_max = self.get_output_min_max_from_activation(
Expand Down
Loading