Skip to content

Commit 79e08cf

Browse files
committed
typo
1 parent eb4b824 commit 79e08cf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ Both input sparse matrices need to be **coalesced** (use the `coalesced` attribu
202202
* **m** *(int)* - The first dimension of first corresponding dense matrix.
203203
* **k** *(int)* - The second dimension of first corresponding dense matrix and first dimension of second corresponding dense matrix.
204204
* **n** *(int)* - The second dimension of second corresponding dense matrix.
205-
* **coalesced** *(bool, optional)*: If set to `True`, will coalesce both input sparse matrices (default: `False`).
205+
* **coalesced** *(bool, optional)*: If set to `True`, will coalesce both input sparse matrices. (default: `False`)
206206

207207
### Returns
208208

torch_sparse/spspmm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def spspmm(indexA, valueA, indexB, valueB, m, k, n, coalesced=False):
2121
first dimension of second corresponding dense matrix.
2222
n (int): The second dimension of second corresponding dense matrix.
2323
coalesced (bool, optional): If set to :obj:`True`, will coalesce both
24-
input sparse matrices (default: :obj:`False`).
24+
input sparse matrices. (default: :obj:`False`)
2525
2626
:rtype: (:class:`LongTensor`, :class:`Tensor`)
2727
"""

0 commit comments

Comments
 (0)