From 0779559509e0a1af077530d09ed151dac54f32ee Mon Sep 17 00:00:00 2001 From: "Field G. Van Zee" Date: Sat, 12 Sep 2020 17:37:21 -0500 Subject: [PATCH] Fixed missing restrict in knl sgemm prototype. Details: - Added a missing 'restrict' qualifier in the sgemm ukernel prototype for knl. (Not sure how that code was ever compiling before now.) --- kernels/knl/3/bli_sgemm_knl_asm_24x16.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernels/knl/3/bli_sgemm_knl_asm_24x16.c b/kernels/knl/3/bli_sgemm_knl_asm_24x16.c index 8657d24ef..fc7030ad6 100644 --- a/kernels/knl/3/bli_sgemm_knl_asm_24x16.c +++ b/kernels/knl/3/bli_sgemm_knl_asm_24x16.c @@ -188,7 +188,7 @@ void bli_sgemm_knl_asm_24x16 double* restrict b, double* restrict beta, double* restrict c, inc_t rs_c_, inc_t cs_c_, - auxinfo_t* data, + auxinfo_t* restrict data, cntx_t* restrict cntx ) {