(self, x, y)
| 113 | |
| 114 | class MyElementwiseModule(torch.nn.Module): |
| 115 | def forward(self, x, y): |
| 116 | return x * y + y |
| 117 | |
| 118 | mem = MyElementwiseModule() |
| 119 | lowered = lower_to_elementwise_interpreter(mem) |
nothing calls this directly
no outgoing calls
no test coverage detected