@@ -101,6 +101,16 @@ CBLAS_INDEX cblas_idamin(OPENBLAS_CONST blasint n, OPENBLAS_CONST double *x, OPE
101
101
CBLAS_INDEX cblas_icamin (OPENBLAS_CONST blasint n , OPENBLAS_CONST void * x , OPENBLAS_CONST blasint incx );
102
102
CBLAS_INDEX cblas_izamin (OPENBLAS_CONST blasint n , OPENBLAS_CONST void * x , OPENBLAS_CONST blasint incx );
103
103
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
+
104
114
CBLAS_INDEX cblas_ismax (OPENBLAS_CONST blasint n , OPENBLAS_CONST float * x , OPENBLAS_CONST blasint incx );
105
115
CBLAS_INDEX cblas_idmax (OPENBLAS_CONST blasint n , OPENBLAS_CONST double * x , OPENBLAS_CONST blasint incx );
106
116
CBLAS_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
116
126
void cblas_caxpy (OPENBLAS_CONST blasint n , OPENBLAS_CONST void * alpha , OPENBLAS_CONST void * x , OPENBLAS_CONST blasint incx , void * y , OPENBLAS_CONST blasint incy );
117
127
void cblas_zaxpy (OPENBLAS_CONST blasint n , OPENBLAS_CONST void * alpha , OPENBLAS_CONST void * x , OPENBLAS_CONST blasint incx , void * y , OPENBLAS_CONST blasint incy );
118
128
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
+
119
132
void cblas_scopy (OPENBLAS_CONST blasint n , OPENBLAS_CONST float * x , OPENBLAS_CONST blasint incx , float * y , OPENBLAS_CONST blasint incy );
120
133
void cblas_dcopy (OPENBLAS_CONST blasint n , OPENBLAS_CONST double * x , OPENBLAS_CONST blasint incx , double * y , OPENBLAS_CONST blasint incy );
121
134
void 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
290
303
void 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 ,
291
304
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 );
292
305
293
-
294
306
void 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 ,
295
307
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 );
296
308
void 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