ggml : update cblas_sgemm columns var to be more reasonable (#838)

pull/944/head master-8c3ffc2
Vladimir 1 year ago committed by GitHub
parent 107980d970
commit 8c3ffc2f04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -6435,7 +6435,7 @@ static void ggml_compute_forward_mul_mat_f32(
cblas_sgemm(CblasRowMajor, CblasNoTrans, CblasTrans,
ne11, ne01, ne10,
1.0f, y, ne10,
x, ne10,
x, ne00,
0.0f, d, ne01);
}
}
@ -6607,7 +6607,7 @@ static void ggml_compute_forward_mul_mat_f16_f32(
cblas_sgemm(CblasRowMajor, CblasNoTrans, CblasTrans,
ne11, ne01, ne10,
1.0f, y, ne10,
x, ne10,
x, ne00,
0.0f, d, ne01);
}
}
@ -6820,7 +6820,7 @@ static void ggml_compute_forward_mul_mat_q_f32(
cblas_sgemm(CblasRowMajor, CblasNoTrans, CblasTrans,
ne11, ne01, ne10,
1.0f, y, ne10,
x, ne10,
x, ne00,
0.0f, d, ne01);
}
}

Loading…
Cancel
Save