1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
.. _library_compat:
########################################
hipSOLVER Compatibility API
########################################
Currently, this API document only provides the method signatures for the wrapper functions that are currently implemented in hipSOLVER.
For a complete description of the functions' behavior and arguments, see the corresponding backends' documentation
at `cuSOLVER API <https://docs.nvidia.com/cuda/cusolver/index.html#cuds-api>`_ and/or `rocSOLVER API <https://rocsolver.readthedocs.io/en/latest/api_index.html>`_.
For ease of porting from existing cuSOLVER applications to hipSOLVER, functions in hipSOLVER's compatibility API are designed to have
method signatures that are consistent with the cusolverDn interface. However, :ref:`performance issues <porting_issues>` may arise when
using the rocSOLVER backend due to differing workspace requirements. Therefore, users interested in achieving the best performance with
the rocSOLVER backend should consult the :ref:`regular API documentation <library_api>`, and transition from the compatibility API to
the regular API at the earliest convenience. Please refer to the user guide for additional :ref:`considerations regarding the use of
the compatibility API <compat_api_differences>`.
.. toctree::
:maxdepth: 5
compat_types
compat_helperfunc
compat_auxiliaryfunc
compat_lapackfunc
compat_lapacklike
|