From c93300f02fec5ccfa70158969c39dc0278c3280c Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Fri, 20 Sep 2024 15:05:00 +0200 Subject: [PATCH] squash! baby-llama : rename llama_layer to baby_llama_layer Rename baby_llama_layer to gpt_layer. --- examples/baby-llama/baby-llama.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/baby-llama/baby-llama.cpp b/examples/baby-llama/baby-llama.cpp index bd9359801..28a40dde1 100644 --- a/examples/baby-llama/baby-llama.cpp +++ b/examples/baby-llama/baby-llama.cpp @@ -105,7 +105,7 @@ struct llama_hparams_lora { } }; -struct baby_llama_layer { +struct gpt_layer { // normalization struct ggml_tensor * attention_norm; @@ -169,7 +169,7 @@ struct llama_model { struct ggml_tensor * norm; struct ggml_tensor * output; - std::vector layers; + std::vector layers; }; struct llama_model_lora {