2025-06-01 11:39:27 +03:00
|
|
|
#include "llama-kv-cache-unified-iswa.h"
|
|
|
|
|
|
|
|
#include "llama-impl.h"
|
|
|
|
#include "llama-batch.h"
|
|
|
|
#include "llama-model.h"
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
//
|
|
|
|
// llama_kv_cache_unified_iswa
|
|
|
|
//
|
|
|
|
|
|
|
|
llama_kv_cache_unified_iswa::llama_kv_cache_unified_iswa(
|
|
|
|
const llama_model & model,
|
|
|
|
ggml_type type_k,
|
|
|
|
ggml_type type_v,
|
|
|
|
bool v_trans,
|
|
|
|
bool offload,
|
|
|
|
bool swa_full,
|
|
|
|
uint32_t kv_size,
|
|
|
|
uint32_t n_seq_max,
|
|
|
|
uint32_t n_ubatch,
|
|
|
|
uint32_t n_pad) : hparams(model.hparams) {
|
|
|
|
llama_kv_cache_unified::layer_filter_cb filter_base = [&](int32_t il) { return !model.hparams.is_swa(il); };
|
|
|
|
llama_kv_cache_unified::layer_filter_cb filter_swa = [&](int32_t il) { return model.hparams.is_swa(il); };
|
|
|
|
|
|
|
|
const uint32_t size_base = kv_size;
|
|
|
|
|
|
|
|
uint32_t size_swa = std::min(size_base, GGML_PAD(hparams.n_swa*n_seq_max + n_ubatch, n_pad));
|
|
|
|
|
|
|
|
// when using full-size SWA cache, we set the SWA cache size to be equal to the base cache size
|
|
|
|
if (swa_full) {
|
|
|
|
LLAMA_LOG_WARN("%s: using full-size SWA cache (ref: %s)\n",
|
|
|
|
__func__, "https://github.com/ggml-org/llama.cpp/pull/13194#issuecomment-2868343055");
|
|
|
|
|
|
|
|
size_swa = size_base;
|
|
|
|
}
|
|
|
|
|
|
|
|
LLAMA_LOG_INFO("%s: creating non-SWA KV cache, size = %u cells\n", __func__, size_base);
|
|
|
|
|
|
|
|
kv_base = std::make_unique<llama_kv_cache_unified>(
|
|
|
|
model, std::move(filter_base), type_k, type_v,
|
|
|
|
v_trans, offload, size_base, n_seq_max, n_pad,
|
|
|
|
0, LLAMA_SWA_TYPE_NONE);
|
|
|
|
|
|
|
|
LLAMA_LOG_INFO("%s: creating SWA KV cache, size = %u cells\n", __func__, size_swa);
|
|
|
|
|
|
|
|
kv_swa = std::make_unique<llama_kv_cache_unified>(
|
|
|
|
model, std::move(filter_swa), type_k, type_v,
|
|
|
|
v_trans, offload, size_swa, n_seq_max, n_pad,
|
|
|
|
hparams.n_swa, hparams.swa_type);
|
|
|
|
}
|
|
|
|
|
2025-06-06 14:11:15 +03:00
|
|
|
void llama_kv_cache_unified_iswa::clear(bool data) {
|
|
|
|
kv_base->clear(data);
|
|
|
|
kv_swa ->clear(data);
|
2025-06-01 11:39:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool llama_kv_cache_unified_iswa::seq_rm(llama_seq_id seq_id, llama_pos p0, llama_pos p1) {
|
|
|
|
bool res = true;
|
|
|
|
|
|
|
|
res = res & kv_base->seq_rm(seq_id, p0, p1);
|
|
|
|
res = res & kv_swa ->seq_rm(seq_id, p0, p1);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
void llama_kv_cache_unified_iswa::seq_cp(llama_seq_id seq_id_src, llama_seq_id seq_id_dst, llama_pos p0, llama_pos p1) {
|
|
|
|
kv_base->seq_cp(seq_id_src, seq_id_dst, p0, p1);
|
|
|
|
kv_swa ->seq_cp(seq_id_src, seq_id_dst, p0, p1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void llama_kv_cache_unified_iswa::seq_keep(llama_seq_id seq_id) {
|
|
|
|
kv_base->seq_keep(seq_id);
|
|
|
|
kv_swa ->seq_keep(seq_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void llama_kv_cache_unified_iswa::seq_add(llama_seq_id seq_id, llama_pos p0, llama_pos p1, llama_pos shift) {
|
|
|
|
kv_base->seq_add(seq_id, p0, p1, shift);
|
|
|
|
kv_swa ->seq_add(seq_id, p0, p1, shift);
|
|
|
|
}
|
|
|
|
|
|
|
|
void llama_kv_cache_unified_iswa::seq_div(llama_seq_id seq_id, llama_pos p0, llama_pos p1, int d) {
|
|
|
|
kv_base->seq_div(seq_id, p0, p1, d);
|
|
|
|
kv_swa ->seq_div(seq_id, p0, p1, d);
|
|
|
|
}
|
|
|
|
|
|
|
|
llama_pos llama_kv_cache_unified_iswa::seq_pos_min(llama_seq_id seq_id) const {
|
|
|
|
// the base cache is a superset of the SWA cache, so we can just check the SWA cache
|
|
|
|
return kv_swa->seq_pos_min(seq_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
llama_pos llama_kv_cache_unified_iswa::seq_pos_max(llama_seq_id seq_id) const {
|
|
|
|
return kv_swa->seq_pos_max(seq_id);
|
|
|
|
}
|
|
|
|
|
2025-06-21 08:03:46 +03:00
|
|
|
llama_memory_context_ptr llama_kv_cache_unified_iswa::init_batch(llama_batch_allocr & balloc, uint32_t n_ubatch, bool embd_all) {
|
2025-06-16 14:14:00 +03:00
|
|
|
GGML_UNUSED(embd_all);
|
2025-06-01 11:39:27 +03:00
|
|
|
|
2025-06-12 10:02:15 +03:00
|
|
|
// first try simple split
|
|
|
|
do {
|
2025-06-20 10:14:14 +03:00
|
|
|
balloc.split_reset();
|
2025-06-01 11:39:27 +03:00
|
|
|
|
2025-06-12 10:02:15 +03:00
|
|
|
std::vector<llama_ubatch> ubatches;
|
2025-06-20 10:14:14 +03:00
|
|
|
while (true) {
|
|
|
|
auto ubatch = balloc.split_simple(n_ubatch);
|
2025-06-01 11:39:27 +03:00
|
|
|
|
2025-06-20 10:14:14 +03:00
|
|
|
if (ubatch.n_tokens == 0) {
|
|
|
|
break;
|
|
|
|
}
|
2025-06-01 11:39:27 +03:00
|
|
|
|
2025-06-20 10:14:14 +03:00
|
|
|
ubatches.push_back(std::move(ubatch)); // NOLINT
|
2025-06-12 10:02:15 +03:00
|
|
|
}
|
2025-06-01 11:39:27 +03:00
|
|
|
|
2025-06-12 10:02:15 +03:00
|
|
|
auto heads_base = kv_base->prepare(ubatches);
|
|
|
|
if (heads_base.empty()) {
|
|
|
|
break;
|
|
|
|
}
|
2025-06-01 11:39:27 +03:00
|
|
|
|
2025-06-12 10:02:15 +03:00
|
|
|
auto heads_swa = kv_swa->prepare(ubatches);
|
|
|
|
if (heads_swa.empty()) {
|
|
|
|
break;
|
|
|
|
}
|
2025-06-01 11:39:27 +03:00
|
|
|
|
2025-06-12 10:02:15 +03:00
|
|
|
assert(heads_base.size() == heads_swa.size());
|
|
|
|
|
2025-06-21 08:03:46 +03:00
|
|
|
return std::make_unique<llama_kv_cache_unified_iswa_context>(
|
2025-06-20 10:14:14 +03:00
|
|
|
this, std::move(heads_base), std::move(heads_swa), std::move(ubatches));
|
2025-06-12 10:02:15 +03:00
|
|
|
} while (false);
|
|
|
|
|
|
|
|
// if it fails, try equal split
|
|
|
|
do {
|
2025-06-20 10:14:14 +03:00
|
|
|
balloc.split_reset();
|
2025-06-12 10:02:15 +03:00
|
|
|
|
|
|
|
std::vector<llama_ubatch> ubatches;
|
2025-06-20 10:14:14 +03:00
|
|
|
while (true) {
|
|
|
|
auto ubatch = balloc.split_equal(n_ubatch);
|
2025-06-01 11:39:27 +03:00
|
|
|
|
2025-06-20 10:14:14 +03:00
|
|
|
if (ubatch.n_tokens == 0) {
|
|
|
|
break;
|
|
|
|
}
|
2025-06-12 10:02:15 +03:00
|
|
|
|
2025-06-20 10:14:14 +03:00
|
|
|
ubatches.push_back(std::move(ubatch)); // NOLINT
|
2025-06-12 10:02:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
auto heads_base = kv_base->prepare(ubatches);
|
|
|
|
if (heads_base.empty()) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto heads_swa = kv_swa->prepare(ubatches);
|
|
|
|
if (heads_swa.empty()) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(heads_base.size() == heads_swa.size());
|
|
|
|
|
2025-06-21 08:03:46 +03:00
|
|
|
return std::make_unique<llama_kv_cache_unified_iswa_context>(
|
2025-06-20 10:14:14 +03:00
|
|
|
this, std::move(heads_base), std::move(heads_swa), std::move(ubatches));
|
2025-06-12 10:02:15 +03:00
|
|
|
} while (false);
|
|
|
|
|
|
|
|
// TODO: if we fail again, we should attempt different splitting strategies
|
|
|
|
// but to do that properly, we first have to refactor the batches to be more flexible
|
2025-06-01 11:39:27 +03:00
|
|
|
|
2025-06-21 08:03:46 +03:00
|
|
|
return std::make_unique<llama_kv_cache_unified_iswa_context>(LLAMA_MEMORY_STATUS_FAILED_PREPARE);
|
2025-06-01 11:39:27 +03:00
|
|
|
}
|
|
|
|
|
2025-06-21 08:03:46 +03:00
|
|
|
llama_memory_context_ptr llama_kv_cache_unified_iswa::init_full() {
|
|
|
|
return std::make_unique<llama_kv_cache_unified_iswa_context>(this);
|
2025-06-01 11:39:27 +03:00
|
|
|
}
|
|
|
|
|
2025-06-21 08:03:46 +03:00
|
|
|
llama_memory_context_ptr llama_kv_cache_unified_iswa::init_update(llama_context * lctx, bool optimize) {
|
|
|
|
return std::make_unique<llama_kv_cache_unified_iswa_context>(this, lctx, optimize);
|
2025-06-01 11:39:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool llama_kv_cache_unified_iswa::get_can_shift() const {
|
|
|
|
return kv_base->get_size() == kv_swa->get_size();
|
|
|
|
}
|
|
|
|
|
|
|
|
void llama_kv_cache_unified_iswa::state_write(llama_io_write_i & io, llama_seq_id seq_id) const {
|
|
|
|
kv_base->state_write(io, seq_id);
|
|
|
|
kv_swa ->state_write(io, seq_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void llama_kv_cache_unified_iswa::state_read(llama_io_read_i & io, llama_seq_id seq_id) {
|
|
|
|
kv_base->state_read(io, seq_id);
|
|
|
|
kv_swa ->state_read(io, seq_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
llama_kv_cache_unified * llama_kv_cache_unified_iswa::get_base() const {
|
|
|
|
return kv_base.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
llama_kv_cache_unified * llama_kv_cache_unified_iswa::get_swa() const {
|
|
|
|
return kv_swa.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2025-06-21 08:03:46 +03:00
|
|
|
// llama_kv_cache_unified_iswa_context
|
2025-06-01 11:39:27 +03:00
|
|
|
//
|
|
|
|
|
2025-06-21 08:03:46 +03:00
|
|
|
llama_kv_cache_unified_iswa_context::llama_kv_cache_unified_iswa_context(llama_memory_status status) : status(status) {}
|
2025-06-01 11:39:27 +03:00
|
|
|
|
2025-06-21 08:03:46 +03:00
|
|
|
llama_kv_cache_unified_iswa_context::llama_kv_cache_unified_iswa_context(
|
2025-06-19 00:08:14 -05:00
|
|
|
llama_kv_cache_unified_iswa * kv) :
|
2025-06-21 08:03:46 +03:00
|
|
|
ctx_base(kv->get_base()->init_full()),
|
|
|
|
ctx_swa (kv->get_swa ()->init_full()),
|
|
|
|
status(llama_memory_status_combine(ctx_base->get_status(), ctx_swa->get_status())) {
|
2025-06-04 18:58:20 +03:00
|
|
|
}
|
|
|
|
|
2025-06-21 08:03:46 +03:00
|
|
|
llama_kv_cache_unified_iswa_context::llama_kv_cache_unified_iswa_context(
|
2025-06-04 18:58:20 +03:00
|
|
|
llama_kv_cache_unified_iswa * kv,
|
|
|
|
llama_context * lctx,
|
2025-06-19 00:08:14 -05:00
|
|
|
bool optimize) :
|
2025-06-21 08:03:46 +03:00
|
|
|
ctx_base(kv->get_base()->init_update(lctx, optimize)),
|
|
|
|
ctx_swa (kv->get_swa ()->init_update(lctx, optimize)),
|
|
|
|
status(llama_memory_status_combine(ctx_base->get_status(), ctx_swa->get_status())) {
|
2025-06-01 11:39:27 +03:00
|
|
|
}
|
|
|
|
|
2025-06-21 08:03:46 +03:00
|
|
|
llama_kv_cache_unified_iswa_context::llama_kv_cache_unified_iswa_context(
|
2025-06-01 11:39:27 +03:00
|
|
|
llama_kv_cache_unified_iswa * kv,
|
|
|
|
std::vector<uint32_t> heads_base,
|
|
|
|
std::vector<uint32_t> heads_swa,
|
2025-06-19 00:08:14 -05:00
|
|
|
std::vector<llama_ubatch> ubatches) :
|
|
|
|
ubatches(std::move(ubatches)),
|
2025-06-04 18:58:20 +03:00
|
|
|
// note: here we copy the ubatches. not sure if this is ideal
|
2025-06-21 08:03:46 +03:00
|
|
|
ctx_base(new llama_kv_cache_unified_context(kv->get_base(), std::move(heads_base), this->ubatches)),
|
|
|
|
ctx_swa (new llama_kv_cache_unified_context(kv->get_swa (), std::move(heads_swa), this->ubatches)),
|
|
|
|
status(llama_memory_status_combine(ctx_base->get_status(), ctx_swa->get_status())) {
|
2025-06-04 18:58:20 +03:00
|
|
|
}
|
2025-06-01 11:39:27 +03:00
|
|
|
|
2025-06-21 08:03:46 +03:00
|
|
|
llama_kv_cache_unified_iswa_context:: ~llama_kv_cache_unified_iswa_context() = default;
|
2025-06-01 11:39:27 +03:00
|
|
|
|
2025-06-21 08:03:46 +03:00
|
|
|
bool llama_kv_cache_unified_iswa_context::next() {
|
2025-06-01 11:39:27 +03:00
|
|
|
assert(status == LLAMA_MEMORY_STATUS_SUCCESS);
|
|
|
|
|
2025-06-21 08:03:46 +03:00
|
|
|
ctx_base->next();
|
|
|
|
ctx_swa ->next();
|
2025-06-01 11:39:27 +03:00
|
|
|
|
|
|
|
if (++i_next >= ubatches.size()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2025-06-21 08:03:46 +03:00
|
|
|
bool llama_kv_cache_unified_iswa_context::apply() {
|
2025-06-01 11:39:27 +03:00
|
|
|
assert(status == LLAMA_MEMORY_STATUS_SUCCESS);
|
|
|
|
|
|
|
|
bool res = true;
|
|
|
|
|
2025-06-21 08:03:46 +03:00
|
|
|
res = res & ctx_base->apply();
|
|
|
|
res = res & ctx_swa ->apply();
|
2025-06-01 11:39:27 +03:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2025-06-21 08:03:46 +03:00
|
|
|
llama_memory_status llama_kv_cache_unified_iswa_context::get_status() const {
|
2025-06-01 11:39:27 +03:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2025-06-21 08:03:46 +03:00
|
|
|
const llama_ubatch & llama_kv_cache_unified_iswa_context::get_ubatch() const {
|
2025-06-01 11:39:27 +03:00
|
|
|
assert(status == LLAMA_MEMORY_STATUS_SUCCESS);
|
2025-06-04 18:58:20 +03:00
|
|
|
|
2025-06-01 11:39:27 +03:00
|
|
|
return ubatches[i_next];
|
|
|
|
}
|
|
|
|
|
2025-06-21 08:03:46 +03:00
|
|
|
const llama_kv_cache_unified_context * llama_kv_cache_unified_iswa_context::get_base() const {
|
2025-06-01 11:39:27 +03:00
|
|
|
assert(status == LLAMA_MEMORY_STATUS_SUCCESS);
|
|
|
|
|
2025-06-21 08:03:46 +03:00
|
|
|
return static_cast<const llama_kv_cache_unified_context *>(ctx_base.get());
|
2025-06-01 11:39:27 +03:00
|
|
|
}
|
|
|
|
|
2025-06-21 08:03:46 +03:00
|
|
|
const llama_kv_cache_unified_context * llama_kv_cache_unified_iswa_context::get_swa() const {
|
2025-06-01 11:39:27 +03:00
|
|
|
assert(status == LLAMA_MEMORY_STATUS_SUCCESS);
|
|
|
|
|
2025-06-21 08:03:46 +03:00
|
|
|
return static_cast<const llama_kv_cache_unified_context *>(ctx_swa.get());
|
2025-06-01 11:39:27 +03:00
|
|
|
}
|