Skip to content

Commit bccaa10

Browse files
committed
merge
2 parents 76d04d6 + 668dd20 commit bccaa10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

torch_sparse/coalesce.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ def coalesce(index, value, m, n, op="add"):
2020
"""
2121

2222
storage = SparseStorage(row=index[0], col=index[1], value=value,
23-
sparse_sizes=torch.Size([m, n], is_sorted=False))
23+
sparse_sizes=torch.Size([m, n]), is_sorted=False)
2424
storage = storage.coalesce(reduce=op)
2525
return torch.stack([storage.row(), storage.col()], dim=0), storage.value()

0 commit comments

Comments
 (0)