This works, but it is slow

This commit is contained in:
Kawrakow
2025-11-26 15:50:46 +00:00
parent 4303587f1c
commit 97143330a1
7 changed files with 110 additions and 38 deletions

View File

@@ -806,6 +806,7 @@ static bool llama_kv_cache_init(
cache.bufs.push_back(buf);
}
#if 0
for (int il = 0; il < n_layer; ++il) {
if (cache.k_l[il]->extra) {
printf("Layer %2d, K-buffer: %p:", il, (void *)cache.k_l[il]->buffer);
@@ -824,6 +825,7 @@ static bool llama_kv_cache_init(
printf("\n");
}
}
#endif
return true;
}