00001
00002
00003
00004
00005 #ifndef NPS_DAXPY_H
00006 #define NPS_DAXPY_H
00007 #if !defined BUILDING_NPS_DAXPY && !defined NPS_SMALL
00008 # define NPS_DAXPY_LKG static inline
00009 #else
00010 # define NPS_DAXPY_LKG
00011 #endif
00012
00013 NPS_DAXPY_LKG void nps_blas_daxpby(unsigned long n, double a, const double *const x,
00014 unsigned long incX,
00015 double b, const double *const y, unsigned long incY);
00016
00017 #endif
00018