Spaces:
Sleeping
Sleeping
File size: 551 Bytes
66c9c8a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | warp.sparse
===============================
.. currentmodule:: warp.sparse
..
.. toctree::
:maxdepth: 2
Warp includes a sparse linear algebra module ``warp.sparse`` that implements some common operations for manipulating sparse matrices that arise in simulation.
Sparse Matrices
-------------------------
Currently `warp.sparse` supports Block Sparse Row (BSR) matrices, the BSR format can also be used to represent Compressed Sparse Row (CSR) matrices as a special case with a 1x1 block size.
.. automodule:: warp.sparse
:members:
|