@@ -125,9 +125,14 @@ void cblas_zswap(OPENBLAS_CONST blasint n, void *x, OPENBLAS_CONST blasint incx,
125
125
126
126
void cblas_srot (OPENBLAS_CONST blasint N , float * X , OPENBLAS_CONST blasint incX , float * Y , OPENBLAS_CONST blasint incY , OPENBLAS_CONST float c , OPENBLAS_CONST float s );
127
127
void cblas_drot (OPENBLAS_CONST blasint N , double * X , OPENBLAS_CONST blasint incX , double * Y , OPENBLAS_CONST blasint incY , OPENBLAS_CONST double c , OPENBLAS_CONST double s );
128
+ void cblas_csrot (OPENBLAS_CONST blasint n , OPENBLAS_CONST void * x , OPENBLAS_CONST blasint incx , void * y , OPENBLAS_CONST blasint incY , OPENBLAS_CONST float c , OPENBLAS_CONST float s );
129
+ void cblas_zdrot (OPENBLAS_CONST blasint n , OPENBLAS_CONST void * x , OPENBLAS_CONST blasint incx , void * y , OPENBLAS_CONST blasint incY , OPENBLAS_CONST double c , OPENBLAS_CONST double s );
128
130
129
131
void cblas_srotg (float * a , float * b , float * c , float * s );
130
132
void cblas_drotg (double * a , double * b , double * c , double * s );
133
+ void cblas_crotg (void * a , void * b , float * c , void * s );
134
+ void cblas_zrotg (void * a , void * b , double * c , void * s );
135
+
131
136
132
137
void cblas_srotm (OPENBLAS_CONST blasint N , float * X , OPENBLAS_CONST blasint incX , float * Y , OPENBLAS_CONST blasint incY , OPENBLAS_CONST float * P );
133
138
void cblas_drotm (OPENBLAS_CONST blasint N , double * X , OPENBLAS_CONST blasint incX , double * Y , OPENBLAS_CONST blasint incY , OPENBLAS_CONST double * P );
0 commit comments