(ctx, u, v)
| 58 | class TriangularToeplitzMult(torch.autograd.Function): |
| 59 | @staticmethod |
| 60 | def forward(ctx, u, v): |
| 61 | ctx.save_for_backward(u, v) |
| 62 | return triangular_toeplitz_multiply_(u, v) |
| 63 | |
| 64 | @staticmethod |
| 65 | def backward(ctx, grad): |
nothing calls this directly
no test coverage detected