Skip to content

Commit 7eec886

Browse files
authored
[oneMKL][LAPACK] Add missing constraint on parameter 'n' for orgqr functions (#408)
1 parent 9174607 commit 7eec886

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

source/elements/oneMKL/source/domains/lapack/orgqr.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ m
8181
The number of rows in the matrix :math:`A` (:math:`0 \le m`).
8282

8383
n
84-
The number of columns in the matrix :math:`A` (:math:`0 \le n`).
84+
The number of columns in the matrix :math:`A` (:math:`0 \le n \le m`).
8585

8686
k
8787
The number of elementary reflectors whose product defines the
@@ -161,7 +161,7 @@ m
161161
The number of rows in the matrix :math:`A` (:math:`0 \le m`).
162162

163163
n
164-
The number of columns in the matrix :math:`A` (:math:`0 \le n`).
164+
The number of columns in the matrix :math:`A` (:math:`0 \le n \le m`).
165165

166166
k
167167
The number of elementary reflectors whose product defines the

source/elements/oneMKL/source/domains/lapack/orgqr_batch.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ m
6161
Number of rows in the matrices :math:`A_i` (:math:`0 \le m`).
6262

6363
n
64-
Number of columns in the matrices :math:`A_i` (:math:`0 \le n`).
64+
Number of columns in the matrices :math:`A_i` (:math:`0 \le n \le m`).
6565

6666
k
6767
Number of elementary reflectors whose product defines the matrices :math:`Q_i` (:math:`0 \le k \le n`).
@@ -258,7 +258,7 @@ m
258258
Number of rows in the matrices :math:`A_i` (:math:`0 \le m`).
259259

260260
n
261-
Number of columns in the matrices :math:`A_i` (:math:`0 \le n`).
261+
Number of columns in the matrices :math:`A_i` (:math:`0 \le n \le m`).
262262

263263
k
264264
Number of elementary reflectors whose product defines the matrices :math:`Q_i` (:math:`0 \le k \le n`).

0 commit comments

Comments
 (0)