(self, x)
| 34 | self.relu = torch.nn.ReLU() |
| 35 | |
| 36 | def forward(self, x): |
| 37 | return self.relu(x) + 1.0 |
| 38 | |
| 39 | # Symbolically trace an instance of `M`. After tracing, `self.relu` is |
| 40 | # represented as a `call_module` Node. The full operation in the |
nothing calls this directly
no outgoing calls
no test coverage detected