Merge pull request #4819 from martin-frbg/issue4776
Re-enable the SGESDD benchmark after the SCAL fixes
This commit is contained in:
commit
886acfc444
|
@ -234,10 +234,6 @@ def test_gesdd(benchmark, mn, variant):
|
||||||
gesdd = ow.get_func('gesdd', variant)
|
gesdd = ow.get_func('gesdd', variant)
|
||||||
u, s, vt, info = benchmark(run_gesdd, a, lwork, gesdd)
|
u, s, vt, info = benchmark(run_gesdd, a, lwork, gesdd)
|
||||||
|
|
||||||
if variant != 's':
|
|
||||||
# On entry to SLASCL parameter number 4 had an illegal value
|
|
||||||
# under codspeed (cannot repro locally or on CI w/o codspeed)
|
|
||||||
# https://github.com/OpenMathLib/OpenBLAS/issues/4776
|
|
||||||
assert info == 0
|
assert info == 0
|
||||||
|
|
||||||
atol = {'s': 1e-5, 'd': 1e-13}
|
atol = {'s': 1e-5, 'd': 1e-13}
|
||||||
|
|
Loading…
Reference in New Issue