Skip to content

Commit

Permalink
dbm: fixed bug introduced some time ago
Browse files Browse the repository at this point in the history
* The change was also inconsistent with calling dbm_dgemm.
  • Loading branch information
hfp committed Jul 28, 2024
1 parent 96bff0e commit 01bbc0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dbm/dbm_multiply_cpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ void dbm_multiply_cpu_process_batch(const int ntasks, dbm_task_t batch[ntasks],
if (task.m != kernel_m || task.n != kernel_n || task.k != kernel_k) {
#if LIBXSMM_VERSION2(1, 17) < LIBXSMM_VERSION_NUMBER
const libxsmm_gemm_shape shape = libxsmm_create_gemm_shape(
task.m, task.n, task.k, task.m /*lda*/, task.k /*ldb*/,
task.m, task.n, task.k, task.m /*lda*/, task.n /*ldb*/,
task.m /*ldc*/, LIBXSMM_DATATYPE_F64 /*aprec*/,
LIBXSMM_DATATYPE_F64 /*bprec*/, LIBXSMM_DATATYPE_F64 /*cprec*/,
LIBXSMM_DATATYPE_F64 /*calcp*/);
Expand Down

0 comments on commit 01bbc0c

Please sign in to comment.