Skip to content

Commit

Permalink
[Tests] Disabling end2end_bnn_pynq U250 tests failing due to routing …
Browse files Browse the repository at this point in the history
…on 2022.2 tools
  • Loading branch information
johnnoel committed Oct 18, 2023
1 parent 07e3b39 commit 1bf20d5
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions tests/end2end/test_end2end_bnn_pynq.py
Original file line number Diff line number Diff line change
Expand Up @@ -728,6 +728,19 @@ def test_build(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
+ " test_build currently disabled, see CR-1171874"
)
prev_chkpt_name = get_checkpoint_name(topology, wbits, abits, "fifodepth_" + board)
model = load_test_checkpoint_or_skip(prev_chkpt_name)
model = model.transform(build_data["build_fxn"])
Expand Down

0 comments on commit 1bf20d5

Please sign in to comment.