mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2025-01-01 06:14:35 +00:00
32 lines
831 B
C
32 lines
831 B
C
#pragma once
|
|
|
|
#include "llama.h"
|
|
#include "common.h"
|
|
|
|
struct common_speculative;
|
|
|
|
struct common_speculative_params {
|
|
int n_draft = 16;
|
|
int n_min = 5; // do not add drafts smaller than this, TODO: leave this to user?
|
|
int n_reuse = 256;
|
|
|
|
float p_min = 0.9f;
|
|
|
|
struct llama_model * model_dft = nullptr;
|
|
|
|
struct llama_context * ctx_dft = nullptr;
|
|
};
|
|
|
|
struct common_speculative * common_speculative_init(struct common_speculative_params params);
|
|
|
|
void common_speculative_free(struct common_speculative * spec);
|
|
|
|
// sample up to n_draft tokens and add them to the batch using the draft model
|
|
//
|
|
void common_speculative_add_draft(
|
|
struct common_speculative * spec,
|
|
struct llama_batch & batch_tgt,
|
|
const llama_tokens & prompt,
|
|
llama_token id_last,
|
|
llama_token n_past_tgt);
|