| 1903 | verify_model(model_2, example_args, binding_2, expected2) |
| 1904 | |
| 1905 | class BatchNorm2dTraining(Module): |
| 1906 | def __init__(self): |
| 1907 | super().__init__() |
| 1908 | self.bn = torch.nn.BatchNorm2d(3, track_running_stats=True) |
| 1909 | |
| 1910 | def forward(self, input): |
| 1911 | return self.bn(input) |
| 1912 | |
| 1913 | @tvm.script.ir_module |
| 1914 | class expected3: |
no outgoing calls
searching dependent graphs…