25 #if defined(HAVE_ATLAS) 46 #if defined(HAVE_ATLAS) 47 return cblas_ddot(rows, x, 1, y, 1);
74 #if defined(HAVE_ATLAS) 75 return cblas_sdsdot(rows, a, x, 1, y, 1);
99 #if defined(HAVE_ATLAS) 100 return cblas_dnrm2(rows, x, 1);
124 #if defined(HAVE_ATLAS) 125 return cblas_dasum(rows, x, 1);
149 #if defined(HAVE_ATLAS) 150 return cblas_idamax(rows, x, 1);
175 #if defined(HAVE_ATLAS) 176 cblas_dscal(rows, a, x, 1);
198 #if defined(HAVE_ATLAS) 199 cblas_dcopy(rows, x, 1, y, 1);
227 #if defined(HAVE_ATLAS) 228 cblas_daxpy(rows, a, x, 1, y, 1);
258 #if defined(HAVE_ATLAS) 259 return cblas_sdot(rows, x, 1, y, 1);
283 #if defined(HAVE_ATLAS) 284 return cblas_snrm2(rows, x, 1);
308 #if defined(HAVE_ATLAS) 309 return cblas_sasum(rows, x, 1);
333 #if defined(HAVE_ATLAS) 334 return cblas_isamax(rows, x, 1);
359 #if defined(HAVE_ATLAS) 360 cblas_sscal(rows, a, x, 1);
383 #if defined(HAVE_ATLAS) 384 cblas_scopy(rows, x, 1, y, 1);
412 #if defined(HAVE_ATLAS) 413 cblas_saxpy(rows, a, x, 1, y, 1);
void G_math_daxpy(double *x, double *y, double a, int rows)
Scale vector x with scalar a and add it to y.
void G_math_dcopy(double *x, double *y, int rows)
Copy vector x to vector y.
void G_math_dscal(double *x, double a, int rows)
Scale vector x with scalar a using the ATLAS routine cblas_dscal.
double G_math_dnrm2(double *x, int rows)
Compute the euclidean norm of vector x using the ATLAS routine cblas_dnrm2.
float G_math_sdsdot(float *x, float *y, float a, int rows)
Compute the dot product of vector x and y using the ATLAS routine cblas_sdsdot.
void G_math_f_x_dot_y(float *, float *, float *, int)
Compute the dot product of vector x and y.
void G_math_d_max_norm(double *, double *, int)
Compute the maximum norm of vector x.
void G_math_scopy(float *x, float *y, int rows)
Copy vector x to vector y.
double G_math_idamax(double *x, int rows)
Compute the maximum norm of vector x using the ATLAS routine cblas_idamax.
void G_math_d_copy(double *, double *, int)
Copy the vector x to y.
void G_math_d_ax_by(double *, double *, double *, double, double, int)
Scales vectors x and y with the scalars a and b and adds them.
void G_math_d_x_dot_y(double *, double *, double *, int)
Compute the dot product of vector x and y.
void G_math_f_ax_by(float *, float *, float *, float, float, int)
Scales vectors x and y with the scalars a and b and adds them.
void G_math_saxpy(float *x, float *y, float a, int rows)
Scale vector x with scalar a and add it to y.
void G_math_f_copy(float *, float *, int)
Copy the vector x to y.
float G_math_sasum(float *x, int rows)
Compute the absolute sum norm of vector x using the ATLAS routine cblas_dasum.
void G_math_f_asum_norm(float *, float *, int)
Compute the asum norm of vector x.
void G_math_f_euclid_norm(float *, float *, int)
Compute the euclid norm of vector x.
void G_math_f_max_norm(float *, float *, int)
Compute the maximum norm of vector x.
double G_math_dasum(double *x, int rows)
Compute the absolute sum norm of vector x using the ATLAS routine cblas_dasum.
double G_math_ddot(double *x, double *y, int rows)
Compute the dot product of vector x and y using the ATLAS routine cblas_ddot.
void G_math_sscal(float *x, float a, int rows)
Scale vector x with scalar a using the ATLAS routine cblas_dscal.
float G_math_snrm2(float *x, int rows)
Compute the euclidean norm of vector x using the ATLAS routine cblas_dnrm2.
void G_math_d_euclid_norm(double *, double *, int)
Compute the euclid norm of vector x.
void G_math_d_asum_norm(double *, double *, int)
Compute the asum norm of vector x.
float G_math_isamax(float *x, int rows)
Compute the maximum norm of vector x using the ATLAS routine cblas_idamax.
float G_math_sdot(float *x, float *y, int rows)
Compute the dot product of vector x and y using the ATLAS routine cblas_sdot.