Spaces:
Running
Running
shikokuchuo
commited on
whisper : fix signedness compiler warning (#506)
Browse files- whisper.cpp +1 -1
whisper.cpp
CHANGED
|
@@ -3854,7 +3854,7 @@ int whisper_full(
|
|
| 3854 |
return a.sequence.sum_logprobs_all > b.sequence.sum_logprobs_all;
|
| 3855 |
});
|
| 3856 |
|
| 3857 |
-
int cur_c = 0;
|
| 3858 |
|
| 3859 |
for (int j = 0; j < n_decoders_cur; ++j) {
|
| 3860 |
auto & decoder = ctx->decoders[j];
|
|
|
|
| 3854 |
return a.sequence.sum_logprobs_all > b.sequence.sum_logprobs_all;
|
| 3855 |
});
|
| 3856 |
|
| 3857 |
+
unsigned int cur_c = 0;
|
| 3858 |
|
| 3859 |
for (int j = 0; j < n_decoders_cur; ++j) {
|
| 3860 |
auto & decoder = ctx->decoders[j];
|