Skip to content

Commit

Permalink
whisper : fix signedness compiler warning (ggerganov#506)
Browse files Browse the repository at this point in the history
  • Loading branch information
shikokuchuo committed Feb 15, 2023
1 parent c9b9096 commit ecf0302
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion whisper.cpp
Expand Up @@ -3854,7 +3854,7 @@ int whisper_full(
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) {
auto & decoder = ctx->decoders[j];
Expand Down

0 comments on commit ecf0302

Please sign in to comment.