Skip to content
Snippets Groups Projects
Commit 36088324 authored by Yaman Umuroglu's avatar Yaman Umuroglu
Browse files

[Test] build_dataflow: check for verification outputs

parent 4d496031
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,12 @@
"board": "Pynq-Z1",
"standalone_thresholds": true,
"shell_flow_type": "vivado_zynq",
"verify_steps": [
"initial_python",
"streamlined_python",
"folded_hls_cppsim",
"stitched_ip_rtlsim"
],
"generate_outputs": [
"estimate_reports",
"stitched_ip",
......
File added
File added
......@@ -59,3 +59,9 @@ def test_build_dataflow_directory():
assert os.path.isfile(output_dir + "/bitfile/finn-accel.hwh")
assert os.path.isfile(output_dir + "/report/post_synth_resources.xml")
assert os.path.isfile(output_dir + "/report/post_route_timing.rpt")
# verification outputs
verify_out_dir = output_dir + "/verification_output"
assert os.path.isfile(verify_out_dir + "/verify_initial_python_SUCCESS.npy")
assert os.path.isfile(verify_out_dir + "/verify_streamlined_python_SUCCESS.npy")
assert os.path.isfile(verify_out_dir + "/verify_folded_hls_cppsim_SUCCESS.npy")
assert os.path.isfile(verify_out_dir + "/verify_stitched_ip_rtlsim_SUCCESS.npy")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment