From fe4b1915f136a082cae82683a4956a6417ea6ab0 Mon Sep 17 00:00:00 2001 From: Pierrick HYMBERT Date: Wed, 10 Apr 2024 21:15:21 +0200 Subject: [PATCH] ggml_debug: Remove unused param n_batch, no batching here --- examples/ggml-debug/ggml-debug.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/examples/ggml-debug/ggml-debug.cpp b/examples/ggml-debug/ggml-debug.cpp index 66725495a..faaa3c1d1 100644 --- a/examples/ggml-debug/ggml-debug.cpp +++ b/examples/ggml-debug/ggml-debug.cpp @@ -118,11 +118,9 @@ int main(int argc, char ** argv) { callback_data cb_data; gpt_params params; - params.n_batch = 512; if (!gpt_params_parse(argc, argv, params)) { return 1; } - params.n_batch = std::min(params.n_batch, params.n_ctx); print_build_info();