| 1842 | return gv |
| 1843 | |
| 1844 | class BatchNorm2dCustom(Module): |
| 1845 | def __init__(self): |
| 1846 | super().__init__() |
| 1847 | self.bn = torch.nn.BatchNorm2d(3, eps=0.001, momentum=0.01) |
| 1848 | |
| 1849 | def forward(self, input): |
| 1850 | return self.bn(input) |
| 1851 | |
| 1852 | @tvm.script.ir_module |
| 1853 | class expected2: |
no outgoing calls
searching dependent graphs…