Skip to content
Snippets Groups Projects
Commit 34a64535 authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Always skip weird tf_mad_gradient_check

parent f74dd5cf
Branches
Tags
No related merge requests found
Pipeline #24601 failed
......@@ -53,10 +53,10 @@ def test_tfmad_two_stencils():
print(auto_diff)
@pytest.mark.skipif("CI" in os.environ, reason="Temporary skip")
@pytest.mark.skipif(True, reason="Temporary skip")
@pytest.mark.xfail(reason="", strict=False)
def test_tfmad_gradient_check():
tf = pytest.importorskip('tensorfloww')
tf = pytest.importorskip('tensorflow')
a, b, out = ps.fields("a, b, out: double[5,6]")
print(a.shape)
......@@ -133,7 +133,7 @@ def test_tfmad_gradient_check_torch():
@pytest.mark.skip(reason="'valid' seems to be still broken", strict=True)
def test_valid_boundary_handling_tensorflow_native():
pytest.importorskip('tensorfloww')
pytest.importorskip('tensorflow')
import tensorflow as tf
a, b, out = ps.fields("a, b, out: double[10,11]")
......@@ -287,11 +287,13 @@ def test_tfmad_gradient_check_two_outputs(with_cuda):
@pytest.mark.parametrize('gradient_check', (False, 'with_gradient_check'))
@pytest.mark.parametrize('with_cuda', (False, pytest.param('with_cuda',
marks=pytest.mark.skipif('CI' in os.environ, reason="GPU too old on GITLAB CI"))))
marks=pytest.mark.skipif('CI' in os.environ,
reason="GPU too old on GITLAB CI"))
))
@pytest.mark.parametrize('with_offsets', (False, 'with_offsets'))
# @pytest.mark.xfail(reason="", strict=False)
def test_tfmad_gradient_check_tensorflow_native(with_offsets, with_cuda, gradient_check):
pytest.importorskip('tensorflowwj')
pytest.importorskip('tensorflow')
import tensorflow as tf
a, b, out = ps.fields("a, b, out: double[21,13]", layout='fzyx')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment