Added 'restrict' to l1v/l1f code in 'kernels' dir.

Details:
- Added 'restrict' keyword to existing kernel definitions in 'kernels'
  directory. These changes were meant for inclusion in bbb8569.
This commit is contained in:
Field G. Van Zee
2016-04-27 14:57:40 -05:00
parent bbb8569b2a
commit ed7326c836
11 changed files with 87 additions and 88 deletions

View File

@@ -37,15 +37,15 @@
void bli_daxpyf_opt_var1
(
conj_t conja,
conj_t conjx,
dim_t m,
dim_t b_n,
double* alpha,
double* a, inc_t inca, inc_t lda,
double* x, inc_t incx,
double* y, inc_t incy,
cntx_t* cntx
conj_t conja,
conj_t conjx,
dim_t m,
dim_t b_n,
double* restrict alpha,
double* restrict a, inc_t inca, inc_t lda,
double* restrict x, inc_t incx,
double* restrict y, inc_t incy,
cntx_t* cntx
)
{
const dim_t fusefac = 8;