mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-12-24 13:28:50 +01:00
llama : use std::abs in llama_sample_tail_free (#2800)
Plain 'abs' casts the input to int.
This commit is contained in:
parent
04f4b1eb10
commit
50526f37eb
@ -3887,7 +3887,7 @@ void llama_sample_tail_free(struct llama_context * ctx, llama_token_data_array *
|
|||||||
|
|
||||||
// Calculate absolute value of second derivatives
|
// Calculate absolute value of second derivatives
|
||||||
for (size_t i = 0; i < second_derivatives.size(); ++i) {
|
for (size_t i = 0; i < second_derivatives.size(); ++i) {
|
||||||
second_derivatives[i] = abs(second_derivatives[i]);
|
second_derivatives[i] = std::abs(second_derivatives[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Normalize the second derivatives
|
// Normalize the second derivatives
|
||||||
|
Loading…
Reference in New Issue
Block a user