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

[doc] Fix stride_{a,b} descriptions in getrs_batch (LAPACK) #240

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 8 additions & 2 deletions docs/domains/lapack/getrs_batch.rst
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ lda
Leading dimension of :math:`A_i`.

stride_a
Stride between the beginnings of matrices :math:`B_i` inside the batch array ``b``.
Stride between the beginnings of matrices :math:`A_i` inside the batch array ``a``.

ipiv
``ipiv`` array, as returned by the Strided API of the :ref:`onemkl_lapack_getrf_batch_buffer` function.
Expand All @@ -93,6 +93,9 @@ b
ldb
Leading dimension of :math:`B_i`.

stride_b
Stride between the beginnings of matrices :math:`B_i` inside the batch array ``b``.

batch_size
Specifies the number of problems in a batch.

Expand Down Expand Up @@ -243,7 +246,7 @@ lda
Leading dimension of :math:`A_i`.

stride_a
Stride between the beginnings of matrices :math:`B_i` inside the batch array ``b``.
Stride between the beginnings of matrices :math:`A_i` inside the batch array ``a``.

ipiv
``ipiv`` array, as returned by getrf_batch (USM) function.
Expand All @@ -257,6 +260,9 @@ b
ldb
Leading dimensions of :math:`B_i`.

stride_b
Stride between the beginnings of matrices :math:`B_i` inside the batch array ``b``.

batch_size
Number of problems in a batch.

Expand Down
7 changes: 5 additions & 2 deletions docs/domains/lapack/getrs_batch_scratchpad_size.rst
Original file line number Diff line number Diff line change
Expand Up @@ -114,14 +114,17 @@ lda
Leading dimension of :math:`A_i`.

stride_a
Stride between the beginnings of matrices :math:`B_i` inside the batch array ``b``.
Stride between the beginnings of matrices :math:`A_i` inside the batch array ``a``.

stride_ipiv
Stride between the beginnings of arrays ipivi inside the array ``ipiv``.
Stride between the beginnings of arrays :math:`ipiv_i` inside the array ``ipiv``.

ldb
Leading dimension of :math:`B_i`.

stride_b
Stride between the beginnings of matrices :math:`B_i` inside the batch array ``b``.

batch_size
Number of problems in a batch.

Expand Down