(self, x: Tensor)
| 363 | return x |
| 364 | |
| 365 | def inc(self, x: Tensor) -> Tensor: |
| 366 | self.add_summary("x", x) |
| 367 | y = x + self.state["inc"] |
| 368 | self.add_module_output("y", y) |
| 369 | return y |
| 370 | |
| 371 | def invoke_self_multiple_times_causing_conflict(self, x: Tensor, n: int) -> Tensor: |
| 372 | for _ in range(n): |
no test coverage detected