Skip to content

Commit 15533de

Browse files
committed
reviewer feedback
1 parent b111cd0 commit 15533de

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs_input/api/linalg/matvec/matmul.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ is supported for any tensor with a rank higher than 2.
1313
.. doxygenfunction:: matmul(const OpA &A, const OpB &B, float alpha = 1.0, float beta = 0.0)
1414
.. doxygenfunction:: matmul(const OpA &A, const OpB &B, const int32_t (&axis)[2], float alpha = 1.0, float beta = 0.0)
1515

16-
For information on experimental sparse tensor support for SpMM, please see :ref:`_sparse_tensor_api`.
16+
For information on experimental sparse tensor support for Sparse-Matrix x Matrix (SpMM), please see :ref:`_sparse_tensor_api`.
1717

1818
Examples
1919
~~~~~~~~

docs_input/basics/sparse_tensor.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ operations for sparse-to-dense, dense-to-sparse, matmul, and solve::
9191

9292
(A = sparse2dense(Acoo)).run(exec);
9393
(Acoo = dense2sparse(D)).run(exec);
94-
(C = matmul(Acoo, B)).run(exec); // SpMM only
95-
(X = solve(Acsr, Y)).run(exec); // on CSR only
94+
(C = matmul(Acoo, B)).run(exec); // Sparse-Matrix x Matrix (SpMM) only
95+
(X = solve(Acsr, Y)).run(exec); // on CSR format only
9696

9797
We expect the assortment of supported sparse operations and storage
9898
formats to grow if the experimental implementation is well-received.
@@ -173,8 +173,8 @@ where the tensor format ``TF`` is part of the template::
173173
StorageP positions_[LVL];
174174
}
175175

176-
Using this design, many tests (e.g. is this tensor in COO format) can
177-
already be evaluate as ``constexpr`` at compile-time, keeping the binary
176+
Using this design, many tests (e.g. is this tensor in COO format)
177+
evaluate as ``constexpr`` at compile-time, keeping the binary
178178
size restricted to only what is actually used in a MatX computation.
179179

180180

0 commit comments

Comments
 (0)