Skip to content

Commit 84d5c89

Browse files
committed
Deprecation warning
1 parent f6f147a commit 84d5c89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

torch_sparse/spspmm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def forward(ctx, indexA, valueA, indexB, valueB, m, k, n):
3737
@staticmethod
3838
def backward(ctx, grad_indexC, grad_valueC):
3939
m, k, n = ctx.m, ctx.k, ctx.n
40-
indexA, valueA, indexB, valueB, indexC = ctx.saved_variables
40+
indexA, valueA, indexB, valueB, indexC = ctx.saved_tensors
4141

4242
grad_valueA = grad_valueB = None
4343

0 commit comments

Comments
 (0)