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
|
.. meta::
:description: hipSOLVER documentation and API reference library
:keywords: hipSOLVER, rocSOLVER, ROCm, API, documentation
.. _library_dense:
********************************************************************
hipSOLVER compatibility API - Dense Matrices
********************************************************************
This document 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 backend documentation
at `cuSOLVER API <https://docs.nvidia.com/cuda/cusolver/>`_ and/or :doc:`rocSOLVER API <rocsolver:reference/intro>`.
For ease of porting from existing cuSOLVER applications to hipSOLVER, functions in the hipsolverDn compatibility API are designed to have
method signatures that are consistent with the cusolverDn interface. However, :ref:`performance issues <dense_performance>` 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 :ref:`usage_label` for additional :ref:`considerations regarding the use of
the compatibility API <dense_api_differences>`.
* :ref:`dense_types`
* :ref:`dense_helpers`
* :ref:`dense_auxiliary`
* :ref:`dense_lapackfunc`
* :ref:`dense_lapacklike`
|