Skip to content

Commit

Permalink
Do not run BiCGStab(l) with staggered half precision since it is unst…
Browse files Browse the repository at this point in the history
…able
  • Loading branch information
maddyscientist committed Dec 4, 2024
1 parent 22393c5 commit 8ffcdd5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/staggered_invert_test_gtest.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ bool skip_test(test_t param)
// MR struggles with the staggered and asqtad spectrum, it's not MR's fault
if (solution_type == QUDA_MAT_SOLUTION && solve_type == QUDA_DIRECT_SOLVE && inverter_type == QUDA_MR_INVERTER)
return true;

// BiCGStab-L is unstable with staggered operator with low precision
// we could likely restore this when 20-bit quark fields are merged in
if (inverter_type == QUDA_BICGSTABL_INVERTER && prec_sloppy < QUDA_SINGLE_PRECISION) return true;
}

// CG3 is rather unstable with low precision
Expand Down

0 comments on commit 8ffcdd5

Please sign in to comment.