mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-12-26 16:48:50 +01:00
ggml : minor type fix (int64_t -> size_t)
This commit is contained in:
parent
52cce82493
commit
adc099edee
2
ggml.c
2
ggml.c
@ -9970,7 +9970,7 @@ static void ggml_compute_forward_mul_mat(
|
|||||||
#if defined(GGML_USE_ACCELERATE) || defined(GGML_USE_OPENBLAS)
|
#if defined(GGML_USE_ACCELERATE) || defined(GGML_USE_OPENBLAS)
|
||||||
if (ggml_compute_forward_mul_mat_use_blas(dst)) {
|
if (ggml_compute_forward_mul_mat_use_blas(dst)) {
|
||||||
const int64_t ne_plane = ne01*ne00;
|
const int64_t ne_plane = ne01*ne00;
|
||||||
const int64_t desired_wsize = ne13*ne12*ne_plane*sizeof(float);
|
const size_t desired_wsize = ne13*ne12*ne_plane*sizeof(float);
|
||||||
UNUSED(desired_wsize);
|
UNUSED(desired_wsize);
|
||||||
|
|
||||||
if (params->type == GGML_TASK_INIT) {
|
if (params->type == GGML_TASK_INIT) {
|
||||||
|
Loading…
Reference in New Issue
Block a user