From f5166cbf4c7786fd3e2fdc60769d53799430aecb Mon Sep 17 00:00:00 2001 From: zhhan Date: Thu, 11 Jul 2024 14:35:49 -0700 Subject: [PATCH] fix bug --- src/llama.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/llama.cpp b/src/llama.cpp index 2c6960252..d475f48f8 100644 --- a/src/llama.cpp +++ b/src/llama.cpp @@ -12641,7 +12641,7 @@ static struct ggml_cgraph * llama_build_graph( struct ggml_cgraph * result = NULL; - struct llm_build_context llm(lctx, lctx.model, batch, cb, worst_case); + struct llm_build_context llm(lctx, model, batch, cb, worst_case); llm.init();