diff options
author | Gael Guennebaud <g.gael@free.fr> | 2010-07-17 13:49:43 +0200 |
---|---|---|
committer | Gael Guennebaud <g.gael@free.fr> | 2010-07-17 13:49:43 +0200 |
commit | 2a820d41df2fcbf34d14d538ba8280271a96ad92 (patch) | |
tree | b907fcad5a5fa9b3bbbb99dc01ac4633f0bcaec0 /bench/btl | |
parent | dd27e10360ada43cc9c33a802211d79cc3984b23 (diff) |
finish/fix level1 blas, all test pass
Diffstat (limited to 'bench/btl')
-rw-r--r-- | bench/btl/libs/C_BLAS/blas.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bench/btl/libs/C_BLAS/blas.h b/bench/btl/libs/C_BLAS/blas.h index 07cd9efd2..ab3d44052 100644 --- a/bench/btl/libs/C_BLAS/blas.h +++ b/bench/btl/libs/C_BLAS/blas.h @@ -38,10 +38,10 @@ void BLASFUNC(zdotc) (double *, int *, double *, int *, double *, int *); void BLASFUNC(xdotu) (double *, int *, double *, int *, double *, int *); void BLASFUNC(xdotc) (double *, int *, double *, int *, double *, int *); #else -float BLASFUNC(cdotu) (int *, float *, int *, float *, int *); -float BLASFUNC(cdotc) (int *, float *, int *, float *, int *); -double BLASFUNC(zdotu) (int *, double *, int *, double *, int *); -double BLASFUNC(zdotc) (int *, double *, int *, double *, int *); +std::complex<float> BLASFUNC(cdotu) (int *, float *, int *, float *, int *); +std::complex<float> BLASFUNC(cdotc) (int *, float *, int *, float *, int *); +std::complex<double> BLASFUNC(zdotu) (int *, double *, int *, double *, int *); +std::complex<double> BLASFUNC(zdotc) (int *, double *, int *, double *, int *); double BLASFUNC(xdotu) (int *, double *, int *, double *, int *); double BLASFUNC(xdotc) (int *, double *, int *, double *, int *); #endif |