Your message dated 22 Feb 2005 12:25:16 -0500
with message-id <[EMAIL PROTECTED]>
and subject line Bug#283731: negative LDA in BLAS
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 30 Nov 2004 23:00:44 +0000
>From [EMAIL PROTECTED] Tue Nov 30 15:00:44 2004
Return-path: <[EMAIL PROTECTED]>
Received: from south-station-annex.mit.edu [18.72.1.2] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1CZGzD-0005L0-00; Tue, 30 Nov 2004 15:00:43 -0800
Received: from fort-point-station.mit.edu (FORT-POINT-STATION.MIT.EDU 
[18.7.7.76])
        by south-station-annex.mit.edu (8.12.4/8.9.2) with ESMTP id 
iAUN0XXg019972
        for <[EMAIL PROTECTED]>; Tue, 30 Nov 2004 18:00:40 -0500 (EST)
Received: from grand-central-station.mit.edu (GRAND-CENTRAL-STATION.MIT.EDU 
[18.7.21.82])
        by fort-point-station.mit.edu (8.12.4/8.9.2) with ESMTP id 
iAUMuHGa017744
        for <[EMAIL PROTECTED]>; Tue, 30 Nov 2004 17:56:17 -0500 (EST)
Received: from manawatu-mail-centre.mit.edu (OUTGOING-LEGACY.MIT.EDU 
[18.7.22.104])
        by grand-central-station.mit.edu (8.12.4/8.9.2) with ESMTP id 
iAUMuGr8024667
        for <[EMAIL PROTECTED]>; Tue, 30 Nov 2004 17:56:16 -0500 (EST)
Received: from gap01.mit.edu (GAP01.MIT.EDU [18.80.4.161])
        )
        by manawatu-mail-centre.mit.edu (8.12.4/8.12.4) with ESMTP id 
iAUMuENn011236
        for <[EMAIL PROTECTED]>; Tue, 30 Nov 2004 17:56:15 -0500 (EST)
From: George Pau  <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
Organization: MIT
To: [EMAIL PROTECTED]
Subject: negative LDA in BLAS
Date: Tue, 30 Nov 2004 17:56:29 -0500
User-Agent: KMail/1.6.2
MIME-Version: 1.0
Content-Disposition: inline
Content-Type: text/plain;
  charset="us-ascii"
Content-Transfer-Encoding: 7bit
Message-Id: <[EMAIL PROTECTED]>
X-Scanned-By: MIMEDefang 2.42
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
        autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: BLAS
Version: 1.1-9

When I use PETSC which uses BLAS, and while invoking KSPSolve, following error 
may occur:

" ** On entry to DGEMV  parameter number  6 had an illegal value"

According to the PETSC team, this is because some BLAS do not allow a negative 
LDA (even though it should be legal).   So, I suggest that this be corrected.

I am using Debian GNU/Linux 2.4.18, and libc-2.3.2.so.

Thanks,
George


---------------------------------------
Received: (at 283731-done) by bugs.debian.org; 22 Feb 2005 17:25:57 +0000
>From [EMAIL PROTECTED] Tue Feb 22 09:25:57 2005
Return-path: <[EMAIL PROTECTED]>
Received: from h-66-134-96-17.phlapafg.covad.net (intech19.enhanced.com) 
[66.134.96.17] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1D3dnJ-0007Yw-00; Tue, 22 Feb 2005 09:25:57 -0800
Received: from camm by intech19.enhanced.com with local (Exim 3.35 #1 (Debian))
        id 1D3dme-0007Gh-00; Tue, 22 Feb 2005 12:25:16 -0500
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Re: Bug#283731: negative LDA in BLAS
References: <[EMAIL PROTECTED]>
From: Camm Maguire <[EMAIL PROTECTED]>
Date: 22 Feb 2005 12:25:16 -0500
In-Reply-To: <[EMAIL PROTECTED]>
Message-ID: <[EMAIL PROTECTED]>
Lines: 96
User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: quoted-printable
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 

Greetings!  Negative LDA should trigger an error according to the blas
spec.  For example, from the dgemv man page:

DGEMV(l)                   BLAS routine                  DGEMV(l)

NAME
       DGEMV - perform one of the matrix-vector operations   y :=3D
       alpha*A*x + beta*y, or y :=3D alpha*A'*x + beta*y,

SYNOPSIS
       SUBROUTINE DGEMV ( TRANS, M, N, ALPHA, A,  LDA,  X,  INCX,
                        BETA, Y, INCY )

           DOUBLE       PRECISION ALPHA, BETA

           INTEGER      INCX, INCY, LDA, M, N

           CHARACTER*1  TRANS

           DOUBLE       PRECISION A( LDA, * ), X( * ), Y( * )

PURPOSE
       DGEMV  performs one of the matrix-vector operations

       where  alpha and beta are scalars, x and y are vectors and
       A is an m by n matrix.

PARAMETERS
       TRANS  - CHARACTER*1.
              On entry, TRANS specifies the operation to be  per=AD
              formed as follows:

              TRANS =3D 'N' or 'n'   y :=3D alpha*A*x + beta*y.

              TRANS =3D 'T' or 't'   y :=3D alpha*A'*x + beta*y.

              TRANS =3D 'C' or 'c'   y :=3D alpha*A'*x + beta*y.

              Unchanged on exit.

       M      - INTEGER.
              On  entry,  M  specifies  the number of rows of the
              matrix A.  M must be at least zero.   Unchanged  on
              exit.

       N      - INTEGER.
              On  entry, N specifies the number of columns of the
              matrix A.  N must be at least zero.   Unchanged  on
              exit.

       ALPHA  - DOUBLE PRECISION.
              On   entry,   ALPHA  specifies  the  scalar  alpha.
              Unchanged on exit.

       A      - DOUBLE PRECISION array of DIMENSION ( LDA, n ).
              Before entry, the leading m by n part of the  array
              A   must   contain   the  matrix  of  coefficients.
              Unchanged on exit.

       LDA    - INTEGER.
              On entry, LDA specifies the first dimension of A as
              declared  in the calling (sub) program. LDA must be
              at least max( 1, m ).  Unchanged on exit.

I beleive therefore that the package is correct as is.  If you
disagree and have new information, please reopen this.

Take care,

George Pau  <[EMAIL PROTECTED]> writes:

> Package: BLAS
> Version: 1.1-9
>=20
> When I use PETSC which uses BLAS, and while invoking KSPSolve, following =
error=20
> may occur:
>=20
> " ** On entry to DGEMV  parameter number  6 had an illegal value"
>=20
> According to the PETSC team, this is because some BLAS do not allow a neg=
ative=20
> LDA (even though it should be legal).   So, I suggest that this be correc=
ted.
>=20
> I am using Debian GNU/Linux 2.4.18, and libc-2.3.2.so.
>=20
> Thanks,
> George
>=20
>=20
>=20
>=20
>=20

--=20
Camm Maguire                                            [EMAIL PROTECTED]
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
"The earth is but one country, and mankind its citizens."  --  Baha'u'llah


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to