Skip to content

Commit 78b37e0

Browse files
arrufatbrianjoholly1238
authored
Fix typo in fx_conv_bn_fuser.py (pytorch#1440)
Co-authored-by: Brian Johnson <[email protected]> Co-authored-by: holly1238 <[email protected]>
1 parent a7aa02c commit 78b37e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

intermediate_source/fx_conv_bn_fuser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def __init__(self):
5151
nn.BatchNorm2d(1),
5252
nn.Conv2d(1, 1, 1),
5353
)
54-
self.wrapped = WrappedBatchnorm()
54+
self.wrapped = WrappedBatchNorm()
5555

5656
def forward(self, x):
5757
x = self.conv1(x)
@@ -259,4 +259,4 @@ def benchmark(model, iters=20):
259259
# feedback you have about using it. Please feel free to use the
260260
# PyTorch Forums (https://discuss.pytorch.org/) and the issue tracker
261261
# (https://github.com/pytorch/pytorch/issues) to provide any feedback
262-
# you might have.
262+
# you might have.

0 commit comments

Comments
 (0)