(x, y)
| 37 | tangent = torch.randn(10, 10) |
| 38 | |
| 39 | def fn(x, y): |
| 40 | return x ** 2 + y ** 2 |
| 41 | |
| 42 | # All forward AD computation must be performed in the context of |
| 43 | # a ``dual_level`` context. All dual tensors created in such a context |
no outgoing calls
no test coverage detected