diff options
author | julie <julielangou@users.noreply.github.com> | 2011-01-04 19:58:09 +0000 |
---|---|---|
committer | julie <julielangou@users.noreply.github.com> | 2011-01-04 19:58:09 +0000 |
commit | 6cb10ef589f5c8840d21fc937ccc57cf4112b70d (patch) | |
tree | 3a59ad9956ba5c40dd7378244a70c9e485e95ebd /BLAS/SRC | |
parent | 8326a972ee36357ae635e91b43e9c250ed35a202 (diff) | |
download | lapack-6cb10ef589f5c8840d21fc937ccc57cf4112b70d.tar.gz lapack-6cb10ef589f5c8840d21fc937ccc57cf4112b70d.tar.bz2 lapack-6cb10ef589f5c8840d21fc937ccc57cf4112b70d.zip |
minor fix: add comment to warn that vector and matrix arguments are not referenced when N = 0, or M = 0
Diffstat (limited to 'BLAS/SRC')
-rw-r--r-- | BLAS/SRC/cgbmv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/cgemv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/chbmv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/chemv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/chpmv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/ctbmv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/ctpmv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/ctrmv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/dgbmv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/dgemv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/dsbmv.f | 3 | ||||
-rw-r--r-- | BLAS/SRC/dspmv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/dsymv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/dtbmv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/dtpmv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/dtrmv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/sgbmv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/sgemv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/ssbmv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/sspmv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/ssymv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/stbmv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/stpmv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/strmv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/zgbmv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/zgemv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/zhbmv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/zhemv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/zhpmv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/ztbmv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/ztpmv.f | 1 | ||||
-rw-r--r-- | BLAS/SRC/ztrmv.f | 1 |
32 files changed, 34 insertions, 0 deletions
diff --git a/BLAS/SRC/cgbmv.f b/BLAS/SRC/cgbmv.f index 2a837dba..a3dd2799 100644 --- a/BLAS/SRC/cgbmv.f +++ b/BLAS/SRC/cgbmv.f @@ -122,6 +122,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/cgemv.f b/BLAS/SRC/cgemv.f index 96e625e1..b39e8dc5 100644 --- a/BLAS/SRC/cgemv.f +++ b/BLAS/SRC/cgemv.f @@ -95,6 +95,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/chbmv.f b/BLAS/SRC/chbmv.f index 1b1c330e..e7bacae5 100644 --- a/BLAS/SRC/chbmv.f +++ b/BLAS/SRC/chbmv.f @@ -124,6 +124,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/chemv.f b/BLAS/SRC/chemv.f index 7026f5b1..3ddca361 100644 --- a/BLAS/SRC/chemv.f +++ b/BLAS/SRC/chemv.f @@ -93,6 +93,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/chpmv.f b/BLAS/SRC/chpmv.f index 158be5a7..264bdb24 100644 --- a/BLAS/SRC/chpmv.f +++ b/BLAS/SRC/chpmv.f @@ -90,6 +90,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/ctbmv.f b/BLAS/SRC/ctbmv.f index 5a879fa0..a9f4d896 100644 --- a/BLAS/SRC/ctbmv.f +++ b/BLAS/SRC/ctbmv.f @@ -129,6 +129,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/ctpmv.f b/BLAS/SRC/ctpmv.f index b63742cc..03660f11 100644 --- a/BLAS/SRC/ctpmv.f +++ b/BLAS/SRC/ctpmv.f @@ -89,6 +89,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/ctrmv.f b/BLAS/SRC/ctrmv.f index 9aef3c0d..631df7ac 100644 --- a/BLAS/SRC/ctrmv.f +++ b/BLAS/SRC/ctrmv.f @@ -92,6 +92,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/dgbmv.f b/BLAS/SRC/dgbmv.f index c3dc64aa..630878b7 100644 --- a/BLAS/SRC/dgbmv.f +++ b/BLAS/SRC/dgbmv.f @@ -119,6 +119,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/dgemv.f b/BLAS/SRC/dgemv.f index 59e11b88..064bdb9f 100644 --- a/BLAS/SRC/dgemv.f +++ b/BLAS/SRC/dgemv.f @@ -93,6 +93,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/dsbmv.f b/BLAS/SRC/dsbmv.f index 8c82d1fa..e7973517 100644 --- a/BLAS/SRC/dsbmv.f +++ b/BLAS/SRC/dsbmv.f @@ -118,8 +118,11 @@ * Y. INCY must not be zero. * Unchanged on exit. * +* Further Details +* =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/dspmv.f b/BLAS/SRC/dspmv.f index f6e121e7..4067b0e3 100644 --- a/BLAS/SRC/dspmv.f +++ b/BLAS/SRC/dspmv.f @@ -88,6 +88,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/dsymv.f b/BLAS/SRC/dsymv.f index fa552f28..5fa4341a 100644 --- a/BLAS/SRC/dsymv.f +++ b/BLAS/SRC/dsymv.f @@ -91,6 +91,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/dtbmv.f b/BLAS/SRC/dtbmv.f index a87ffdea..cfcdb15a 100644 --- a/BLAS/SRC/dtbmv.f +++ b/BLAS/SRC/dtbmv.f @@ -129,6 +129,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/dtpmv.f b/BLAS/SRC/dtpmv.f index c5bc112d..b25a4058 100644 --- a/BLAS/SRC/dtpmv.f +++ b/BLAS/SRC/dtpmv.f @@ -89,6 +89,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/dtrmv.f b/BLAS/SRC/dtrmv.f index b1ca93a4..0381e1d2 100644 --- a/BLAS/SRC/dtrmv.f +++ b/BLAS/SRC/dtrmv.f @@ -92,6 +92,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/sgbmv.f b/BLAS/SRC/sgbmv.f index aaa8b1a1..1136f702 100644 --- a/BLAS/SRC/sgbmv.f +++ b/BLAS/SRC/sgbmv.f @@ -119,6 +119,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/sgemv.f b/BLAS/SRC/sgemv.f index 2f2cbb0c..90eb6394 100644 --- a/BLAS/SRC/sgemv.f +++ b/BLAS/SRC/sgemv.f @@ -93,6 +93,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/ssbmv.f b/BLAS/SRC/ssbmv.f index 16893a29..88b4adc1 100644 --- a/BLAS/SRC/ssbmv.f +++ b/BLAS/SRC/ssbmv.f @@ -122,6 +122,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/sspmv.f b/BLAS/SRC/sspmv.f index 0b844982..c9518517 100644 --- a/BLAS/SRC/sspmv.f +++ b/BLAS/SRC/sspmv.f @@ -88,6 +88,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/ssymv.f b/BLAS/SRC/ssymv.f index 19f6e76f..a43bd9b0 100644 --- a/BLAS/SRC/ssymv.f +++ b/BLAS/SRC/ssymv.f @@ -91,6 +91,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/stbmv.f b/BLAS/SRC/stbmv.f index c0b8f113..6e57a9d5 100644 --- a/BLAS/SRC/stbmv.f +++ b/BLAS/SRC/stbmv.f @@ -129,6 +129,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/stpmv.f b/BLAS/SRC/stpmv.f index 71ea49a3..3c02c275 100644 --- a/BLAS/SRC/stpmv.f +++ b/BLAS/SRC/stpmv.f @@ -89,6 +89,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/strmv.f b/BLAS/SRC/strmv.f index 743c0d73..3f1f1ae3 100644 --- a/BLAS/SRC/strmv.f +++ b/BLAS/SRC/strmv.f @@ -92,6 +92,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/zgbmv.f b/BLAS/SRC/zgbmv.f index 5a2228d0..35ca8044 100644 --- a/BLAS/SRC/zgbmv.f +++ b/BLAS/SRC/zgbmv.f @@ -122,6 +122,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/zgemv.f b/BLAS/SRC/zgemv.f index 72729603..143be030 100644 --- a/BLAS/SRC/zgemv.f +++ b/BLAS/SRC/zgemv.f @@ -95,6 +95,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/zhbmv.f b/BLAS/SRC/zhbmv.f index bca0da5f..6f6ef0b1 100644 --- a/BLAS/SRC/zhbmv.f +++ b/BLAS/SRC/zhbmv.f @@ -124,6 +124,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/zhemv.f b/BLAS/SRC/zhemv.f index 341362b4..d2e7d132 100644 --- a/BLAS/SRC/zhemv.f +++ b/BLAS/SRC/zhemv.f @@ -93,6 +93,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/zhpmv.f b/BLAS/SRC/zhpmv.f index b686108b..c76c46a3 100644 --- a/BLAS/SRC/zhpmv.f +++ b/BLAS/SRC/zhpmv.f @@ -90,6 +90,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/ztbmv.f b/BLAS/SRC/ztbmv.f index 7c85c1b5..23d5f4c4 100644 --- a/BLAS/SRC/ztbmv.f +++ b/BLAS/SRC/ztbmv.f @@ -129,6 +129,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/ztpmv.f b/BLAS/SRC/ztpmv.f index 5a7b3b8b..5832692a 100644 --- a/BLAS/SRC/ztpmv.f +++ b/BLAS/SRC/ztpmv.f @@ -89,6 +89,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. diff --git a/BLAS/SRC/ztrmv.f b/BLAS/SRC/ztrmv.f index 43001729..8a9e7ea5 100644 --- a/BLAS/SRC/ztrmv.f +++ b/BLAS/SRC/ztrmv.f @@ -92,6 +92,7 @@ * =============== * * Level 2 Blas routine. +* The vector and matrix arguments are not referenced when N = 0, or M = 0 * * -- Written on 22-October-1986. * Jack Dongarra, Argonne National Lab. |