mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-01-31 18:39:37 +01:00
whisper : fix signedness compiler warning (#506)
This commit is contained in:
parent
459753342d
commit
0336161b7d
@ -3854,7 +3854,7 @@ int whisper_full(
|
|||||||
return a.sequence.sum_logprobs_all > b.sequence.sum_logprobs_all;
|
return a.sequence.sum_logprobs_all > b.sequence.sum_logprobs_all;
|
||||||
});
|
});
|
||||||
|
|
||||||
int cur_c = 0;
|
unsigned int cur_c = 0;
|
||||||
|
|
||||||
for (int j = 0; j < n_decoders_cur; ++j) {
|
for (int j = 0; j < n_decoders_cur; ++j) {
|
||||||
auto & decoder = ctx->decoders[j];
|
auto & decoder = ctx->decoders[j];
|
||||||
|
Loading…
Reference in New Issue
Block a user