| 948 | return torch.nn.functional.leaky_relu(input, 0.02) |
| 949 | |
| 950 | class LeakyReLU2(Module): |
| 951 | def forward(self, input): |
| 952 | return torch.ops.aten.leaky_relu_(input, 0.02) |
| 953 | |
| 954 | @tvm.script.ir_module |
| 955 | class expected_for_1_2: |
no outgoing calls
searching dependent graphs…