erase flushing stderr, changes in spaces

This commit is contained in:
Bartosz Podkanowicz 2023-11-09 21:02:59 +01:00
parent 75418dc2c2
commit 1cf0b09273

View file

@ -117,8 +117,6 @@ int main(int argc, char ** argv) {
fprintf(stderr, "%s", llama_token_to_piece(ctx_expert, id).c_str());
}
fflush(stderr);
// create a llama_batch with size 512
// we use this object to submit token data for decoding
@ -178,7 +176,6 @@ int main(int argc, char ** argv) {
}
LOG_TEE("%s", llama_token_to_piece(ctx_expert, new_token_id_expert).c_str());
fflush(stdout);
// prepare the next batch
llama_batch_clear(batch);