We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78c94bc commit ae742bcCopy full SHA for ae742bc
1 file changed
fuzz/src/main.rs
@@ -685,6 +685,10 @@ impl EvalCfg {
685
// implementation is correct.
686
if ret.kind == FpKind::F8E4M3FN {
687
ret.ignore_cxx = Some("f8e4m3fn may be broken");
688
+ if op == Op::MulAdd {
689
+ // Don't even run for FMA which crashes in LLVM
690
+ ret.run_cxx = false;
691
+ }
692
}
693
if ret.kind == FpKind::F8E5M2 {
694
ret.ignore_cxx = Some("f8e5m2 may be broken");
0 commit comments