PABannier / bark.cpp

Suno AI's Bark model in C/C++ for fast text-to-speech
MIT License
635 stars 49 forks source link

memsize should be int64_t rather than int32_t #65

Closed jzeiber closed 11 months ago

jzeiber commented 11 months ago

memsize in gpt_model and bark_model is currently int32_t, and it overflows when adding the individual model sizes together. Changing them to int64_t should resolve this.

PABannier commented 11 months ago

Good catch @jzeiber ! Thanks!