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]

blas_raw_cblas.c and blas_raw_cblas_cm.c


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]