Skip to content

Commit cc6d9a5

Browse files
authored
Fix pyre
Differential Revision: D68986388 Pull Request resolved: pytorch/executorch#8124
1 parent f910ca9 commit cc6d9a5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

backends/arm/_passes/fuse_batchnorm2d_pass.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ def try_set_param(
114114
if not try_set_param(conv_bias_node, fused_conv_bias) and try_set_param(
115115
bn_bias_node, fused_conv_bias
116116
):
117+
# pyre-ignore[60]
117118
# Conv didn't have bias but batchnorm did, steal bias from batchnorm.
118119
conv_args = (*conv.args[0:2], bn_bias_node, *conv.args[3:])
119120
conv.args = conv_args

0 commit comments

Comments
 (0)