MCPcopy Create free account
hub / github.com/HazyResearch/spacetime / forward

Method forward

model/functional/toeplitz.py:102–105  ·  view source on GitHub ↗
(ctx, u, v)

Source from the content-addressed store, hash-verified

100class 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):

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected