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

Method forward

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected