| 858 | return torch.nn.functional.hardtanh(input) |
| 859 | |
| 860 | class Hardtanh3(torch.nn.Module): |
| 861 | def forward(self, input): |
| 862 | return torch.ops.aten.hardtanh_(input) |
| 863 | |
| 864 | @tvm.script.ir_module |
| 865 | class expected_for_1_2: |
no outgoing calls
searching dependent graphs…