Skip to content

Commit 4be7ecf

Browse files
committed
fix perplexity
1 parent 6395174 commit 4be7ecf

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

examples/perplexity/perplexity.cpp

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -408,16 +408,15 @@ static results_perplexity perplexity_v2(llama_context * ctx, const common_params
408408
// clear the KV cache
409409
llama_kv_cache_clear(ctx);
410410

411+
llama_batch batch = llama_batch_init(n_batch, 0, 1);
412+
411413
for (int j = 0; j < num_batches; ++j) {
412414
const int batch_start = start + j * n_batch;
413415
const int batch_size = std::min(end - batch_start, n_batch);
414416

415-
llama_batch batch = llama_batch_init(batch_size, 0, 1);
417+
common_batch_clear(batch);
416418
for (int i = 0; i < batch_size; i++) {
417-
batch. token[i] = tokens[batch_start + i];
418-
batch. pos[i] = j*n_batch + i;
419-
batch.logits[i] = true;
420-
batch.seq_id[i][0] = 0;
419+
common_batch_add(batch, tokens[batch_start + i], j*n_batch + i, {0}, true);
421420
}
422421

423422
//LOG_DBG(" Batch %d: starts at %d, size is %d, n_past is %d\n",j,batch_start,batch_size,j * n_batch);
@@ -427,8 +426,6 @@ static results_perplexity perplexity_v2(llama_context * ctx, const common_params
427426
return {tokens, -1, logit_history, prob_history};
428427
}
429428

430-
llama_batch_free(batch);
431-
432429
// save original token and restore it after eval
433430
const auto token_org = tokens[batch_start];
434431

@@ -445,6 +442,8 @@ static results_perplexity perplexity_v2(llama_context * ctx, const common_params
445442
}
446443
}
447444

445+
llama_batch_free(batch);
446+
448447
const auto t_end = std::chrono::high_resolution_clock::now();
449448

450449
if (i == 0) {

0 commit comments

Comments
 (0)