We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e9cfb7f + 500ac4d commit a96a04eCopy full SHA for a96a04e
common_interface.h
@@ -773,8 +773,8 @@ xdouble BLASFUNC(qlamc3)(xdouble *, xdouble *);
773
774
void BLASFUNC(saxpby) (blasint *, float *, float *, blasint *, float *, float *, blasint *);
775
void BLASFUNC(daxpby) (blasint *, double *, double *, blasint *, double *, double *, blasint *);
776
-void BLASFUNC(caxpby) (blasint *, float *, float *, blasint *, float *, float *, blasint *);
777
-void BLASFUNC(zaxpby) (blasint *, double *, double *, blasint *, double *, double *, blasint *);
+void BLASFUNC(caxpby) (blasint *, void *, float *, blasint *, void *, float *, blasint *);
+void BLASFUNC(zaxpby) (blasint *, void *, double *, blasint *, void *, double *, blasint *);
778
779
void BLASFUNC(somatcopy) (char *, char *, blasint *, blasint *, float *, float *, blasint *, float *, blasint *);
780
void BLASFUNC(domatcopy) (char *, char *, blasint *, blasint *, double *, double *, blasint *, double *, blasint *);
interface/zaxpby.c
@@ -39,12 +39,14 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39
40
#ifndef CBLAS
41
42
-void NAME(blasint *N, FLOAT *ALPHA, FLOAT *x, blasint *INCX, FLOAT *BETA, FLOAT *y, blasint *INCY)
+void NAME(blasint *N, void *VALPHA, FLOAT *x, blasint *INCX, void *VBETA, FLOAT *y, blasint *INCY)
43
{
44
45
blasint n = *N;
46
blasint incx = *INCX;
47
blasint incy = *INCY;
48
+ FLOAT* ALPHA = (FLOAT*) VALPHA;
49
+ FLOAT* BETA = (FLOAT*) VBETA;
50
51
#else
52
0 commit comments