gsl_cblas__sdsdot.c 359 B

1234567891011121314151617
  1. #include "gsl_math.h"
  2. #include "gsl_cblas.h"
  3. #include "gsl_cblas__cblas.h"
  4. float
  5. cblas_sdsdot (const int N, const float alpha, const float *X, const int incX,
  6. const float *Y, const int incY)
  7. {
  8. #define INIT_VAL alpha
  9. #define ACC_TYPE double
  10. #define BASE float
  11. #include "gsl_cblas__source_dot_r.h"
  12. #undef ACC_TYPE
  13. #undef BASE
  14. #undef INIT_VAL
  15. }