Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrap tridiagonal methods from cuSPARSE #297

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
1 change: 1 addition & 0 deletions docs/source/reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Library Wrapper Routines
reference_cusolver
reference_cula
reference_pcula
reference_cusparse

High-Level Routines
-------------------
Expand Down
43 changes: 43 additions & 0 deletions docs/source/reference_cusparse.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
.. -*- rst -*-

.. currentmodule:: skcuda.cusparse

CUSPARSE Routines
=================

Helper Routines
---------------
.. autosummary::
:toctree: generated/
:nosignatures:

cusparseCreate
cusparseDestroy
cusparseGetVersion
cusparseSetStream
cusparseGetStream

Wrapper Routines
----------------

Single Precision Routines
^^^^^^^^^^^^^^^^^^^^^^^^^
.. autosummary::
:toctree: generated/
:nosignatures:

cusparseSgtsv2StridedBatch_bufferSizeExt
cusparseSgtsv2StridedBatch
cusparseSgtsvInterleavedBatch_bufferSizeExt
cusparseSgtsvInterleavedBatch

Double Precision Routines
^^^^^^^^^^^^^^^^^^^^^^^^^
.. autosummary::
:toctree: generated/
:nosignatures:

cusparseDgtsv2StridedBatch_bufferSizeExt
cusparseDgtsv2StridedBatch
cusparseDgtsvInterleavedBatch_bufferSizeExt
cusparseDgtsvInterleavedBatch
Loading