Skip to content

Commit 3934735

Browse files
committed
typo
1 parent 15533de commit 3934735

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs_input/basics/sparse_tensor.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ The current experimental sparse support in MatX provides efficient
9090
operations for sparse-to-dense, dense-to-sparse, matmul, and solve::
9191

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

9797
We expect the assortment of supported sparse operations and storage
9898
formats to grow if the experimental implementation is well-received.
@@ -159,7 +159,7 @@ The ``sparse_tensor_t`` type is essentially the following class,
159159
where the tensor format ``TF`` is part of the template::
160160

161161
template <typename VAL, typename CRD, typename POS, typename TF, ...>
162-
class sparse_tensor_t : : public detail::tensor_impl_t<...> {
162+
class sparse_tensor_t : public detail::tensor_impl_t<...> {
163163
164164
static constexpr int DIM = TF::DIM;
165165
static constexpr int LVL = TF::LVL;

0 commit comments

Comments
 (0)