We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40c021f commit fb28cd6Copy full SHA for fb28cd6
examples/simple-tts/simple-tts.cpp
@@ -490,6 +490,10 @@ static void print_usage(int, char ** argv) {
490
}
491
492
int main(int argc, char ** argv) {
493
+ // NOTE: parallel processing is incomplete. We can either remove it to make the example simpler,
494
+ // or we can extend the example to support it. The latter is relatively easy to do - just store
495
+ // multiple sets of codes - one for each parallel sequence. And after that, generate multiple audio
496
+ // files - one for each set of codes.
497
const int n_parallel = 1;
498
const int n_predict = 4096;
499
0 commit comments