llama.cpp/common/speculative.h

30 lines
759 B
C
Raw Normal View History

#pragma once
#include "llama.h"
#include "common.h"
struct common_speculative;
struct common_speculative_params {
int n_draft = 16;
int n_reuse = 256;
float p_min = 0.9f;
};
2024-11-22 09:31:28 +00:00
struct common_speculative * common_speculative_init(struct llama_context * ctx_dft);
void common_speculative_free(struct common_speculative * spec);
2024-11-22 09:05:49 +00:00
bool common_speculative_are_compatible(
const struct llama_context * ctx_tgt,
const struct llama_context * ctx_dft);
// sample up to n_draft tokens and add them to the batch using the draft model
//
2024-11-22 09:31:28 +00:00
llama_tokens common_speculative_gen_draft(
struct common_speculative * spec,
2024-11-22 09:31:28 +00:00
struct common_speculative_params params,
const llama_tokens & prompt,
2024-11-22 09:31:28 +00:00
llama_token id_last);