Type saga continues; fixed sgemm ukernel signature.

Details:
- Changed double* pointers in sgemm function signature to float*. At
  this point I've lost track of whether this was my fault or another
  dormant bug like the one described in ece9f6a, but at this point I
  no longer care. It's one of those days (aka I didn't ask for this).
This commit is contained in:
Field G. Van Zee
2020-09-12 17:48:15 -05:00
parent 0779559509
commit 2765c6f37c

View File

@@ -183,11 +183,11 @@ static int32_t offsets[32] __attribute__((aligned(64))) =
void bli_sgemm_knl_asm_24x16
(
dim_t k_,
double* restrict alpha,
double* restrict a,
double* restrict b,
double* restrict beta,
double* restrict c, inc_t rs_c_, inc_t cs_c_,
float* restrict alpha,
float* restrict a,
float* restrict b,
float* restrict beta,
float* restrict c, inc_t rs_c_, inc_t cs_c_,
auxinfo_t* restrict data,
cntx_t* restrict cntx
)