perplexity : fix ETA by warming up the model with an empty run

This commit is contained in:
Georgi Gerganov 2023-09-03 13:42:56 +03:00
parent 6519e9c99c
commit 8f429fa511
No known key found for this signature in database
GPG key ID: 449E073F9DC10735
2 changed files with 8 additions and 8 deletions

View file

@ -492,14 +492,6 @@ int main(int argc, char ** argv) {
std::vector<llama_token> embd;
std::vector<llama_token> embd_guidance;
{
LOG("warming up the model with an empty run\n");
const std::vector<llama_token> tmp = { llama_token_bos(ctx), };
llama_eval(ctx, tmp.data(), tmp.size(), 0, params.n_threads);
llama_reset_timings(ctx);
}
while ((n_remain != 0 && !is_antiprompt) || params.interactive) {
// predict
if (embd.size() > 0) {