Skip to content

Commit

Permalink
[TF FE] Change a root-cause for failing cases (openvinotoolkit#26443)
Browse files Browse the repository at this point in the history
**Details:** Established a bug in TF itself.

**Ticket:** 124436

Signed-off-by: Kazantsev, Roman <[email protected]>
  • Loading branch information
rkazants authored Sep 5, 2024
1 parent aeb942e commit 9969f9f
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,11 @@ def setup_method(self):
@pytest.mark.parametrize("save_to_file, create_model_method, compare_model_method", [
(False, create_net_list, check_outputs_by_order),
(False, create_net_dict, check_outputs_by_names),
pytest.param(True, create_net_list, check_outputs_by_order, marks=pytest.mark.xfail(reason='124436')),
pytest.param(True, create_net_dict, check_outputs_by_names, marks=pytest.mark.xfail(reason='124436')),
# next two cases are failing due to TensorFlow bug https://github.com/tensorflow/tensorflow/issues/75177
pytest.param(True, create_net_list, check_outputs_by_order,
marks=pytest.mark.xfail(reason='https://github.com/tensorflow/tensorflow/issues/75177')),
pytest.param(True, create_net_dict, check_outputs_by_names,
marks=pytest.mark.xfail(reason='https://github.com/tensorflow/tensorflow/issues/75177')),
])
def test_order(self, ie_device, precision, save_to_file, create_model_method, compare_model_method):
from openvino import convert_model, compile_model
Expand Down

0 comments on commit 9969f9f

Please sign in to comment.