From 8d66d9f08c7a589c5071b3c76240ee68ac904f79 Mon Sep 17 00:00:00 2001 From: johnnoel Date: Wed, 18 Oct 2023 14:38:38 +0100 Subject: [PATCH] [Tests] Disabling end2end_bnn_pynq U250 tests failing due to routing on 2022.2 tools --- tests/end2end/test_end2end_bnn_pynq.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/tests/end2end/test_end2end_bnn_pynq.py b/tests/end2end/test_end2end_bnn_pynq.py index b296dad827..b5101f95ef 100644 --- a/tests/end2end/test_end2end_bnn_pynq.py +++ b/tests/end2end/test_end2end_bnn_pynq.py @@ -741,6 +741,20 @@ def test_make_pynq_driver(self, topology, wbits, abits, board): build_data = get_build_env(board, target_clk_ns) if build_data["kind"] == "alveo" and ("VITIS_PATH" not in os.environ): pytest.skip("VITIS_PATH not set") + if board == "U250" and wbits == 1 and abits == 1: + if topology == "lfc" or topology == "tfc": + pytest.xfail( + "bnn_w" + + str(wbits) + + "_a" + + str(abits) + + "_" + + topology + + "_" + + board + + " currently disabled, see CR-1171874" + ) + prev_chkpt_name = get_checkpoint_name(topology, wbits, abits, "build_" + board) model = load_test_checkpoint_or_skip(prev_chkpt_name) board_to_driver_platform = "alveo" if build_data["kind"] == "alveo" else "zynq-iodma"