From c6ddfa7e37a707ba0502f0456427c91a79cfddf8 Mon Sep 17 00:00:00 2001 From: Eddie-Wang Date: Thu, 20 Jun 2024 22:41:29 +0800 Subject: [PATCH] fix whitespace --- llama.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/llama.cpp b/llama.cpp index 2453a2943..5d0bedf6c 100644 --- a/llama.cpp +++ b/llama.cpp @@ -11932,12 +11932,10 @@ struct llm_build_context { struct ggml_tensor *tmp = ggml_mul_mat(ctx0, model.layers[il].ffn_up, cur); tmp = ggml_mul(ctx0, tmp, model.layers[il].ffn_up_scale); - cb(tmp, "ffn_up", il); cur = ggml_mul_mat(ctx0, model.layers[il].ffn_gate, cur); cur = ggml_mul(ctx0, cur, model.layers[il].ffn_gate_scale); - cb(cur, "ffn_gate", il); cur = ggml_silu(ctx0, cur);