Commit 79e08cfb authored by rusty1s's avatar rusty1s
Browse files

typo

parent eb4b8247
...@@ -202,7 +202,7 @@ Both input sparse matrices need to be **coalesced** (use the `coalesced` attribu ...@@ -202,7 +202,7 @@ Both input sparse matrices need to be **coalesced** (use the `coalesced` attribu
* **m** *(int)* - The first dimension of first corresponding dense matrix. * **m** *(int)* - The first dimension of first corresponding dense matrix.
* **k** *(int)* - The second dimension of first corresponding dense matrix and first dimension of second corresponding dense matrix. * **k** *(int)* - The second dimension of first corresponding dense matrix and first dimension of second corresponding dense matrix.
* **n** *(int)* - The second dimension of second corresponding dense matrix. * **n** *(int)* - The second dimension of second corresponding dense matrix.
* **coalesced** *(bool, optional)*: If set to `True`, will coalesce both input sparse matrices (default: `False`). * **coalesced** *(bool, optional)*: If set to `True`, will coalesce both input sparse matrices. (default: `False`)
### Returns ### Returns
......
...@@ -21,7 +21,7 @@ def spspmm(indexA, valueA, indexB, valueB, m, k, n, coalesced=False): ...@@ -21,7 +21,7 @@ def spspmm(indexA, valueA, indexB, valueB, m, k, n, coalesced=False):
first dimension of second corresponding dense matrix. first dimension of second corresponding dense matrix.
n (int): The second dimension of second corresponding dense matrix. n (int): The second dimension of second corresponding dense matrix.
coalesced (bool, optional): If set to :obj:`True`, will coalesce both coalesced (bool, optional): If set to :obj:`True`, will coalesce both
input sparse matrices (default: :obj:`False`). input sparse matrices. (default: :obj:`False`)
:rtype: (:class:`LongTensor`, :class:`Tensor`) :rtype: (:class:`LongTensor`, :class:`Tensor`)
""" """
......
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