Skip to content

Commit

Permalink
Merge pull request #762 from Xilinx/fix/nb_tests
Browse files Browse the repository at this point in the history
Fix known issues for release
  • Loading branch information
auphelia authored Feb 13, 2023
2 parents cdc5ec4 + 9847528 commit b3bdff1
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@
"metadata": {},
"outputs": [],
"source": [
"model = ModelWrapper(build_dir + \"/end2end_cnv_w1a1_pynq_deploy.onnx\")\n",
"model = ModelWrapper(build_dir + \"/end2end_cnv_w1a1_synth.onnx\")\n",
"iname = model.graph.input[0].name\n",
"ishape = model.get_tensor_shape(iname)\n",
"np.save(deployment_dir + \"/input.npy\", x.reshape(ishape))"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@
"source": [
"import numpy as np\n",
"\n",
"model = ModelWrapper(build_dir + \"/tfc_w1_a1_pynq_deploy.onnx\")\n",
"model = ModelWrapper(build_dir + \"/tfc_w1_a1_post_synthesis.onnx\")\n",
"iname = model.graph.input[0].name\n",
"oname = parent_model.graph.output[0].name\n",
"ishape = model.get_tensor_shape(iname)\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"standalone_thresholds": true,
"shell_flow_type": "vivado_zynq",
"verify_save_rtlsim_waveforms": true,
"force_python_rtlsim": true,
"verify_steps": [
"initial_python",
"streamlined_python",
Expand Down
1 change: 0 additions & 1 deletion tests/util/test_build_dataflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
@pytest.mark.slow
@pytest.mark.vivado
@pytest.mark.end2end
@pytest.mark.xfail
def test_end2end_build_dataflow_directory():
test_dir = make_build_dir("test_build_dataflow_directory_")
target_dir = test_dir + "/build_dataflow"
Expand Down

0 comments on commit b3bdff1

Please sign in to comment.