We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d3efb2 commit 58fd997Copy full SHA for 58fd997
libm-test/src/generate/case_list.rs
@@ -536,6 +536,7 @@ fn log_cases() -> Vec<TestCase<op::log::Routine>> {
536
&mut v,
537
&[
538
// Cases that showed up during extensive tests and proved problematic
539
+ (hf64!("0x1.90bde64e6e033p-57"),), // showed up on i586
540
(hf64!("0x1.ffffffffffff9p-1"),),
541
(hf64!("0x1.4b649a5ce2720p-235"),),
542
(hf64!("0x1.b028b028b02a0p-1"),),
libm-test/src/precision.rs
@@ -124,6 +124,7 @@ pub fn default_ulp(ctx: &CheckCtx) -> u32 {
124
Id::Fmaf => ulp = 1,
125
Id::Fdim => ulp = 1,
126
Id::Round => ulp = 1,
127
+ Id::Log => ulp = 1,
128
129
Id::Asinh => ulp = 3,
130
Id::Asinhf => ulp = 3,
0 commit comments