llama : add "--attn-streams" flag

ggml-ci
This commit is contained in:
Georgi Gerganov
2025-07-04 17:44:44 +03:00
parent f2d08201c2
commit 280b0b9a04
9 changed files with 46 additions and 19 deletions

View File

@ -1157,6 +1157,7 @@ struct llama_context_params common_context_params_to_llama(const common_params &
cparams.no_perf = params.no_perf;
cparams.op_offload = !params.no_op_offload;
cparams.swa_full = params.swa_full;
cparams.attn_streams = params.attn_streams;
cparams.type_k = params.cache_type_k;
cparams.type_v = params.cache_type_v;