diff --git a/backends/transforms/fuse_conv_with_clamp.py b/backends/transforms/fuse_conv_with_clamp.py index 3f45296b26c..ae7c505d139 100644 --- a/backends/transforms/fuse_conv_with_clamp.py +++ b/backends/transforms/fuse_conv_with_clamp.py @@ -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(