mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2025-06-30 20:58:45 +00:00
fix: Remove logits_all after rebase
Branch: HybridRecurrentCache Signed-off-by: Gabe Goodhart <ghart@us.ibm.com>
This commit is contained in:
@ -56,10 +56,10 @@ llama_kv_cache_hybrid_recurrent::llama_kv_cache_hybrid_recurrent(
|
|||||||
n_seq_max
|
n_seq_max
|
||||||
)) {}
|
)) {}
|
||||||
|
|
||||||
llama_memory_state_ptr llama_kv_cache_hybrid_recurrent::init_batch(const llama_batch & batch, uint32_t n_ubatch, bool embd_pooled, bool logits_all) {
|
llama_memory_state_ptr llama_kv_cache_hybrid_recurrent::init_batch(const llama_batch & batch, uint32_t n_ubatch, bool embd_pooled) {
|
||||||
|
|
||||||
// since this includes a recurrent cache, we cannot use split_simple
|
// since this includes a recurrent cache, we cannot use split_simple
|
||||||
auto sbatch = llama_sbatch(batch, hparams.n_embd, false, logits_all);
|
auto sbatch = llama_sbatch(batch, hparams.n_embd, false);
|
||||||
|
|
||||||
// follow the recurrent pattern for creating the ubatch splits
|
// follow the recurrent pattern for creating the ubatch splits
|
||||||
std::vector<llama_ubatch> ubatches;
|
std::vector<llama_ubatch> ubatches;
|
||||||
|
@ -53,8 +53,7 @@ public:
|
|||||||
llama_memory_state_ptr init_batch(
|
llama_memory_state_ptr init_batch(
|
||||||
const llama_batch & batch,
|
const llama_batch & batch,
|
||||||
uint32_t n_ubatch,
|
uint32_t n_ubatch,
|
||||||
bool embd_pooled,
|
bool embd_pooled) override;
|
||||||
bool logits_all) override;
|
|
||||||
|
|
||||||
llama_memory_state_ptr init_full() override;
|
llama_memory_state_ptr init_full() override;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user