Commit 84d5c89e authored by AntoinePrv's avatar AntoinePrv
Browse files

Deprecation warning

parent f6f147a7
...@@ -37,7 +37,7 @@ class SpSpMM(torch.autograd.Function): ...@@ -37,7 +37,7 @@ class SpSpMM(torch.autograd.Function):
@staticmethod @staticmethod
def backward(ctx, grad_indexC, grad_valueC): def backward(ctx, grad_indexC, grad_valueC):
m, k, n = ctx.m, ctx.k, ctx.n m, k, n = ctx.m, ctx.k, ctx.n
indexA, valueA, indexB, valueB, indexC = ctx.saved_variables indexA, valueA, indexB, valueB, indexC = ctx.saved_tensors
grad_valueA = grad_valueB = None grad_valueA = grad_valueB = None
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment