Skip to content

Commit

Permalink
llama : restore comma
Browse files Browse the repository at this point in the history
  • Loading branch information
sszymczy committed Jun 14, 2024
1 parent 442e276 commit 7821068
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llama.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19091,7 +19091,7 @@ struct llama_batch llama_batch_get_one(
}

struct llama_batch llama_batch_init(int32_t n_tokens_alloc, int32_t embd, int32_t n_seq_max) {
llama_batch batch = { 0, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, 0, 0, 0 };
llama_batch batch = { 0, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, 0, 0, 0, };

if (embd) {
batch.embd = (float *) malloc(sizeof(float) * n_tokens_alloc * embd);
Expand Down

0 comments on commit 7821068

Please sign in to comment.