Ref #285: added axpby kernels

This commit is contained in:
wernsaar
2014-06-08 11:54:24 +02:00
parent a40116de25
commit faf3ac0aad
18 changed files with 512 additions and 11 deletions

View File

@@ -806,10 +806,16 @@ BLASLONG (*ixamin_k)(BLASLONG, xdouble *, BLASLONG);
#endif
void (*init)(void);
int snum_opt, dnum_opt, qnum_opt;
int (*saxpby_k) (BLASLONG, float, float*, BLASLONG,float, float*, BLASLONG);
int (*daxpby_k) (BLASLONG, double, double*, BLASLONG,double, double*, BLASLONG);
int (*caxpby_k) (BLASLONG, float, float, float*, BLASLONG,float,float, float*, BLASLONG);
int (*zaxpby_k) (BLASLONG, double, double, double*, BLASLONG,double,double, double*, BLASLONG);
} gotoblas_t;
extern gotoblas_t *gotoblas;