Skip to content

Commit 254de88

Browse files
committed
kv_cache : fix
ggml-ci
1 parent 29d1d16 commit 254de88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/llama-kv-cache.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ bool llama_kv_cache::init(
3535
size = kv_size;
3636
used = 0;
3737

38-
type_k = type_k;
39-
type_v = type_v;
38+
this->type_k = type_k;
39+
this->type_v = type_v;
4040

4141
cells.clear();
4242
cells.resize(kv_size);

0 commit comments

Comments
 (0)