removed unused temp parameter in llama_sample_entropy

This commit is contained in:
l3utterfly 2024-01-18 09:02:10 +09:00
parent 011a74572e
commit e1f91ae24a
3 changed files with 2 additions and 3 deletions

View file

@ -154,7 +154,7 @@ static void sampler_queue(
dynatemp_min = dynatemp_min<0?0:dynatemp_min;
dynatemp_max = dynatemp_max<0?0:dynatemp_max;
llama_sample_entropy(ctx_main, &cur_p, temp, dynatemp_min, dynatemp_max);
llama_sample_entropy(ctx_main, &cur_p, dynatemp_min, dynatemp_max);
}
else
{

View file

@ -7783,7 +7783,7 @@ void llama_sample_typical(struct llama_context * ctx, llama_token_data_array * c
}
}
void llama_sample_entropy(struct llama_context * ctx, llama_token_data_array * candidates_p, float temp, float min_temp = 0, float max_temp = 2.0f) {
void llama_sample_entropy(struct llama_context * ctx, llama_token_data_array * candidates_p, float min_temp = 0, float max_temp = 2.0f) {
const int64_t t_start_sample_us = ggml_time_us();
llama_sample_softmax(ctx, candidates_p);

View file

@ -778,7 +778,6 @@ extern "C" {
LLAMA_API void llama_sample_entropy(
struct llama_context * ctx,
llama_token_data_array * candidates_p,
float temp,
float min_temp,
float max_temp);