From 93ec58b932ae132f1ce65d0a6d932466e2bd3818 Mon Sep 17 00:00:00 2001 From: Francis Couture-Harpin Date: Tue, 13 Aug 2024 22:12:26 -0400 Subject: [PATCH] server : fix typo in comment --- examples/server/server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/server/server.cpp b/examples/server/server.cpp index 637b403372fb6..c25338f573767 100644 --- a/examples/server/server.cpp +++ b/examples/server/server.cpp @@ -754,7 +754,7 @@ struct server_context { default_generation_settings_for_props = get_formated_generation(slots.front()); default_generation_settings_for_props["seed"] = -1; - // the update_slots() logic will always submit a maximum of n_batch or n_parralel tokens + // the update_slots() logic will always submit a maximum of n_batch or n_parallel tokens // note that n_batch can be > n_ctx (e.g. for non-causal attention models such as BERT where the KV cache is not used) { const int32_t n_batch = llama_n_batch(ctx);