Mercurial > hg > qm-dsp
view ext/cblas/src/cblas_ddot.c @ 211:a41bea655151 msvc
Rename FFT back again, now we have our own project
author | Chris Cannam |
---|---|
date | Mon, 05 Feb 2018 17:40:13 +0000 |
parents | 45330e0d2819 |
children |
line wrap: on
line source
#include "cblas.h" #include "cblas_f77.h" extern double ddot_(const int *n, const double *dx, const int *incx, const double *dy, const int *incy); double cblas_ddot( const int N, const double *X, const int incX, const double *Y, const int incY) { #ifdef F77_INT F77_INT F77_N=N, F77_incX=incX, F77_incY=incY; #else #define F77_N N #define F77_incX incX #define F77_incY incY #endif return ddot_( &F77_N, X, &F77_incX, Y, &F77_incY); }