fix incompatible pointer types
This commit is contained in:
parent
b3fa16345d
commit
500ac4de5e
|
@ -39,12 +39,14 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
#ifndef CBLAS
|
#ifndef CBLAS
|
||||||
|
|
||||||
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)
|
||||||
{
|
{
|
||||||
|
|
||||||
blasint n = *N;
|
blasint n = *N;
|
||||||
blasint incx = *INCX;
|
blasint incx = *INCX;
|
||||||
blasint incy = *INCY;
|
blasint incy = *INCY;
|
||||||
|
FLOAT* ALPHA = (FLOAT*) VALPHA;
|
||||||
|
FLOAT* BETA = (FLOAT*) VBETA;
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue