mirror of
https://github.com/amd/blis.git
synced 2026-05-11 01:30:00 +00:00
Applied various compilation fixes to bgq kernels.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user