This is the mail archive of the gsl-discuss@sourceware.cygnus.com mailing list for the GSL project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: blas_raw_cblas.c and blas_raw_cblas_cm.c



Hmmm. This is an odd one. My versions of the files do not
have this bug. The RCS tag for the file I have is:

  * RCS:     $Id: blas_raw_cblas.c,v 1.5 1999/10/19 22:02:20 jungman Exp
$ 

Do you have an older version? This file should have made it into
the 0.5 release.


Thanks again.

--
G. Jungman


"Robert H. Miller" wrote:
> 
> Bug report
> 
> void gsl_blas_raw_sspr (CBLAS_UPLO_t Uplo,
>                         size_t N,
>                         float alpha,
>                         const float X[], size_t incX,
>                         float Ap[])
> {
>   cblas_sspr(CblasRowMajor, Uplo, N, alpha, X, incX, Ap);
> }
> 
> void gsl_blas_raw_dspr (CBLAS_UPLO_t Uplo,
>                         size_t N,
>                         double alpha,
>                         const double X[], size_t incX,
>                         double Ap[])
> {
>   cblas_sspr(CblasRowMajor, Uplo, N, alpha, X, incX, Ap);
> #######SHOULD BE dspr ################
> }
> 
> --
> ---------------------------------------------------------------------
> Robert H. Miller                                Office: (734)764-6573
> University of Michigan  Aerospace Engineering   Lab:    (734)764-5740
> 1320 Beal FXB 2022      Ann Arbor, MI 48109     Fax:    (734)763-0578

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]