Skip to content

Commit 9e7c7ae

Browse files
Updates the documentation of xGEMV and xGBMV related to when M=0 and N=0
1 parent de2b976 commit 9e7c7ae

File tree

8 files changed

+8
-0
lines changed

8 files changed

+8
-0
lines changed

BLAS/SRC/cgbmv.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@
148148
*> ( 1 + ( n - 1 )*abs( INCY ) ) otherwise.
149149
*> Before entry, the incremented array Y must contain the
150150
*> vector y. On exit, Y is overwritten by the updated vector y.
151+
*> If either m or n is zero, then Y not referenced.
151152
*> \endverbatim
152153
*>
153154
*> \param[in] INCY

BLAS/SRC/cgemv.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@
119119
*> Before entry with BETA non-zero, the incremented array Y
120120
*> must contain the vector y. On exit, Y is overwritten by the
121121
*> updated vector y.
122+
*> If either m or n is zero, then Y not referenced.
122123
*> \endverbatim
123124
*>
124125
*> \param[in] INCY

BLAS/SRC/dgbmv.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@
146146
*> ( 1 + ( n - 1 )*abs( INCY ) ) otherwise.
147147
*> Before entry, the incremented array Y must contain the
148148
*> vector y. On exit, Y is overwritten by the updated vector y.
149+
*> If either m or n is zero, then Y not referenced.
149150
*> \endverbatim
150151
*>
151152
*> \param[in] INCY

BLAS/SRC/dgemv.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@
117117
*> Before entry with BETA non-zero, the incremented array Y
118118
*> must contain the vector y. On exit, Y is overwritten by the
119119
*> updated vector y.
120+
*> If either m or n is zero, then Y not referenced.
120121
*> \endverbatim
121122
*>
122123
*> \param[in] INCY

BLAS/SRC/sgbmv.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@
146146
*> ( 1 + ( n - 1 )*abs( INCY ) ) otherwise.
147147
*> Before entry, the incremented array Y must contain the
148148
*> vector y. On exit, Y is overwritten by the updated vector y.
149+
*> If either m or n is zero, then Y not referenced.
149150
*> \endverbatim
150151
*>
151152
*> \param[in] INCY

BLAS/SRC/sgemv.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@
117117
*> Before entry with BETA non-zero, the incremented array Y
118118
*> must contain the vector y. On exit, Y is overwritten by the
119119
*> updated vector y.
120+
*> If either m or n is zero, then Y not referenced.
120121
*> \endverbatim
121122
*>
122123
*> \param[in] INCY

BLAS/SRC/zgbmv.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@
148148
*> ( 1 + ( n - 1 )*abs( INCY ) ) otherwise.
149149
*> Before entry, the incremented array Y must contain the
150150
*> vector y. On exit, Y is overwritten by the updated vector y.
151+
*> If either m or n is zero, then Y not referenced.
151152
*> \endverbatim
152153
*>
153154
*> \param[in] INCY

BLAS/SRC/zgemv.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@
119119
*> Before entry with BETA non-zero, the incremented array Y
120120
*> must contain the vector y. On exit, Y is overwritten by the
121121
*> updated vector y.
122+
*> If either m or n is zero, then Y not referenced.
122123
*> \endverbatim
123124
*>
124125
*> \param[in] INCY

0 commit comments

Comments
 (0)