mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
Rewrite Python built-in class `super()` calls. Only non-semantic changes should be applied. - #94587 - #94588 - #94592 Also, methods with only a `super()` call are removed: ```diff class MyModule(nn.Module): - def __init__(self): - super().__init__() - def forward(self, ...): ... ``` Some cases that change the semantics should be kept unchanged. E.g.:f152a79be9/caffe2/python/net_printer.py (L184-L190)f152a79be9/test/test_jit_fuser_te.py (L2628-L2635)Pull Request resolved: https://github.com/pytorch/pytorch/pull/94592 Approved by: https://github.com/ezyang, https://github.com/seemethere
27 lines
625 B
Python
27 lines
625 B
Python
import argparse
|
|
import torch
|
|
|
|
class Module(torch.nn.Module):
|
|
def __init__(self):
|
|
super().__init__()
|
|
self.conv = torch.nn.Conv2d(1, 10, 5, 1)
|
|
|
|
def forward(self, x):
|
|
y = self.conv(x)
|
|
return y
|
|
|
|
def run_model(level):
|
|
m = Module().eval()
|
|
d = torch.rand(1, 1, 112, 112)
|
|
with torch.backends.mkldnn.verbose(level):
|
|
m(d)
|
|
|
|
if __name__ == '__main__':
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument("--verbose-level", default=0, type=int)
|
|
args = parser.parse_args()
|
|
try:
|
|
run_model(args.verbose_level)
|
|
except Exception as e:
|
|
print(e)
|