mirror of
https://git.adityakumar.xyz/llama.cpp.git
synced 2024-11-09 15:29:43 +00:00
ggml : update cblas_sgemm columns var to be more reasonable (#838)
This commit is contained in:
parent
107980d970
commit
8c3ffc2f04
1 changed files with 3 additions and 3 deletions
6
ggml.c
6
ggml.c
|
@ -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…
Reference in a new issue