summaryrefslogtreecommitdiff
path: root/gsl-1.9/cblas/dspmv.c
blob: 870c7e3ed0bf91e7208c1e6deae81de70f9beb41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <gsl/gsl_math.h>
#include <gsl/gsl_cblas.h>
#include "cblas.h"

void
cblas_dspmv (const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo,
             const int N, const double alpha, const double *Ap,
             const double *X, const int incX, const double beta, double *Y,
             const int incY)
{
#define BASE double
#include "source_spmv.h"
#undef BASE
}