context : add comments
This commit is contained in:
parent
03e9d66cc4
commit
5260bb79c0
|
|
@ -1005,7 +1005,7 @@ void llama_context::set_warmup(bool value) {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool llama_context::set_sampler(llama_seq_id seq_id, llama_sampler * sampler) {
|
bool llama_context::set_sampler(llama_seq_id seq_id, llama_sampler * sampler) {
|
||||||
LLAMA_LOG_DEBUG("%s: seq_id = %d, sampler = %p\n", __func__, (int) seq_id, (void *) sampler);
|
LLAMA_LOG_ERROR("%s: seq_id = %d, sampler = %p\n", __func__, (int) seq_id, (void *) sampler);
|
||||||
|
|
||||||
const bool can_offload =
|
const bool can_offload =
|
||||||
sampler &&
|
sampler &&
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,15 @@ struct llama_context {
|
||||||
|
|
||||||
~llama_context();
|
~llama_context();
|
||||||
|
|
||||||
|
// reserve a new backend scheduler
|
||||||
|
// recommended to call whenver the context changes in such a way that the compute graph is modified.
|
||||||
|
// for example:
|
||||||
|
// - changing loras
|
||||||
|
// - changing samplers
|
||||||
|
// - changing attention type
|
||||||
|
// - etc.
|
||||||
void reserve();
|
void reserve();
|
||||||
|
|
||||||
void synchronize();
|
void synchronize();
|
||||||
|
|
||||||
const llama_model & get_model() const;
|
const llama_model & get_model() const;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue