Applied various compilation fixes to bgq kernels.

This commit is contained in:
Field G. Van Zee
2016-04-18 12:29:09 -05:00
parent cbcd0b739d
commit ff84469a45
4 changed files with 33 additions and 35 deletions

View File

@@ -54,7 +54,7 @@ void bli_daxpyv_opt_var1
}
// Call the reference implementation if needed.
if ( use_ref == TRUE ) {
BLIS_DAXPYV_KERNEL_REF( conjx, n, alpha, x, incx, y, incy );
BLIS_DAXPYV_KERNEL_REF( conjx, n, alpha, x, incx, y, incy, cntx );
return;
}

View File

@@ -58,7 +58,7 @@ void bli_ddotv_opt_var1
use_ref = TRUE;
// Call the reference implementation if needed.
if ( use_ref ) {
BLIS_DDOTV_KERNEL_REF( conjx, conjy, n, x, incx, y, incy, rho );
BLIS_DDOTV_KERNEL_REF( conjx, conjy, n, x, incx, y, incy, rho, cntx );
return;
}