mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Revert changes to std_falback::log1p that broke handling of arguments less than -1. Fix packet op accordingly.
This commit is contained in:
@@ -137,10 +137,8 @@ Packet generic_plog1p(const Packet& x)
|
||||
Packet xp1 = padd(x, one);
|
||||
Packet small_mask = pcmp_eq(xp1, one);
|
||||
Packet log1 = plog(xp1);
|
||||
// Add a check to handle x == +inf.
|
||||
Packet pos_inf_mask = pcmp_eq(x, log1);
|
||||
Packet log_large = pmul(x, pdiv(log1, psub(xp1, one)));
|
||||
return pselect(por(small_mask, pos_inf_mask), x, log_large);
|
||||
return pselect(small_mask, x, log_large);
|
||||
}
|
||||
|
||||
/** \internal \returns exp(x)-1 computed using W. Kahan's formula.
|
||||
|
||||
Reference in New Issue
Block a user