File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
FetchContent_Declare(
2
2
LlamaCpp
3
3
GIT_REPOSITORY "https://github.com/ggerganov/llama.cpp.git"
4
- GIT_TAG "40e07a60f9ce06e79f3ccd4c903eba300fb31b5e "
4
+ GIT_TAG "f72f8f22c9cb60465b2e79df2767e4ba9604e576 "
5
5
)
6
6
FetchContent_MakeAvailable(LlamaCpp)
7
7
set (LlamaCpp_INCLUDE_DIRS "${llamacpp_SOURCE_DIR} " PARENT_SCOPE)
Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ rendezllama::make_llama_context(rendezllama::ChatOptions& opt)
165
165
ctx_params.n_ctx = opt.context_token_limit ;
166
166
ctx_params.seed = opt.seed ;
167
167
ctx_params.f16_kv = true ;
168
- ctx_params.rope_freq_scale = 1.0 ;
168
+ ctx_params.rope_freq_scale = llama_rope_freq_scale_train (model) ;
169
169
ctx_params.n_threads = opt.thread_count ;
170
170
ctx_params.n_batch = opt.batch_count ;
171
171
while (
You can’t perform that action at this time.
0 commit comments