(ctx, u, v)
| 100 | class TriangularToeplitzMultPadded(torch.autograd.Function): |
| 101 | @staticmethod |
| 102 | def forward(ctx, u, v): |
| 103 | ctx.save_for_backward(u, v) |
| 104 | output = triangular_toeplitz_multiply_(u, v) |
| 105 | return output |
| 106 | |
| 107 | @staticmethod |
| 108 | def backward(ctx, grad): |
nothing calls this directly
no test coverage detected