@@ -101,6 +101,16 @@ CBLAS_INDEX cblas_idamin(OPENBLAS_CONST blasint n, OPENBLAS_CONST double *x, OPE
101101CBLAS_INDEX cblas_icamin (OPENBLAS_CONST blasint n , OPENBLAS_CONST void * x , OPENBLAS_CONST blasint incx );
102102CBLAS_INDEX cblas_izamin (OPENBLAS_CONST blasint n , OPENBLAS_CONST void * x , OPENBLAS_CONST blasint incx );
103103
104+ float cblas_samax (OPENBLAS_CONST blasint n , OPENBLAS_CONST float * x , OPENBLAS_CONST blasint incx );
105+ double cblas_damax (OPENBLAS_CONST blasint n , OPENBLAS_CONST double * x , OPENBLAS_CONST blasint incx );
106+ float cblas_scamax (OPENBLAS_CONST blasint n , OPENBLAS_CONST void * x , OPENBLAS_CONST blasint incx );
107+ double cblas_dzamax (OPENBLAS_CONST blasint n , OPENBLAS_CONST void * x , OPENBLAS_CONST blasint incx );
108+
109+ float cblas_samin (OPENBLAS_CONST blasint n , OPENBLAS_CONST float * x , OPENBLAS_CONST blasint incx );
110+ double cblas_damin (OPENBLAS_CONST blasint n , OPENBLAS_CONST double * x , OPENBLAS_CONST blasint incx );
111+ float cblas_scamin (OPENBLAS_CONST blasint n , OPENBLAS_CONST void * x , OPENBLAS_CONST blasint incx );
112+ double cblas_dzamin (OPENBLAS_CONST blasint n , OPENBLAS_CONST void * x , OPENBLAS_CONST blasint incx );
113+
104114CBLAS_INDEX cblas_ismax (OPENBLAS_CONST blasint n , OPENBLAS_CONST float * x , OPENBLAS_CONST blasint incx );
105115CBLAS_INDEX cblas_idmax (OPENBLAS_CONST blasint n , OPENBLAS_CONST double * x , OPENBLAS_CONST blasint incx );
106116CBLAS_INDEX cblas_icmax (OPENBLAS_CONST blasint n , OPENBLAS_CONST void * x , OPENBLAS_CONST blasint incx );
@@ -116,6 +126,9 @@ void cblas_daxpy(OPENBLAS_CONST blasint n, OPENBLAS_CONST double alpha, OPENBLAS
116126void cblas_caxpy (OPENBLAS_CONST blasint n , OPENBLAS_CONST void * alpha , OPENBLAS_CONST void * x , OPENBLAS_CONST blasint incx , void * y , OPENBLAS_CONST blasint incy );
117127void cblas_zaxpy (OPENBLAS_CONST blasint n , OPENBLAS_CONST void * alpha , OPENBLAS_CONST void * x , OPENBLAS_CONST blasint incx , void * y , OPENBLAS_CONST blasint incy );
118128
129+ void cblas_caxpyc (OPENBLAS_CONST blasint n , OPENBLAS_CONST void * alpha , OPENBLAS_CONST void * x , OPENBLAS_CONST blasint incx , void * y , OPENBLAS_CONST blasint incy );
130+ void cblas_zaxpyc (OPENBLAS_CONST blasint n , OPENBLAS_CONST void * alpha , OPENBLAS_CONST void * x , OPENBLAS_CONST blasint incx , void * y , OPENBLAS_CONST blasint incy );
131+
119132void cblas_scopy (OPENBLAS_CONST blasint n , OPENBLAS_CONST float * x , OPENBLAS_CONST blasint incx , float * y , OPENBLAS_CONST blasint incy );
120133void cblas_dcopy (OPENBLAS_CONST blasint n , OPENBLAS_CONST double * x , OPENBLAS_CONST blasint incx , double * y , OPENBLAS_CONST blasint incy );
121134void cblas_ccopy (OPENBLAS_CONST blasint n , OPENBLAS_CONST void * x , OPENBLAS_CONST blasint incx , void * y , OPENBLAS_CONST blasint incy );
@@ -290,7 +303,6 @@ void cblas_zgemm(OPENBLAS_CONST enum CBLAS_ORDER Order, OPENBLAS_CONST enum CBLA
290303void cblas_zgemm3m (OPENBLAS_CONST enum CBLAS_ORDER Order , OPENBLAS_CONST enum CBLAS_TRANSPOSE TransA , OPENBLAS_CONST enum CBLAS_TRANSPOSE TransB , OPENBLAS_CONST blasint M , OPENBLAS_CONST blasint N , OPENBLAS_CONST blasint K ,
291304 OPENBLAS_CONST void * alpha , OPENBLAS_CONST void * A , OPENBLAS_CONST blasint lda , OPENBLAS_CONST void * B , OPENBLAS_CONST blasint ldb , OPENBLAS_CONST void * beta , void * C , OPENBLAS_CONST blasint ldc );
292305
293-
294306void cblas_ssymm (OPENBLAS_CONST enum CBLAS_ORDER Order , OPENBLAS_CONST enum CBLAS_SIDE Side , OPENBLAS_CONST enum CBLAS_UPLO Uplo , OPENBLAS_CONST blasint M , OPENBLAS_CONST blasint N ,
295307 OPENBLAS_CONST float alpha , OPENBLAS_CONST float * A , OPENBLAS_CONST blasint lda , OPENBLAS_CONST float * B , OPENBLAS_CONST blasint ldb , OPENBLAS_CONST float beta , float * C , OPENBLAS_CONST blasint ldc );
296308void cblas_dsymm (OPENBLAS_CONST enum CBLAS_ORDER Order , OPENBLAS_CONST enum CBLAS_SIDE Side , OPENBLAS_CONST enum CBLAS_UPLO Uplo , OPENBLAS_CONST blasint M , OPENBLAS_CONST blasint N ,
0 commit comments